diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-11-26 18:34:00 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-11-28 02:21:01 +0900 |
commit | 625177d27ed9e91cb96c0221b8020f7e4d24bfb6 (patch) | |
tree | 5c850d2c035fda55616aa6594ccca6f0779dda18 /arch/arm/dts/uniphier-ph1-pro4.dtsi | |
parent | 509eb67802d5cdc2b2789f08ac9f2ba33d796872 (diff) | |
download | u-boot-imx-625177d27ed9e91cb96c0221b8020f7e4d24bfb6.zip u-boot-imx-625177d27ed9e91cb96c0221b8020f7e4d24bfb6.tar.gz u-boot-imx-625177d27ed9e91cb96c0221b8020f7e4d24bfb6.tar.bz2 |
serial: UniPhier: support OF configuration
This commit implements the ofdata_to_platdata handler for the UniPhier
serial driver and adds serial device nodes to the device tree sources.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/arm/dts/uniphier-ph1-pro4.dtsi')
-rw-r--r-- | arch/arm/dts/uniphier-ph1-pro4.dtsi | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/arm/dts/uniphier-ph1-pro4.dtsi b/arch/arm/dts/uniphier-ph1-pro4.dtsi index 7619c36..b53fbc5 100644 --- a/arch/arm/dts/uniphier-ph1-pro4.dtsi +++ b/arch/arm/dts/uniphier-ph1-pro4.dtsi @@ -34,5 +34,33 @@ #address-cells = <1>; #size-cells = <1>; ranges; + + uart0: serial@54006800 { + compatible = "panasonic,uniphier-uart"; + status = "disabled"; + reg = <0x54006800 0x20>; + clock-frequency = <73728000>; + }; + + uart1: serial@54006900 { + compatible = "panasonic,uniphier-uart"; + status = "disabled"; + reg = <0x54006900 0x20>; + clock-frequency = <73728000>; + }; + + uart2: serial@54006a00 { + compatible = "panasonic,uniphier-uart"; + status = "disabled"; + reg = <0x54006a00 0x20>; + clock-frequency = <73728000>; + }; + + uart3: serial@54006b00 { + compatible = "panasonic,uniphier-uart"; + status = "disabled"; + reg = <0x54006b00 0x20>; + clock-frequency = <73728000>; + }; }; }; |