Blame view

arch/arm64/boot/dts/nvidia/tegra186.dtsi 12.7 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
c58f5f884   Thierry Reding   arm64: tegra: Use...
2
  #include <dt-bindings/clock/tegra186-clock.h>
fc4bb754c   Thierry Reding   arm64: tegra: Add...
3
  #include <dt-bindings/gpio/tegra186-gpio.h>
39cb62cb8   Joseph Lo   arm64: tegra: Add...
4
  #include <dt-bindings/interrupt-controller/arm-gic.h>
5edcebb96   Thierry Reding   arm64: tegra: Use...
5
  #include <dt-bindings/mailbox/tegra186-hsp.h>
dfd7a3845   Alexandre Courbot   arm64: tegra: Add...
6
  #include <dt-bindings/power/tegra186-powergate.h>
7bcf26646   Thierry Reding   arm64: tegra: Use...
7
  #include <dt-bindings/reset/tegra186-reset.h>
39cb62cb8   Joseph Lo   arm64: tegra: Add...
8
9
10
11
12
13
  
  / {
  	compatible = "nvidia,tegra186";
  	interrupt-parent = <&gic>;
  	#address-cells = <2>;
  	#size-cells = <2>;
fc4bb754c   Thierry Reding   arm64: tegra: Add...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  	gpio: gpio@2200000 {
  		compatible = "nvidia,tegra186-gpio";
  		reg-names = "security", "gpio";
  		reg = <0x0 0x2200000 0x0 0x10000>,
  		      <0x0 0x2210000 0x0 0x10000>;
  		interrupts = <GIC_SPI  47 IRQ_TYPE_LEVEL_HIGH>,
  			     <GIC_SPI  50 IRQ_TYPE_LEVEL_HIGH>,
  			     <GIC_SPI  53 IRQ_TYPE_LEVEL_HIGH>,
  			     <GIC_SPI  56 IRQ_TYPE_LEVEL_HIGH>,
  			     <GIC_SPI  59 IRQ_TYPE_LEVEL_HIGH>,
  			     <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>;
  		#interrupt-cells = <2>;
  		interrupt-controller;
  		#gpio-cells = <2>;
  		gpio-controller;
  	};
0caafbde0   Thierry Reding   arm64: tegra: Add...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  	ethernet@2490000 {
  		compatible = "nvidia,tegra186-eqos",
  			     "snps,dwc-qos-ethernet-4.10";
  		reg = <0x0 0x02490000 0x0 0x10000>;
  		interrupts = <GIC_SPI 194 IRQ_TYPE_LEVEL_HIGH>, /* common */
  			     <GIC_SPI 195 IRQ_TYPE_LEVEL_HIGH>, /* power */
  			     <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>, /* rx0 */
  			     <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>, /* tx0 */
  			     <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>, /* rx1 */
  			     <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>, /* tx1 */
  			     <GIC_SPI 192 IRQ_TYPE_LEVEL_HIGH>, /* rx2 */
  			     <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>, /* tx2 */
  			     <GIC_SPI 193 IRQ_TYPE_LEVEL_HIGH>, /* rx3 */
  			     <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>; /* tx3 */
  		clocks = <&bpmp TEGRA186_CLK_AXI_CBB>,
  			 <&bpmp TEGRA186_CLK_EQOS_AXI>,
  			 <&bpmp TEGRA186_CLK_EQOS_RX>,
  			 <&bpmp TEGRA186_CLK_EQOS_TX>,
  			 <&bpmp TEGRA186_CLK_EQOS_PTP_REF>;
  		clock-names = "master_bus", "slave_bus", "rx", "tx", "ptp_ref";
  		resets = <&bpmp TEGRA186_RESET_EQOS>;
  		reset-names = "eqos";
  		status = "disabled";
  
  		snps,write-requests = <1>;
  		snps,read-requests = <3>;
  		snps,burst-map = <0x7>;
  		snps,txpbl = <32>;
  		snps,rxpbl = <8>;
  	};
39cb62cb8   Joseph Lo   arm64: tegra: Add...
60
61
62
63
64
  	uarta: serial@3100000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x03100000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
65
  		clocks = <&bpmp TEGRA186_CLK_UARTA>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
66
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
67
  		resets = <&bpmp TEGRA186_RESET_UARTA>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
68
69
70
71
72
73
74
75
76
  		reset-names = "serial";
  		status = "disabled";
  	};
  
  	uartb: serial@3110000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x03110000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
