mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 22:30:54 +07:00
ce5abbb816
Add HS USB Host support along with USB PHYs and power supply regulators Signed-off-by: Dmitry Lifshitz <lifshitz@compulab.co.il> Signed-off-by: Tony Lindgren <tony@atomide.com>
104 lines
2.0 KiB
Plaintext
104 lines
2.0 KiB
Plaintext
/*
|
|
* Common support for CompuLab CM-T3x30 CoMs
|
|
*/
|
|
|
|
#include "omap3-cm-t3x.dtsi"
|
|
|
|
/ {
|
|
cpus {
|
|
cpu@0 {
|
|
cpu0-supply = <&vcc>;
|
|
};
|
|
};
|
|
|
|
vddvario: regulator-vddvario {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "vddvario";
|
|
regulator-always-on;
|
|
};
|
|
|
|
vdd33a: regulator-vdd33a {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "vdd33a";
|
|
regulator-always-on;
|
|
};
|
|
};
|
|
|
|
&omap3_pmx_core {
|
|
|
|
smsc1_pins: pinmux_smsc1_pins {
|
|
pinctrl-single,pins = <
|
|
OMAP3_CORE1_IOPAD(0x20b8, PIN_OUTPUT | MUX_MODE0) /* gpmc_ncs5.gpmc_ncs5 */
|
|
OMAP3_CORE1_IOPAD(0x219a, PIN_INPUT_PULLUP | MUX_MODE4) /* uart3_cts_rctx.gpio_163 */
|
|
>;
|
|
};
|
|
};
|
|
|
|
&gpmc {
|
|
ranges = <5 0 0x2c000000 0x01000000>;
|
|
|
|
smsc1: ethernet@5,0 {
|
|
compatible = "smsc,lan9221", "smsc,lan9115";
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&smsc1_pins>;
|
|
interrupt-parent = <&gpio6>;
|
|
interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
|
|
reg = <5 0 0xff>;
|
|
bank-width = <2>;
|
|
gpmc,mux-add-data;
|
|
gpmc,cs-on-ns = <0>;
|
|
gpmc,cs-rd-off-ns = <186>;
|
|
gpmc,cs-wr-off-ns = <186>;
|
|
gpmc,adv-on-ns = <12>;
|
|
gpmc,adv-rd-off-ns = <48>;
|
|
gpmc,adv-wr-off-ns = <48>;
|
|
gpmc,oe-on-ns = <54>;
|
|
gpmc,oe-off-ns = <168>;
|
|
gpmc,we-on-ns = <54>;
|
|
gpmc,we-off-ns = <168>;
|
|
gpmc,rd-cycle-ns = <186>;
|
|
gpmc,wr-cycle-ns = <186>;
|
|
gpmc,access-ns = <114>;
|
|
gpmc,page-burst-access-ns = <6>;
|
|
gpmc,bus-turnaround-ns = <12>;
|
|
gpmc,cycle2cycle-delay-ns = <18>;
|
|
gpmc,wr-data-mux-bus-ns = <90>;
|
|
gpmc,wr-access-ns = <186>;
|
|
gpmc,cycle2cycle-samecsen;
|
|
gpmc,cycle2cycle-diffcsen;
|
|
vddvario-supply = <&vddvario>;
|
|
vdd33a-supply = <&vdd33a>;
|
|
reg-io-width = <4>;
|
|
smsc,save-mac-address;
|
|
};
|
|
};
|
|
|
|
&i2c1 {
|
|
twl: twl@48 {
|
|
reg = <0x48>;
|
|
interrupts = <7>; /* SYS_NIRQ cascaded to intc */
|
|
interrupt-parent = <&intc>;
|
|
};
|
|
};
|
|
|
|
#include "twl4030.dtsi"
|
|
#include "twl4030_omap3.dtsi"
|
|
|
|
&mmc1 {
|
|
vmmc-supply = <&vmmc1>;
|
|
};
|
|
|
|
&twl_gpio {
|
|
ti,use-leds;
|
|
/* pullups: BIT(0) */
|
|
ti,pullups = <0x000001>;
|
|
};
|
|
|
|
&hsusb1_phy {
|
|
reset-gpios = <&twl_gpio 6 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
&hsusb2_phy {
|
|
reset-gpios = <&twl_gpio 7 GPIO_ACTIVE_LOW>;
|
|
};
|