mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 06:36:44 +07:00
61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
|
/*
|
||
|
* Common support for CompuLab CM-T3x CoMs
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
|
||
|
memory {
|
||
|
device_type = "memory";
|
||
|
reg = <0x80000000 0x10000000>; /* 256 MB */
|
||
|
};
|
||
|
|
||
|
leds {
|
||
|
compatible = "gpio-leds";
|
||
|
ledb {
|
||
|
label = "cm-t3x:green";
|
||
|
gpios = <&gpio6 26 GPIO_ACTIVE_HIGH>; /* gpio186 */
|
||
|
linux,default-trigger = "heartbeat";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&omap3_pmx_core {
|
||
|
|
||
|
uart3_pins: pinmux_uart3_pins {
|
||
|
pinctrl-single,pins = <
|
||
|
OMAP3_CORE1_IOPAD(0x219e, PIN_INPUT | MUX_MODE0) /* uart3_rx_irrx.uart3_rx_irrx */
|
||
|
OMAP3_CORE1_IOPAD(0x21a0, PIN_OUTPUT | MUX_MODE0) /* uart3_tx_irtx.uart3_tx_irtx */
|
||
|
>;
|
||
|
};
|
||
|
|
||
|
mmc1_pins: pinmux_mmc1_pins {
|
||
|
pinctrl-single,pins = <
|
||
|
OMAP3_CORE1_IOPAD(0x2144, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_clk.sdmmc1_clk */
|
||
|
OMAP3_CORE1_IOPAD(0x2146, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_cmd.sdmmc1_cmd */
|
||
|
OMAP3_CORE1_IOPAD(0x2148, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat0.sdmmc1_dat0 */
|
||
|
OMAP3_CORE1_IOPAD(0x214a, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat1.sdmmc1_dat1 */
|
||
|
OMAP3_CORE1_IOPAD(0x214c, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat2.sdmmc1_dat2 */
|
||
|
OMAP3_CORE1_IOPAD(0x214e, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat3.sdmmc1_dat3 */
|
||
|
>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&uart3 {
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&uart3_pins>;
|
||
|
};
|
||
|
|
||
|
&mmc1 {
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&mmc1_pins>;
|
||
|
bus-width = <4>;
|
||
|
};
|
||
|
|
||
|
&i2c1 {
|
||
|
clock-frequency = <400000>;
|
||
|
};
|
||
|
|
||
|
&i2c3 {
|
||
|
clock-frequency = <400000>;
|
||
|
};
|