77
  		clocks = <&bpmp TEGRA186_CLK_UARTB>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
78
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
79
  		resets = <&bpmp TEGRA186_RESET_UARTB>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
80
81
82
83
84
85
86
87
88
  		reset-names = "serial";
  		status = "disabled";
  	};
  
  	uartd: serial@3130000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x03130000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
89
  		clocks = <&bpmp TEGRA186_CLK_UARTD>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
90
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
91
  		resets = <&bpmp TEGRA186_RESET_UARTD>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
92
93
94
95
96
97
98
99
100
  		reset-names = "serial";
  		status = "disabled";
  	};
  
  	uarte: serial@3140000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x03140000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
101
  		clocks = <&bpmp TEGRA186_CLK_UARTE>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
102
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
103
  		resets = <&bpmp TEGRA186_RESET_UARTE>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
104
105
106
107
108
109
110
111
112
  		reset-names = "serial";
  		status = "disabled";
  	};
  
  	uartf: serial@3150000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x03150000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
113
  		clocks = <&bpmp TEGRA186_CLK_UARTF>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
114
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
115
  		resets = <&bpmp TEGRA186_RESET_UARTF>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
116
  		reset-names = "serial";
39cb62cb8   Joseph Lo   arm64: tegra: Add...
117
118
  		status = "disabled";
  	};
40cc83b34   Thierry Reding   arm64: tegra: Add...
119
120
121
122
123
124
  	gen1_i2c: i2c@3160000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x03160000 0x0 0x10000>;
  		interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
125
  		clocks = <&bpmp TEGRA186_CLK_I2C1>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
126
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
127
  		resets = <&bpmp TEGRA186_RESET_I2C1>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
128
129
130
131
132
133
134
135
136
137
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	cam_i2c: i2c@3180000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x03180000 0x0 0x10000>;
  		interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
138
  		clocks = <&bpmp TEGRA186_CLK_I2C3>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
139
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
140
  		resets = <&bpmp TEGRA186_RESET_I2C3>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
141
142
143
144
145
146
147
148
149
150
151
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	/* shares pads with dpaux1 */
  	dp_aux_ch1_i2c: i2c@3190000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x03190000 0x0 0x10000>;
  		interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
152
  		clocks = <&bpmp TEGRA186_CLK_I2C4>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
153
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
154
  		resets = <&bpmp TEGRA186_RESET_I2C4>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
155
156
157
158
159
160
161
162
163
164
165
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	/* controlled by BPMP, should not be enabled */
  	pwr_i2c: i2c@31a0000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x031a0000 0x0 0x10000>;
  		interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
166
  		clocks = <&bpmp TEGRA186_CLK_I2C5>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
167
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
168
  		resets = <&bpmp TEGRA186_RESET_I2C5>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
169
170
171
172
173
174
175
176
177
178
179
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	/* shares pads with dpaux0 */
  	dp_aux_ch0_i2c: i2c@31b0000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x031b0000 0x0 0x10000>;
  		interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
180
  		clocks = <&bpmp TEGRA186_CLK_I2C6>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
181
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
182
  		resets = <&bpmp TEGRA186_RESET_I2C6>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
183
184
185
186
187
188
189
190
191
192
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	gen7_i2c: i2c@31c0000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x031c0000 0x0 0x10000>;
  		interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
193
  		clocks = <&bpmp TEGRA186_CLK_I2C7>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
