mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
208d7baf80
Add support for the SolidRun HummingBoard. This commit adds support for the following interfaces on this board: - Consumer Ir receiver - S/PDIF output - Both USB interfaces - Gigabit Ethernet using AR8035 - UART port Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
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>;
|
|
};
|