WIP: mediatek: add bpi-r3-mini
[openwrt/staging/dangole.git] / target / linux / mediatek / dts / mt7986a-bananapi-bpi-r3-mini.dts
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2 /*
3 * Copyright (C) 2023 Tianling Shen <cnsztl@immortalwrt.org>
4 */
5
6 /dts-v1/;
7 #include <dt-bindings/gpio/gpio.h>
8 #include <dt-bindings/input/input.h>
9 #include <dt-bindings/leds/common.h>
10
11 #include "mt7986a.dtsi"
12
13 / {
14 model = "Bananapi BPi-R3 Mini";
15 chassis-type = "embedded";
16 compatible = "bananapi,bpi-r3-mini", "mediatek,mt7986a";
17
18 aliases {
19 ethernet0 = &gmac0;
20 ethernet1 = &gmac1;
21 serial0 = &uart0;
22
23 led-boot = &status_led;
24 led-failsafe = &status_led;
25 led-running = &status_led;
26 led-upgrade = &status_led;
27 };
28
29 chosen {
30 stdout-path = "serial0:115200n8";
31 rootdisk-emmc = <&emmc_rootdisk>;
32 rootdisk-spim-nand = <&nand_rootdisk>;
33 };
34
35 memory {
36 reg = <0 0x40000000 0 0x80000000>;
37 };
38
39 gpio-keys {
40 compatible = "gpio-keys";
41
42 button-reset {
43 label = "reset";
44 linux,code = <KEY_RESTART>;
45 gpios = <&pio 7 GPIO_ACTIVE_LOW>;
46 };
47 };
48
49 gpio-leds {
50 compatible = "gpio-leds";
51
52 status_led: led-0 {
53 label = "green:status";
54 gpios = <&pio 19 GPIO_ACTIVE_HIGH>;
55 };
56
57 led-1 {
58 label = "blue:wlan2g";
59 gpios = <&pio 1 GPIO_ACTIVE_HIGH>;
60 };
61
62 led-2 {
63 label = "blue:wlan5g";
64 gpios = <&pio 2 GPIO_ACTIVE_HIGH>;
65 };
66 };
67
68 fan: pwm-fan {
69 compatible = "pwm-fan";
70 #cooling-cells = <2>;
71 cooling-levels = <255 128 80 0>;
72 pwms = <&pwm 0 10000 0>;
73 status = "okay";
74 };
75
76 reg_1p8v: regulator-1p8v {
77 compatible = "regulator-fixed";
78 regulator-name = "fixed-1.8V";
79 regulator-min-microvolt = <1800000>;
80 regulator-max-microvolt = <1800000>;
81 regulator-boot-on;
82 regulator-always-on;
83 };
84
85 reg_3p3v: regulator-3p3v {
86 compatible = "regulator-fixed";
87 regulator-name = "fixed-3.3V";
88 regulator-min-microvolt = <3300000>;
89 regulator-max-microvolt = <3300000>;
90 regulator-boot-on;
91 regulator-always-on;
92 };
93
94 reg_5v: regulator-5v {
95 compatible = "regulator-fixed";
96 regulator-name = "fixed-5V";
97 regulator-min-microvolt = <5000000>;
98 regulator-max-microvolt = <5000000>;
99 regulator-boot-on;
100 regulator-always-on;
101 };
102
103 usb_vbus: regulator-usb-vbus {
104 compatible = "regulator-fixed";
105 regulator-name = "usb_vbus";
106 regulator-min-microvolt = <5000000>;
107 regulator-max-microvolt = <5000000>;
108 gpios = <&pio 20 GPIO_ACTIVE_LOW>;
109 regulator-boot-on;
110 };
111 };
112
113 &auxadc {
114 status = "okay";
115 };
116
117 &cpu_thermal {
118 cooling-maps {
119 cpu-active-low {
120 cooling-device = <&fan 1 1>;
121 trip = <&cpu_trip_active_low>;
122 };
123
124 cpu-active-med {
125 cooling-device = <&fan 2 2>;
126 trip = <&cpu_trip_active_med>;
127 };
128
129 cpu-active-high {
130 cooling-device = <&fan 3 3>;
131 trip = <&cpu_trip_active_high>;
132 };
133 };
134 };
135
136 &crypto {
137 status = "okay";
138 };
139
140 &eth {
141 status = "okay";
142 pinctrl-names = "default";
143 pinctrl-0 = <&eth_pins>;
144
145 gmac0: mac@0 {
146 compatible = "mediatek,eth-mac";
147 reg = <0>;
148 phy-handle = <&phy14>;
149 phy-mode = "2500base-x";
150 };
151
152 gmac1: mac@1 {
153 compatible = "mediatek,eth-mac";
154 reg = <1>;
155 phy-handle = <&phy15>;
156 phy-mode = "2500base-x";
157 };
158
159 mdio: mdio-bus {
160 #address-cells = <1>;
161 #size-cells = <0>;
162
163 phy14: phy@e {
164 compatible = "ethernet-phy-id03a2.a411";
165 reg = <14>;
166 pinctrl-names = "default";
167 pinctrl-0 = <&en8811_pwr_a>;
168
169 airoha,pnswap-rx;
170
171 interrupt-parent = <&pio>;
172 interrupts = <48 IRQ_TYPE_EDGE_FALLING>;
173 reset-gpios = <&pio 49 GPIO_ACTIVE_LOW>;
174 reset-assert-us = <10000>;
175 reset-deassert-us = <20000>;
176
177 phy-mode = "2500base-x";
178 full-duplex;
179 pause;
180 };
181
182 phy15: phy@f {
183 compatible = "ethernet-phy-id03a2.a411";
184 reg = <15>;
185 pinctrl-names = "default";
186 pinctrl-0 = <&en8811_pwr_b>;
187
188 airoha,pnswap-rx;
189
190 interrupt-parent = <&pio>;
191 interrupts = <46 IRQ_TYPE_EDGE_FALLING>;
192 reset-gpios = <&pio 47 GPIO_ACTIVE_LOW>;
193 reset-assert-us = <10000>;
194 reset-deassert-us = <20000>;
195
196 phy-mode = "2500base-x";
197 full-duplex;
198 pause;
199 };
200 };
201 };
202
203 &i2c0 {
204 pinctrl-names = "default";
205 pinctrl-0 = <&i2c_pins>;
206 status = "okay";
207
208 eeprom@50 {
209 compatible = "atmel,24c02";
210 reg = <0x50>;
211 pagesize = <8>;
212 size = <256>;
213 };
214 };
215
216 &mmc0 {
217 pinctrl-names = "default", "state_uhs";
218 pinctrl-0 = <&mmc0_pins_default>;
219 pinctrl-1 = <&mmc0_pins_uhs>;
220 bus-width = <8>;
221 max-frequency = <200000000>;
222 cap-mmc-highspeed;
223 mmc-hs200-1_8v;
224 mmc-hs400-1_8v;
225 hs400-ds-delay = <0x14014>;
226 vmmc-supply = <&reg_3p3v>;
227 vqmmc-supply = <&reg_1p8v>;
228 non-removable;
229 no-sd;
230 no-sdio;
231 status = "okay";
232
233 card@0 {
234 compatible = "mmc-card";
235 reg = <0>;
236
237 block {
238 compatible = "block-device";
239 partitions {
240 emmc_rootdisk: block-partition-production {
241 partname = "production";
242 };
243 };
244 };
245 };
246 };
247
248 &pcie {
249 pinctrl-names = "default";
250 pinctrl-0 = <&pcie_pins>;
251 status = "okay";
252 };
253
254 &pcie_phy {
255 status = "okay";
256 };
257
258 &pio {
259 en8811_pwr_a: en8811-pwr-a {
260 pins = "GPIO_11";
261 drive-strength = <8>;
262 mediatek,pull-down-adv = <1>;
263 output-low;
264 };
265
266 en8811_pwr_b: en8811-pwr-b {
267 pins = "GPIO_12";
268 drive-strength = <8>;
269 mediatek,pull-down-adv = <1>;
270 output-low;
271 };
272
273 eth_pins: eth-pins {
274 mux {
275 function = "eth";
276 groups = "mdc_mdio";
277 };
278 };
279
280 i2c_pins: i2c-pins {
281 mux {
282 function = "i2c";
283 groups = "i2c";
284 };
285 };
286
287 mmc0_pins_default: mmc0-pins-default {
288 mux {
289 function = "emmc";
290 groups = "emmc_51";
291 };
292 conf-cmd-dat {
293 pins = "EMMC_DATA_0", "EMMC_DATA_1", "EMMC_DATA_2",
294 "EMMC_DATA_3", "EMMC_DATA_4", "EMMC_DATA_5",
295 "EMMC_DATA_6", "EMMC_DATA_7", "EMMC_CMD";
296 input-enable;
297 drive-strength = <4>;
298 mediatek,pull-up-adv = <1>;
299 };
300 conf-clk {
301 pins = "EMMC_CK";
302 drive-strength = <6>;
303 mediatek,pull-down-adv = <2>;
304 };
305 conf-ds {
306 pins = "EMMC_DSL";
307 mediatek,pull-down-adv = <2>;
308 };
309 conf-rst {
310 pins = "EMMC_RSTB";
311 drive-strength = <4>;
312 mediatek,pull-up-adv = <1>;
313 };
314 };
315
316 mmc0_pins_uhs: mmc0-uhs-pins {
317 mux {
318 function = "emmc";
319 groups = "emmc_51";
320 };
321 conf-cmd-dat {
322 pins = "EMMC_DATA_0", "EMMC_DATA_1", "EMMC_DATA_2",
323 "EMMC_DATA_3", "EMMC_DATA_4", "EMMC_DATA_5",
324 "EMMC_DATA_6", "EMMC_DATA_7", "EMMC_CMD";
325 input-enable;
326 drive-strength = <4>;
327 mediatek,pull-up-adv = <1>;
328 };
329 conf-clk {
330 pins = "EMMC_CK";
331 drive-strength = <6>;
332 mediatek,pull-down-adv = <2>;
333 };
334 conf-ds {
335 pins = "EMMC_DSL";
336 mediatek,pull-down-adv = <2>;
337 };
338 conf-rst {
339 pins = "EMMC_RSTB";
340 drive-strength = <4>;
341 mediatek,pull-up-adv = <1>;
342 };
343 };
344
345 pcie_pins: pcie-pins {
346 mux {
347 function = "pcie";
348 groups = "pcie_clk", "pcie_wake", "pcie_pereset";
349 };
350 };
351
352 pwm_pins: pwm-pins {
353 mux {
354 function = "pwm";
355 groups = "pwm0", "pwm1_0";
356 };
357 };
358
359 spi_flash_pins: spi-flash-pins {
360 mux {
361 function = "spi";
362 groups = "spi0", "spi0_wp_hold";
363 };
364 conf-pu {
365 pins = "SPI2_CS", "SPI2_HOLD", "SPI2_WP";
366 drive-strength = <8>;
367 mediatek,pull-up-adv = <0>;
368 };
369 conf-pd {
370 pins = "SPI2_CLK", "SPI2_MOSI", "SPI2_MISO";
371 drive-strength = <8>;
372 mediatek,pull-down-adv = <0>;
373 };
374 };
375
376 spic_pins: spic-pins {
377 mux {
378 function = "spi";
379 groups = "spi1_2";
380 };
381 };
382
383 uart1_pins: uart1-pins {
384 mux {
385 function = "uart";
386 groups = "uart1";
387 };
388 };
389
390 usb_ngff_pins: usb-ngff-pins {
391 ngff-pe-rst {
392 pins = "GPIO_7";
393 drive-strength = <8>;
394 mediatek,pull-up-adv = <1>;
395 };
396 ngff-wwan-off {
397 pins = "GPIO_8";
398 drive-strength = <8>;
399 mediatek,pull-up-adv = <1>;
400 };
401 ngff-pwr-off {
402 pins = "GPIO_9";
403 drive-strength = <8>;
404 mediatek,pull-up-adv = <1>;
405 };
406 ngff-rst {
407 pins = "GPIO_10";
408 drive-strength = <8>;
409 mediatek,pull-up-adv = <1>;
410 };
411 };
412
413 wf_2g_5g_pins: wf-2g-5g-pins {
414 mux {
415 function = "wifi";
416 groups = "wf_2g", "wf_5g";
417 };
418 conf {
419 pins = "WF0_HB1", "WF0_HB2", "WF0_HB3", "WF0_HB4",
420 "WF0_HB0", "WF0_HB0_B", "WF0_HB5", "WF0_HB6",
421 "WF0_HB7", "WF0_HB8", "WF0_HB9", "WF0_HB10",
422 "WF0_TOP_CLK", "WF0_TOP_DATA", "WF1_HB1",
423 "WF1_HB2", "WF1_HB3", "WF1_HB4", "WF1_HB0",
424 "WF1_HB5", "WF1_HB6", "WF1_HB7", "WF1_HB8",
425 "WF1_TOP_CLK", "WF1_TOP_DATA";
426 drive-strength = <4>;
427 };
428 };
429
430 wf_dbdc_pins: wf-dbdc-pins {
431 mux {
432 function = "wifi";
433 groups = "wf_dbdc";
434 };
435 conf {
436 pins = "WF0_HB1", "WF0_HB2", "WF0_HB3", "WF0_HB4",
437 "WF0_HB0", "WF0_HB0_B", "WF0_HB5", "WF0_HB6",
438 "WF0_HB7", "WF0_HB8", "WF0_HB9", "WF0_HB10",
439 "WF0_TOP_CLK", "WF0_TOP_DATA", "WF1_HB1",
440 "WF1_HB2", "WF1_HB3", "WF1_HB4", "WF1_HB0",
441 "WF1_HB5", "WF1_HB6", "WF1_HB7", "WF1_HB8",
442 "WF1_TOP_CLK", "WF1_TOP_DATA";
443 drive-strength = <4>;
444 };
445 };
446 };
447
448 &pwm {
449 pinctrl-names = "default";
450 pinctrl-0 = <&pwm_pins>;
451 status = "okay";
452 };
453
454 &spi0 {
455 pinctrl-names = "default";
456 pinctrl-0 = <&spi_flash_pins>;
457 status = "okay";
458
459 flash@0 {
460 compatible = "spi-nand";
461 #address-cells = <1>;
462 #size-cells = <1>;
463 reg = <0>;
464
465 spi-max-frequency = <20000000>;
466 spi-tx-bus-width = <4>;
467 spi-rx-bus-width = <4>;
468
469 partitions {
470 compatible = "fixed-partitions";
471 #address-cells = <1>;
472 #size-cells = <1>;
473
474 partition@0 {
475 label = "bl2";
476 reg = <0x00000 0x100000>;
477 read-only;
478 };
479
480 partition@100000 {
481 label = "ubi";
482 reg = <0x100000 0x7f00000>;
483 compatible = "linux,ubi";
484
485 volumes {
486 nand_rootdisk: ubi-volume-fit {
487 volname = "fit";
488 };
489 };
490 };
491 };
492 };
493 };
494
495 &spi1 {
496 pinctrl-names = "default";
497 pinctrl-0 = <&spic_pins>;
498 status = "okay";
499 };
500
501 &ssusb {
502 pinctrl-names = "default";
503 pinctrl-0 = <&usb_ngff_pins>;
504 vusb33-supply = <&reg_3p3v>;
505 vbus-supply = <&usb_vbus>;
506 status = "okay";
507 };
508
509 &trng {
510 status = "okay";
511 };
512
513 &uart0 {
514 status = "okay";
515 };
516
517 &uart1 {
518 pinctrl-names = "default";
519 pinctrl-0 = <&uart1_pins>;
520 status = "okay";
521 };
522
523 &usb_phy {
524 status = "okay";
525 };
526
527 &watchdog {
528 status = "okay";
529 };
530
531 &wifi {
532 pinctrl-names = "default", "dbdc";
533 pinctrl-0 = <&wf_2g_5g_pins>;
534 pinctrl-1 = <&wf_dbdc_pins>;
535 status = "okay";
536
537 mediatek,eeprom-data = <0x86790200 0x000c4326 0x60000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
538 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
539 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
540 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
541 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
542 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
543 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
544 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
545 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
546 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
547 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
548 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
549 0x00000000 0x00000000 0x00000000 0x00000000 0x125b486c 0x00280000 0x05d00000 0x00000000
550 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
551 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
552 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
553 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
554 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
555 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
556 0x00000000 0x00000000 0x00000000 0x00000000 0x0c000000 0x00000000 0x00000000 0x00000000
557 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
558 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
559 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
560 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
561 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
562 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
563 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
564 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
565 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
566 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
567 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
568 0x00000000 0x00000012 0x12120000 0x00000000 0x00000000 0x00002222 0x22223333 0x33333333
569 0x33333333 0x33333333 0x33333333 0x33333333 0x33333333 0x33330000 0x00000000 0x00000000
570 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
571 0x00292929 0x29282828 0x28282828 0x28282828 0x28282828 0x28282828 0x28000000 0x00000000
572 0x00000000 0x00242424 0x24222222 0x22242424 0x24222222 0x22242424 0x24222222 0x22242424
573 0x24222222 0x22000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
574 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
575 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
576 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
577 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
578 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
579 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
580 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
581 0x00000000 0x007f7f7f 0xd1d1dddd 0xe9e9f5f5 0x01010909 0x1515d1d1 0xdddde9e9 0xf5f5fdfd
582 0x09091515 0xd1d1dddd 0xe9e9f5f5 0xfdfd0909 0x1515d1d1 0xdddde9e9 0xf5f5fdfd 0x09091515
583 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
584 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
585 0x0efefc00 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
586 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
587 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
588 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
589 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
590 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
591 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
592 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
593 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
594 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
595 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
596 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
597 0x00000000 0x00000000 0x00000000 0x00000000 0x021e021e 0x02000200 0x02370237 0x02370237
598 0x02370237 0x02370237 0x02370237 0x02370237 0x02370237 0x02370237 0x02370237 0x02370237
599 0x02370237 0x02370237 0x02370237 0x02370237 0x002200c6 0xc6c4c4c3 0x0000c1c2 0xc1838383
600 0x838686c1 0xc1838383 0x838686c2 0xc1c18181 0x82838585 0x8686c1c1 0x81818283 0x85858686
601 0xc1c18181 0x82838585 0x8686c1c1 0x81818283 0x85858686 0xc1c18181 0x82838585 0x8686c5c5
602 0xc3c100c2 0xc3c2c200 0x81828383 0xc2c2c200 0x81828383 0xc3c1c1c1 0x81828384 0x84c2c2c2
603 0xc2008182 0x83838585 0xc2c2c200 0x81828383 0x8585c1c1 0xc1818283 0x84848686 0x82828484
604 0x85868787 0x8989c2c2 0xc2008182 0x83838585 0xc2c2c200 0x81828383 0x8585c2c2 0xc2008182
605 0x83838585 0xc4c4c2c1 0x00c3c3c3 0xc1008183 0x838686c3 0xc3c3c100 0x81838386 0x86c2c2c2
606 0x00818284 0x84868682 0x82828485 0x8688888b 0x8bc3c3c3 0xc1008183 0x838686c3 0xc3c3c100
607 0x81838386 0x86c3c3c3 0xc1008183 0x83868600 0x00000000 0x00000000 0x00000000 0x00000000
608 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
609 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
610 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
611 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
612 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
613 0x00000000 0x00000000 0x00000000 0x00000000 0x00bd0000 0x00000000 0x00000000 0x00000000
614 0x00000000 0x00000000 0x00c50000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
615 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
616 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
617 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
618 0x00495256 0x55555555 0x004a5251 0x51515151 0x004a5355 0x56565656 0x0049504e 0x51515151
619 0x00495150 0x54545454 0x00495051 0x51515151 0x00495251 0x50505050 0x00495251 0x51515151
620 0x00495251 0x54545454 0x00495150 0x54545454 0x00495352 0x51515151 0x00495353 0x52525252
621 0x00495150 0x50505050 0x00495152 0x54545454 0x00495251 0x53535353 0x00000000 0x00000000
622 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
623 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
624 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
625 0x00000000 0x00000000 0x00000000 0x00000000 0xd1d1dddd 0xe9e9f5f5 0xfdfd1414 0x1d1d0000
626 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
627 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
628 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
629 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
630 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
631 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
632 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
633 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
634 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
635 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
636 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
637 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
638 0x85840000 0xc3c4c382 0x828281c1 0xc4c5c400 0x0000c1c3 0xc4c4c481 0x8181c1c2 0x00000000
639 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
640 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
641 0xc0bbc0bb 0xc0bbc0bb 0x40c5c0c4 0xc0c3c0c3 0x40c340c5 0x40c4c0c3 0x40c3c0c2 0xc0c5c0c4
642 0x40c440c4 0xc0c3c0c5 0xc0c440c4 0x40c4c0c3 0x00000000 0x00000000 0x00000000 0x00000000
643 0x00000000 0x00000000 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6
644 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6 0x40c640c6
645 0x40c640c6 0x40c640c6 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
646 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
647 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
648 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
649 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
650 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
651 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
652 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
653 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
654 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
655 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
656 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
657 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
658 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
659 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
660 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
661 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
662 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
663 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000
664 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000>;
665 };