194
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
195
  		resets = <&bpmp TEGRA186_RESET_I2C7>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
196
197
198
199
200
201
202
203
204
205
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	gen9_i2c: i2c@31e0000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x031e0000 0x0 0x10000>;
  		interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
206
  		clocks = <&bpmp TEGRA186_CLK_I2C9>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
207
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
208
  		resets = <&bpmp TEGRA186_RESET_I2C9>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
209
210
211
  		reset-names = "i2c";
  		status = "disabled";
  	};
99425dfd6   Thierry Reding   arm64: tegra: Add...
212
213
214
215
  	sdmmc1: sdhci@3400000 {
  		compatible = "nvidia,tegra186-sdhci";
  		reg = <0x0 0x03400000 0x0 0x10000>;
  		interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
216
  		clocks = <&bpmp TEGRA186_CLK_SDMMC1>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
217
  		clock-names = "sdhci";
7bcf26646   Thierry Reding   arm64: tegra: Use...
218
  		resets = <&bpmp TEGRA186_RESET_SDMMC1>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
219
220
221
222
223
224
225
226
  		reset-names = "sdhci";
  		status = "disabled";
  	};
  
  	sdmmc2: sdhci@3420000 {
  		compatible = "nvidia,tegra186-sdhci";
  		reg = <0x0 0x03420000 0x0 0x10000>;
  		interrupts = <GIC_SPI 63 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
227
  		clocks = <&bpmp TEGRA186_CLK_SDMMC2>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
228
  		clock-names = "sdhci";
7bcf26646   Thierry Reding   arm64: tegra: Use...
229
  		resets = <&bpmp TEGRA186_RESET_SDMMC2>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
230
231
232
233
234
235
236
237
  		reset-names = "sdhci";
  		status = "disabled";
  	};
  
  	sdmmc3: sdhci@3440000 {
  		compatible = "nvidia,tegra186-sdhci";
  		reg = <0x0 0x03440000 0x0 0x10000>;
  		interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
238
  		clocks = <&bpmp TEGRA186_CLK_SDMMC3>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
239
  		clock-names = "sdhci";
7bcf26646   Thierry Reding   arm64: tegra: Use...
240
  		resets = <&bpmp TEGRA186_RESET_SDMMC3>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
241
242
243
244
245
246
247
248
  		reset-names = "sdhci";
  		status = "disabled";
  	};
  
  	sdmmc4: sdhci@3460000 {
  		compatible = "nvidia,tegra186-sdhci";
  		reg = <0x0 0x03460000 0x0 0x10000>;
  		interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
249
  		clocks = <&bpmp TEGRA186_CLK_SDMMC4>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
250
  		clock-names = "sdhci";
7bcf26646   Thierry Reding   arm64: tegra: Use...
251
  		resets = <&bpmp TEGRA186_RESET_SDMMC4>;
99425dfd6   Thierry Reding   arm64: tegra: Add...
252
253
254
  		reset-names = "sdhci";
  		status = "disabled";
  	};
