blob: 19479393842ef438422c0f0b552795f58a08e36f [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
Stephen Warrenf9eb26a2012-05-11 16:17:47 -06007 intc: interrupt-controller {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +02008 compatible = "arm,cortex-a9-gic";
Stephen Warren5ff48882012-05-11 16:26:03 -06009 reg = <0x50041000 0x1000
10 0x50040100 0x0100>;
Stephen Warren2eaab062012-05-11 17:12:52 -060011 interrupt-controller;
12 #interrupt-cells = <3>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +020013 };
14
Stephen Warrenf9eb26a2012-05-11 16:17:47 -060015 apbdma: dma {
Stephen Warren8051b752012-01-11 16:09:54 -070016 compatible = "nvidia,tegra30-apbdma", "nvidia,tegra20-apbdma";
17 reg = <0x6000a000 0x1400>;
Stephen Warren95decf82012-05-11 16:11:38 -060018 interrupts = <0 104 0x04
19 0 105 0x04
20 0 106 0x04
21 0 107 0x04
22 0 108 0x04
23 0 109 0x04
24 0 110 0x04
25 0 111 0x04
26 0 112 0x04
27 0 113 0x04
28 0 114 0x04
29 0 115 0x04
30 0 116 0x04
31 0 117 0x04
32 0 118 0x04
33 0 119 0x04
34 0 128 0x04
35 0 129 0x04
36 0 130 0x04
37 0 131 0x04
38 0 132 0x04
39 0 133 0x04
40 0 134 0x04
41 0 135 0x04
42 0 136 0x04
43 0 137 0x04
44 0 138 0x04
45 0 139 0x04
46 0 140 0x04
47 0 141 0x04
48 0 142 0x04
49 0 143 0x04>;
Stephen Warren8051b752012-01-11 16:09:54 -070050 };
51
Stephen Warrenc04abb32012-05-11 17:03:26 -060052 ahb: ahb {
53 compatible = "nvidia,tegra30-ahb";
54 reg = <0x6000c004 0x14c>; /* AHB Arbitration + Gizmo Controller */
55 };
56
57 gpio: gpio {
58 compatible = "nvidia,tegra30-gpio", "nvidia,tegra20-gpio";
59 reg = <0x6000d000 0x1000>;
60 interrupts = <0 32 0x04
61 0 33 0x04
62 0 34 0x04
63 0 35 0x04
64 0 55 0x04
65 0 87 0x04
66 0 89 0x04
67 0 125 0x04>;
68 #gpio-cells = <2>;
69 gpio-controller;
70 #interrupt-cells = <2>;
71 interrupt-controller;
72 };
73
74 pinmux: pinmux {
75 compatible = "nvidia,tegra30-pinmux";
76 reg = <0x70000868 0xd0 /* Pad control registers */
77 0x70003000 0x3e0>; /* Mux registers */
78 };
79
80 serial@70006000 {
81 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
82 reg = <0x70006000 0x40>;
83 reg-shift = <2>;
84 interrupts = <0 36 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -060085 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -060086 };
87
88 serial@70006040 {
89 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
90 reg = <0x70006040 0x40>;
91 reg-shift = <2>;
92 interrupts = <0 37 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -060093 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -060094 };
95
96 serial@70006200 {
97 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
98 reg = <0x70006200 0x100>;
99 reg-shift = <2>;
100 interrupts = <0 46 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600101 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600102 };
103
104 serial@70006300 {
105 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
106 reg = <0x70006300 0x100>;
107 reg-shift = <2>;
108 interrupts = <0 90 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600109 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600110 };
111
112 serial@70006400 {
113 compatible = "nvidia,tegra30-uart", "nvidia,tegra20-uart";
114 reg = <0x70006400 0x100>;
115 reg-shift = <2>;
116 interrupts = <0 91 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600117 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600118 };
119
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200120 i2c@7000c000 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200121 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600122 reg = <0x7000c000 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600123 interrupts = <0 38 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600124 #address-cells = <1>;
125 #size-cells = <0>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600126 status = "disable";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200127 };
128
129 i2c@7000c400 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200130 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600131 reg = <0x7000c400 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600132 interrupts = <0 84 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600133 #address-cells = <1>;
134 #size-cells = <0>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600135 status = "disable";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200136 };
137
138 i2c@7000c500 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200139 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600140 reg = <0x7000c500 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600141 interrupts = <0 92 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600142 #address-cells = <1>;
143 #size-cells = <0>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600144 status = "disable";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200145 };
146
147 i2c@7000c700 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200148 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
149 reg = <0x7000c700 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600150 interrupts = <0 120 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600151 #address-cells = <1>;
152 #size-cells = <0>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600153 status = "disable";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200154 };
155
156 i2c@7000d000 {
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200157 compatible = "nvidia,tegra30-i2c", "nvidia,tegra20-i2c";
Stephen Warrenba04c282012-05-11 16:28:59 -0600158 reg = <0x7000d000 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600159 interrupts = <0 53 0x04>;
Stephen Warren2eaab062012-05-11 17:12:52 -0600160 #address-cells = <1>;
161 #size-cells = <0>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600162 status = "disable";
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200163 };
164
Stephen Warrenc04abb32012-05-11 17:03:26 -0600165 pmc {
166 compatible = "nvidia,tegra20-pmc", "nvidia,tegra30-pmc";
167 reg = <0x7000e400 0x400>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200168 };
169
hdoyu@nvidia.coma9140aa2012-05-16 19:47:44 +0000170 memory-controller {
Stephen Warrenc04abb32012-05-11 17:03:26 -0600171 compatible = "nvidia,tegra30-mc";
172 reg = <0x7000f000 0x010
173 0x7000f03c 0x1b4
174 0x7000f200 0x028
175 0x7000f284 0x17c>;
176 interrupts = <0 77 0x04>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200177 };
178
Stephen Warrenc04abb32012-05-11 17:03:26 -0600179 smmu {
180 compatible = "nvidia,tegra30-smmu";
181 reg = <0x7000f010 0x02c
182 0x7000f1f0 0x010
183 0x7000f228 0x05c>;
184 nvidia,#asids = <4>; /* # of ASIDs */
185 dma-window = <0 0x40000000>; /* IOVA start & length */
186 nvidia,ahb = <&ahb>;
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200187 };
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600188
189 ahub {
190 compatible = "nvidia,tegra30-ahub";
Stephen Warren5ff48882012-05-11 16:26:03 -0600191 reg = <0x70080000 0x200
192 0x70080200 0x100>;
Stephen Warren95decf82012-05-11 16:11:38 -0600193 interrupts = <0 103 0x04>;
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600194 nvidia,dma-request-selector = <&apbdma 1>;
195
196 ranges;
197 #address-cells = <1>;
198 #size-cells = <1>;
199
200 tegra_i2s0: i2s@70080300 {
201 compatible = "nvidia,tegra30-i2s";
202 reg = <0x70080300 0x100>;
203 nvidia,ahub-cif-ids = <4 4>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600204 status = "disable";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600205 };
206
207 tegra_i2s1: i2s@70080400 {
208 compatible = "nvidia,tegra30-i2s";
209 reg = <0x70080400 0x100>;
210 nvidia,ahub-cif-ids = <5 5>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600211 status = "disable";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600212 };
213
214 tegra_i2s2: i2s@70080500 {
215 compatible = "nvidia,tegra30-i2s";
216 reg = <0x70080500 0x100>;
217 nvidia,ahub-cif-ids = <6 6>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600218 status = "disable";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600219 };
220
221 tegra_i2s3: i2s@70080600 {
222 compatible = "nvidia,tegra30-i2s";
223 reg = <0x70080600 0x100>;
224 nvidia,ahub-cif-ids = <7 7>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600225 status = "disable";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600226 };
227
228 tegra_i2s4: i2s@70080700 {
229 compatible = "nvidia,tegra30-i2s";
230 reg = <0x70080700 0x100>;
231 nvidia,ahub-cif-ids = <8 8>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600232 status = "disable";
Stephen Warren9ee6a5c2012-03-27 12:40:53 -0600233 };
234 };
Hiroshi DOYU7868a9b2012-05-07 09:43:47 +0300235
Stephen Warrenc04abb32012-05-11 17:03:26 -0600236 sdhci@78000000 {
237 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
238 reg = <0x78000000 0x200>;
239 interrupts = <0 14 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600240 status = "disable";
Hiroshi DOYU7868a9b2012-05-07 09:43:47 +0300241 };
hdoyu@nvidia.comecf43742012-05-09 21:42:33 +0000242
Stephen Warrenc04abb32012-05-11 17:03:26 -0600243 sdhci@78000200 {
244 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
245 reg = <0x78000200 0x200>;
246 interrupts = <0 15 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600247 status = "disable";
hdoyu@nvidia.comecf43742012-05-09 21:42:33 +0000248 };
hdoyu@nvidia.com54174a32012-05-09 21:50:21 +0000249
Stephen Warrenc04abb32012-05-11 17:03:26 -0600250 sdhci@78000400 {
251 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
252 reg = <0x78000400 0x200>;
253 interrupts = <0 19 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600254 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600255 };
256
257 sdhci@78000600 {
258 compatible = "nvidia,tegra30-sdhci", "nvidia,tegra20-sdhci";
259 reg = <0x78000600 0x200>;
260 interrupts = <0 31 0x04>;
Stephen Warren2a5fdc92012-05-11 17:32:56 -0600261 status = "disable";
Stephen Warrenc04abb32012-05-11 17:03:26 -0600262 };
263
264 pmu {
265 compatible = "arm,cortex-a9-pmu";
266 interrupts = <0 144 0x04
267 0 145 0x04
268 0 146 0x04
269 0 147 0x04>;
hdoyu@nvidia.com54174a32012-05-09 21:50:21 +0000270 };
Peter De Schrijverc3e00a02011-12-14 17:03:13 +0200271};