Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1 | /* |
Jon Loeliger | 465b9d8 | 2006-04-27 10:15:16 -0500 | [diff] [blame] | 2 | * MPC8641 HPCN Device Tree Source |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 3 | * |
| 4 | * Copyright 2006 Freescale Semiconductor Inc. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | */ |
| 11 | |
| 12 | |
| 13 | / { |
| 14 | model = "MPC8641HPCN"; |
| 15 | compatible = "mpc86xx"; |
| 16 | #address-cells = <1>; |
| 17 | #size-cells = <1>; |
| 18 | linux,phandle = <100>; |
| 19 | |
| 20 | cpus { |
Jon Loeliger | e97b628 | 2006-05-19 12:33:09 -0500 | [diff] [blame] | 21 | #cpus = <2>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 22 | #address-cells = <1>; |
| 23 | #size-cells = <0>; |
| 24 | linux,phandle = <200>; |
| 25 | |
| 26 | PowerPC,8641@0 { |
| 27 | device_type = "cpu"; |
| 28 | reg = <0>; |
| 29 | d-cache-line-size = <20>; // 32 bytes |
| 30 | i-cache-line-size = <20>; // 32 bytes |
| 31 | d-cache-size = <8000>; // L1, 32K |
| 32 | i-cache-size = <8000>; // L1, 32K |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 33 | timebase-frequency = <0>; // 33 MHz, from uboot |
Jon Loeliger | e97b628 | 2006-05-19 12:33:09 -0500 | [diff] [blame] | 34 | bus-frequency = <0>; // From uboot |
| 35 | clock-frequency = <0>; // From uboot |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 36 | 32-bit; |
| 37 | linux,phandle = <201>; |
| 38 | linux,boot-cpu; |
| 39 | }; |
Jon Loeliger | e97b628 | 2006-05-19 12:33:09 -0500 | [diff] [blame] | 40 | PowerPC,8641@1 { |
| 41 | device_type = "cpu"; |
| 42 | reg = <1>; |
| 43 | d-cache-line-size = <20>; // 32 bytes |
| 44 | i-cache-line-size = <20>; // 32 bytes |
| 45 | d-cache-size = <8000>; // L1, 32K |
| 46 | i-cache-size = <8000>; // L1, 32K |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 47 | timebase-frequency = <0>; // 33 MHz, from uboot |
Jon Loeliger | e97b628 | 2006-05-19 12:33:09 -0500 | [diff] [blame] | 48 | bus-frequency = <0>; // From uboot |
| 49 | clock-frequency = <0>; // From uboot |
| 50 | 32-bit; |
| 51 | linux,phandle = <202>; |
| 52 | }; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | memory { |
| 56 | device_type = "memory"; |
| 57 | linux,phandle = <300>; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 58 | reg = <00000000 40000000>; // 1G at 0x0 |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | soc8641@f8000000 { |
| 62 | #address-cells = <1>; |
| 63 | #size-cells = <1>; |
| 64 | #interrupt-cells = <2>; |
| 65 | device_type = "soc"; |
| 66 | ranges = <0 f8000000 00100000>; |
| 67 | reg = <f8000000 00100000>; // CCSRBAR 1M |
| 68 | bus-frequency = <0>; |
| 69 | |
| 70 | i2c@3000 { |
| 71 | device_type = "i2c"; |
| 72 | compatible = "fsl-i2c"; |
| 73 | reg = <3000 100>; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 74 | interrupts = <2b 0>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 75 | interrupt-parent = <40000>; |
| 76 | dfsrr; |
| 77 | }; |
| 78 | |
Jon Loeliger | e97b628 | 2006-05-19 12:33:09 -0500 | [diff] [blame] | 79 | i2c@3100 { |
| 80 | device_type = "i2c"; |
| 81 | compatible = "fsl-i2c"; |
| 82 | reg = <3100 100>; |
| 83 | interrupts = <2b 0>; |
| 84 | interrupt-parent = <40000>; |
| 85 | dfsrr; |
| 86 | }; |
| 87 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 88 | mdio@24520 { |
| 89 | #address-cells = <1>; |
| 90 | #size-cells = <0>; |
| 91 | device_type = "mdio"; |
| 92 | compatible = "gianfar"; |
| 93 | reg = <24520 20>; |
| 94 | linux,phandle = <24520>; |
| 95 | ethernet-phy@0 { |
| 96 | linux,phandle = <2452000>; |
| 97 | interrupt-parent = <40000>; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 98 | interrupts = <3a 0>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 99 | reg = <0>; |
| 100 | device_type = "ethernet-phy"; |
| 101 | }; |
| 102 | ethernet-phy@1 { |
| 103 | linux,phandle = <2452001>; |
| 104 | interrupt-parent = <40000>; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 105 | interrupts = <3a 0>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 106 | reg = <1>; |
| 107 | device_type = "ethernet-phy"; |
| 108 | }; |
| 109 | ethernet-phy@2 { |
| 110 | linux,phandle = <2452002>; |
| 111 | interrupt-parent = <40000>; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 112 | interrupts = <3a 0>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 113 | reg = <2>; |
| 114 | device_type = "ethernet-phy"; |
| 115 | }; |
| 116 | ethernet-phy@3 { |
| 117 | linux,phandle = <2452003>; |
| 118 | interrupt-parent = <40000>; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 119 | interrupts = <3a 0>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 120 | reg = <3>; |
| 121 | device_type = "ethernet-phy"; |
| 122 | }; |
| 123 | }; |
| 124 | |
| 125 | ethernet@24000 { |
| 126 | #address-cells = <1>; |
| 127 | #size-cells = <0>; |
| 128 | device_type = "network"; |
| 129 | model = "TSEC"; |
| 130 | compatible = "gianfar"; |
| 131 | reg = <24000 1000>; |
| 132 | address = [ 00 E0 0C 00 73 00 ]; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 133 | interrupts = <1d 3 1e 3 22 3>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 134 | interrupt-parent = <40000>; |
| 135 | phy-handle = <2452000>; |
| 136 | }; |
| 137 | |
| 138 | ethernet@25000 { |
| 139 | #address-cells = <1>; |
| 140 | #size-cells = <0>; |
| 141 | device_type = "network"; |
| 142 | model = "TSEC"; |
| 143 | compatible = "gianfar"; |
| 144 | reg = <25000 1000>; |
| 145 | address = [ 00 E0 0C 00 73 01 ]; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 146 | interrupts = <23 3 24 3 28 3>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 147 | interrupt-parent = <40000>; |
| 148 | phy-handle = <2452001>; |
| 149 | }; |
| 150 | |
| 151 | ethernet@26000 { |
| 152 | #address-cells = <1>; |
| 153 | #size-cells = <0>; |
| 154 | device_type = "network"; |
| 155 | model = "TSEC"; |
| 156 | compatible = "gianfar"; |
| 157 | reg = <26000 1000>; |
| 158 | address = [ 00 E0 0C 00 02 FD ]; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 159 | interrupts = <1F 3 20 3 21 3>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 160 | interrupt-parent = <40000>; |
| 161 | phy-handle = <2452002>; |
| 162 | }; |
| 163 | |
| 164 | ethernet@27000 { |
| 165 | #address-cells = <1>; |
| 166 | #size-cells = <0>; |
| 167 | device_type = "network"; |
| 168 | model = "TSEC"; |
| 169 | compatible = "gianfar"; |
| 170 | reg = <27000 1000>; |
| 171 | address = [ 00 E0 0C 00 03 FD ]; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 172 | interrupts = <25 3 26 3 27 3>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 173 | interrupt-parent = <40000>; |
| 174 | phy-handle = <2452003>; |
| 175 | }; |
| 176 | serial@4500 { |
| 177 | device_type = "serial"; |
| 178 | compatible = "ns16550"; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 179 | reg = <4500 100>; |
| 180 | clock-frequency = <0>; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 181 | interrupts = <2a 3>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 182 | interrupt-parent = <40000>; |
| 183 | }; |
| 184 | |
| 185 | serial@4600 { |
| 186 | device_type = "serial"; |
| 187 | compatible = "ns16550"; |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 188 | reg = <4600 100>; |
| 189 | clock-frequency = <0>; |
Jon Loeliger | 955a305 | 2006-05-15 07:26:56 -0500 | [diff] [blame] | 190 | interrupts = <2a 3>; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 191 | interrupt-parent = <40000>; |
| 192 | }; |
| 193 | |
Haiying Wang | 5eb17a8 | 2006-05-26 10:13:04 -0500 | [diff] [blame^] | 194 | pci@8000 { |
| 195 | compatible = "86xx"; |
| 196 | device_type = "pci"; |
| 197 | linux,phandle = <8000>; |
| 198 | #interrupt-cells = <1>; |
| 199 | #size-cells = <2>; |
| 200 | #address-cells = <3>; |
| 201 | reg = <8000 1000>; |
| 202 | bus-range = <0 fe>; |
| 203 | ranges = <02000000 0 80000000 80000000 0 20000000 |
| 204 | 01000000 0 00000000 e2000000 0 00100000>; |
| 205 | clock-frequency = <1fca055>; |
| 206 | interrupt-parent = <40000>; |
| 207 | interrupts = <8 0>; |
| 208 | interrupt-map-mask = <f800 0 0 7>; |
| 209 | interrupt-map = < |
| 210 | /* IDSEL 0x11 */ |
| 211 | 8800 0 0 1 40000 3 0 |
| 212 | 8800 0 0 2 40000 4 0 |
| 213 | 8800 0 0 3 40000 5 0 |
| 214 | 8800 0 0 4 40000 6 0 |
| 215 | |
| 216 | /* IDSEL 0x12 */ |
| 217 | 9000 0 0 1 40000 4 0 |
| 218 | 9000 0 0 2 40000 5 0 |
| 219 | 9000 0 0 3 40000 6 0 |
| 220 | 9000 0 0 4 40000 3 0 |
| 221 | |
| 222 | /* IDSEL 0x13 */ |
| 223 | 9800 0 0 1 40000 5 0 |
| 224 | 9800 0 0 2 40000 6 0 |
| 225 | 9800 0 0 3 40000 3 0 |
| 226 | 9800 0 0 4 40000 4 0 |
| 227 | |
| 228 | /* IDSEL 0x14 */ |
| 229 | a000 0 0 1 40000 6 0 |
| 230 | a000 0 0 2 40000 3 0 |
| 231 | a000 0 0 3 40000 4 0 |
| 232 | a000 0 0 4 40000 5 0 |
| 233 | |
| 234 | /* IDSEL 0x15 */ |
| 235 | a800 0 0 1 40000 0 0 |
| 236 | a800 0 0 2 40000 0 0 |
| 237 | a800 0 0 3 40000 0 0 |
| 238 | a800 0 0 4 40000 0 0 |
| 239 | |
| 240 | /* IDSEL 0x16 */ |
| 241 | b000 0 0 1 40000 0 0 |
| 242 | b000 0 0 2 40000 0 0 |
| 243 | b000 0 0 3 40000 0 0 |
| 244 | b000 0 0 4 40000 0 0 |
| 245 | |
| 246 | /* IDSEL 0x17 */ |
| 247 | b800 0 0 1 40000 0 0 |
| 248 | b800 0 0 2 40000 0 0 |
| 249 | b800 0 0 3 40000 0 0 |
| 250 | b800 0 0 4 40000 0 0 |
| 251 | |
| 252 | /* IDSEL 0x18 */ |
| 253 | c000 0 0 1 40000 0 0 |
| 254 | c000 0 0 2 40000 0 0 |
| 255 | c000 0 0 3 40000 0 0 |
| 256 | c000 0 0 4 40000 0 0 |
| 257 | |
| 258 | /* IDSEL 0x19 */ |
| 259 | c800 0 0 1 40000 0 0 |
| 260 | c800 0 0 2 40000 0 0 |
| 261 | c800 0 0 3 40000 0 0 |
| 262 | c800 0 0 4 40000 0 0 |
| 263 | |
| 264 | /* IDSEL 0x1a */ |
| 265 | d000 0 0 1 40000 0 0 |
| 266 | d000 0 0 2 40000 0 0 |
| 267 | d000 0 0 3 40000 0 0 |
| 268 | d000 0 0 4 40000 0 0 |
| 269 | |
| 270 | |
| 271 | /* IDSEL 0x1b */ |
| 272 | d800 0 0 1 40000 0 0 |
| 273 | d800 0 0 2 40000 0 0 |
| 274 | d800 0 0 3 40000 0 0 |
| 275 | d800 0 0 4 40000 0 0 |
| 276 | |
| 277 | /* IDSEL 0x1c */ |
| 278 | e000 0 0 1 40000 0 0 |
| 279 | e000 0 0 2 40000 0 0 |
| 280 | e000 0 0 3 40000 0 0 |
| 281 | e000 0 0 4 40000 0 0 |
| 282 | |
| 283 | /* IDSEL 0x1d */ |
| 284 | e800 0 0 1 40000 0 0 |
| 285 | e800 0 0 2 40000 0 0 |
| 286 | e800 0 0 3 40000 0 0 |
| 287 | e800 0 0 4 40000 0 0 |
| 288 | |
| 289 | /* IDSEL 0x1e */ |
| 290 | f000 0 0 1 40000 0 0 |
| 291 | f000 0 0 2 40000 0 0 |
| 292 | f000 0 0 3 40000 0 0 |
| 293 | f000 0 0 4 40000 0 0 |
| 294 | |
| 295 | /* IDSEL 0x1f */ |
| 296 | f800 0 0 1 40000 6 0 |
| 297 | f800 0 0 2 40000 6 0 |
| 298 | f800 0 0 3 40000 6 0 |
| 299 | f800 0 0 4 40000 6 0 |
| 300 | >; |
| 301 | }; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 302 | pic@40000 { |
| 303 | linux,phandle = <40000>; |
| 304 | clock-frequency = <0>; |
| 305 | interrupt-controller; |
| 306 | #address-cells = <0>; |
| 307 | #interrupt-cells = <2>; |
| 308 | reg = <40000 40000>; |
| 309 | built-in; |
| 310 | compatible = "chrp,open-pic"; |
| 311 | device_type = "open-pic"; |
| 312 | big-endian; |
| 313 | }; |
| 314 | }; |
| 315 | }; |
| 316 | |