1/* 2 * Copyright 2017 Chen-Yu Tsai <wens@csie.org> 3 * Copyright 2017 Icenowy Zheng <icenowy@aosc.io> 4 * 5 * This file is dual-licensed: you can use it either under the terms 6 * of the GPL or the X11 license, at your option. Note that this dual 7 * licensing only applies to this file, and not this project as a 8 * whole. 9 * 10 * a) This file is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU General Public License as 12 * published by the Free Software Foundation; either version 2 of the 13 * License, or (at your option) any later version. 14 * 15 * This file is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * Or, alternatively, 21 * 22 * b) Permission is hereby granted, free of charge, to any person 23 * obtaining a copy of this software and associated documentation 24 * files (the "Software"), to deal in the Software without 25 * restriction, including without limitation the rights to use, 26 * copy, modify, merge, publish, distribute, sublicense, and/or 27 * sell copies of the Software, and to permit persons to whom the 28 * Software is furnished to do so, subject to the following 29 * conditions: 30 * 31 * The above copyright notice and this permission notice shall be 32 * included in all copies or substantial portions of the Software. 33 * 34 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 35 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 36 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 37 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 38 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 39 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 40 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 41 * OTHER DEALINGS IN THE SOFTWARE. 42 */ 43 44#include <dt-bindings/interrupt-controller/arm-gic.h> 45#include <dt-bindings/clock/sun8i-de2.h> 46#include <dt-bindings/clock/sun8i-r40-ccu.h> 47#include <dt-bindings/clock/sun8i-tcon-top.h> 48#include <dt-bindings/reset/sun8i-r40-ccu.h> 49#include <dt-bindings/reset/sun8i-de2.h> 50#include <dt-bindings/thermal/thermal.h> 51 52/ { 53 #address-cells = <1>; 54 #size-cells = <1>; 55 interrupt-parent = <&gic>; 56 57 clocks { 58 #address-cells = <1>; 59 #size-cells = <1>; 60 ranges; 61 62 osc24M: osc24M { 63 #clock-cells = <0>; 64 compatible = "fixed-clock"; 65 clock-frequency = <24000000>; 66 clock-accuracy = <50000>; 67 clock-output-names = "osc24M"; 68 }; 69 70 osc32k: osc32k { 71 #clock-cells = <0>; 72 compatible = "fixed-clock"; 73 clock-frequency = <32768>; 74 clock-accuracy = <20000>; 75 clock-output-names = "ext-osc32k"; 76 }; 77 }; 78 79 cpus { 80 #address-cells = <1>; 81 #size-cells = <0>; 82 83 cpu0: cpu@0 { 84 compatible = "arm,cortex-a7"; 85 device_type = "cpu"; 86 reg = <0>; 87 }; 88 89 cpu1: cpu@1 { 90 compatible = "arm,cortex-a7"; 91 device_type = "cpu"; 92 reg = <1>; 93 }; 94 95 cpu2: cpu@2 { 96 compatible = "arm,cortex-a7"; 97 device_type = "cpu"; 98 reg = <2>; 99 }; 100 101 cpu3: cpu@3 { 102 compatible = "arm,cortex-a7"; 103 device_type = "cpu"; 104 reg = <3>; 105 }; 106 }; 107 108 de: display-engine { 109 compatible = "allwinner,sun8i-r40-display-engine"; 110 allwinner,pipelines = <&mixer0>, <&mixer1>; 111 status = "disabled"; 112 }; 113 114 thermal-zones { 115 cpu_thermal: cpu0-thermal { 116 /* milliseconds */ 117 polling-delay-passive = <0>; 118 polling-delay = <0>; 119 thermal-sensors = <&ths 0>; 120 }; 121 122 gpu_thermal: gpu-thermal { 123 /* milliseconds */ 124 polling-delay-passive = <0>; 125 polling-delay = <0>; 126 thermal-sensors = <&ths 1>; 127 }; 128 }; 129 130 soc { 131 compatible = "simple-bus"; 132 #address-cells = <1>; 133 #size-cells = <1>; 134 ranges; 135 136 display_clocks: clock@1000000 { 137 compatible = "allwinner,sun8i-r40-de2-clk", 138 "allwinner,sun8i-h3-de2-clk"; 139 reg = <0x01000000 0x10000>; 140 clocks = <&ccu CLK_BUS_DE>, 141 <&ccu CLK_DE>; 142 clock-names = "bus", 143 "mod"; 144 resets = <&ccu RST_BUS_DE>; 145 #clock-cells = <1>; 146 #reset-cells = <1>; 147 }; 148 149 mixer0: mixer@1100000 { 150 compatible = "allwinner,sun8i-r40-de2-mixer-0"; 151 reg = <0x01100000 0x100000>; 152 clocks = <&display_clocks CLK_BUS_MIXER0>, 153 <&display_clocks CLK_MIXER0>; 154 clock-names = "bus", 155 "mod"; 156 resets = <&display_clocks RST_MIXER0>; 157 158 ports { 159 #address-cells = <1>; 160 #size-cells = <0>; 161 162 mixer0_out: port@1 { 163 reg = <1>; 164 mixer0_out_tcon_top: endpoint { 165 remote-endpoint = <&tcon_top_mixer0_in_mixer0>; 166 }; 167 }; 168 }; 169 }; 170 171 mixer1: mixer@1200000 { 172 compatible = "allwinner,sun8i-r40-de2-mixer-1"; 173 reg = <0x01200000 0x100000>; 174 clocks = <&display_clocks CLK_BUS_MIXER1>, 175 <&display_clocks CLK_MIXER1>; 176 clock-names = "bus", 177 "mod"; 178 resets = <&display_clocks RST_WB>; 179 180 ports { 181 #address-cells = <1>; 182 #size-cells = <0>; 183 184 mixer1_out: port@1 { 185 reg = <1>; 186 mixer1_out_tcon_top: endpoint { 187 remote-endpoint = <&tcon_top_mixer1_in_mixer1>; 188 }; 189 }; 190 }; 191 }; 192 193 deinterlace: deinterlace@1400000 { 194 compatible = "allwinner,sun8i-r40-deinterlace", 195 "allwinner,sun8i-h3-deinterlace"; 196 reg = <0x01400000 0x20000>; 197 clocks = <&ccu CLK_BUS_DEINTERLACE>, 198 <&ccu CLK_DEINTERLACE>, 199 /* 200 * NOTE: Contrary to what datasheet claims, 201 * DRAM deinterlace gate doesn't exist and 202 * it's shared with CSI1. 203 */ 204 <&ccu CLK_DRAM_CSI1>; 205 clock-names = "bus", "mod", "ram"; 206 resets = <&ccu RST_BUS_DEINTERLACE>; 207 interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>; 208 interconnects = <&mbus 9>; 209 interconnect-names = "dma-mem"; 210 }; 211 212 syscon: system-control@1c00000 { 213 compatible = "allwinner,sun8i-r40-system-control", 214 "allwinner,sun4i-a10-system-control"; 215 reg = <0x01c00000 0x30>; 216 #address-cells = <1>; 217 #size-cells = <1>; 218 ranges; 219 220 sram_c: sram@1d00000 { 221 compatible = "mmio-sram"; 222 reg = <0x01d00000 0xd0000>; 223 #address-cells = <1>; 224 #size-cells = <1>; 225 ranges = <0 0x01d00000 0xd0000>; 226 227 ve_sram: sram-section@0 { 228 compatible = "allwinner,sun8i-r40-sram-c1", 229 "allwinner,sun4i-a10-sram-c1"; 230 reg = <0x000000 0x80000>; 231 }; 232 }; 233 }; 234 235 nmi_intc: interrupt-controller@1c00030 { 236 compatible = "allwinner,sun7i-a20-sc-nmi"; 237 interrupt-controller; 238 #interrupt-cells = <2>; 239 reg = <0x01c00030 0x0c>; 240 interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>; 241 }; 242 243 dma: dma-controller@1c02000 { 244 compatible = "allwinner,sun8i-r40-dma", 245 "allwinner,sun50i-a64-dma"; 246 reg = <0x01c02000 0x1000>; 247 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>; 248 clocks = <&ccu CLK_BUS_DMA>; 249 dma-channels = <16>; 250 dma-requests = <31>; 251 resets = <&ccu RST_BUS_DMA>; 252 #dma-cells = <1>; 253 }; 254 255 spi0: spi@1c05000 { 256 compatible = "allwinner,sun8i-r40-spi", 257 "allwinner,sun8i-h3-spi"; 258 reg = <0x01c05000 0x1000>; 259 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; 260 clocks = <&ccu CLK_BUS_SPI0>, <&ccu CLK_SPI0>; 261 clock-names = "ahb", "mod"; 262 resets = <&ccu RST_BUS_SPI0>; 263 status = "disabled"; 264 #address-cells = <1>; 265 #size-cells = <0>; 266 }; 267 268 spi1: spi@1c06000 { 269 compatible = "allwinner,sun8i-r40-spi", 270 "allwinner,sun8i-h3-spi"; 271 reg = <0x01c06000 0x1000>; 272 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; 273 clocks = <&ccu CLK_BUS_SPI1>, <&ccu CLK_SPI1>; 274 clock-names = "ahb", "mod"; 275 resets = <&ccu RST_BUS_SPI1>; 276 status = "disabled"; 277 #address-cells = <1>; 278 #size-cells = <0>; 279 }; 280 281 csi0: csi@1c09000 { 282 compatible = "allwinner,sun8i-r40-csi0", 283 "allwinner,sun7i-a20-csi0"; 284 reg = <0x01c09000 0x1000>; 285 interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>; 286 clocks = <&ccu CLK_BUS_CSI0>, <&ccu CLK_CSI_SCLK>, 287 <&ccu CLK_DRAM_CSI0>; 288 clock-names = "bus", "isp", "ram"; 289 resets = <&ccu RST_BUS_CSI0>; 290 interconnects = <&mbus 5>; 291 interconnect-names = "dma-mem"; 292 status = "disabled"; 293 }; 294 295 video-codec@1c0e000 { 296 compatible = "allwinner,sun8i-r40-video-engine"; 297 reg = <0x01c0e000 0x1000>; 298 clocks = <&ccu CLK_BUS_VE>, <&ccu CLK_VE>, 299 <&ccu CLK_DRAM_VE>; 300 clock-names = "ahb", "mod", "ram"; 301 resets = <&ccu RST_BUS_VE>; 302 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>; 303 allwinner,sram = <&ve_sram 1>; 304 }; 305 306 mmc0: mmc@1c0f000 { 307 compatible = "allwinner,sun8i-r40-mmc", 308 "allwinner,sun50i-a64-mmc"; 309 reg = <0x01c0f000 0x1000>; 310 clocks = <&ccu CLK_BUS_MMC0>, <&ccu CLK_MMC0>; 311 clock-names = "ahb", "mmc"; 312 resets = <&ccu RST_BUS_MMC0>; 313 reset-names = "ahb"; 314 pinctrl-0 = <&mmc0_pins>; 315 pinctrl-names = "default"; 316 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 317 status = "disabled"; 318 #address-cells = <1>; 319 #size-cells = <0>; 320 }; 321 322 mmc1: mmc@1c10000 { 323 compatible = "allwinner,sun8i-r40-mmc", 324 "allwinner,sun50i-a64-mmc"; 325 reg = <0x01c10000 0x1000>; 326 clocks = <&ccu CLK_BUS_MMC1>, <&ccu CLK_MMC1>; 327 clock-names = "ahb", "mmc"; 328 resets = <&ccu RST_BUS_MMC1>; 329 reset-names = "ahb"; 330 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 331 status = "disabled"; 332 #address-cells = <1>; 333 #size-cells = <0>; 334 }; 335 336 mmc2: mmc@1c11000 { 337 compatible = "allwinner,sun8i-r40-emmc", 338 "allwinner,sun50i-a64-emmc"; 339 reg = <0x01c11000 0x1000>; 340 clocks = <&ccu CLK_BUS_MMC2>, <&ccu CLK_MMC2>; 341 clock-names = "ahb", "mmc"; 342 resets = <&ccu RST_BUS_MMC2>; 343 reset-names = "ahb"; 344 pinctrl-0 = <&mmc2_pins>; 345 pinctrl-names = "default"; 346 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; 347 status = "disabled"; 348 #address-cells = <1>; 349 #size-cells = <0>; 350 }; 351 352 mmc3: mmc@1c12000 { 353 compatible = "allwinner,sun8i-r40-mmc", 354 "allwinner,sun50i-a64-mmc"; 355 reg = <0x01c12000 0x1000>; 356 clocks = <&ccu CLK_BUS_MMC3>, <&ccu CLK_MMC3>; 357 clock-names = "ahb", "mmc"; 358 resets = <&ccu RST_BUS_MMC3>; 359 reset-names = "ahb"; 360 pinctrl-0 = <&mmc3_pins>; 361 pinctrl-names = "default"; 362 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>; 363 status = "disabled"; 364 #address-cells = <1>; 365 #size-cells = <0>; 366 }; 367 368 usbphy: phy@1c13400 { 369 compatible = "allwinner,sun8i-r40-usb-phy"; 370 reg = <0x01c13400 0x14>, 371 <0x01c14800 0x4>, 372 <0x01c19800 0x4>, 373 <0x01c1c800 0x4>; 374 reg-names = "phy_ctrl", 375 "pmu0", 376 "pmu1", 377 "pmu2"; 378 clocks = <&ccu CLK_USB_PHY0>, 379 <&ccu CLK_USB_PHY1>, 380 <&ccu CLK_USB_PHY2>; 381 clock-names = "usb0_phy", 382 "usb1_phy", 383 "usb2_phy"; 384 resets = <&ccu RST_USB_PHY0>, 385 <&ccu RST_USB_PHY1>, 386 <&ccu RST_USB_PHY2>; 387 reset-names = "usb0_reset", 388 "usb1_reset", 389 "usb2_reset"; 390 status = "disabled"; 391 #phy-cells = <1>; 392 }; 393 394 crypto: crypto@1c15000 { 395 compatible = "allwinner,sun8i-r40-crypto"; 396 reg = <0x01c15000 0x1000>; 397 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>; 398 clocks = <&ccu CLK_BUS_CE>, <&ccu CLK_CE>; 399 clock-names = "bus", "mod"; 400 resets = <&ccu RST_BUS_CE>; 401 }; 402 403 spi2: spi@1c17000 { 404 compatible = "allwinner,sun8i-r40-spi", 405 "allwinner,sun8i-h3-spi"; 406 reg = <0x01c17000 0x1000>; 407 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>; 408 clocks = <&ccu CLK_BUS_SPI2>, <&ccu CLK_SPI2>; 409 clock-names = "ahb", "mod"; 410 resets = <&ccu RST_BUS_SPI2>; 411 status = "disabled"; 412 #address-cells = <1>; 413 #size-cells = <0>; 414 }; 415 416 ahci: sata@1c18000 { 417 compatible = "allwinner,sun8i-r40-ahci"; 418 reg = <0x01c18000 0x1000>; 419 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>; 420 clocks = <&ccu CLK_BUS_SATA>, <&ccu CLK_SATA>; 421 resets = <&ccu RST_BUS_SATA>; 422 reset-names = "ahci"; 423 status = "disabled"; 424 }; 425 426 ehci1: usb@1c19000 { 427 compatible = "allwinner,sun8i-r40-ehci", "generic-ehci"; 428 reg = <0x01c19000 0x100>; 429 interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>; 430 clocks = <&ccu CLK_BUS_EHCI1>; 431 resets = <&ccu RST_BUS_EHCI1>; 432 phys = <&usbphy 1>; 433 phy-names = "usb"; 434 status = "disabled"; 435 }; 436 437 ohci1: usb@1c19400 { 438 compatible = "allwinner,sun8i-r40-ohci", "generic-ohci"; 439 reg = <0x01c19400 0x100>; 440 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>; 441 clocks = <&ccu CLK_BUS_OHCI1>, 442 <&ccu CLK_USB_OHCI1>; 443 resets = <&ccu RST_BUS_OHCI1>; 444 phys = <&usbphy 1>; 445 phy-names = "usb"; 446 status = "disabled"; 447 }; 448 449 ehci2: usb@1c1c000 { 450 compatible = "allwinner,sun8i-r40-ehci", "generic-ehci"; 451 reg = <0x01c1c000 0x100>; 452 interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>; 453 clocks = <&ccu CLK_BUS_EHCI2>; 454 resets = <&ccu RST_BUS_EHCI2>; 455 phys = <&usbphy 2>; 456 phy-names = "usb"; 457 status = "disabled"; 458 }; 459 460 ohci2: usb@1c1c400 { 461 compatible = "allwinner,sun8i-r40-ohci", "generic-ohci"; 462 reg = <0x01c1c400 0x100>; 463 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; 464 clocks = <&ccu CLK_BUS_OHCI2>, 465 <&ccu CLK_USB_OHCI2>; 466 resets = <&ccu RST_BUS_OHCI2>; 467 phys = <&usbphy 2>; 468 phy-names = "usb"; 469 status = "disabled"; 470 }; 471 472 spi3: spi@1c1f000 { 473 compatible = "allwinner,sun8i-r40-spi", 474 "allwinner,sun8i-h3-spi"; 475 reg = <0x01c1f000 0x1000>; 476 interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>; 477 clocks = <&ccu CLK_BUS_SPI3>, <&ccu CLK_SPI3>; 478 clock-names = "ahb", "mod"; 479 resets = <&ccu RST_BUS_SPI3>; 480 status = "disabled"; 481 #address-cells = <1>; 482 #size-cells = <0>; 483 }; 484 485 ccu: clock@1c20000 { 486 compatible = "allwinner,sun8i-r40-ccu"; 487 reg = <0x01c20000 0x400>; 488 clocks = <&osc24M>, <&rtc 0>; 489 clock-names = "hosc", "losc"; 490 #clock-cells = <1>; 491 #reset-cells = <1>; 492 }; 493 494 rtc: rtc@1c20400 { 495 compatible = "allwinner,sun8i-r40-rtc"; 496 reg = <0x01c20400 0x400>; 497 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; 498 clock-output-names = "osc32k", "osc32k-out"; 499 clocks = <&osc32k>; 500 #clock-cells = <1>; 501 }; 502 503 pio: pinctrl@1c20800 { 504 compatible = "allwinner,sun8i-r40-pinctrl"; 505 reg = <0x01c20800 0x400>; 506 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; 507 clocks = <&ccu CLK_BUS_PIO>, <&osc24M>, <&rtc 0>; 508 clock-names = "apb", "hosc", "losc"; 509 gpio-controller; 510 interrupt-controller; 511 #interrupt-cells = <3>; 512 #gpio-cells = <3>; 513 514 clk_out_a_pin: clk-out-a-pin { 515 pins = "PI12"; 516 function = "clk_out_a"; 517 }; 518 519 /omit-if-no-ref/ 520 csi0_8bits_pins: csi0-8bits-pins { 521 pins = "PE0", "PE2", "PE3", "PE4", "PE5", 522 "PE6", "PE7", "PE8", "PE9", "PE10", 523 "PE11"; 524 function = "csi0"; 525 }; 526 527 /omit-if-no-ref/ 528 csi0_mclk_pin: csi0-mclk-pin { 529 pins = "PE1"; 530 function = "csi0"; 531 }; 532 533 gmac_rgmii_pins: gmac-rgmii-pins { 534 pins = "PA0", "PA1", "PA2", "PA3", 535 "PA4", "PA5", "PA6", "PA7", 536 "PA8", "PA10", "PA11", "PA12", 537 "PA13", "PA15", "PA16"; 538 function = "gmac"; 539 /* 540 * data lines in RGMII mode use DDR mode 541 * and need a higher signal drive strength 542 */ 543 drive-strength = <40>; 544 }; 545 546 i2c0_pins: i2c0-pins { 547 pins = "PB0", "PB1"; 548 function = "i2c0"; 549 }; 550 551 i2c1_pins: i2c1-pins { 552 pins = "PB18", "PB19"; 553 function = "i2c1"; 554 }; 555 556 i2c2_pins: i2c2-pins { 557 pins = "PB20", "PB21"; 558 function = "i2c2"; 559 }; 560 561 i2c3_pins: i2c3-pins { 562 pins = "PI0", "PI1"; 563 function = "i2c3"; 564 }; 565 566 i2c4_pins: i2c4-pins { 567 pins = "PI2", "PI3"; 568 function = "i2c4"; 569 }; 570 571 ir0_pins: ir0-pins { 572 pins = "PB4"; 573 function = "ir0"; 574 }; 575 576 ir1_pins: ir1-pins { 577 pins = "PB23"; 578 function = "ir1"; 579 }; 580 581 mmc0_pins: mmc0-pins { 582 pins = "PF0", "PF1", "PF2", 583 "PF3", "PF4", "PF5"; 584 function = "mmc0"; 585 drive-strength = <30>; 586 bias-pull-up; 587 }; 588 589 mmc1_pg_pins: mmc1-pg-pins { 590 pins = "PG0", "PG1", "PG2", 591 "PG3", "PG4", "PG5"; 592 function = "mmc1"; 593 drive-strength = <30>; 594 bias-pull-up; 595 }; 596 597 mmc2_pins: mmc2-pins { 598 pins = "PC5", "PC6", "PC7", "PC8", "PC9", 599 "PC10", "PC11", "PC12", "PC13", "PC14", 600 "PC15", "PC24"; 601 function = "mmc2"; 602 drive-strength = <30>; 603 bias-pull-up; 604 }; 605 606 /omit-if-no-ref/ 607 mmc3_pins: mmc3-pins { 608 pins = "PI4", "PI5", "PI6", 609 "PI7", "PI8", "PI9"; 610 function = "mmc3"; 611 drive-strength = <30>; 612 bias-pull-up; 613 }; 614 615 /omit-if-no-ref/ 616 spi0_pc_pins: spi0-pc-pins { 617 pins = "PC0", "PC1", "PC2"; 618 function = "spi0"; 619 }; 620 621 /omit-if-no-ref/ 622 spi0_cs0_pc_pin: spi0-cs0-pc-pin { 623 pins = "PC23"; 624 function = "spi0"; 625 }; 626 627 /omit-if-no-ref/ 628 spi1_pi_pins: spi1-pi-pins { 629 pins = "PI17", "PI18", "PI19"; 630 function = "spi1"; 631 }; 632 633 /omit-if-no-ref/ 634 spi1_cs0_pi_pin: spi1-cs0-pi-pin { 635 pins = "PI16"; 636 function = "spi1"; 637 }; 638 639 /omit-if-no-ref/ 640 spi1_cs1_pi_pin: spi1-cs1-pi-pin { 641 pins = "PI15"; 642 function = "spi1"; 643 }; 644 645 /omit-if-no-ref/ 646 uart0_pb_pins: uart0-pb-pins { 647 pins = "PB22", "PB23"; 648 function = "uart0"; 649 }; 650 651 /omit-if-no-ref/ 652 uart2_pi_pins: uart2-pi-pins { 653 pins = "PI18", "PI19"; 654 function = "uart2"; 655 }; 656 657 /omit-if-no-ref/ 658 uart2_rts_cts_pi_pins: uart2-rts-cts-pi-pins{ 659 pins = "PI16", "PI17"; 660 function = "uart2"; 661 }; 662 663 /omit-if-no-ref/ 664 uart3_pg_pins: uart3-pg-pins { 665 pins = "PG6", "PG7"; 666 function = "uart3"; 667 }; 668 669 /omit-if-no-ref/ 670 uart3_rts_cts_pg_pins: uart3-rts-cts-pg-pins { 671 pins = "PG8", "PG9"; 672 function = "uart3"; 673 }; 674 675 /omit-if-no-ref/ 676 uart4_pg_pins: uart4-pg-pins { 677 pins = "PG10", "PG11"; 678 function = "uart4"; 679 }; 680 681 /omit-if-no-ref/ 682 uart5_ph_pins: uart5-ph-pins { 683 pins = "PH6", "PH7"; 684 function = "uart5"; 685 }; 686 687 /omit-if-no-ref/ 688 uart7_pi_pins: uart7-pi-pins { 689 pins = "PI20", "PI21"; 690 function = "uart7"; 691 }; 692 }; 693 694 timer@1c20c00 { 695 compatible = "allwinner,sun4i-a10-timer"; 696 reg = <0x01c20c00 0x90>; 697 interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>, 698 <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>, 699 <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>, 700 <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>, 701 <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>, 702 <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>; 703 clocks = <&osc24M>; 704 }; 705 706 wdt: watchdog@1c20c90 { 707 compatible = "allwinner,sun4i-a10-wdt"; 708 reg = <0x01c20c90 0x10>; 709 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; 710 clocks = <&osc24M>; 711 }; 712 713 ir0: ir@1c21800 { 714 compatible = "allwinner,sun8i-r40-ir", 715 "allwinner,sun6i-a31-ir"; 716 reg = <0x01c21800 0x400>; 717 pinctrl-0 = <&ir0_pins>; 718 pinctrl-names = "default"; 719 clocks = <&ccu CLK_BUS_IR0>, <&ccu CLK_IR0>; 720 clock-names = "apb", "ir"; 721 interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; 722 resets = <&ccu RST_BUS_IR0>; 723 status = "disabled"; 724 }; 725 726 ir1: ir@1c21c00 { 727 compatible = "allwinner,sun8i-r40-ir", 728 "allwinner,sun6i-a31-ir"; 729 reg = <0x01c21c00 0x400>; 730 pinctrl-0 = <&ir1_pins>; 731 pinctrl-names = "default"; 732 clocks = <&ccu CLK_BUS_IR1>, <&ccu CLK_IR1>; 733 clock-names = "apb", "ir"; 734 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>; 735 resets = <&ccu RST_BUS_IR1>; 736 status = "disabled"; 737 }; 738 739 ths: thermal-sensor@1c24c00 { 740 compatible = "allwinner,sun8i-r40-ths"; 741 reg = <0x01c24c00 0x100>; 742 clocks = <&ccu CLK_BUS_THS>, <&ccu CLK_THS>; 743 clock-names = "bus", "mod"; 744 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; 745 resets = <&ccu RST_BUS_THS>; 746 /* TODO: add nvmem-cells for calibration */ 747 #thermal-sensor-cells = <1>; 748 }; 749 750 uart0: serial@1c28000 { 751 compatible = "snps,dw-apb-uart"; 752 reg = <0x01c28000 0x400>; 753 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>; 754 reg-shift = <2>; 755 reg-io-width = <4>; 756 clocks = <&ccu CLK_BUS_UART0>; 757 resets = <&ccu RST_BUS_UART0>; 758 status = "disabled"; 759 }; 760 761 uart1: serial@1c28400 { 762 compatible = "snps,dw-apb-uart"; 763 reg = <0x01c28400 0x400>; 764 interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; 765 reg-shift = <2>; 766 reg-io-width = <4>; 767 clocks = <&ccu CLK_BUS_UART1>; 768 resets = <&ccu RST_BUS_UART1>; 769 status = "disabled"; 770 }; 771 772 uart2: serial@1c28800 { 773 compatible = "snps,dw-apb-uart"; 774 reg = <0x01c28800 0x400>; 775 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>; 776 reg-shift = <2>; 777 reg-io-width = <4>; 778 clocks = <&ccu CLK_BUS_UART2>; 779 resets = <&ccu RST_BUS_UART2>; 780 status = "disabled"; 781 }; 782 783 uart3: serial@1c28c00 { 784 compatible = "snps,dw-apb-uart"; 785 reg = <0x01c28c00 0x400>; 786 interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; 787 reg-shift = <2>; 788 reg-io-width = <4>; 789 clocks = <&ccu CLK_BUS_UART3>; 790 resets = <&ccu RST_BUS_UART3>; 791 status = "disabled"; 792 }; 793 794 uart4: serial@1c29000 { 795 compatible = "snps,dw-apb-uart"; 796 reg = <0x01c29000 0x400>; 797 interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>; 798 reg-shift = <2>; 799 reg-io-width = <4>; 800 clocks = <&ccu CLK_BUS_UART4>; 801 resets = <&ccu RST_BUS_UART4>; 802 status = "disabled"; 803 }; 804 805 uart5: serial@1c29400 { 806 compatible = "snps,dw-apb-uart"; 807 reg = <0x01c29400 0x400>; 808 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; 809 reg-shift = <2>; 810 reg-io-width = <4>; 811 clocks = <&ccu CLK_BUS_UART5>; 812 resets = <&ccu RST_BUS_UART5>; 813 status = "disabled"; 814 }; 815 816 uart6: serial@1c29800 { 817 compatible = "snps,dw-apb-uart"; 818 reg = <0x01c29800 0x400>; 819 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>; 820 reg-shift = <2>; 821 reg-io-width = <4>; 822 clocks = <&ccu CLK_BUS_UART6>; 823 resets = <&ccu RST_BUS_UART6>; 824 status = "disabled"; 825 }; 826 827 uart7: serial@1c29c00 { 828 compatible = "snps,dw-apb-uart"; 829 reg = <0x01c29c00 0x400>; 830 interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; 831 reg-shift = <2>; 832 reg-io-width = <4>; 833 clocks = <&ccu CLK_BUS_UART7>; 834 resets = <&ccu RST_BUS_UART7>; 835 status = "disabled"; 836 }; 837 838 i2c0: i2c@1c2ac00 { 839 compatible = "allwinner,sun6i-a31-i2c"; 840 reg = <0x01c2ac00 0x400>; 841 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; 842 clocks = <&ccu CLK_BUS_I2C0>; 843 resets = <&ccu RST_BUS_I2C0>; 844 pinctrl-0 = <&i2c0_pins>; 845 pinctrl-names = "default"; 846 status = "disabled"; 847 #address-cells = <1>; 848 #size-cells = <0>; 849 }; 850 851 i2c1: i2c@1c2b000 { 852 compatible = "allwinner,sun6i-a31-i2c"; 853 reg = <0x01c2b000 0x400>; 854 interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>; 855 clocks = <&ccu CLK_BUS_I2C1>; 856 resets = <&ccu RST_BUS_I2C1>; 857 pinctrl-0 = <&i2c1_pins>; 858 pinctrl-names = "default"; 859 status = "disabled"; 860 #address-cells = <1>; 861 #size-cells = <0>; 862 }; 863 864 i2c2: i2c@1c2b400 { 865 compatible = "allwinner,sun6i-a31-i2c"; 866 reg = <0x01c2b400 0x400>; 867 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>; 868 clocks = <&ccu CLK_BUS_I2C2>; 869 resets = <&ccu RST_BUS_I2C2>; 870 pinctrl-0 = <&i2c2_pins>; 871 pinctrl-names = "default"; 872 status = "disabled"; 873 #address-cells = <1>; 874 #size-cells = <0>; 875 }; 876 877 i2c3: i2c@1c2b800 { 878 compatible = "allwinner,sun6i-a31-i2c"; 879 reg = <0x01c2b800 0x400>; 880 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>; 881 clocks = <&ccu CLK_BUS_I2C3>; 882 resets = <&ccu RST_BUS_I2C3>; 883 pinctrl-0 = <&i2c3_pins>; 884 pinctrl-names = "default"; 885 status = "disabled"; 886 #address-cells = <1>; 887 #size-cells = <0>; 888 }; 889 890 i2c4: i2c@1c2c000 { 891 compatible = "allwinner,sun6i-a31-i2c"; 892 reg = <0x01c2c000 0x400>; 893 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>; 894 clocks = <&ccu CLK_BUS_I2C4>; 895 resets = <&ccu RST_BUS_I2C4>; 896 pinctrl-0 = <&i2c4_pins>; 897 pinctrl-names = "default"; 898 status = "disabled"; 899 #address-cells = <1>; 900 #size-cells = <0>; 901 }; 902 903 mali: gpu@1c40000 { 904 compatible = "allwinner,sun8i-r40-mali", "arm,mali-400"; 905 reg = <0x01c40000 0x10000>; 906 interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>, 907 <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>, 908 <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>, 909 <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>, 910 <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>, 911 <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>, 912 <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>; 913 interrupt-names = "gp", 914 "gpmmu", 915 "pp0", 916 "ppmmu0", 917 "pp1", 918 "ppmmu1", 919 "pmu"; 920 clocks = <&ccu CLK_BUS_GPU>, <&ccu CLK_GPU>; 921 clock-names = "bus", "core"; 922 resets = <&ccu RST_BUS_GPU>; 923 }; 924 925 gmac: ethernet@1c50000 { 926 compatible = "allwinner,sun8i-r40-gmac"; 927 syscon = <&ccu>; 928 reg = <0x01c50000 0x10000>; 929 interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>; 930 interrupt-names = "macirq"; 931 resets = <&ccu RST_BUS_GMAC>; 932 reset-names = "stmmaceth"; 933 clocks = <&ccu CLK_BUS_GMAC>; 934 clock-names = "stmmaceth"; 935 status = "disabled"; 936 937 gmac_mdio: mdio { 938 compatible = "snps,dwmac-mdio"; 939 #address-cells = <1>; 940 #size-cells = <0>; 941 }; 942 }; 943 944 mbus: dram-controller@1c62000 { 945 compatible = "allwinner,sun8i-r40-mbus"; 946 reg = <0x01c62000 0x1000>; 947 clocks = <&ccu 155>; 948 #address-cells = <1>; 949 #size-cells = <1>; 950 dma-ranges = <0x00000000 0x40000000 0x80000000>; 951 #interconnect-cells = <1>; 952 }; 953 954 tcon_top: tcon-top@1c70000 { 955 compatible = "allwinner,sun8i-r40-tcon-top"; 956 reg = <0x01c70000 0x1000>; 957 clocks = <&ccu CLK_BUS_TCON_TOP>, 958 <&ccu CLK_TCON_TV0>, 959 <&ccu CLK_TVE0>, 960 <&ccu CLK_TCON_TV1>, 961 <&ccu CLK_TVE1>, 962 <&ccu CLK_DSI_DPHY>; 963 clock-names = "bus", 964 "tcon-tv0", 965 "tve0", 966 "tcon-tv1", 967 "tve1", 968 "dsi"; 969 clock-output-names = "tcon-top-tv0", 970 "tcon-top-tv1", 971 "tcon-top-dsi"; 972 resets = <&ccu RST_BUS_TCON_TOP>; 973 #clock-cells = <1>; 974 975 ports { 976 #address-cells = <1>; 977 #size-cells = <0>; 978 979 tcon_top_mixer0_in: port@0 { 980 reg = <0>; 981 982 tcon_top_mixer0_in_mixer0: endpoint { 983 remote-endpoint = <&mixer0_out_tcon_top>; 984 }; 985 }; 986 987 tcon_top_mixer0_out: port@1 { 988 #address-cells = <1>; 989 #size-cells = <0>; 990 reg = <1>; 991 992 tcon_top_mixer0_out_tcon_lcd0: endpoint@0 { 993 reg = <0>; 994 }; 995 996 tcon_top_mixer0_out_tcon_lcd1: endpoint@1 { 997 reg = <1>; 998 }; 999 1000 tcon_top_mixer0_out_tcon_tv0: endpoint@2 { 1001 reg = <2>; 1002 remote-endpoint = <&tcon_tv0_in_tcon_top_mixer0>; 1003 }; 1004 1005 tcon_top_mixer0_out_tcon_tv1: endpoint@3 { 1006 reg = <3>; 1007 remote-endpoint = <&tcon_tv1_in_tcon_top_mixer0>; 1008 }; 1009 }; 1010 1011 tcon_top_mixer1_in: port@2 { 1012 #address-cells = <1>; 1013 #size-cells = <0>; 1014 reg = <2>; 1015 1016 tcon_top_mixer1_in_mixer1: endpoint@1 { 1017 reg = <1>; 1018 remote-endpoint = <&mixer1_out_tcon_top>; 1019 }; 1020 }; 1021 1022 tcon_top_mixer1_out: port@3 { 1023 #address-cells = <1>; 1024 #size-cells = <0>; 1025 reg = <3>; 1026 1027 tcon_top_mixer1_out_tcon_lcd0: endpoint@0 { 1028 reg = <0>; 1029 }; 1030 1031 tcon_top_mixer1_out_tcon_lcd1: endpoint@1 { 1032 reg = <1>; 1033 }; 1034 1035 tcon_top_mixer1_out_tcon_tv0: endpoint@2 { 1036 reg = <2>; 1037 remote-endpoint = <&tcon_tv0_in_tcon_top_mixer1>; 1038 }; 1039 1040 tcon_top_mixer1_out_tcon_tv1: endpoint@3 { 1041 reg = <3>; 1042 remote-endpoint = <&tcon_tv1_in_tcon_top_mixer1>; 1043 }; 1044 }; 1045 1046 tcon_top_hdmi_in: port@4 { 1047 #address-cells = <1>; 1048 #size-cells = <0>; 1049 reg = <4>; 1050 1051 tcon_top_hdmi_in_tcon_tv0: endpoint@0 { 1052 reg = <0>; 1053 remote-endpoint = <&tcon_tv0_out_tcon_top>; 1054 }; 1055 1056 tcon_top_hdmi_in_tcon_tv1: endpoint@1 { 1057 reg = <1>; 1058 remote-endpoint = <&tcon_tv1_out_tcon_top>; 1059 }; 1060 }; 1061 1062 tcon_top_hdmi_out: port@5 { 1063 reg = <5>; 1064 1065 tcon_top_hdmi_out_hdmi: endpoint { 1066 remote-endpoint = <&hdmi_in_tcon_top>; 1067 }; 1068 }; 1069 }; 1070 }; 1071 1072 tcon_tv0: lcd-controller@1c73000 { 1073 compatible = "allwinner,sun8i-r40-tcon-tv"; 1074 reg = <0x01c73000 0x1000>; 1075 interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>; 1076 clocks = <&ccu CLK_BUS_TCON_TV0>, <&tcon_top CLK_TCON_TOP_TV0>; 1077 clock-names = "ahb", "tcon-ch1"; 1078 resets = <&ccu RST_BUS_TCON_TV0>; 1079 reset-names = "lcd"; 1080 status = "disabled"; 1081 1082 ports { 1083 #address-cells = <1>; 1084 #size-cells = <0>; 1085 1086 tcon_tv0_in: port@0 { 1087 #address-cells = <1>; 1088 #size-cells = <0>; 1089 reg = <0>; 1090 1091 tcon_tv0_in_tcon_top_mixer0: endpoint@0 { 1092 reg = <0>; 1093 remote-endpoint = <&tcon_top_mixer0_out_tcon_tv0>; 1094 }; 1095 1096 tcon_tv0_in_tcon_top_mixer1: endpoint@1 { 1097 reg = <1>; 1098 remote-endpoint = <&tcon_top_mixer1_out_tcon_tv0>; 1099 }; 1100 }; 1101 1102 tcon_tv0_out: port@1 { 1103 #address-cells = <1>; 1104 #size-cells = <0>; 1105 reg = <1>; 1106 1107 tcon_tv0_out_tcon_top: endpoint@1 { 1108 reg = <1>; 1109 remote-endpoint = <&tcon_top_hdmi_in_tcon_tv0>; 1110 }; 1111 }; 1112 }; 1113 }; 1114 1115 tcon_tv1: lcd-controller@1c74000 { 1116 compatible = "allwinner,sun8i-r40-tcon-tv"; 1117 reg = <0x01c74000 0x1000>; 1118 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; 1119 clocks = <&ccu CLK_BUS_TCON_TV1>, <&tcon_top CLK_TCON_TOP_TV1>; 1120 clock-names = "ahb", "tcon-ch1"; 1121 resets = <&ccu RST_BUS_TCON_TV1>; 1122 reset-names = "lcd"; 1123 status = "disabled"; 1124 1125 ports { 1126 #address-cells = <1>; 1127 #size-cells = <0>; 1128 1129 tcon_tv1_in: port@0 { 1130 #address-cells = <1>; 1131 #size-cells = <0>; 1132 reg = <0>; 1133 1134 tcon_tv1_in_tcon_top_mixer0: endpoint@0 { 1135 reg = <0>; 1136 remote-endpoint = <&tcon_top_mixer0_out_tcon_tv1>; 1137 }; 1138 1139 tcon_tv1_in_tcon_top_mixer1: endpoint@1 { 1140 reg = <1>; 1141 remote-endpoint = <&tcon_top_mixer1_out_tcon_tv1>; 1142 }; 1143 }; 1144 1145 tcon_tv1_out: port@1 { 1146 #address-cells = <1>; 1147 #size-cells = <0>; 1148 reg = <1>; 1149 1150 tcon_tv1_out_tcon_top: endpoint@1 { 1151 reg = <1>; 1152 remote-endpoint = <&tcon_top_hdmi_in_tcon_tv1>; 1153 }; 1154 }; 1155 }; 1156 }; 1157 1158 gic: interrupt-controller@1c81000 { 1159 compatible = "arm,gic-400"; 1160 reg = <0x01c81000 0x1000>, 1161 <0x01c82000 0x2000>, 1162 <0x01c84000 0x2000>, 1163 <0x01c86000 0x2000>; 1164 interrupt-controller; 1165 #interrupt-cells = <3>; 1166 interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>; 1167 }; 1168 1169 hdmi: hdmi@1ee0000 { 1170 compatible = "allwinner,sun8i-r40-dw-hdmi", 1171 "allwinner,sun8i-a83t-dw-hdmi"; 1172 reg = <0x01ee0000 0x10000>; 1173 reg-io-width = <1>; 1174 interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>; 1175 clocks = <&ccu CLK_BUS_HDMI0>, <&ccu CLK_HDMI_SLOW>, 1176 <&ccu CLK_HDMI>; 1177 clock-names = "iahb", "isfr", "tmds"; 1178 resets = <&ccu RST_BUS_HDMI1>; 1179 reset-names = "ctrl"; 1180 phys = <&hdmi_phy>; 1181 phy-names = "phy"; 1182 status = "disabled"; 1183 1184 ports { 1185 #address-cells = <1>; 1186 #size-cells = <0>; 1187 1188 hdmi_in: port@0 { 1189 reg = <0>; 1190 1191 hdmi_in_tcon_top: endpoint { 1192 remote-endpoint = <&tcon_top_hdmi_out_hdmi>; 1193 }; 1194 }; 1195 1196 hdmi_out: port@1 { 1197 reg = <1>; 1198 }; 1199 }; 1200 }; 1201 1202 hdmi_phy: hdmi-phy@1ef0000 { 1203 compatible = "allwinner,sun8i-r40-hdmi-phy"; 1204 reg = <0x01ef0000 0x10000>; 1205 clocks = <&ccu CLK_BUS_HDMI1>, <&ccu CLK_HDMI_SLOW>, 1206 <&ccu CLK_PLL_VIDEO0>, <&ccu CLK_PLL_VIDEO1>; 1207 clock-names = "bus", "mod", "pll-0", "pll-1"; 1208 resets = <&ccu RST_BUS_HDMI0>; 1209 reset-names = "phy"; 1210 #phy-cells = <0>; 1211 }; 1212 }; 1213 1214 pmu { 1215 compatible = "arm,cortex-a7-pmu"; 1216 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>, 1217 <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>, 1218 <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>, 1219 <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>; 1220 interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>; 1221 }; 1222 1223 timer { 1224 compatible = "arm,armv7-timer"; 1225 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 1226 <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 1227 <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 1228 <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>; 1229 }; 1230}; 1231