blob: 148371b432a0e63a6ea648a184f29944ea5eb3a9 [file] [log] [blame]
Peter De Schrijverc3e00a02011-12-14 17:03:13 +02001/include/ "skeleton.dtsi"
2
3/ {
4 compatible = "nvidia,tegra30";
5 interrupt-parent = <&intc>;
6
Joseph Lo5ab134a2012-10-29 18:25:45 +08007 cache-controller@50043000 {
8 compatible = "arm,pl310-cache";
9 reg = <0x50043000 0x1000>;
10 arm,data-latency = <6 6 2>;
11 arm,tag-latency = <5 5 2>;
12 cache-unified;
13 cache-level = <2>;
14 };
15
Stephen Warrenf9eb26a2012-05-11 16:17:47 -060016 intc: interrupt-controller {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +020017 compatible = "arm,cortex-a9-gic";
Stephen Warren5ff48882012-05-11 16:26:03 -060018 reg = <0x50041000 0x1000
19 0x50040100 0x0100>;
Stephen Warren2eaab062012-05-11 17:12:52 -060020 interrupt-controller;
21 #interrupt-cells = <3>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +020022 };
23
Stephen Warrenf9eb26a2012-05-11 16:17:47 -060024 apbdma: dma {
Stephen Warren8051b752012-01-11 16:09:54 -070025 compatible = "nvidia,tegra30-apbdma", "nvidia,tegra20-apbdma";
26 reg = <0x6000a000 0x1400>;
Stephen Warren95decf82012-05-11 16:11:38 -060027 interrupts = <0 104 0x04
28 0 105 0x04
29 0 106 0x04
30 0 107 0x04
31 0 108 0x04
32 0 109 0x04
33 0 110 0x04
34 0 111 0x04
35 0 112 0x04
36 0 113 0x04
37 0 114 0x04
38 0 115 0x04
39 0 116 0x04
40 0 117 0x04
41 0 118 0x04
42 0 119 0x04
43 0 128 0x04
44 0 129 0x04
45 0 130 0x04
46 0 131 0x04
47 0 132 0x04
48 0 133 0x04
49 0 134 0x04
50 0 135 0x04
51 0 136 0x04
52 0 137 0x04
53 0 138 0x04
54 0 139 0x04
55 0 140 0x04
56 0 141 0x04
57 0 142 0x04
58 0 143 0x04>;
Stephen Warren8051b752012-01-11 16:09:54 -070059 };
60
Stephen Warrenc04abb32012-05-11 17:03:26 -060061 ahb: ahb {
62 compatible = "nvidia,tegra30-ahb";
63 reg = <0x6000c004 0x14c>; /* AHB Arbitration + Gizmo Controller */
64 };
65
66 gpio: gpio {
67 compatible = "nvidia,tegra30-gpio", "nvidia,tegra20-gpio";
68 reg = <0x6000d000 0x1000>;
69 interrupts = <0 32 0x04
70 0 33 0x04
71 0 34 0x04
72 0 35 0x04
73 0 55 0x04
74 0 87 0x04
75 0 89 0x04
76 0 125 0x04>;
77 #gpio-cells = <2>;
78 gpio-controller;
79 #interrupt-cells = <2>;
80 interrupt-controller;
81 };
82
83 pinmux: pinmux {
84 compatible = "nvidia,tegra30-pinmux";
85 reg = <0x70000868 0xd0 /* Pad control registers */
86 0x70003000 0x3e0>; /* Mux registers */
87 };
88
89 serial@70006000 {
90 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
91 reg = <0x70006000 0x40>;
92 reg-shift = <2>;
93 interrupts = <0 36 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +020094 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -060095 };
96
97 serial@70006040 {
98 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
99 reg = <0x70006040 0x40>;
100 reg-shift = <2>;
101 interrupts = <0 37 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200102 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600103 };
104
105 serial@70006200 {
106 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
107 reg = <0x70006200 0x100>;
108 reg-shift = <2>;
109 interrupts = <0 46 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200110 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600111 };
112
113 serial@70006300 {
114 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
115 reg = <0x70006300 0x100>;
116 reg-shift = <2>;
117 interrupts = <0 90 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200118 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600119 };
120
121 serial@70006400 {
122 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
123 reg = <0x70006400 0x100>;
124 reg-shift = <2>;
125 interrupts = <0 91 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200126 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600127 };
128
Thierry Reding2b8b15d2012-09-20 17:06:05 +0200129 pwm: pwm {
Thierry Reding140fd972011-12-21 08:04:13 +0100130 compatible = "nvidia,tegra30-pwm", "nvidia,tegra20-pwm";
131 reg = <0x7000a000 0x100>;
132 #pwm-cells = <2>;
133 };
134
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200135 i2c@7000c000 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200136 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600137 reg = <0x7000c000 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600138 interrupts = <0 38 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600139 #address-cells = <1>;
140 #size-cells = <0>;
Roland Stigge223ef782012-06-11 21:09:45 +0200141 status = "disabled";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200142 };
143
144 i2c@7000c400 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200145 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600146 reg = <0x7000c400 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600147 interrupts = <0 84 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600148 #address-cells = <1>;
149 #size-cells = <0>;
Roland Stigge223ef782012-06-11 21:09:45 +0200150 status = "disabled";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200151 };
152
153 i2c@7000c500 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200154 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600155 reg = <0x7000c500 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600156 interrupts = <0 92 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600157 #address-cells = <1>;
158 #size-cells = <0>;
Roland Stigge223ef782012-06-11 21:09:45 +0200159 status = "disabled";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200160 };
161
162 i2c@7000c700 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200163 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
164 reg = <0x7000c700 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600165 interrupts = <0 120 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600166 #address-cells = <1>;
167 #size-cells = <0>;
Roland Stigge223ef782012-06-11 21:09:45 +0200168 status = "disabled";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200169 };
170
171 i2c@7000d000 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200172 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600173 reg = <0x7000d000 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600174 interrupts = <0 53 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600175 #address-cells = <1>;
176 #size-cells = <0>;
Roland Stigge223ef782012-06-11 21:09:45 +0200177 status = "disabled";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200178 };
179
Stephen Warrenc04abb32012-05-11 17:03:26 -0600180 pmc {
181 compatible = "nvidia,tegra20-pmc", "nvidia,tegra30-pmc";
182 reg = <0x7000e400 0x400>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200183 };
184
hdoyu@nvidia.coma9140aa2012-05-16 19:47:44 +0000185 memory-controller {
Stephen Warrenc04abb32012-05-11 17:03:26 -0600186 compatible = "nvidia,tegra30-mc";
187 reg = <0x7000f000 0x010
188 0x7000f03c 0x1b4
189 0x7000f200 0x028
190 0x7000f284 0x17c>;
191 interrupts = <0 77 0x04>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200192 };
193
Stephen Warrenc04abb32012-05-11 17:03:26 -0600194 smmu {
195 compatible = "nvidia,tegra30-smmu";
196 reg = <0x7000f010 0x02c
197 0x7000f1f0 0x010
198 0x7000f228 0x05c>;
199 nvidia,#asids = <4>; /* # of ASIDs */
200 dma-window = <0 0x40000000>; /* IOVA start & length */
201 nvidia,ahb = <&ahb>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200202 };
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600203
204 ahub {
205 compatible = "nvidia,tegra30-ahub";
Stephen Warren5ff48882012-05-11 16:26:03 -0600206 reg = <0x70080000 0x200
207 0x70080200 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600208 interrupts = <0 103 0x04>;
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600209 nvidia,dma-request-selector = <&apbdma 1>;
210
211 ranges;
212 #address-cells = <1>;
213 #size-cells = <1>;
214
215 tegra_i2s0: i2s@70080300 {
216 compatible = "nvidia,tegra30-i2s";
217 reg = <0x70080300 0x100>;
218 nvidia,ahub-cif-ids = <4 4>;
Roland Stigge223ef782012-06-11 21:09:45 +0200219 status = "disabled";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600220 };
221
222 tegra_i2s1: i2s@70080400 {
223 compatible = "nvidia,tegra30-i2s";
224 reg = <0x70080400 0x100>;
225 nvidia,ahub-cif-ids = <5 5>;
Roland Stigge223ef782012-06-11 21:09:45 +0200226 status = "disabled";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600227 };
228
229 tegra_i2s2: i2s@70080500 {
230 compatible = "nvidia,tegra30-i2s";
231 reg = <0x70080500 0x100>;
232 nvidia,ahub-cif-ids = <6 6>;
Roland Stigge223ef782012-06-11 21:09:45 +0200233 status = "disabled";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600234 };
235
236 tegra_i2s3: i2s@70080600 {
237 compatible = "nvidia,tegra30-i2s";
238 reg = <0x70080600 0x100>;
239 nvidia,ahub-cif-ids = <7 7>;
Roland Stigge223ef782012-06-11 21:09:45 +0200240 status = "disabled";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600241 };
242
243 tegra_i2s4: i2s@70080700 {
244 compatible = "nvidia,tegra30-i2s";
245 reg = <0x70080700 0x100>;
246 nvidia,ahub-cif-ids = <8 8>;
Roland Stigge223ef782012-06-11 21:09:45 +0200247 status = "disabled";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600248 };
249 };
Hiroshi DOYU7868a9b2012-05-07 09:43:47 +0300250
Stephen Warrenc04abb32012-05-11 17:03:26 -0600251 sdhci@78000000 {
252 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
253 reg = <0x78000000 0x200>;
254 interrupts = <0 14 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200255 status = "disabled";
Hiroshi DOYU7868a9b2012-05-07 09:43:47 +0300256 };
hdoyu@nvidia.comecf43742012-05-09 21:42:33 +0000257
Stephen Warrenc04abb32012-05-11 17:03:26 -0600258 sdhci@78000200 {
259 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
260 reg = <0x78000200 0x200>;
261 interrupts = <0 15 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200262 status = "disabled";
hdoyu@nvidia.comecf43742012-05-09 21:42:33 +0000263 };
hdoyu@nvidia.com54174a32012-05-09 21:50:21 +0000264
Stephen Warrenc04abb32012-05-11 17:03:26 -0600265 sdhci@78000400 {
266 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
267 reg = <0x78000400 0x200>;
268 interrupts = <0 19 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200269 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600270 };
271
272 sdhci@78000600 {
273 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
274 reg = <0x78000600 0x200>;
275 interrupts = <0 31 0x04>;
Roland Stigge223ef782012-06-11 21:09:45 +0200276 status = "disabled";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600277 };
278
279 pmu {
280 compatible = "arm,cortex-a9-pmu";
281 interrupts = <0 144 0x04
282 0 145 0x04
283 0 146 0x04
284 0 147 0x04>;
hdoyu@nvidia.com54174a32012-05-09 21:50:21 +0000285 };
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200286};