1*ad1d7d7cSThomas Gleixner// SPDX-License-Identifier: GPL-2.0-only 2317bf653SNate Case/* 3317bf653SNate Case * Copyright (C) 2008 Extreme Engineering Solutions, Inc. 4317bf653SNate Case * Based on MPC8572DS device tree from Freescale Semiconductor, Inc. 5317bf653SNate Case * 6317bf653SNate Case * XPedite5330 3U CompactPCI module based on MPC8572E 7317bf653SNate Case */ 8317bf653SNate Case 9317bf653SNate Case/dts-v1/; 10317bf653SNate Case/ { 11317bf653SNate Case model = "xes,xpedite5330"; 12317bf653SNate Case compatible = "xes,xpedite5330", "xes,MPC8572"; 13317bf653SNate Case #address-cells = <2>; 14317bf653SNate Case #size-cells = <2>; 15317bf653SNate Case form-factor = "3U CompactPCI"; 16317bf653SNate Case boot-bank = <0x0>; /* 0: Primary flash, 1: Secondary flash */ 17317bf653SNate Case 18317bf653SNate Case aliases { 19317bf653SNate Case ethernet0 = &enet0; 20317bf653SNate Case ethernet1 = &enet1; 21317bf653SNate Case serial0 = &serial0; 22317bf653SNate Case serial1 = &serial1; 23317bf653SNate Case pci0 = &pci0; 24317bf653SNate Case pci1 = &pci1; 25317bf653SNate Case pci2 = &pci2; 26317bf653SNate Case }; 27317bf653SNate Case 28317bf653SNate Case pmcslots { 29317bf653SNate Case #address-cells = <1>; 30317bf653SNate Case #size-cells = <0>; 31317bf653SNate Case 32317bf653SNate Case pmcslot@0 { 33317bf653SNate Case cell-index = <0>; 34317bf653SNate Case /* 35317bf653SNate Case * boolean properties (true if defined): 36317bf653SNate Case * monarch; 37317bf653SNate Case * module-present; 38317bf653SNate Case */ 39317bf653SNate Case }; 40317bf653SNate Case }; 41317bf653SNate Case 42317bf653SNate Case xmcslots { 43317bf653SNate Case #address-cells = <1>; 44317bf653SNate Case #size-cells = <0>; 45317bf653SNate Case 46317bf653SNate Case xmcslot@0 { 47317bf653SNate Case cell-index = <0>; 48317bf653SNate Case /* 49317bf653SNate Case * boolean properties (true if defined): 50317bf653SNate Case * module-present; 51317bf653SNate Case */ 52317bf653SNate Case }; 53317bf653SNate Case }; 54317bf653SNate Case 55317bf653SNate Case cpci { 56317bf653SNate Case /* 57317bf653SNate Case * boolean properties (true if defined): 58317bf653SNate Case * system-controller; 59317bf653SNate Case */ 60317bf653SNate Case system-controller; 61317bf653SNate Case }; 62317bf653SNate Case 63317bf653SNate Case cpus { 64317bf653SNate Case #address-cells = <1>; 65317bf653SNate Case #size-cells = <0>; 66317bf653SNate Case 67317bf653SNate Case PowerPC,8572@0 { 68317bf653SNate Case device_type = "cpu"; 69317bf653SNate Case reg = <0x0>; 70317bf653SNate Case d-cache-line-size = <32>; // 32 bytes 71317bf653SNate Case i-cache-line-size = <32>; // 32 bytes 72317bf653SNate Case d-cache-size = <0x8000>; // L1, 32K 73317bf653SNate Case i-cache-size = <0x8000>; // L1, 32K 74317bf653SNate Case timebase-frequency = <0>; 75317bf653SNate Case bus-frequency = <0>; 76317bf653SNate Case clock-frequency = <0>; 77317bf653SNate Case next-level-cache = <&L2>; 78317bf653SNate Case }; 79317bf653SNate Case 80317bf653SNate Case PowerPC,8572@1 { 81317bf653SNate Case device_type = "cpu"; 82317bf653SNate Case reg = <0x1>; 83317bf653SNate Case d-cache-line-size = <32>; // 32 bytes 84317bf653SNate Case i-cache-line-size = <32>; // 32 bytes 85317bf653SNate Case d-cache-size = <0x8000>; // L1, 32K 86317bf653SNate Case i-cache-size = <0x8000>; // L1, 32K 87317bf653SNate Case timebase-frequency = <0>; 88317bf653SNate Case bus-frequency = <0>; 89317bf653SNate Case clock-frequency = <0>; 90317bf653SNate Case next-level-cache = <&L2>; 91317bf653SNate Case }; 92317bf653SNate Case }; 93317bf653SNate Case 94317bf653SNate Case memory { 95317bf653SNate Case device_type = "memory"; 96317bf653SNate Case reg = <0x0 0x0 0x0 0x0>; // Filled in by U-Boot 97317bf653SNate Case }; 98317bf653SNate Case 99317bf653SNate Case localbus@ef005000 { 100317bf653SNate Case #address-cells = <2>; 101317bf653SNate Case #size-cells = <1>; 102317bf653SNate Case compatible = "fsl,mpc8572-elbc", "fsl,elbc", "simple-bus"; 103317bf653SNate Case reg = <0 0xef005000 0 0x1000>; 104317bf653SNate Case interrupts = <19 2>; 105317bf653SNate Case interrupt-parent = <&mpic>; 106317bf653SNate Case /* Local bus region mappings */ 107317bf653SNate Case ranges = <0 0 0 0xf8000000 0x8000000 /* CS0: Boot flash */ 108317bf653SNate Case 1 0 0 0xf0000000 0x8000000 /* CS1: Alternate flash */ 109317bf653SNate Case 2 0 0 0xef800000 0x40000 /* CS2: NAND CE1 */ 110317bf653SNate Case 3 0 0 0xef840000 0x40000>; /* CS3: NAND CE2 */ 111317bf653SNate Case 112317bf653SNate Case nor-boot@0,0 { 113317bf653SNate Case compatible = "amd,s29gl01gp", "cfi-flash"; 114317bf653SNate Case bank-width = <2>; 115317bf653SNate Case reg = <0 0 0x8000000>; /* 128MB */ 116317bf653SNate Case #address-cells = <1>; 117317bf653SNate Case #size-cells = <1>; 118317bf653SNate Case partition@0 { 119317bf653SNate Case label = "Primary user space"; 120317bf653SNate Case reg = <0x00000000 0x6f00000>; /* 111 MB */ 121317bf653SNate Case }; 122317bf653SNate Case partition@6f00000 { 123317bf653SNate Case label = "Primary kernel"; 124317bf653SNate Case reg = <0x6f00000 0x1000000>; /* 16 MB */ 125317bf653SNate Case }; 126317bf653SNate Case partition@7f00000 { 127317bf653SNate Case label = "Primary DTB"; 128317bf653SNate Case reg = <0x7f00000 0x40000>; /* 256 KB */ 129317bf653SNate Case }; 130317bf653SNate Case partition@7f40000 { 131317bf653SNate Case label = "Primary U-Boot environment"; 132317bf653SNate Case reg = <0x7f40000 0x40000>; /* 256 KB */ 133317bf653SNate Case }; 134317bf653SNate Case partition@7f80000 { 135317bf653SNate Case label = "Primary U-Boot"; 136317bf653SNate Case reg = <0x7f80000 0x80000>; /* 512 KB */ 137317bf653SNate Case read-only; 138317bf653SNate Case }; 139317bf653SNate Case }; 140317bf653SNate Case 141317bf653SNate Case nor-alternate@1,0 { 142317bf653SNate Case compatible = "amd,s29gl01gp", "cfi-flash"; 143317bf653SNate Case bank-width = <2>; 144317bf653SNate Case //reg = <0xf0000000 0x08000000>; /* 128MB */ 145317bf653SNate Case reg = <1 0 0x8000000>; /* 128MB */ 146317bf653SNate Case #address-cells = <1>; 147317bf653SNate Case #size-cells = <1>; 148317bf653SNate Case partition@0 { 149317bf653SNate Case label = "Secondary user space"; 150317bf653SNate Case reg = <0x00000000 0x6f00000>; /* 111 MB */ 151317bf653SNate Case }; 152317bf653SNate Case partition@6f00000 { 153317bf653SNate Case label = "Secondary kernel"; 154317bf653SNate Case reg = <0x6f00000 0x1000000>; /* 16 MB */ 155317bf653SNate Case }; 156317bf653SNate Case partition@7f00000 { 157317bf653SNate Case label = "Secondary DTB"; 158317bf653SNate Case reg = <0x7f00000 0x40000>; /* 256 KB */ 159317bf653SNate Case }; 160317bf653SNate Case partition@7f40000 { 161317bf653SNate Case label = "Secondary U-Boot environment"; 162317bf653SNate Case reg = <0x7f40000 0x40000>; /* 256 KB */ 163317bf653SNate Case }; 164317bf653SNate Case partition@7f80000 { 165317bf653SNate Case label = "Secondary U-Boot"; 166317bf653SNate Case reg = <0x7f80000 0x80000>; /* 512 KB */ 167317bf653SNate Case read-only; 168317bf653SNate Case }; 169317bf653SNate Case }; 170317bf653SNate Case 171317bf653SNate Case nand@2,0 { 172317bf653SNate Case #address-cells = <1>; 173317bf653SNate Case #size-cells = <1>; 174317bf653SNate Case /* 175317bf653SNate Case * Actual part could be ST Micro NAND08GW3B2A (1 GB), 176317bf653SNate Case * Micron MT29F8G08DAA (2x 512 MB), or Micron 177317bf653SNate Case * MT29F16G08FAA (2x 1 GB), depending on the build 178317bf653SNate Case * configuration 179317bf653SNate Case */ 180317bf653SNate Case compatible = "fsl,mpc8572-fcm-nand", 181317bf653SNate Case "fsl,elbc-fcm-nand"; 182317bf653SNate Case reg = <2 0 0x40000>; 183317bf653SNate Case /* U-Boot should fix this up if chip size > 1 GB */ 184317bf653SNate Case partition@0 { 185317bf653SNate Case label = "NAND Filesystem"; 186317bf653SNate Case reg = <0 0x40000000>; 187317bf653SNate Case }; 188317bf653SNate Case }; 189317bf653SNate Case 190317bf653SNate Case }; 191317bf653SNate Case 192317bf653SNate Case soc8572@ef000000 { 193317bf653SNate Case #address-cells = <1>; 194317bf653SNate Case #size-cells = <1>; 195317bf653SNate Case device_type = "soc"; 196317bf653SNate Case compatible = "fsl,mpc8572-immr", "simple-bus"; 197317bf653SNate Case ranges = <0x0 0 0xef000000 0x100000>; 198317bf653SNate Case bus-frequency = <0>; // Filled out by uboot. 199317bf653SNate Case 200317bf653SNate Case ecm-law@0 { 201317bf653SNate Case compatible = "fsl,ecm-law"; 202317bf653SNate Case reg = <0x0 0x1000>; 203317bf653SNate Case fsl,num-laws = <12>; 204317bf653SNate Case }; 205317bf653SNate Case 206317bf653SNate Case ecm@1000 { 207317bf653SNate Case compatible = "fsl,mpc8572-ecm", "fsl,ecm"; 208317bf653SNate Case reg = <0x1000 0x1000>; 209317bf653SNate Case interrupts = <17 2>; 210317bf653SNate Case interrupt-parent = <&mpic>; 211317bf653SNate Case }; 212317bf653SNate Case 213317bf653SNate Case memory-controller@2000 { 214317bf653SNate Case compatible = "fsl,mpc8572-memory-controller"; 215317bf653SNate Case reg = <0x2000 0x1000>; 216317bf653SNate Case interrupt-parent = <&mpic>; 217317bf653SNate Case interrupts = <18 2>; 218317bf653SNate Case }; 219317bf653SNate Case 220317bf653SNate Case memory-controller@6000 { 221317bf653SNate Case compatible = "fsl,mpc8572-memory-controller"; 222317bf653SNate Case reg = <0x6000 0x1000>; 223317bf653SNate Case interrupt-parent = <&mpic>; 224317bf653SNate Case interrupts = <18 2>; 225317bf653SNate Case }; 226317bf653SNate Case 227317bf653SNate Case L2: l2-cache-controller@20000 { 228317bf653SNate Case compatible = "fsl,mpc8572-l2-cache-controller"; 229317bf653SNate Case reg = <0x20000 0x1000>; 230317bf653SNate Case cache-line-size = <32>; // 32 bytes 231317bf653SNate Case cache-size = <0x100000>; // L2, 1M 232317bf653SNate Case interrupt-parent = <&mpic>; 233317bf653SNate Case interrupts = <16 2>; 234317bf653SNate Case }; 235317bf653SNate Case 236317bf653SNate Case i2c@3000 { 237317bf653SNate Case #address-cells = <1>; 238317bf653SNate Case #size-cells = <0>; 239317bf653SNate Case cell-index = <0>; 240317bf653SNate Case compatible = "fsl-i2c"; 241317bf653SNate Case reg = <0x3000 0x100>; 242317bf653SNate Case interrupts = <43 2>; 243317bf653SNate Case interrupt-parent = <&mpic>; 244317bf653SNate Case dfsrr; 245317bf653SNate Case 246317bf653SNate Case temp-sensor@48 { 247317bf653SNate Case compatible = "dallas,ds1631", "dallas,ds1621"; 248317bf653SNate Case reg = <0x48>; 249317bf653SNate Case }; 250317bf653SNate Case 251317bf653SNate Case temp-sensor@4c { 252317bf653SNate Case compatible = "adi,adt7461"; 253317bf653SNate Case reg = <0x4c>; 254317bf653SNate Case }; 255317bf653SNate Case 256317bf653SNate Case cpu-supervisor@51 { 257317bf653SNate Case compatible = "dallas,ds4510"; 258317bf653SNate Case reg = <0x51>; 259317bf653SNate Case }; 260317bf653SNate Case 261317bf653SNate Case eeprom@54 { 262317bf653SNate Case compatible = "atmel,at24c128b"; 263317bf653SNate Case reg = <0x54>; 264317bf653SNate Case }; 265317bf653SNate Case 266317bf653SNate Case rtc@68 { 2675edc2aaeSStefan Agner compatible = "st,m41t00", 268317bf653SNate Case "dallas,ds1338"; 269317bf653SNate Case reg = <0x68>; 270317bf653SNate Case }; 271317bf653SNate Case 272317bf653SNate Case pcie-switch@70 { 273317bf653SNate Case compatible = "plx,pex8518"; 274317bf653SNate Case reg = <0x70>; 275317bf653SNate Case }; 276317bf653SNate Case 277317bf653SNate Case gpio1: gpio@18 { 278317bf653SNate Case compatible = "nxp,pca9557"; 279317bf653SNate Case reg = <0x18>; 280317bf653SNate Case #gpio-cells = <2>; 281317bf653SNate Case gpio-controller; 282317bf653SNate Case polarity = <0x00>; 283317bf653SNate Case }; 284317bf653SNate Case 285317bf653SNate Case gpio2: gpio@1c { 286317bf653SNate Case compatible = "nxp,pca9557"; 287317bf653SNate Case reg = <0x1c>; 288317bf653SNate Case #gpio-cells = <2>; 289317bf653SNate Case gpio-controller; 290317bf653SNate Case polarity = <0x00>; 291317bf653SNate Case }; 292317bf653SNate Case 293317bf653SNate Case gpio3: gpio@1e { 294317bf653SNate Case compatible = "nxp,pca9557"; 295317bf653SNate Case reg = <0x1e>; 296317bf653SNate Case #gpio-cells = <2>; 297317bf653SNate Case gpio-controller; 298317bf653SNate Case polarity = <0x00>; 299317bf653SNate Case }; 300317bf653SNate Case 301317bf653SNate Case gpio4: gpio@1f { 302317bf653SNate Case compatible = "nxp,pca9557"; 303317bf653SNate Case reg = <0x1f>; 304317bf653SNate Case #gpio-cells = <2>; 305317bf653SNate Case gpio-controller; 306317bf653SNate Case polarity = <0x00>; 307317bf653SNate Case }; 308317bf653SNate Case }; 309317bf653SNate Case 310317bf653SNate Case i2c@3100 { 311317bf653SNate Case #address-cells = <1>; 312317bf653SNate Case #size-cells = <0>; 313317bf653SNate Case cell-index = <1>; 314317bf653SNate Case compatible = "fsl-i2c"; 315317bf653SNate Case reg = <0x3100 0x100>; 316317bf653SNate Case interrupts = <43 2>; 317317bf653SNate Case interrupt-parent = <&mpic>; 318317bf653SNate Case dfsrr; 319317bf653SNate Case }; 320317bf653SNate Case 321317bf653SNate Case dma@c300 { 322317bf653SNate Case #address-cells = <1>; 323317bf653SNate Case #size-cells = <1>; 324317bf653SNate Case compatible = "fsl,mpc8572-dma", "fsl,eloplus-dma"; 325317bf653SNate Case reg = <0xc300 0x4>; 326317bf653SNate Case ranges = <0x0 0xc100 0x200>; 327317bf653SNate Case cell-index = <1>; 328317bf653SNate Case dma-channel@0 { 329317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 330317bf653SNate Case "fsl,eloplus-dma-channel"; 331317bf653SNate Case reg = <0x0 0x80>; 332317bf653SNate Case cell-index = <0>; 333317bf653SNate Case interrupt-parent = <&mpic>; 334317bf653SNate Case interrupts = <76 2>; 335317bf653SNate Case }; 336317bf653SNate Case dma-channel@80 { 337317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 338317bf653SNate Case "fsl,eloplus-dma-channel"; 339317bf653SNate Case reg = <0x80 0x80>; 340317bf653SNate Case cell-index = <1>; 341317bf653SNate Case interrupt-parent = <&mpic>; 342317bf653SNate Case interrupts = <77 2>; 343317bf653SNate Case }; 344317bf653SNate Case dma-channel@100 { 345317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 346317bf653SNate Case "fsl,eloplus-dma-channel"; 347317bf653SNate Case reg = <0x100 0x80>; 348317bf653SNate Case cell-index = <2>; 349317bf653SNate Case interrupt-parent = <&mpic>; 350317bf653SNate Case interrupts = <78 2>; 351317bf653SNate Case }; 352317bf653SNate Case dma-channel@180 { 353317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 354317bf653SNate Case "fsl,eloplus-dma-channel"; 355317bf653SNate Case reg = <0x180 0x80>; 356317bf653SNate Case cell-index = <3>; 357317bf653SNate Case interrupt-parent = <&mpic>; 358317bf653SNate Case interrupts = <79 2>; 359317bf653SNate Case }; 360317bf653SNate Case }; 361317bf653SNate Case 362317bf653SNate Case dma@21300 { 363317bf653SNate Case #address-cells = <1>; 364317bf653SNate Case #size-cells = <1>; 365317bf653SNate Case compatible = "fsl,mpc8572-dma", "fsl,eloplus-dma"; 366317bf653SNate Case reg = <0x21300 0x4>; 367317bf653SNate Case ranges = <0x0 0x21100 0x200>; 368317bf653SNate Case cell-index = <0>; 369317bf653SNate Case dma-channel@0 { 370317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 371317bf653SNate Case "fsl,eloplus-dma-channel"; 372317bf653SNate Case reg = <0x0 0x80>; 373317bf653SNate Case cell-index = <0>; 374317bf653SNate Case interrupt-parent = <&mpic>; 375317bf653SNate Case interrupts = <20 2>; 376317bf653SNate Case }; 377317bf653SNate Case dma-channel@80 { 378317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 379317bf653SNate Case "fsl,eloplus-dma-channel"; 380317bf653SNate Case reg = <0x80 0x80>; 381317bf653SNate Case cell-index = <1>; 382317bf653SNate Case interrupt-parent = <&mpic>; 383317bf653SNate Case interrupts = <21 2>; 384317bf653SNate Case }; 385317bf653SNate Case dma-channel@100 { 386317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 387317bf653SNate Case "fsl,eloplus-dma-channel"; 388317bf653SNate Case reg = <0x100 0x80>; 389317bf653SNate Case cell-index = <2>; 390317bf653SNate Case interrupt-parent = <&mpic>; 391317bf653SNate Case interrupts = <22 2>; 392317bf653SNate Case }; 393317bf653SNate Case dma-channel@180 { 394317bf653SNate Case compatible = "fsl,mpc8572-dma-channel", 395317bf653SNate Case "fsl,eloplus-dma-channel"; 396317bf653SNate Case reg = <0x180 0x80>; 397317bf653SNate Case cell-index = <3>; 398317bf653SNate Case interrupt-parent = <&mpic>; 399317bf653SNate Case interrupts = <23 2>; 400317bf653SNate Case }; 401317bf653SNate Case }; 402317bf653SNate Case 403317bf653SNate Case /* eTSEC 1 */ 404317bf653SNate Case enet0: ethernet@24000 { 405317bf653SNate Case #address-cells = <1>; 406317bf653SNate Case #size-cells = <1>; 407317bf653SNate Case cell-index = <0>; 408317bf653SNate Case device_type = "network"; 409317bf653SNate Case model = "eTSEC"; 410317bf653SNate Case compatible = "gianfar"; 411317bf653SNate Case reg = <0x24000 0x1000>; 412317bf653SNate Case ranges = <0x0 0x24000 0x1000>; 413317bf653SNate Case local-mac-address = [ 00 00 00 00 00 00 ]; 414317bf653SNate Case interrupts = <29 2 30 2 34 2>; 415317bf653SNate Case interrupt-parent = <&mpic>; 416317bf653SNate Case tbi-handle = <&tbi0>; 417317bf653SNate Case phy-handle = <&phy0>; 418317bf653SNate Case phy-connection-type = "sgmii"; 419317bf653SNate Case 420317bf653SNate Case mdio@520 { 421317bf653SNate Case #address-cells = <1>; 422317bf653SNate Case #size-cells = <0>; 423317bf653SNate Case compatible = "fsl,gianfar-mdio"; 424317bf653SNate Case reg = <0x520 0x20>; 425317bf653SNate Case 426317bf653SNate Case phy0: ethernet-phy@1 { 427317bf653SNate Case interrupt-parent = <&mpic>; 428317bf653SNate Case interrupts = <8 1>; 429317bf653SNate Case reg = <0x1>; 430317bf653SNate Case }; 431317bf653SNate Case phy1: ethernet-phy@2 { 432317bf653SNate Case interrupt-parent = <&mpic>; 433317bf653SNate Case interrupts = <8 1>; 434317bf653SNate Case reg = <0x2>; 435317bf653SNate Case }; 436317bf653SNate Case tbi0: tbi-phy@11 { 437317bf653SNate Case reg = <0x11>; 438317bf653SNate Case device_type = "tbi-phy"; 439317bf653SNate Case }; 440317bf653SNate Case }; 441317bf653SNate Case }; 442317bf653SNate Case 443317bf653SNate Case /* eTSEC 2 */ 444317bf653SNate Case enet1: ethernet@25000 { 445317bf653SNate Case #address-cells = <1>; 446317bf653SNate Case #size-cells = <1>; 447317bf653SNate Case cell-index = <1>; 448317bf653SNate Case device_type = "network"; 449317bf653SNate Case model = "eTSEC"; 450317bf653SNate Case compatible = "gianfar"; 451317bf653SNate Case reg = <0x25000 0x1000>; 452317bf653SNate Case ranges = <0x0 0x25000 0x1000>; 453317bf653SNate Case local-mac-address = [ 00 00 00 00 00 00 ]; 454317bf653SNate Case interrupts = <35 2 36 2 40 2>; 455317bf653SNate Case interrupt-parent = <&mpic>; 456317bf653SNate Case tbi-handle = <&tbi1>; 457317bf653SNate Case phy-handle = <&phy1>; 458317bf653SNate Case phy-connection-type = "sgmii"; 459317bf653SNate Case 460317bf653SNate Case mdio@520 { 461317bf653SNate Case #address-cells = <1>; 462317bf653SNate Case #size-cells = <0>; 463317bf653SNate Case compatible = "fsl,gianfar-tbi"; 464317bf653SNate Case reg = <0x520 0x20>; 465317bf653SNate Case 466317bf653SNate Case tbi1: tbi-phy@11 { 467317bf653SNate Case reg = <0x11>; 468317bf653SNate Case device_type = "tbi-phy"; 469317bf653SNate Case }; 470317bf653SNate Case }; 471317bf653SNate Case }; 472317bf653SNate Case 473317bf653SNate Case /* UART0 */ 474317bf653SNate Case serial0: serial@4500 { 475317bf653SNate Case cell-index = <0>; 476317bf653SNate Case device_type = "serial"; 477f706bed1SKumar Gala compatible = "fsl,ns16550", "ns16550"; 478317bf653SNate Case reg = <0x4500 0x100>; 479317bf653SNate Case clock-frequency = <0>; 480317bf653SNate Case interrupts = <42 2>; 481317bf653SNate Case interrupt-parent = <&mpic>; 482317bf653SNate Case }; 483317bf653SNate Case 484317bf653SNate Case /* UART1 */ 485317bf653SNate Case serial1: serial@4600 { 486317bf653SNate Case cell-index = <1>; 487317bf653SNate Case device_type = "serial"; 488f706bed1SKumar Gala compatible = "fsl,ns16550", "ns16550"; 489317bf653SNate Case reg = <0x4600 0x100>; 490317bf653SNate Case clock-frequency = <0>; 491317bf653SNate Case interrupts = <42 2>; 492317bf653SNate Case interrupt-parent = <&mpic>; 493317bf653SNate Case }; 494317bf653SNate Case 495317bf653SNate Case global-utilities@e0000 { //global utilities block 496317bf653SNate Case compatible = "fsl,mpc8572-guts"; 497317bf653SNate Case reg = <0xe0000 0x1000>; 498317bf653SNate Case fsl,has-rstcr; 499317bf653SNate Case }; 500317bf653SNate Case 501317bf653SNate Case msi@41600 { 502317bf653SNate Case compatible = "fsl,mpc8572-msi", "fsl,mpic-msi"; 503317bf653SNate Case reg = <0x41600 0x80>; 504317bf653SNate Case msi-available-ranges = <0 0x100>; 505317bf653SNate Case interrupts = < 506317bf653SNate Case 0xe0 0 507317bf653SNate Case 0xe1 0 508317bf653SNate Case 0xe2 0 509317bf653SNate Case 0xe3 0 510317bf653SNate Case 0xe4 0 511317bf653SNate Case 0xe5 0 512317bf653SNate Case 0xe6 0 513317bf653SNate Case 0xe7 0>; 514317bf653SNate Case interrupt-parent = <&mpic>; 515317bf653SNate Case }; 516317bf653SNate Case 517317bf653SNate Case crypto@30000 { 518317bf653SNate Case compatible = "fsl,sec3.0", "fsl,sec2.4", "fsl,sec2.2", 519317bf653SNate Case "fsl,sec2.1", "fsl,sec2.0"; 520317bf653SNate Case reg = <0x30000 0x10000>; 521317bf653SNate Case interrupts = <45 2 58 2>; 522317bf653SNate Case interrupt-parent = <&mpic>; 523317bf653SNate Case fsl,num-channels = <4>; 524317bf653SNate Case fsl,channel-fifo-len = <24>; 525317bf653SNate Case fsl,exec-units-mask = <0x9fe>; 526317bf653SNate Case fsl,descriptor-types-mask = <0x3ab0ebf>; 527317bf653SNate Case }; 528317bf653SNate Case 529317bf653SNate Case mpic: pic@40000 { 530317bf653SNate Case interrupt-controller; 531317bf653SNate Case #address-cells = <0>; 532317bf653SNate Case #interrupt-cells = <2>; 533317bf653SNate Case reg = <0x40000 0x40000>; 534317bf653SNate Case compatible = "chrp,open-pic"; 535317bf653SNate Case device_type = "open-pic"; 536317bf653SNate Case }; 537317bf653SNate Case 538317bf653SNate Case gpio0: gpio@f000 { 539317bf653SNate Case compatible = "fsl,mpc8572-gpio"; 540317bf653SNate Case reg = <0xf000 0x1000>; 541317bf653SNate Case interrupts = <47 2>; 542317bf653SNate Case interrupt-parent = <&mpic>; 543317bf653SNate Case #gpio-cells = <2>; 544317bf653SNate Case gpio-controller; 545317bf653SNate Case }; 546317bf653SNate Case 547317bf653SNate Case gpio-leds { 548317bf653SNate Case compatible = "gpio-leds"; 549317bf653SNate Case 550317bf653SNate Case heartbeat { 551317bf653SNate Case label = "Heartbeat"; 552317bf653SNate Case gpios = <&gpio0 4 1>; 553317bf653SNate Case linux,default-trigger = "heartbeat"; 554317bf653SNate Case }; 555317bf653SNate Case 556317bf653SNate Case yellow { 557317bf653SNate Case label = "Yellow"; 558317bf653SNate Case gpios = <&gpio0 5 1>; 559317bf653SNate Case }; 560317bf653SNate Case 561317bf653SNate Case red { 562317bf653SNate Case label = "Red"; 563317bf653SNate Case gpios = <&gpio0 6 1>; 564317bf653SNate Case }; 565317bf653SNate Case 566317bf653SNate Case green { 567317bf653SNate Case label = "Green"; 568317bf653SNate Case gpios = <&gpio0 7 1>; 569317bf653SNate Case }; 570317bf653SNate Case }; 571317bf653SNate Case 572317bf653SNate Case /* PME (pattern-matcher) */ 573317bf653SNate Case pme@10000 { 574317bf653SNate Case compatible = "fsl,mpc8572-pme", "pme8572"; 575317bf653SNate Case reg = <0x10000 0x5000>; 576317bf653SNate Case interrupts = <57 2 64 2 65 2 66 2 67 2>; 577317bf653SNate Case interrupt-parent = <&mpic>; 578317bf653SNate Case }; 579317bf653SNate Case 580317bf653SNate Case tlu@2f000 { 581317bf653SNate Case compatible = "fsl,mpc8572-tlu", "fsl_tlu"; 582317bf653SNate Case reg = <0x2f000 0x1000>; 58353567cf3SAdam Borowski interrupts = <61 2>; 584317bf653SNate Case interrupt-parent = <&mpic>; 585317bf653SNate Case }; 586317bf653SNate Case 587317bf653SNate Case tlu@15000 { 588317bf653SNate Case compatible = "fsl,mpc8572-tlu", "fsl_tlu"; 589317bf653SNate Case reg = <0x15000 0x1000>; 59053567cf3SAdam Borowski interrupts = <75 2>; 591317bf653SNate Case interrupt-parent = <&mpic>; 592317bf653SNate Case }; 593317bf653SNate Case }; 594317bf653SNate Case 595317bf653SNate Case /* PCI Express controller 3 - CompactPCI bus via PEX8112 bridge */ 596317bf653SNate Case pci0: pcie@ef008000 { 597317bf653SNate Case compatible = "fsl,mpc8548-pcie"; 598317bf653SNate Case device_type = "pci"; 599317bf653SNate Case #interrupt-cells = <1>; 600317bf653SNate Case #size-cells = <2>; 601317bf653SNate Case #address-cells = <3>; 602317bf653SNate Case reg = <0 0xef008000 0 0x1000>; 603317bf653SNate Case bus-range = <0 255>; 604317bf653SNate Case ranges = <0x2000000 0x0 0xe0000000 0 0xe0000000 0x0 0x10000000 605317bf653SNate Case 0x1000000 0x0 0x00000000 0 0xe9000000 0x0 0x10000>; 606317bf653SNate Case clock-frequency = <33333333>; 607317bf653SNate Case interrupt-parent = <&mpic>; 608317bf653SNate Case interrupts = <24 2>; 609317bf653SNate Case interrupt-map-mask = <0xff00 0x0 0x0 0x7>; 610317bf653SNate Case interrupt-map = < 611317bf653SNate Case 0x0 0x0 0x0 0x1 &mpic 0x0 0x1 612317bf653SNate Case 0x0 0x0 0x0 0x2 &mpic 0x1 0x1 613317bf653SNate Case 0x0 0x0 0x0 0x3 &mpic 0x2 0x1 614317bf653SNate Case 0x0 0x0 0x0 0x4 &mpic 0x3 0x1 615317bf653SNate Case >; 616317bf653SNate Case pcie@0 { 617317bf653SNate Case reg = <0x0 0x0 0x0 0x0 0x0>; 618317bf653SNate Case #size-cells = <2>; 619317bf653SNate Case #address-cells = <3>; 620317bf653SNate Case device_type = "pci"; 621317bf653SNate Case ranges = <0x02000000 0x0 0xe0000000 622317bf653SNate Case 0x02000000 0x0 0xe0000000 623317bf653SNate Case 0x0 0x10000000 624317bf653SNate Case 625317bf653SNate Case 0x01000000 0x0 0x0 626317bf653SNate Case 0x01000000 0x0 0x0 627317bf653SNate Case 0x0 0x100000>; 628317bf653SNate Case }; 629317bf653SNate Case }; 630317bf653SNate Case 631317bf653SNate Case /* PCI Express controller 2, PMC module via PEX8112 bridge */ 632317bf653SNate Case pci1: pcie@ef009000 { 633317bf653SNate Case compatible = "fsl,mpc8548-pcie"; 634317bf653SNate Case device_type = "pci"; 635317bf653SNate Case #interrupt-cells = <1>; 636317bf653SNate Case #size-cells = <2>; 637317bf653SNate Case #address-cells = <3>; 638317bf653SNate Case reg = <0 0xef009000 0 0x1000>; 639317bf653SNate Case bus-range = <0 255>; 640317bf653SNate Case ranges = <0x2000000 0x0 0xc0000000 0 0xc0000000 0x0 0x10000000 641317bf653SNate Case 0x1000000 0x0 0x00000000 0 0xe8800000 0x0 0x10000>; 642317bf653SNate Case clock-frequency = <33333333>; 643317bf653SNate Case interrupt-parent = <&mpic>; 644317bf653SNate Case interrupts = <25 2>; 645317bf653SNate Case interrupt-map-mask = <0xf800 0x0 0x0 0x7>; 646317bf653SNate Case interrupt-map = < 647317bf653SNate Case /* IDSEL 0x0 */ 648317bf653SNate Case 0x0 0x0 0x0 0x1 &mpic 0x4 0x1 649317bf653SNate Case 0x0 0x0 0x0 0x2 &mpic 0x5 0x1 650317bf653SNate Case 0x0 0x0 0x0 0x3 &mpic 0x6 0x1 651317bf653SNate Case 0x0 0x0 0x0 0x4 &mpic 0x7 0x1 652317bf653SNate Case >; 653317bf653SNate Case pcie@0 { 654317bf653SNate Case reg = <0x0 0x0 0x0 0x0 0x0>; 655317bf653SNate Case #size-cells = <2>; 656317bf653SNate Case #address-cells = <3>; 657317bf653SNate Case device_type = "pci"; 658317bf653SNate Case ranges = <0x2000000 0x0 0xc0000000 659317bf653SNate Case 0x2000000 0x0 0xc0000000 660317bf653SNate Case 0x0 0x10000000 661317bf653SNate Case 662317bf653SNate Case 0x1000000 0x0 0x0 663317bf653SNate Case 0x1000000 0x0 0x0 664317bf653SNate Case 0x0 0x100000>; 665317bf653SNate Case }; 666317bf653SNate Case }; 667317bf653SNate Case 668317bf653SNate Case /* PCI Express controller 1, XMC P15 */ 669317bf653SNate Case pci2: pcie@ef00a000 { 670317bf653SNate Case compatible = "fsl,mpc8548-pcie"; 671317bf653SNate Case device_type = "pci"; 672317bf653SNate Case #interrupt-cells = <1>; 673317bf653SNate Case #size-cells = <2>; 674317bf653SNate Case #address-cells = <3>; 675317bf653SNate Case reg = <0 0xef00a000 0 0x1000>; 676317bf653SNate Case bus-range = <0 255>; 677317bf653SNate Case ranges = <0x2000000 0x0 0x80000000 0 0x80000000 0x0 0x40000000 678317bf653SNate Case 0x1000000 0x0 0x00000000 0 0xe8000000 0x0 0x10000>; 679317bf653SNate Case clock-frequency = <33333333>; 680317bf653SNate Case interrupt-parent = <&mpic>; 681317bf653SNate Case interrupts = <26 2>; 682317bf653SNate Case interrupt-map-mask = <0xf800 0x0 0x0 0x7>; 683317bf653SNate Case interrupt-map = < 684317bf653SNate Case /* IDSEL 0x0 */ 685317bf653SNate Case 0x0 0x0 0x0 0x1 &mpic 0x0 0x1 686317bf653SNate Case 0x0 0x0 0x0 0x2 &mpic 0x1 0x1 687317bf653SNate Case 0x0 0x0 0x0 0x3 &mpic 0x2 0x1 688317bf653SNate Case 0x0 0x0 0x0 0x4 &mpic 0x3 0x1 689317bf653SNate Case >; 690317bf653SNate Case pcie@0 { 691317bf653SNate Case reg = <0x0 0x0 0x0 0x0 0x0>; 692317bf653SNate Case #size-cells = <2>; 693317bf653SNate Case #address-cells = <3>; 694317bf653SNate Case device_type = "pci"; 695317bf653SNate Case ranges = <0x2000000 0x0 0x80000000 696317bf653SNate Case 0x2000000 0x0 0x80000000 697317bf653SNate Case 0x0 0x40000000 698317bf653SNate Case 699317bf653SNate Case 0x1000000 0x0 0x0 700317bf653SNate Case 0x1000000 0x0 0x0 701317bf653SNate Case 0x0 0x100000>; 702317bf653SNate Case }; 703317bf653SNate Case }; 704317bf653SNate Case}; 705