diff options
author | Ariel D'Alessandro <ariel@vanguardiasur.com.ar> | 2015-07-31 01:24:25 +0300 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2015-08-05 20:30:26 +0300 |
commit | 5e6472001e529ef4c81068d7826064568dd9d104 (patch) | |
tree | 475ec0407bb83c93051c8383f6d4ffd7985af450 /arch/arm/boot/dts/lpc4350-hitex-eval.dts | |
parent | 41a0dec9163c0f9a0f14d79d0bcca4dd1c2005b6 (diff) | |
download | linux-5e6472001e529ef4c81068d7826064568dd9d104.tar.xz |
ARM: dts: lpc4350-hitex-eval: add pinctrl and uart0 muxing
Setup pin muxing and properties for the debug console on uart0.
Signed-off-by: Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/boot/dts/lpc4350-hitex-eval.dts')
-rw-r--r-- | arch/arm/boot/dts/lpc4350-hitex-eval.dts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/lpc4350-hitex-eval.dts b/arch/arm/boot/dts/lpc4350-hitex-eval.dts index 4ebdb54cc9ce..1dab22150510 100644 --- a/arch/arm/boot/dts/lpc4350-hitex-eval.dts +++ b/arch/arm/boot/dts/lpc4350-hitex-eval.dts @@ -36,6 +36,26 @@ }; }; +&pinctrl { + uart0_pins: uart0-pins { + uart0_rx_cfg { + pins = "pf_11"; + function = "uart0"; + input-schmitt-disable; + bias-disable; + input-enable; + }; + + uart0_tx_cfg { + pins = "pf_10"; + function = "uart0"; + bias-pull-down; + }; + }; +}; + &uart0 { status = "okay"; + pinctrl-names = "default"; + pinctrl-0 = <&uart0_pins>; }; |