1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Copyright 2012 DENX Software Engineering GmbH 4 * Heiko Schocher <hs@denx.de> 5 */ 6#include <dt-bindings/interrupt-controller/irq.h> 7 8/ { 9 #address-cells = <1>; 10 #size-cells = <1>; 11 chosen { }; 12 aliases { }; 13 14 memory@c0000000 { 15 device_type = "memory"; 16 reg = <0xc0000000 0x0>; 17 }; 18 19 cpus { 20 #address-cells = <1>; 21 #size-cells = <0>; 22 23 cpu: cpu@0 { 24 compatible = "arm,arm926ej-s"; 25 device_type = "cpu"; 26 reg = <0>; 27 clocks = <&psc0 14>; 28 operating-points-v2 = <&opp_table>; 29 }; 30 }; 31 32 opp_table: opp-table { 33 compatible = "operating-points-v2"; 34 35 opp_100: opp100-100000000 { 36 opp-hz = /bits/ 64 <100000000>; 37 opp-microvolt = <1000000 950000 1050000>; 38 }; 39 40 opp_200: opp110-200000000 { 41 opp-hz = /bits/ 64 <200000000>; 42 opp-microvolt = <1100000 1050000 1160000>; 43 }; 44 45 opp_300: opp120-300000000 { 46 opp-hz = /bits/ 64 <300000000>; 47 opp-microvolt = <1200000 1140000 1320000>; 48 }; 49 50 /* 51 * Original silicon was 300MHz max, so higher frequencies 52 * need to be enabled on a per-board basis if the chip is 53 * capable. 54 */ 55 56 opp_375: opp120-375000000 { 57 status = "disabled"; 58 opp-hz = /bits/ 64 <375000000>; 59 opp-microvolt = <1200000 1140000 1320000>; 60 }; 61 62 opp_456: opp130-456000000 { 63 status = "disabled"; 64 opp-hz = /bits/ 64 <456000000>; 65 opp-microvolt = <1300000 1250000 1350000>; 66 }; 67 }; 68 69 arm { 70 #address-cells = <1>; 71 #size-cells = <1>; 72 ranges; 73 intc: interrupt-controller@fffee000 { 74 compatible = "ti,cp-intc"; 75 interrupt-controller; 76 #interrupt-cells = <1>; 77 ti,intc-size = <101>; 78 reg = <0xfffee000 0x2000>; 79 }; 80 }; 81 clocks: clocks { 82 ref_clk: ref_clk { 83 compatible = "fixed-clock"; 84 #clock-cells = <0>; 85 clock-output-names = "ref_clk"; 86 }; 87 sata_refclk: sata_refclk { 88 compatible = "fixed-clock"; 89 #clock-cells = <0>; 90 clock-output-names = "sata_refclk"; 91 status = "disabled"; 92 }; 93 usb_refclkin: usb_refclkin { 94 compatible = "fixed-clock"; 95 #clock-cells = <0>; 96 clock-output-names = "usb_refclkin"; 97 status = "disabled"; 98 }; 99 }; 100 dsp: dsp@11800000 { 101 compatible = "ti,da850-dsp"; 102 reg = <0x11800000 0x40000>, 103 <0x11e00000 0x8000>, 104 <0x11f00000 0x8000>, 105 <0x01c14044 0x4>, 106 <0x01c14174 0x8>; 107 reg-names = "l2sram", "l1pram", "l1dram", "host1cfg", "chipsig"; 108 interrupt-parent = <&intc>; 109 interrupts = <28>; 110 clocks = <&psc0 15>; 111 resets = <&psc0 15>; 112 status = "disabled"; 113 }; 114 soc@1c00000 { 115 compatible = "simple-bus"; 116 model = "da850"; 117 #address-cells = <1>; 118 #size-cells = <1>; 119 ranges = <0x0 0x01c00000 0x400000>; 120 interrupt-parent = <&intc>; 121 122 psc0: clock-controller@10000 { 123 compatible = "ti,da850-psc0"; 124 reg = <0x10000 0x1000>; 125 #clock-cells = <1>; 126 #reset-cells = <1>; 127 #power-domain-cells = <1>; 128 clocks = <&pll0_sysclk 1>, <&pll0_sysclk 2>, 129 <&pll0_sysclk 4>, <&pll0_sysclk 6>, 130 <&async1_clk>; 131 clock-names = "pll0_sysclk1", "pll0_sysclk2", 132 "pll0_sysclk4", "pll0_sysclk6", 133 "async1"; 134 }; 135 pll0: clock-controller@11000 { 136 compatible = "ti,da850-pll0"; 137 reg = <0x11000 0x1000>; 138 clocks = <&ref_clk>, <&pll1_sysclk 3>; 139 clock-names = "clksrc", "extclksrc"; 140 141 pll0_pllout: pllout { 142 #clock-cells = <0>; 143 }; 144 pll0_sysclk: sysclk { 145 #clock-cells = <1>; 146 }; 147 pll0_auxclk: auxclk { 148 #clock-cells = <0>; 149 }; 150 pll0_obsclk: obsclk { 151 #clock-cells = <0>; 152 }; 153 }; 154 pmx_core: pinmux@14120 { 155 compatible = "pinctrl-single"; 156 reg = <0x14120 0x50>; 157 #pinctrl-cells = <2>; 158 pinctrl-single,bit-per-mux; 159 pinctrl-single,register-width = <32>; 160 pinctrl-single,function-mask = <0xf>; 161 /* pin base, nr pins & gpio function */ 162 pinctrl-single,gpio-range = <&range 0 17 0x8>, 163 <&range 17 8 0x4>, 164 <&range 26 8 0x4>, 165 <&range 34 80 0x8>, 166 <&range 129 31 0x8>; 167 status = "disabled"; 168 169 range: gpio-range { 170 #pinctrl-single,gpio-range-cells = <3>; 171 }; 172 173 serial0_rtscts_pins: serial0-rtscts-pins { 174 pinctrl-single,bits = < 175 /* UART0_RTS UART0_CTS */ 176 0x0c 0x22000000 0xff000000 177 >; 178 }; 179 serial0_rxtx_pins: serial0-rxtx-pins { 180 pinctrl-single,bits = < 181 /* UART0_TXD UART0_RXD */ 182 0x0c 0x00220000 0x00ff0000 183 >; 184 }; 185 serial1_rtscts_pins: serial1-rtscts-pins { 186 pinctrl-single,bits = < 187 /* UART1_CTS UART1_RTS */ 188 0x00 0x00440000 0x00ff0000 189 >; 190 }; 191 serial1_rxtx_pins: serial1-rxtx-pins { 192 pinctrl-single,bits = < 193 /* UART1_TXD UART1_RXD */ 194 0x10 0x22000000 0xff000000 195 >; 196 }; 197 serial2_rtscts_pins: serial2-rtscts-pins { 198 pinctrl-single,bits = < 199 /* UART2_CTS UART2_RTS */ 200 0x00 0x44000000 0xff000000 201 >; 202 }; 203 serial2_rxtx_pins: serial2-rxtx-pins { 204 pinctrl-single,bits = < 205 /* UART2_TXD UART2_RXD */ 206 0x10 0x00220000 0x00ff0000 207 >; 208 }; 209 i2c0_pins: i2c0-pins { 210 pinctrl-single,bits = < 211 /* I2C0_SDA,I2C0_SCL */ 212 0x10 0x00002200 0x0000ff00 213 >; 214 }; 215 i2c1_pins: i2c1-pins { 216 pinctrl-single,bits = < 217 /* I2C1_SDA, I2C1_SCL */ 218 0x10 0x00440000 0x00ff0000 219 >; 220 }; 221 mmc0_pins: mmc-pins { 222 pinctrl-single,bits = < 223 /* MMCSD0_DAT[3] MMCSD0_DAT[2] 224 * MMCSD0_DAT[1] MMCSD0_DAT[0] 225 * MMCSD0_CMD MMCSD0_CLK 226 */ 227 0x28 0x00222222 0x00ffffff 228 >; 229 }; 230 ehrpwm0a_pins: ehrpwm0a-pins { 231 pinctrl-single,bits = < 232 /* EPWM0A */ 233 0xc 0x00000002 0x0000000f 234 >; 235 }; 236 ehrpwm0b_pins: ehrpwm0b-pins { 237 pinctrl-single,bits = < 238 /* EPWM0B */ 239 0xc 0x00000020 0x000000f0 240 >; 241 }; 242 ehrpwm1a_pins: ehrpwm1a-pins { 243 pinctrl-single,bits = < 244 /* EPWM1A */ 245 0x14 0x00000002 0x0000000f 246 >; 247 }; 248 ehrpwm1b_pins: ehrpwm1b-pins { 249 pinctrl-single,bits = < 250 /* EPWM1B */ 251 0x14 0x00000020 0x000000f0 252 >; 253 }; 254 ecap0_pins: ecap0-pins { 255 pinctrl-single,bits = < 256 /* ECAP0_APWM0 */ 257 0x8 0x20000000 0xf0000000 258 >; 259 }; 260 ecap1_pins: ecap1-pins { 261 pinctrl-single,bits = < 262 /* ECAP1_APWM1 */ 263 0x4 0x40000000 0xf0000000 264 >; 265 }; 266 ecap2_pins: ecap2-pins { 267 pinctrl-single,bits = < 268 /* ECAP2_APWM2 */ 269 0x4 0x00000004 0x0000000f 270 >; 271 }; 272 spi0_pins: spi0-pins { 273 pinctrl-single,bits = < 274 /* SIMO, SOMI, CLK */ 275 0xc 0x00001101 0x0000ff0f 276 >; 277 }; 278 spi0_cs0_pin: spi0-cs0-pins { 279 pinctrl-single,bits = < 280 /* CS0 */ 281 0x10 0x00000010 0x000000f0 282 >; 283 }; 284 spi0_cs3_pin: spi0-cs3-pins { 285 pinctrl-single,bits = < 286 /* CS3 */ 287 0xc 0x01000000 0x0f000000 288 >; 289 }; 290 spi1_pins: spi1-pins { 291 pinctrl-single,bits = < 292 /* SIMO, SOMI, CLK */ 293 0x14 0x00110100 0x00ff0f00 294 >; 295 }; 296 spi1_cs0_pin: spi1-cs0-pins { 297 pinctrl-single,bits = < 298 /* CS0 */ 299 0x14 0x00000010 0x000000f0 300 >; 301 }; 302 mdio_pins: mdio-pins { 303 pinctrl-single,bits = < 304 /* MDIO_CLK, MDIO_D */ 305 0x10 0x00000088 0x000000ff 306 >; 307 }; 308 mii_pins: mii-pins { 309 pinctrl-single,bits = < 310 /* 311 * MII_TXEN, MII_TXCLK, MII_COL 312 * MII_TXD_3, MII_TXD_2, MII_TXD_1 313 * MII_TXD_0 314 */ 315 0x8 0x88888880 0xfffffff0 316 /* 317 * MII_RXER, MII_CRS, MII_RXCLK 318 * MII_RXDV, MII_RXD_3, MII_RXD_2 319 * MII_RXD_1, MII_RXD_0 320 */ 321 0xc 0x88888888 0xffffffff 322 >; 323 }; 324 lcd_pins: lcd-pins { 325 pinctrl-single,bits = < 326 /* 327 * LCD_D[2], LCD_D[3], LCD_D[4], LCD_D[5], 328 * LCD_D[6], LCD_D[7] 329 */ 330 0x40 0x22222200 0xffffff00 331 /* 332 * LCD_D[10], LCD_D[11], LCD_D[12], LCD_D[13], 333 * LCD_D[14], LCD_D[15], LCD_D[0], LCD_D[1] 334 */ 335 0x44 0x22222222 0xffffffff 336 /* LCD_D[8], LCD_D[9] */ 337 0x48 0x00000022 0x000000ff 338 339 /* LCD_PCLK */ 340 0x48 0x02000000 0x0f000000 341 /* LCD_AC_ENB_CS, LCD_VSYNC, LCD_HSYNC */ 342 0x4c 0x02000022 0x0f0000ff 343 >; 344 }; 345 vpif_capture_pins: vpif-capture-pins { 346 pinctrl-single,bits = < 347 /* VP_DIN[2..7], VP_CLKIN1, VP_CLKIN0 */ 348 0x38 0x11111111 0xffffffff 349 /* VP_DIN[10..15,0..1] */ 350 0x3c 0x11111111 0xffffffff 351 /* VP_DIN[8..9] */ 352 0x40 0x00000011 0x000000ff 353 >; 354 }; 355 vpif_display_pins: vpif-display-pins { 356 pinctrl-single,bits = < 357 /* VP_DOUT[2..7] */ 358 0x40 0x11111100 0xffffff00 359 /* VP_DOUT[10..15,0..1] */ 360 0x44 0x11111111 0xffffffff 361 /* VP_DOUT[8..9] */ 362 0x48 0x00000011 0x000000ff 363 /* 364 * VP_CLKOUT3, VP_CLKIN3, 365 * VP_CLKOUT2, VP_CLKIN2 366 */ 367 0x4c 0x00111100 0x00ffff00 368 >; 369 }; 370 }; 371 prictrl: priority-controller@14110 { 372 compatible = "ti,da850-mstpri"; 373 reg = <0x14110 0x0c>; 374 status = "disabled"; 375 }; 376 cfgchip: chip-controller@1417c { 377 compatible = "ti,da830-cfgchip", "syscon", "simple-mfd"; 378 reg = <0x1417c 0x14>; 379 380 usb_phy: usb-phy { 381 compatible = "ti,da830-usb-phy"; 382 #phy-cells = <1>; 383 clocks = <&usb_phy_clk 0>, <&usb_phy_clk 1>; 384 clock-names = "usb0_clk48", "usb1_clk48"; 385 status = "disabled"; 386 }; 387 usb_phy_clk: usb-phy-clocks { 388 compatible = "ti,da830-usb-phy-clocks"; 389 #clock-cells = <1>; 390 clocks = <&psc1 1>, <&usb_refclkin>, 391 <&pll0_auxclk>; 392 clock-names = "fck", "usb_refclkin", "auxclk"; 393 }; 394 ehrpwm_tbclk: ehrpwm_tbclk { 395 compatible = "ti,da830-tbclksync"; 396 #clock-cells = <0>; 397 clocks = <&psc1 17>; 398 clock-names = "fck"; 399 }; 400 div4p5_clk: div4.5 { 401 compatible = "ti,da830-div4p5ena"; 402 #clock-cells = <0>; 403 clocks = <&pll0_pllout>; 404 clock-names = "pll0_pllout"; 405 }; 406 async1_clk: async1 { 407 compatible = "ti,da850-async1-clksrc"; 408 #clock-cells = <0>; 409 clocks = <&pll0_sysclk 3>, <&div4p5_clk>; 410 clock-names = "pll0_sysclk3", "div4.5"; 411 }; 412 async3_clk: async3 { 413 compatible = "ti,da850-async3-clksrc"; 414 #clock-cells = <0>; 415 clocks = <&pll0_sysclk 2>, <&pll1_sysclk 2>; 416 clock-names = "pll0_sysclk2", "pll1_sysclk2"; 417 }; 418 }; 419 edma0: edma@0 { 420 compatible = "ti,edma3-tpcc"; 421 /* eDMA3 CC0: 0x01c0 0000 - 0x01c0 7fff */ 422 reg = <0x0 0x8000>; 423 reg-names = "edma3_cc"; 424 interrupts = <11>, <12>; 425 interrupt-names = "edma3_ccint", "edma3_ccerrint"; 426 #dma-cells = <2>; 427 428 ti,tptcs = <&edma0_tptc0 7>, <&edma0_tptc1 0>; 429 power-domains = <&psc0 0>; 430 }; 431 edma0_tptc0: tptc@8000 { 432 compatible = "ti,edma3-tptc"; 433 reg = <0x8000 0x400>; 434 interrupts = <13>; 435 interrupt-names = "edm3_tcerrint"; 436 power-domains = <&psc0 1>; 437 }; 438 edma0_tptc1: tptc@8400 { 439 compatible = "ti,edma3-tptc"; 440 reg = <0x8400 0x400>; 441 interrupts = <32>; 442 interrupt-names = "edm3_tcerrint"; 443 power-domains = <&psc0 2>; 444 }; 445 edma1: edma@230000 { 446 compatible = "ti,edma3-tpcc"; 447 /* eDMA3 CC1: 0x01e3 0000 - 0x01e3 7fff */ 448 reg = <0x230000 0x8000>; 449 reg-names = "edma3_cc"; 450 interrupts = <93>, <94>; 451 interrupt-names = "edma3_ccint", "edma3_ccerrint"; 452 #dma-cells = <2>; 453 454 ti,tptcs = <&edma1_tptc0 7>; 455 power-domains = <&psc1 0>; 456 }; 457 edma1_tptc0: tptc@238000 { 458 compatible = "ti,edma3-tptc"; 459 reg = <0x238000 0x400>; 460 interrupts = <95>; 461 interrupt-names = "edm3_tcerrint"; 462 power-domains = <&psc1 21>; 463 }; 464 serial0: serial@42000 { 465 compatible = "ti,da830-uart", "ns16550a"; 466 reg = <0x42000 0x100>; 467 reg-io-width = <4>; 468 reg-shift = <2>; 469 interrupts = <25>; 470 clocks = <&psc0 9>; 471 power-domains = <&psc0 9>; 472 status = "disabled"; 473 }; 474 serial1: serial@10c000 { 475 compatible = "ti,da830-uart", "ns16550a"; 476 reg = <0x10c000 0x100>; 477 reg-io-width = <4>; 478 reg-shift = <2>; 479 interrupts = <53>; 480 clocks = <&psc1 12>; 481 power-domains = <&psc1 12>; 482 status = "disabled"; 483 }; 484 serial2: serial@10d000 { 485 compatible = "ti,da830-uart", "ns16550a"; 486 reg = <0x10d000 0x100>; 487 reg-io-width = <4>; 488 reg-shift = <2>; 489 interrupts = <61>; 490 clocks = <&psc1 13>; 491 power-domains = <&psc1 13>; 492 status = "disabled"; 493 }; 494 rtc0: rtc@23000 { 495 compatible = "ti,da830-rtc"; 496 reg = <0x23000 0x1000>; 497 interrupts = <19>, <19>; 498 clocks = <&pll0_auxclk>; 499 clock-names = "int-clk"; 500 status = "disabled"; 501 }; 502 i2c0: i2c@22000 { 503 compatible = "ti,davinci-i2c"; 504 reg = <0x22000 0x1000>; 505 interrupts = <15>; 506 #address-cells = <1>; 507 #size-cells = <0>; 508 clocks = <&pll0_auxclk>; 509 status = "disabled"; 510 }; 511 i2c1: i2c@228000 { 512 compatible = "ti,davinci-i2c"; 513 reg = <0x228000 0x1000>; 514 interrupts = <51>; 515 #address-cells = <1>; 516 #size-cells = <0>; 517 clocks = <&psc1 11>; 518 power-domains = <&psc1 11>; 519 status = "disabled"; 520 }; 521 clocksource: timer@20000 { 522 compatible = "ti,da830-timer"; 523 reg = <0x20000 0x1000>; 524 interrupts = <21>, <22>; 525 interrupt-names = "tint12", "tint34"; 526 clocks = <&pll0_auxclk>; 527 }; 528 wdt: wdt@21000 { 529 compatible = "ti,davinci-wdt"; 530 reg = <0x21000 0x1000>; 531 clocks = <&pll0_auxclk>; 532 status = "disabled"; 533 }; 534 mmc0: mmc@40000 { 535 compatible = "ti,da830-mmc"; 536 reg = <0x40000 0x1000>; 537 cap-sd-highspeed; 538 cap-mmc-highspeed; 539 interrupts = <16>, <17>; 540 dmas = <&edma0 16 0>, <&edma0 17 0>; 541 dma-names = "rx", "tx"; 542 clocks = <&psc0 5>; 543 status = "disabled"; 544 }; 545 vpif: video@217000 { 546 compatible = "ti,da850-vpif"; 547 reg = <0x217000 0x1000>; 548 interrupts = <92>; 549 power-domains = <&psc1 9>; 550 status = "disabled"; 551 552 /* VPIF capture port */ 553 port@0 { 554 #address-cells = <1>; 555 #size-cells = <0>; 556 }; 557 558 /* VPIF display port */ 559 port@1 { 560 #address-cells = <1>; 561 #size-cells = <0>; 562 }; 563 }; 564 mmc1: mmc@21b000 { 565 compatible = "ti,da830-mmc"; 566 reg = <0x21b000 0x1000>; 567 cap-sd-highspeed; 568 cap-mmc-highspeed; 569 interrupts = <72>, <73>; 570 dmas = <&edma1 28 0>, <&edma1 29 0>; 571 dma-names = "rx", "tx"; 572 clocks = <&psc1 18>; 573 status = "disabled"; 574 }; 575 ehrpwm0: pwm@300000 { 576 compatible = "ti,da850-ehrpwm", "ti,am3352-ehrpwm"; 577 #pwm-cells = <3>; 578 reg = <0x300000 0x2000>; 579 clocks = <&psc1 17>, <&ehrpwm_tbclk>; 580 clock-names = "fck", "tbclk"; 581 power-domains = <&psc1 17>; 582 status = "disabled"; 583 }; 584 ehrpwm1: pwm@302000 { 585 compatible = "ti,da850-ehrpwm", "ti,am3352-ehrpwm"; 586 #pwm-cells = <3>; 587 reg = <0x302000 0x2000>; 588 clocks = <&psc1 17>, <&ehrpwm_tbclk>; 589 clock-names = "fck", "tbclk"; 590 power-domains = <&psc1 17>; 591 status = "disabled"; 592 }; 593 ecap0: pwm@306000 { 594 compatible = "ti,da850-ecap", "ti,am3352-ecap"; 595 #pwm-cells = <3>; 596 reg = <0x306000 0x80>; 597 clocks = <&psc1 20>; 598 clock-names = "fck"; 599 power-domains = <&psc1 20>; 600 status = "disabled"; 601 }; 602 ecap1: pwm@307000 { 603 compatible = "ti,da850-ecap", "ti,am3352-ecap"; 604 #pwm-cells = <3>; 605 reg = <0x307000 0x80>; 606 clocks = <&psc1 20>; 607 clock-names = "fck"; 608 power-domains = <&psc1 20>; 609 status = "disabled"; 610 }; 611 ecap2: pwm@308000 { 612 compatible = "ti,da850-ecap", "ti,am3352-ecap"; 613 #pwm-cells = <3>; 614 reg = <0x308000 0x80>; 615 clocks = <&psc1 20>; 616 clock-names = "fck"; 617 power-domains = <&psc1 20>; 618 status = "disabled"; 619 }; 620 spi0: spi@41000 { 621 #address-cells = <1>; 622 #size-cells = <0>; 623 compatible = "ti,da830-spi"; 624 reg = <0x41000 0x1000>; 625 num-cs = <6>; 626 ti,davinci-spi-intr-line = <1>; 627 interrupts = <20>; 628 dmas = <&edma0 14 0>, <&edma0 15 0>; 629 dma-names = "rx", "tx"; 630 clocks = <&psc0 4>; 631 power-domains = <&psc0 4>; 632 status = "disabled"; 633 }; 634 spi1: spi@30e000 { 635 #address-cells = <1>; 636 #size-cells = <0>; 637 compatible = "ti,da830-spi"; 638 reg = <0x30e000 0x1000>; 639 num-cs = <4>; 640 ti,davinci-spi-intr-line = <1>; 641 interrupts = <56>; 642 dmas = <&edma0 18 0>, <&edma0 19 0>; 643 dma-names = "rx", "tx"; 644 clocks = <&psc1 10>; 645 power-domains = <&psc1 10>; 646 status = "disabled"; 647 }; 648 usb0: usb@200000 { 649 compatible = "ti,da830-musb"; 650 reg = <0x200000 0x1000>; 651 ranges; 652 interrupts = <58>; 653 interrupt-names = "mc"; 654 dr_mode = "otg"; 655 phys = <&usb_phy 0>; 656 phy-names = "usb-phy"; 657 clocks = <&psc1 1>; 658 clock-ranges; 659 status = "disabled"; 660 661 #address-cells = <1>; 662 #size-cells = <1>; 663 664 dmas = <&cppi41dma 0 0 &cppi41dma 1 0 665 &cppi41dma 2 0 &cppi41dma 3 0 666 &cppi41dma 0 1 &cppi41dma 1 1 667 &cppi41dma 2 1 &cppi41dma 3 1>; 668 dma-names = 669 "rx1", "rx2", "rx3", "rx4", 670 "tx1", "tx2", "tx3", "tx4"; 671 672 cppi41dma: dma-controller@201000 { 673 compatible = "ti,da830-cppi41"; 674 reg = <0x201000 0x1000 675 0x202000 0x1000 676 0x204000 0x4000>; 677 reg-names = "controller", 678 "scheduler", "queuemgr"; 679 interrupts = <58>; 680 #dma-cells = <2>; 681 /* For backwards compatibility: */ 682 #dma-channels = <4>; 683 dma-channels = <4>; 684 power-domains = <&psc1 1>; 685 status = "okay"; 686 }; 687 }; 688 sata: sata@218000 { 689 compatible = "ti,da850-ahci"; 690 reg = <0x218000 0x2000>, <0x22c018 0x4>; 691 interrupts = <67>; 692 clocks = <&psc1 8>, <&sata_refclk>; 693 clock-names = "fck", "refclk"; 694 status = "disabled"; 695 }; 696 pll1: clock-controller@21a000 { 697 compatible = "ti,da850-pll1"; 698 reg = <0x21a000 0x1000>; 699 clocks = <&ref_clk>; 700 clock-names = "clksrc"; 701 702 pll1_sysclk: sysclk { 703 #clock-cells = <1>; 704 }; 705 pll1_obsclk: obsclk { 706 #clock-cells = <0>; 707 }; 708 }; 709 mdio: mdio@224000 { 710 compatible = "ti,davinci_mdio"; 711 #address-cells = <1>; 712 #size-cells = <0>; 713 reg = <0x224000 0x1000>; 714 clocks = <&psc1 5>; 715 clock-names = "fck"; 716 power-domains = <&psc1 5>; 717 status = "disabled"; 718 }; 719 eth0: ethernet@220000 { 720 compatible = "ti,davinci-dm6467-emac"; 721 reg = <0x220000 0x4000>; 722 ti,davinci-ctrl-reg-offset = <0x3000>; 723 ti,davinci-ctrl-mod-reg-offset = <0x2000>; 724 ti,davinci-ctrl-ram-offset = <0>; 725 ti,davinci-ctrl-ram-size = <0x2000>; 726 local-mac-address = [ 00 00 00 00 00 00 ]; 727 interrupts = <33>, <34>, <35>,<36>; 728 clocks = <&psc1 5>; 729 power-domains = <&psc1 5>; 730 status = "disabled"; 731 }; 732 usb1: usb@225000 { 733 compatible = "ti,da830-ohci"; 734 reg = <0x225000 0x1000>; 735 interrupts = <59>; 736 phys = <&usb_phy 1>; 737 phy-names = "usb-phy"; 738 clocks = <&psc1 2>; 739 status = "disabled"; 740 }; 741 gpio: gpio@226000 { 742 compatible = "ti,dm6441-gpio"; 743 gpio-controller; 744 #gpio-cells = <2>; 745 reg = <0x226000 0x1000>; 746 interrupts = <42>, <43>, <44>, <45>, <46>, <47>, <48>, <49>, <50>; 747 ti,ngpio = <144>; 748 ti,davinci-gpio-unbanked = <0>; 749 clocks = <&psc1 3>; 750 clock-names = "gpio"; 751 status = "disabled"; 752 interrupt-controller; 753 #interrupt-cells = <2>; 754 gpio-ranges = <&pmx_core 0 15 1>, 755 <&pmx_core 1 14 1>, 756 <&pmx_core 2 13 1>, 757 <&pmx_core 3 12 1>, 758 <&pmx_core 4 11 1>, 759 <&pmx_core 5 10 1>, 760 <&pmx_core 6 9 1>, 761 <&pmx_core 7 8 1>, 762 <&pmx_core 8 7 1>, 763 <&pmx_core 9 6 1>, 764 <&pmx_core 10 5 1>, 765 <&pmx_core 11 4 1>, 766 <&pmx_core 12 3 1>, 767 <&pmx_core 13 2 1>, 768 <&pmx_core 14 1 1>, 769 <&pmx_core 15 0 1>, 770 <&pmx_core 16 39 1>, 771 <&pmx_core 17 38 1>, 772 <&pmx_core 18 37 1>, 773 <&pmx_core 19 36 1>, 774 <&pmx_core 20 35 1>, 775 <&pmx_core 21 34 1>, 776 <&pmx_core 22 33 1>, 777 <&pmx_core 23 32 1>, 778 <&pmx_core 24 24 1>, 779 <&pmx_core 25 22 1>, 780 <&pmx_core 26 21 1>, 781 <&pmx_core 27 20 1>, 782 <&pmx_core 28 19 1>, 783 <&pmx_core 29 18 1>, 784 <&pmx_core 30 17 1>, 785 <&pmx_core 31 16 1>, 786 <&pmx_core 32 55 1>, 787 <&pmx_core 33 54 1>, 788 <&pmx_core 34 53 1>, 789 <&pmx_core 35 52 1>, 790 <&pmx_core 36 51 1>, 791 <&pmx_core 37 50 1>, 792 <&pmx_core 38 49 1>, 793 <&pmx_core 39 48 1>, 794 <&pmx_core 40 47 1>, 795 <&pmx_core 41 46 1>, 796 <&pmx_core 42 45 1>, 797 <&pmx_core 43 44 1>, 798 <&pmx_core 44 43 1>, 799 <&pmx_core 45 42 1>, 800 <&pmx_core 46 41 1>, 801 <&pmx_core 47 40 1>, 802 <&pmx_core 48 71 1>, 803 <&pmx_core 49 70 1>, 804 <&pmx_core 50 69 1>, 805 <&pmx_core 51 68 1>, 806 <&pmx_core 52 67 1>, 807 <&pmx_core 53 66 1>, 808 <&pmx_core 54 65 1>, 809 <&pmx_core 55 64 1>, 810 <&pmx_core 56 63 1>, 811 <&pmx_core 57 62 1>, 812 <&pmx_core 58 61 1>, 813 <&pmx_core 59 60 1>, 814 <&pmx_core 60 59 1>, 815 <&pmx_core 61 58 1>, 816 <&pmx_core 62 57 1>, 817 <&pmx_core 63 56 1>, 818 <&pmx_core 64 87 1>, 819 <&pmx_core 65 86 1>, 820 <&pmx_core 66 85 1>, 821 <&pmx_core 67 84 1>, 822 <&pmx_core 68 83 1>, 823 <&pmx_core 69 82 1>, 824 <&pmx_core 70 81 1>, 825 <&pmx_core 71 80 1>, 826 <&pmx_core 72 70 1>, 827 <&pmx_core 73 78 1>, 828 <&pmx_core 74 77 1>, 829 <&pmx_core 75 76 1>, 830 <&pmx_core 76 75 1>, 831 <&pmx_core 77 74 1>, 832 <&pmx_core 78 73 1>, 833 <&pmx_core 79 72 1>, 834 <&pmx_core 80 103 1>, 835 <&pmx_core 81 102 1>, 836 <&pmx_core 82 101 1>, 837 <&pmx_core 83 100 1>, 838 <&pmx_core 84 99 1>, 839 <&pmx_core 85 98 1>, 840 <&pmx_core 86 97 1>, 841 <&pmx_core 87 96 1>, 842 <&pmx_core 88 95 1>, 843 <&pmx_core 89 94 1>, 844 <&pmx_core 90 93 1>, 845 <&pmx_core 91 92 1>, 846 <&pmx_core 92 91 1>, 847 <&pmx_core 93 90 1>, 848 <&pmx_core 94 89 1>, 849 <&pmx_core 95 88 1>, 850 <&pmx_core 96 158 1>, 851 <&pmx_core 97 157 1>, 852 <&pmx_core 98 156 1>, 853 <&pmx_core 99 155 1>, 854 <&pmx_core 100 154 1>, 855 <&pmx_core 101 129 1>, 856 <&pmx_core 102 113 1>, 857 <&pmx_core 103 112 1>, 858 <&pmx_core 104 111 1>, 859 <&pmx_core 105 110 1>, 860 <&pmx_core 106 109 1>, 861 <&pmx_core 107 108 1>, 862 <&pmx_core 108 107 1>, 863 <&pmx_core 109 106 1>, 864 <&pmx_core 110 105 1>, 865 <&pmx_core 111 104 1>, 866 <&pmx_core 112 145 1>, 867 <&pmx_core 113 144 1>, 868 <&pmx_core 114 143 1>, 869 <&pmx_core 115 142 1>, 870 <&pmx_core 116 141 1>, 871 <&pmx_core 117 140 1>, 872 <&pmx_core 118 139 1>, 873 <&pmx_core 119 138 1>, 874 <&pmx_core 120 137 1>, 875 <&pmx_core 121 136 1>, 876 <&pmx_core 122 135 1>, 877 <&pmx_core 123 134 1>, 878 <&pmx_core 124 133 1>, 879 <&pmx_core 125 132 1>, 880 <&pmx_core 126 131 1>, 881 <&pmx_core 127 130 1>, 882 <&pmx_core 128 159 1>, 883 <&pmx_core 129 31 1>, 884 <&pmx_core 130 30 1>, 885 <&pmx_core 131 20 1>, 886 <&pmx_core 132 28 1>, 887 <&pmx_core 133 27 1>, 888 <&pmx_core 134 26 1>, 889 <&pmx_core 135 23 1>, 890 <&pmx_core 136 153 1>, 891 <&pmx_core 137 152 1>, 892 <&pmx_core 138 151 1>, 893 <&pmx_core 139 150 1>, 894 <&pmx_core 140 149 1>, 895 <&pmx_core 141 148 1>, 896 <&pmx_core 142 147 1>, 897 <&pmx_core 143 146 1>; 898 }; 899 psc1: clock-controller@227000 { 900 compatible = "ti,da850-psc1"; 901 reg = <0x227000 0x1000>; 902 #clock-cells = <1>; 903 #power-domain-cells = <1>; 904 clocks = <&pll0_sysclk 2>, <&pll0_sysclk 4>, 905 <&async3_clk>; 906 clock-names = "pll0_sysclk2", "pll0_sysclk4", "async3"; 907 assigned-clocks = <&async3_clk>; 908 assigned-clock-parents = <&pll1_sysclk 2>; 909 }; 910 pinconf: pin-controller@22c00c { 911 compatible = "ti,da850-pupd"; 912 reg = <0x22c00c 0x8>; 913 status = "disabled"; 914 }; 915 916 mcasp0: mcasp@100000 { 917 compatible = "ti,da830-mcasp-audio"; 918 reg = <0x100000 0x2000>, 919 <0x102000 0x400000>; 920 reg-names = "mpu", "dat"; 921 interrupts = <54>; 922 interrupt-names = "common"; 923 power-domains = <&psc1 7>; 924 status = "disabled"; 925 dmas = <&edma0 1 1>, 926 <&edma0 0 1>; 927 dma-names = "tx", "rx"; 928 }; 929 930 lcdc: display@213000 { 931 compatible = "ti,da850-tilcdc"; 932 reg = <0x213000 0x1000>; 933 interrupts = <52>; 934 max-pixelclock = <37500>; 935 clocks = <&psc1 16>; 936 clock-names = "fck"; 937 power-domains = <&psc1 16>; 938 status = "disabled"; 939 }; 940 }; 941 aemif: aemif@68000000 { 942 compatible = "ti,da850-aemif"; 943 #address-cells = <2>; 944 #size-cells = <1>; 945 946 reg = <0x68000000 0x00008000>; 947 ranges = <0 0 0x60000000 0x08000000 948 1 0 0x68000000 0x00008000>; 949 clocks = <&psc0 3>; 950 clock-names = "aemif"; 951 clock-ranges; 952 status = "disabled"; 953 }; 954 memctrl: memory-controller@b0000000 { 955 compatible = "ti,da850-ddr-controller"; 956 reg = <0xb0000000 0xe8>; 957 status = "disabled"; 958 }; 959}; 960