mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
34 lines
643 B
Plaintext
34 lines
643 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
|
||
|
>;
|
||
|
};
|
||
|
|
||
|
pinctrl_microsom_usbotg: microsom-usbotg {
|
||
|
/*
|
||
|
* Similar to pinctrl_usbotg_2, but we want it
|
||
|
* pulled down for a fixed host connection.
|
||
|
*/
|
||
|
fsl,pins = <MX6QDL_PAD_GPIO_1__USB_OTG_ID 0x13059>;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&uart1 {
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&pinctrl_microsom_uart1>;
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&usbotg {
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&pinctrl_microsom_usbotg>;
|
||
|
};
|