39cb62cb8   Joseph Lo   arm64: tegra: Add...
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
  	gic: interrupt-controller@3881000 {
  		compatible = "arm,gic-400";
  		#interrupt-cells = <3>;
  		interrupt-controller;
  		reg = <0x0 0x03881000 0x0 0x1000>,
  		      <0x0 0x03882000 0x0 0x2000>;
  		interrupts = <GIC_PPI 9
  			(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
  		interrupt-parent = <&gic>;
  	};
  
  	hsp_top0: hsp@3c00000 {
  		compatible = "nvidia,tegra186-hsp";
  		reg = <0x0 0x03c00000 0x0 0xa0000>;
  		interrupts = <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>;
  		interrupt-names = "doorbell";
  		#mbox-cells = <2>;
  		status = "disabled";
  	};
40cc83b34   Thierry Reding   arm64: tegra: Add...
274
275
276
277
278
279
  	gen2_i2c: i2c@c240000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x0c240000 0x0 0x10000>;
  		interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
280
  		clocks = <&bpmp TEGRA186_CLK_I2C2>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
281
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
282
  		resets = <&bpmp TEGRA186_RESET_I2C2>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
283
284
285
286
287
288
289
290
291
292
  		reset-names = "i2c";
  		status = "disabled";
  	};
  
  	gen8_i2c: i2c@c250000 {
  		compatible = "nvidia,tegra186-i2c", "nvidia,tegra114-i2c";
  		reg = <0x0 0x0c250000 0x0 0x10000>;
  		interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
  		#address-cells = <1>;
  		#size-cells = <0>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
293
  		clocks = <&bpmp TEGRA186_CLK_I2C8>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
294
  		clock-names = "div-clk";
7bcf26646   Thierry Reding   arm64: tegra: Use...
295
  		resets = <&bpmp TEGRA186_RESET_I2C8>;
40cc83b34   Thierry Reding   arm64: tegra: Add...
296
297
298
  		reset-names = "i2c";
  		status = "disabled";
  	};
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
299
300
301
302
303
  	uartc: serial@c280000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x0c280000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
304
  		clocks = <&bpmp TEGRA186_CLK_UARTC>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
305
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
306
  		resets = <&bpmp TEGRA186_RESET_UARTC>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
307
308
309
310
311
312
313
314
315
  		reset-names = "serial";
  		status = "disabled";
  	};
  
  	uartg: serial@c290000 {
  		compatible = "nvidia,tegra186-uart", "nvidia,tegra20-uart";
  		reg = <0x0 0x0c290000 0x0 0x40>;
  		reg-shift = <2>;
  		interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>;
c58f5f884   Thierry Reding   arm64: tegra: Use...
316
  		clocks = <&bpmp TEGRA186_CLK_UARTG>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
317
  		clock-names = "serial";
7bcf26646   Thierry Reding   arm64: tegra: Use...
318
  		resets = <&bpmp TEGRA186_RESET_UARTG>;
a7a77e2e8   Thierry Reding   arm64: tegra: Add...
319
320
321
  		reset-names = "serial";
  		status = "disabled";
  	};
fc4bb754c   Thierry Reding   arm64: tegra: Add...
322
323
324
325
326
327
328
329
330
331
332
  	gpio_aon: gpio@c2f0000 {
  		compatible = "nvidia,tegra186-gpio-aon";
  		reg-names = "security", "gpio";
  		reg = <0x0 0xc2f0000 0x0 0x1000>,
  		      <0x0 0xc2f1000 0x0 0x1000>;
  		interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
  		gpio-controller;
  		#gpio-cells = <2>;
  		interrupt-controller;
  		#interrupt-cells = <2>;
  	};
73bf90d4d   Thierry Reding   arm64: tegra: Add...
333
334
335
336
337
338
339
340
  	pmc@c360000 {
  		compatible = "nvidia,tegra186-pmc";
  		reg = <0 0x0c360000 0 0x10000>,
  		      <0 0x0c370000 0 0x10000>,
  		      <0 0x0c380000 0 0x10000>,
  		      <0 0x0c390000 0 0x10000>;
  		reg-names = "pmc", "wake", "aotag", "scratch";
  	};
7b7ef4946   Mikko Perttunen   arm64: tegra: Add...
341
342
343
344
345
346
  	ccplex@e000000 {
  		compatible = "nvidia,tegra186-ccplex-cluster";
  		reg = <0x0 0x0e000000 0x0 0x3fffff>;
  
  		nvidia,bpmp = <&bpmp>;
  	};
