mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 12:16:45 +07:00
589681b206
The configuration of the USB OTG is a platform configuration decision, not a microsom decision. Move this configuration out to the platform level files. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
21 lines
344 B
Plaintext
21 lines
344 B
Plaintext
/*
|
|
* Copyright (C) 2013,2014 Russell King
|
|
*/
|
|
|
|
&iomuxc {
|
|
microsom {
|
|
pinctrl_microsom_uart1: microsom-uart1 {
|
|
fsl,pins = <
|
|
MX6QDL_PAD_CSI0_DAT10__UART1_TX_DATA 0x1b0b1
|
|
MX6QDL_PAD_CSI0_DAT11__UART1_RX_DATA 0x1b0b1
|
|
>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart1 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_microsom_uart1>;
|
|
status = "okay";
|
|
};
|