aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/wm8850.dtsi
diff options
context:
space:
mode:
authorTony Prisk <linux@prisktech.co.nz>2013-04-22 22:23:26 -0400
committerTony Prisk <linux@prisktech.co.nz>2013-05-12 04:31:13 -0400
commit55954f8522cf108e8c894130b2656516b9ae6991 (patch)
treeab834b44f2e7b1da0b5ab40f4e96d430f0c8151c /arch/arm/boot/dts/wm8850.dtsi
parent4606c48051db62db14756e1085fe0f8821a0e116 (diff)
dts: vt8500: Update serial nodes and disable by default in SoC files
Missing aliases for uarts on vt8500, wm8505, wm8650 added. Nodes incorrectly labelled uart@.., changed to serial@... on all SoCs. Set each uarts default status = "disabled" as they generally don't exist. For each board file, we only need to enable uart0 as no other uarts are physically present on any of these boards. Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Diffstat (limited to 'arch/arm/boot/dts/wm8850.dtsi')
-rw-r--r--arch/arm/boot/dts/wm8850.dtsi12
1 files changed, 8 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/wm8850.dtsi b/arch/arm/boot/dts/wm8850.dtsi
index 3aa131538935..fc60e3204589 100644
--- a/arch/arm/boot/dts/wm8850.dtsi
+++ b/arch/arm/boot/dts/wm8850.dtsi
@@ -189,32 +189,36 @@
189 interrupts = <26>; 189 interrupts = <26>;
190 }; 190 };
191 191
192 uart0: uart@d8200000 { 192 uart0: serial@d8200000 {
193 compatible = "via,vt8500-uart"; 193 compatible = "via,vt8500-uart";
194 reg = <0xd8200000 0x1040>; 194 reg = <0xd8200000 0x1040>;
195 interrupts = <32>; 195 interrupts = <32>;
196 clocks = <&clkuart0>; 196 clocks = <&clkuart0>;
197 status = "disabled";
197 }; 198 };
198 199
199 uart1: uart@d82b0000 { 200 uart1: serial@d82b0000 {
200 compatible = "via,vt8500-uart"; 201 compatible = "via,vt8500-uart";
201 reg = <0xd82b0000 0x1040>; 202 reg = <0xd82b0000 0x1040>;
202 interrupts = <33>; 203 interrupts = <33>;
203 clocks = <&clkuart1>; 204 clocks = <&clkuart1>;
205 status = "disabled";
204 }; 206 };
205 207
206 uart2: uart@d8210000 { 208 uart2: serial@d8210000 {
207 compatible = "via,vt8500-uart"; 209 compatible = "via,vt8500-uart";
208 reg = <0xd8210000 0x1040>; 210 reg = <0xd8210000 0x1040>;
209 interrupts = <47>; 211 interrupts = <47>;
210 clocks = <&clkuart2>; 212 clocks = <&clkuart2>;
213 status = "disabled";
211 }; 214 };
212 215
213 uart3: uart@d82c0000 { 216 uart3: serial@d82c0000 {
214 compatible = "via,vt8500-uart"; 217 compatible = "via,vt8500-uart";
215 reg = <0xd82c0000 0x1040>; 218 reg = <0xd82c0000 0x1040>;
216 interrupts = <50>; 219 interrupts = <50>;
217 clocks = <&clkuart3>; 220 clocks = <&clkuart3>;
221 status = "disabled";
218 }; 222 };
219 223
220 rtc@d8100000 { 224 rtc@d8100000 {