dfd7a3845   Alexandre Courbot   arm64: tegra: Add...
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  	gpu@17000000 {
  		compatible = "nvidia,gp10b";
  		reg = <0x0 0x17000000 0x0 0x1000000>,
  		      <0x0 0x18000000 0x0 0x1000000>;
  		interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH
  			      GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
  		interrupt-names = "stall", "nonstall";
  
  		clocks = <&bpmp TEGRA186_CLK_GPCCLK>,
  			 <&bpmp TEGRA186_CLK_GPU>;
  		clock-names = "gpu", "pwr";
  		resets = <&bpmp TEGRA186_RESET_GPU>;
  		reset-names = "gpu";
  		status = "disabled";
  
  		power-domains = <&bpmp TEGRA186_POWER_DOMAIN_GPU>;
  	};
39cb62cb8   Joseph Lo   arm64: tegra: Add...
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
  	sysram@30000000 {
  		compatible = "nvidia,tegra186-sysram", "mmio-sram";
  		reg = <0x0 0x30000000 0x0 0x50000>;
  		#address-cells = <2>;
  		#size-cells = <2>;
  		ranges = <0 0x0 0x0 0x30000000 0x0 0x50000>;
  
  		cpu_bpmp_tx: shmem@4e000 {
  			compatible = "nvidia,tegra186-bpmp-shmem";
  			reg = <0x0 0x4e000 0x0 0x1000>;
  			label = "cpu-bpmp-tx";
  			pool;
  		};
  
  		cpu_bpmp_rx: shmem@4f000 {
  			compatible = "nvidia,tegra186-bpmp-shmem";
  			reg = <0x0 0x4f000 0x0 0x1000>;
  			label = "cpu-bpmp-rx";
  			pool;
  		};
  	};
cd6fe32e3   Thierry Reding   arm64: tegra: Add...
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
  	cpus {
  		#address-cells = <1>;
  		#size-cells = <0>;
  
  		cpu@0 {
  			compatible = "nvidia,tegra186-denver", "arm,armv8";
  			device_type = "cpu";
  			reg = <0x000>;
  		};
  
  		cpu@1 {
  			compatible = "nvidia,tegra186-denver", "arm,armv8";
  			device_type = "cpu";
  			reg = <0x001>;
  		};
  
  		cpu@2 {
  			compatible = "arm,cortex-a57", "arm,armv8";
  			device_type = "cpu";
  			reg = <0x100>;
  		};
  
  		cpu@3 {
  			compatible = "arm,cortex-a57", "arm,armv8";
  			device_type = "cpu";
  			reg = <0x101>;
  		};
  
  		cpu@4 {
  			compatible = "arm,cortex-a57", "arm,armv8";
  			device_type = "cpu";
  			reg = <0x102>;
  		};
  
  		cpu@5 {
  			compatible = "arm,cortex-a57", "arm,armv8";
  			device_type = "cpu";
  			reg = <0x103>;
  		};
  	};
39cb62cb8   Joseph Lo   arm64: tegra: Add...
425
426
  	bpmp: bpmp {
  		compatible = "nvidia,tegra186-bpmp";
5edcebb96   Thierry Reding   arm64: tegra: Use...
427
428
  		mboxes = <&hsp_top0 TEGRA_HSP_MBOX_TYPE_DB
  				    TEGRA_HSP_DB_MASTER_BPMP>;
39cb62cb8   Joseph Lo   arm64: tegra: Add...
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
  		shmem = <&cpu_bpmp_tx &cpu_bpmp_rx>;
  		#clock-cells = <1>;
  		#reset-cells = <1>;
  
  		bpmp_i2c: i2c {
  			compatible = "nvidia,tegra186-bpmp-i2c";
  			nvidia,bpmp-bus-id = <5>;
  			#address-cells = <1>;
  			#size-cells = <0>;
  			status = "disabled";
  		};
  	};
  
  	timer {
  		compatible = "arm,armv8-timer";
  		interrupts = <GIC_PPI 13
  				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
  			     <GIC_PPI 14
  				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
  			     <GIC_PPI 11
  				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
  			     <GIC_PPI 10
  				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
  		interrupt-parent = <&gic>;
  	};
  };