diff options
author | Franklin S Cooper Jr <fcooper@ti.com> | 2017-12-06 12:52:25 -0500 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@oracle.com> | 2017-12-06 12:52:38 -0500 |
commit | a8c0961b909ec7be25309c9bf1bc26bce488658c (patch) | |
tree | cf9bd7489b6d8eb2499975af89968c13751b0f52 | |
parent | b1516245ae98f9d6b227c99d239ee75ca91ca0d4 (diff) |
ARM: dts: k2g: Add UART 1 and 2 instances
Add DT nodes for two other UART instances of 66AK2G SoC.
Also add power domain and clock domain nodes to UART 0
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Signed-off-by: Vignesh R <vigneshr@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
-rw-r--r-- | arch/arm/boot/dts/keystone-k2g.dtsi | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi index ef82c0a6e607..3c48a9f5c882 100644 --- a/arch/arm/boot/dts/keystone-k2g.dtsi +++ b/arch/arm/boot/dts/keystone-k2g.dtsi | |||
@@ -28,6 +28,8 @@ | |||
28 | 28 | ||
29 | aliases { | 29 | aliases { |
30 | serial0 = &uart0; | 30 | serial0 = &uart0; |
31 | serial1 = &uart1; | ||
32 | serial2 = &uart2; | ||
31 | i2c0 = &i2c0; | 33 | i2c0 = &i2c0; |
32 | i2c1 = &i2c1; | 34 | i2c1 = &i2c1; |
33 | i2c2 = &i2c2; | 35 | i2c2 = &i2c2; |
@@ -114,7 +116,32 @@ | |||
114 | reg-io-width = <4>; | 116 | reg-io-width = <4>; |
115 | reg = <0x02530c00 0x100>; | 117 | reg = <0x02530c00 0x100>; |
116 | interrupts = <GIC_SPI 164 IRQ_TYPE_EDGE_RISING>; | 118 | interrupts = <GIC_SPI 164 IRQ_TYPE_EDGE_RISING>; |
117 | clock-frequency = <200000000>; | 119 | clocks = <&k2g_clks 0x2c 0>; |
120 | power-domains = <&k2g_pds 0x2c>; | ||
121 | status = "disabled"; | ||
122 | }; | ||
123 | |||
124 | uart1: serial@02531000 { | ||
125 | compatible = "ti,da830-uart", "ns16550a"; | ||
126 | current-speed = <115200>; | ||
127 | reg-shift = <2>; | ||
128 | reg-io-width = <4>; | ||
129 | reg = <0x02531000 0x100>; | ||
130 | interrupts = <GIC_SPI 165 IRQ_TYPE_EDGE_RISING>; | ||
131 | clocks = <&k2g_clks 0x2d 0>; | ||
132 | power-domains = <&k2g_pds 0x2d>; | ||
133 | status = "disabled"; | ||
134 | }; | ||
135 | |||
136 | uart2: serial@02531400 { | ||
137 | compatible = "ti,da830-uart", "ns16550a"; | ||
138 | current-speed = <115200>; | ||
139 | reg-shift = <2>; | ||
140 | reg-io-width = <4>; | ||
141 | reg = <0x02531400 0x100>; | ||
142 | interrupts = <GIC_SPI 166 IRQ_TYPE_EDGE_RISING>; | ||
143 | clocks = <&k2g_clks 0x2e 0>; | ||
144 | power-domains = <&k2g_pds 0x2e>; | ||
118 | status = "disabled"; | 145 | status = "disabled"; |
119 | }; | 146 | }; |
120 | 147 | ||