Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Device Tree Source for OMAP2 SoC
4 *
5 * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
6 */
7
8#include <dt-bindings/bus/ti-sysc.h>
9#include <dt-bindings/gpio/gpio.h>
10#include <dt-bindings/interrupt-controller/irq.h>
11#include <dt-bindings/pinctrl/omap.h>
12
13/ {
14 compatible = "ti,omap2430", "ti,omap2420", "ti,omap2";
15 interrupt-parent = <&intc>;
16 #address-cells = <1>;
17 #size-cells = <1>;
18 chosen { };
19
20 aliases {
21 serial0 = &uart1;
22 serial1 = &uart2;
23 serial2 = &uart3;
24 i2c0 = &i2c1;
25 i2c1 = &i2c2;
26 };
27
28 cpus {
29 #address-cells = <0>;
30 #size-cells = <0>;
31
32 cpu {
33 compatible = "arm,arm1136jf-s";
34 device_type = "cpu";
35 };
36 };
37
38 pmu {
39 compatible = "arm,arm1136-pmu";
40 interrupts = <3>;
41 };
42
43 soc {
44 compatible = "ti,omap-infra";
45 mpu {
46 compatible = "ti,omap2-mpu";
47 ti,hwmods = "mpu";
48 };
49 };
50
51 ocp {
52 compatible = "simple-bus";
53 #address-cells = <1>;
54 #size-cells = <1>;
55 ranges;
56 ti,hwmods = "l3_main";
57
58 aes: aes@480a6000 {
59 compatible = "ti,omap2-aes";
60 ti,hwmods = "aes";
61 reg = <0x480a6000 0x50>;
62 dmas = <&sdma 9 &sdma 10>;
63 dma-names = "tx", "rx";
64 };
65
66 hdq1w: 1w@480b2000 {
67 compatible = "ti,omap2420-1w";
68 ti,hwmods = "hdq1w";
69 reg = <0x480b2000 0x1000>;
70 interrupts = <58>;
71 };
72
73 intc: interrupt-controller@1 {
74 compatible = "ti,omap2-intc";
75 interrupt-controller;
76 #interrupt-cells = <1>;
77 reg = <0x480FE000 0x1000>;
78 };
79
80 target-module@48056000 {
81 compatible = "ti,sysc-omap2", "ti,sysc";
82 reg = <0x48056000 0x4>,
83 <0x4805602c 0x4>,
84 <0x48056028 0x4>;
85 reg-names = "rev", "sysc", "syss";
86 ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
87 SYSC_OMAP2_EMUFREE |
88 SYSC_OMAP2_SOFTRESET |
89 SYSC_OMAP2_AUTOIDLE)>;
90 ti,sysc-midle = <SYSC_IDLE_FORCE>,
91 <SYSC_IDLE_NO>,
92 <SYSC_IDLE_SMART>;
93 ti,syss-mask = <1>;
94 clocks = <&core_l3_ck>;
95 clock-names = "fck";
96 #address-cells = <1>;
97 #size-cells = <1>;
98 ranges = <0 0x48056000 0x1000>;
99
100 sdma: dma-controller@0 {
101 compatible = "ti,omap2420-sdma", "ti,omap-sdma";
102 reg = <0 0x1000>;
103 interrupts = <12>,
104 <13>,
105 <14>,
106 <15>;
107 #dma-cells = <1>;
108 dma-channels = <32>;
109 dma-requests = <64>;
110 };
111 };
112
113 i2c1: i2c@48070000 {
114 compatible = "ti,omap2-i2c";
115 ti,hwmods = "i2c1";
116 reg = <0x48070000 0x80>;
117 #address-cells = <1>;
118 #size-cells = <0>;
119 interrupts = <56>;
120 };
121
122 i2c2: i2c@48072000 {
123 compatible = "ti,omap2-i2c";
124 ti,hwmods = "i2c2";
125 reg = <0x48072000 0x80>;
126 #address-cells = <1>;
127 #size-cells = <0>;
128 interrupts = <57>;
129 };
130
131 mcspi1: spi@48098000 {
132 compatible = "ti,omap2-mcspi";
133 ti,hwmods = "mcspi1";
134 reg = <0x48098000 0x100>;
135 interrupts = <65>;
136 dmas = <&sdma 35 &sdma 36 &sdma 37 &sdma 38
137 &sdma 39 &sdma 40 &sdma 41 &sdma 42>;
138 dma-names = "tx0", "rx0", "tx1", "rx1",
139 "tx2", "rx2", "tx3", "rx3";
140 };
141
142 mcspi2: spi@4809a000 {
143 compatible = "ti,omap2-mcspi";
144 ti,hwmods = "mcspi2";
145 reg = <0x4809a000 0x100>;
146 interrupts = <66>;
147 dmas = <&sdma 43 &sdma 44 &sdma 45 &sdma 46>;
148 dma-names = "tx0", "rx0", "tx1", "rx1";
149 };
150
151 rng: rng@480a0000 {
152 compatible = "ti,omap2-rng";
153 ti,hwmods = "rng";
154 reg = <0x480a0000 0x50>;
155 interrupts = <52>;
156 };
157
158 sham: sham@480a4000 {
159 compatible = "ti,omap2-sham";
160 ti,hwmods = "sham";
161 reg = <0x480a4000 0x64>;
162 interrupts = <51>;
163 dmas = <&sdma 13>;
164 dma-names = "rx";
165 };
166
167 uart1: serial@4806a000 {
168 compatible = "ti,omap2-uart";
169 ti,hwmods = "uart1";
170 reg = <0x4806a000 0x2000>;
171 interrupts = <72>;
172 dmas = <&sdma 49 &sdma 50>;
173 dma-names = "tx", "rx";
174 clock-frequency = <48000000>;
175 };
176
177 uart2: serial@4806c000 {
178 compatible = "ti,omap2-uart";
179 ti,hwmods = "uart2";
180 reg = <0x4806c000 0x400>;
181 interrupts = <73>;
182 dmas = <&sdma 51 &sdma 52>;
183 dma-names = "tx", "rx";
184 clock-frequency = <48000000>;
185 };
186
187 uart3: serial@4806e000 {
188 compatible = "ti,omap2-uart";
189 ti,hwmods = "uart3";
190 reg = <0x4806e000 0x400>;
191 interrupts = <74>;
192 dmas = <&sdma 53 &sdma 54>;
193 dma-names = "tx", "rx";
194 clock-frequency = <48000000>;
195 };
196
197 timer2_target: target-module@4802a000 {
198 compatible = "ti,sysc-omap2-timer", "ti,sysc";
199 reg = <0x4802a000 0x4>,
200 <0x4802a010 0x4>,
201 <0x4802a014 0x4>;
202 reg-names = "rev", "sysc", "syss";
203 ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
204 SYSC_OMAP2_EMUFREE |
205 SYSC_OMAP2_ENAWAKEUP |
206 SYSC_OMAP2_SOFTRESET |
207 SYSC_OMAP2_AUTOIDLE)>;
208 ti,sysc-sidle = <SYSC_IDLE_FORCE>,
209 <SYSC_IDLE_NO>,
210 <SYSC_IDLE_SMART>;
211 ti,syss-mask = <1>;
212 clocks = <&gpt2_fck>, <&gpt2_ick>;
213 clock-names = "fck", "ick";
214 #address-cells = <1>;
215 #size-cells = <1>;
216 ranges = <0x0 0x4802a000 0x1000>;
217
218 timer2: timer@0 {
219 compatible = "ti,omap2420-timer";
220 reg = <0 0x400>;
221 interrupts = <38>;
222 };
223 };
224
225 timer3: timer@48078000 {
226 compatible = "ti,omap2420-timer";
227 reg = <0x48078000 0x400>;
228 interrupts = <39>;
229 ti,hwmods = "timer3";
230 };
231
232 timer4: timer@4807a000 {
233 compatible = "ti,omap2420-timer";
234 reg = <0x4807a000 0x400>;
235 interrupts = <40>;
236 ti,hwmods = "timer4";
237 };
238
239 timer5: timer@4807c000 {
240 compatible = "ti,omap2420-timer";
241 reg = <0x4807c000 0x400>;
242 interrupts = <41>;
243 ti,hwmods = "timer5";
244 ti,timer-dsp;
245 };
246
247 timer6: timer@4807e000 {
248 compatible = "ti,omap2420-timer";
249 reg = <0x4807e000 0x400>;
250 interrupts = <42>;
251 ti,hwmods = "timer6";
252 ti,timer-dsp;
253 };
254
255 timer7: timer@48080000 {
256 compatible = "ti,omap2420-timer";
257 reg = <0x48080000 0x400>;
258 interrupts = <43>;
259 ti,hwmods = "timer7";
260 ti,timer-dsp;
261 };
262
263 timer8: timer@48082000 {
264 compatible = "ti,omap2420-timer";
265 reg = <0x48082000 0x400>;
266 interrupts = <44>;
267 ti,hwmods = "timer8";
268 ti,timer-dsp;
269 };
270
271 timer9: timer@48084000 {
272 compatible = "ti,omap2420-timer";
273 reg = <0x48084000 0x400>;
274 interrupts = <45>;
275 ti,hwmods = "timer9";
276 ti,timer-pwm;
277 };
278
279 timer10: timer@48086000 {
280 compatible = "ti,omap2420-timer";
281 reg = <0x48086000 0x400>;
282 interrupts = <46>;
283 ti,hwmods = "timer10";
284 ti,timer-pwm;
285 };
286
287 timer11: timer@48088000 {
288 compatible = "ti,omap2420-timer";
289 reg = <0x48088000 0x400>;
290 interrupts = <47>;
291 ti,hwmods = "timer11";
292 ti,timer-pwm;
293 };
294
295 timer12: timer@4808a000 {
296 compatible = "ti,omap2420-timer";
297 reg = <0x4808a000 0x400>;
298 interrupts = <48>;
299 ti,hwmods = "timer12";
300 ti,timer-pwm;
301 };
302
303 dss: dss@48050000 {
304 compatible = "ti,omap2-dss";
305 reg = <0x48050000 0x400>;
306 status = "disabled";
307 ti,hwmods = "dss_core";
308 #address-cells = <1>;
309 #size-cells = <1>;
310 ranges;
311
312 dispc@48050400 {
313 compatible = "ti,omap2-dispc";
314 reg = <0x48050400 0x400>;
315 interrupts = <25>;
316 ti,hwmods = "dss_dispc";
317 };
318
319 rfbi: encoder@48050800 {
320 compatible = "ti,omap2-rfbi";
321 reg = <0x48050800 0x400>;
322 status = "disabled";
323 ti,hwmods = "dss_rfbi";
324 };
325
326 venc: encoder@48050c00 {
327 compatible = "ti,omap2-venc";
328 reg = <0x48050c00 0x400>;
329 status = "disabled";
330 ti,hwmods = "dss_venc";
331 };
332 };
333 };
334};
1/*
2 * Device Tree Source for OMAP2 SoC
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.
9 */
10
11#include <dt-bindings/bus/ti-sysc.h>
12#include <dt-bindings/gpio/gpio.h>
13#include <dt-bindings/interrupt-controller/irq.h>
14#include <dt-bindings/pinctrl/omap.h>
15
16/ {
17 compatible = "ti,omap2430", "ti,omap2420", "ti,omap2";
18 interrupt-parent = <&intc>;
19 #address-cells = <1>;
20 #size-cells = <1>;
21 chosen { };
22
23 aliases {
24 serial0 = &uart1;
25 serial1 = &uart2;
26 serial2 = &uart3;
27 i2c0 = &i2c1;
28 i2c1 = &i2c2;
29 };
30
31 cpus {
32 #address-cells = <0>;
33 #size-cells = <0>;
34
35 cpu {
36 compatible = "arm,arm1136jf-s";
37 device_type = "cpu";
38 };
39 };
40
41 pmu {
42 compatible = "arm,arm1136-pmu";
43 interrupts = <3>;
44 };
45
46 soc {
47 compatible = "ti,omap-infra";
48 mpu {
49 compatible = "ti,omap2-mpu";
50 ti,hwmods = "mpu";
51 };
52 };
53
54 ocp {
55 compatible = "simple-bus";
56 #address-cells = <1>;
57 #size-cells = <1>;
58 ranges;
59 ti,hwmods = "l3_main";
60
61 aes: aes@480a6000 {
62 compatible = "ti,omap2-aes";
63 ti,hwmods = "aes";
64 reg = <0x480a6000 0x50>;
65 dmas = <&sdma 9 &sdma 10>;
66 dma-names = "tx", "rx";
67 };
68
69 hdq1w: 1w@480b2000 {
70 compatible = "ti,omap2420-1w";
71 ti,hwmods = "hdq1w";
72 reg = <0x480b2000 0x1000>;
73 interrupts = <58>;
74 };
75
76 intc: interrupt-controller@1 {
77 compatible = "ti,omap2-intc";
78 interrupt-controller;
79 #interrupt-cells = <1>;
80 reg = <0x480FE000 0x1000>;
81 };
82
83 target-module@48056000 {
84 compatible = "ti,sysc-omap2", "ti,sysc";
85 reg = <0x48056000 0x4>,
86 <0x4805602c 0x4>,
87 <0x48056028 0x4>;
88 reg-names = "rev", "sysc", "syss";
89 ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
90 SYSC_OMAP2_EMUFREE |
91 SYSC_OMAP2_SOFTRESET |
92 SYSC_OMAP2_AUTOIDLE)>;
93 ti,sysc-midle = <SYSC_IDLE_FORCE>,
94 <SYSC_IDLE_NO>,
95 <SYSC_IDLE_SMART>;
96 ti,syss-mask = <1>;
97 clocks = <&core_l3_ck>;
98 clock-names = "fck";
99 #address-cells = <1>;
100 #size-cells = <1>;
101 ranges = <0 0x48056000 0x1000>;
102
103 sdma: dma-controller@0 {
104 compatible = "ti,omap2420-sdma", "ti,omap-sdma";
105 reg = <0 0x1000>;
106 interrupts = <12>,
107 <13>,
108 <14>,
109 <15>;
110 #dma-cells = <1>;
111 dma-channels = <32>;
112 dma-requests = <64>;
113 };
114 };
115
116 i2c1: i2c@48070000 {
117 compatible = "ti,omap2-i2c";
118 ti,hwmods = "i2c1";
119 reg = <0x48070000 0x80>;
120 #address-cells = <1>;
121 #size-cells = <0>;
122 interrupts = <56>;
123 };
124
125 i2c2: i2c@48072000 {
126 compatible = "ti,omap2-i2c";
127 ti,hwmods = "i2c2";
128 reg = <0x48072000 0x80>;
129 #address-cells = <1>;
130 #size-cells = <0>;
131 interrupts = <57>;
132 };
133
134 mcspi1: spi@48098000 {
135 compatible = "ti,omap2-mcspi";
136 ti,hwmods = "mcspi1";
137 reg = <0x48098000 0x100>;
138 interrupts = <65>;
139 dmas = <&sdma 35 &sdma 36 &sdma 37 &sdma 38
140 &sdma 39 &sdma 40 &sdma 41 &sdma 42>;
141 dma-names = "tx0", "rx0", "tx1", "rx1",
142 "tx2", "rx2", "tx3", "rx3";
143 };
144
145 mcspi2: spi@4809a000 {
146 compatible = "ti,omap2-mcspi";
147 ti,hwmods = "mcspi2";
148 reg = <0x4809a000 0x100>;
149 interrupts = <66>;
150 dmas = <&sdma 43 &sdma 44 &sdma 45 &sdma 46>;
151 dma-names = "tx0", "rx0", "tx1", "rx1";
152 };
153
154 rng: rng@480a0000 {
155 compatible = "ti,omap2-rng";
156 ti,hwmods = "rng";
157 reg = <0x480a0000 0x50>;
158 interrupts = <52>;
159 };
160
161 sham: sham@480a4000 {
162 compatible = "ti,omap2-sham";
163 ti,hwmods = "sham";
164 reg = <0x480a4000 0x64>;
165 interrupts = <51>;
166 dmas = <&sdma 13>;
167 dma-names = "rx";
168 };
169
170 uart1: serial@4806a000 {
171 compatible = "ti,omap2-uart";
172 ti,hwmods = "uart1";
173 reg = <0x4806a000 0x2000>;
174 interrupts = <72>;
175 dmas = <&sdma 49 &sdma 50>;
176 dma-names = "tx", "rx";
177 clock-frequency = <48000000>;
178 };
179
180 uart2: serial@4806c000 {
181 compatible = "ti,omap2-uart";
182 ti,hwmods = "uart2";
183 reg = <0x4806c000 0x400>;
184 interrupts = <73>;
185 dmas = <&sdma 51 &sdma 52>;
186 dma-names = "tx", "rx";
187 clock-frequency = <48000000>;
188 };
189
190 uart3: serial@4806e000 {
191 compatible = "ti,omap2-uart";
192 ti,hwmods = "uart3";
193 reg = <0x4806e000 0x400>;
194 interrupts = <74>;
195 dmas = <&sdma 53 &sdma 54>;
196 dma-names = "tx", "rx";
197 clock-frequency = <48000000>;
198 };
199
200 timer2_target: target-module@4802a000 {
201 compatible = "ti,sysc-omap2-timer", "ti,sysc";
202 reg = <0x4802a000 0x4>,
203 <0x4802a010 0x4>,
204 <0x4802a014 0x4>;
205 reg-names = "rev", "sysc", "syss";
206 ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
207 SYSC_OMAP2_EMUFREE |
208 SYSC_OMAP2_ENAWAKEUP |
209 SYSC_OMAP2_SOFTRESET |
210 SYSC_OMAP2_AUTOIDLE)>;
211 ti,sysc-sidle = <SYSC_IDLE_FORCE>,
212 <SYSC_IDLE_NO>,
213 <SYSC_IDLE_SMART>;
214 ti,syss-mask = <1>;
215 clocks = <&gpt2_fck>, <&gpt2_ick>;
216 clock-names = "fck", "ick";
217 #address-cells = <1>;
218 #size-cells = <1>;
219 ranges = <0x0 0x4802a000 0x1000>;
220
221 timer2: timer@0 {
222 compatible = "ti,omap2420-timer";
223 reg = <0 0x400>;
224 interrupts = <38>;
225 };
226 };
227
228 timer3: timer@48078000 {
229 compatible = "ti,omap2420-timer";
230 reg = <0x48078000 0x400>;
231 interrupts = <39>;
232 ti,hwmods = "timer3";
233 };
234
235 timer4: timer@4807a000 {
236 compatible = "ti,omap2420-timer";
237 reg = <0x4807a000 0x400>;
238 interrupts = <40>;
239 ti,hwmods = "timer4";
240 };
241
242 timer5: timer@4807c000 {
243 compatible = "ti,omap2420-timer";
244 reg = <0x4807c000 0x400>;
245 interrupts = <41>;
246 ti,hwmods = "timer5";
247 ti,timer-dsp;
248 };
249
250 timer6: timer@4807e000 {
251 compatible = "ti,omap2420-timer";
252 reg = <0x4807e000 0x400>;
253 interrupts = <42>;
254 ti,hwmods = "timer6";
255 ti,timer-dsp;
256 };
257
258 timer7: timer@48080000 {
259 compatible = "ti,omap2420-timer";
260 reg = <0x48080000 0x400>;
261 interrupts = <43>;
262 ti,hwmods = "timer7";
263 ti,timer-dsp;
264 };
265
266 timer8: timer@48082000 {
267 compatible = "ti,omap2420-timer";
268 reg = <0x48082000 0x400>;
269 interrupts = <44>;
270 ti,hwmods = "timer8";
271 ti,timer-dsp;
272 };
273
274 timer9: timer@48084000 {
275 compatible = "ti,omap2420-timer";
276 reg = <0x48084000 0x400>;
277 interrupts = <45>;
278 ti,hwmods = "timer9";
279 ti,timer-pwm;
280 };
281
282 timer10: timer@48086000 {
283 compatible = "ti,omap2420-timer";
284 reg = <0x48086000 0x400>;
285 interrupts = <46>;
286 ti,hwmods = "timer10";
287 ti,timer-pwm;
288 };
289
290 timer11: timer@48088000 {
291 compatible = "ti,omap2420-timer";
292 reg = <0x48088000 0x400>;
293 interrupts = <47>;
294 ti,hwmods = "timer11";
295 ti,timer-pwm;
296 };
297
298 timer12: timer@4808a000 {
299 compatible = "ti,omap2420-timer";
300 reg = <0x4808a000 0x400>;
301 interrupts = <48>;
302 ti,hwmods = "timer12";
303 ti,timer-pwm;
304 };
305
306 dss: dss@48050000 {
307 compatible = "ti,omap2-dss";
308 reg = <0x48050000 0x400>;
309 status = "disabled";
310 ti,hwmods = "dss_core";
311 #address-cells = <1>;
312 #size-cells = <1>;
313 ranges;
314
315 dispc@48050400 {
316 compatible = "ti,omap2-dispc";
317 reg = <0x48050400 0x400>;
318 interrupts = <25>;
319 ti,hwmods = "dss_dispc";
320 };
321
322 rfbi: encoder@48050800 {
323 compatible = "ti,omap2-rfbi";
324 reg = <0x48050800 0x400>;
325 status = "disabled";
326 ti,hwmods = "dss_rfbi";
327 };
328
329 venc: encoder@48050c00 {
330 compatible = "ti,omap2-venc";
331 reg = <0x48050c00 0x400>;
332 status = "disabled";
333 ti,hwmods = "dss_venc";
334 };
335 };
336 };
337};