David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Procedures for creating, accessing and interpreting the device tree. |
| 3 | * |
| 4 | * Paul Mackerras August 1996. |
| 5 | * Copyright (C) 1996-2005 Paul Mackerras. |
| 6 | * |
| 7 | * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner. |
| 8 | * {engebret|bergner}@us.ibm.com |
| 9 | * |
| 10 | * Adapted for sparc64 by David S. Miller davem@davemloft.net |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version |
| 15 | * 2 of the License, or (at your option) any later version. |
| 16 | */ |
| 17 | |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/types.h> |
| 20 | #include <linux/string.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/bootmem.h> |
David S. Miller | de8d28b | 2006-06-22 16:18:54 -0700 | [diff] [blame] | 23 | #include <linux/module.h> |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/prom.h> |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 26 | #include <asm/of_device.h> |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 27 | #include <asm/oplib.h> |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 28 | #include <asm/irq.h> |
| 29 | #include <asm/asi.h> |
| 30 | #include <asm/upa.h> |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 31 | #include <asm/smp.h> |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 32 | |
Stephen Rothwell | 1ef4d42 | 2007-04-24 17:57:33 +1000 | [diff] [blame] | 33 | extern struct device_node *allnodes; /* temporary while merging */ |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 34 | |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 35 | extern rwlock_t devtree_lock; /* temporary while merging */ |
David S. Miller | fb7cd9d | 2006-06-25 23:18:36 -0700 | [diff] [blame] | 36 | |
David S. Miller | de8d28b | 2006-06-22 16:18:54 -0700 | [diff] [blame] | 37 | struct device_node *of_find_node_by_phandle(phandle handle) |
| 38 | { |
| 39 | struct device_node *np; |
| 40 | |
| 41 | for (np = allnodes; np != 0; np = np->allnext) |
| 42 | if (np->node == handle) |
| 43 | break; |
| 44 | |
| 45 | return np; |
| 46 | } |
David S. Miller | 8cd24ed | 2006-06-22 22:08:58 -0700 | [diff] [blame] | 47 | EXPORT_SYMBOL(of_find_node_by_phandle); |
David S. Miller | de8d28b | 2006-06-22 16:18:54 -0700 | [diff] [blame] | 48 | |
David S. Miller | 6d30772 | 2006-06-21 23:07:29 -0700 | [diff] [blame] | 49 | int of_getintprop_default(struct device_node *np, const char *name, int def) |
| 50 | { |
| 51 | struct property *prop; |
| 52 | int len; |
| 53 | |
| 54 | prop = of_find_property(np, name, &len); |
| 55 | if (!prop || len != 4) |
| 56 | return def; |
| 57 | |
| 58 | return *(int *) prop->value; |
| 59 | } |
David S. Miller | de8d28b | 2006-06-22 16:18:54 -0700 | [diff] [blame] | 60 | EXPORT_SYMBOL(of_getintprop_default); |
David S. Miller | 6d30772 | 2006-06-21 23:07:29 -0700 | [diff] [blame] | 61 | |
David S. Miller | fb7cd9d | 2006-06-25 23:18:36 -0700 | [diff] [blame] | 62 | int of_set_property(struct device_node *dp, const char *name, void *val, int len) |
| 63 | { |
| 64 | struct property **prevp; |
| 65 | void *new_val; |
| 66 | int err; |
| 67 | |
| 68 | new_val = kmalloc(len, GFP_KERNEL); |
| 69 | if (!new_val) |
| 70 | return -ENOMEM; |
| 71 | |
| 72 | memcpy(new_val, val, len); |
| 73 | |
| 74 | err = -ENODEV; |
| 75 | |
| 76 | write_lock(&devtree_lock); |
| 77 | prevp = &dp->properties; |
| 78 | while (*prevp) { |
| 79 | struct property *prop = *prevp; |
| 80 | |
David S. Miller | a8b8814 | 2007-03-29 01:28:51 -0700 | [diff] [blame] | 81 | if (!strcasecmp(prop->name, name)) { |
David S. Miller | fb7cd9d | 2006-06-25 23:18:36 -0700 | [diff] [blame] | 82 | void *old_val = prop->value; |
| 83 | int ret; |
| 84 | |
| 85 | ret = prom_setprop(dp->node, name, val, len); |
| 86 | err = -EINVAL; |
| 87 | if (ret >= 0) { |
| 88 | prop->value = new_val; |
| 89 | prop->length = len; |
| 90 | |
| 91 | if (OF_IS_DYNAMIC(prop)) |
| 92 | kfree(old_val); |
| 93 | |
| 94 | OF_MARK_DYNAMIC(prop); |
| 95 | |
| 96 | err = 0; |
| 97 | } |
| 98 | break; |
| 99 | } |
| 100 | prevp = &(*prevp)->next; |
| 101 | } |
| 102 | write_unlock(&devtree_lock); |
| 103 | |
| 104 | /* XXX Upate procfs if necessary... */ |
| 105 | |
| 106 | return err; |
| 107 | } |
| 108 | EXPORT_SYMBOL(of_set_property); |
| 109 | |
David S. Miller | 46bcea7 | 2007-08-07 18:46:36 -0700 | [diff] [blame] | 110 | int of_find_in_proplist(const char *list, const char *match, int len) |
| 111 | { |
| 112 | while (len > 0) { |
| 113 | int l; |
| 114 | |
| 115 | if (!strcmp(list, match)) |
| 116 | return 1; |
| 117 | l = strlen(list) + 1; |
| 118 | list += l; |
| 119 | len -= l; |
| 120 | } |
| 121 | return 0; |
| 122 | } |
| 123 | EXPORT_SYMBOL(of_find_in_proplist); |
| 124 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 125 | static unsigned int prom_early_allocated; |
| 126 | |
| 127 | static void * __init prom_early_alloc(unsigned long size) |
| 128 | { |
| 129 | void *ret; |
| 130 | |
| 131 | ret = __alloc_bootmem(size, SMP_CACHE_BYTES, 0UL); |
| 132 | if (ret != NULL) |
| 133 | memset(ret, 0, size); |
| 134 | |
| 135 | prom_early_allocated += size; |
| 136 | |
| 137 | return ret; |
| 138 | } |
| 139 | |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 140 | #ifdef CONFIG_PCI |
| 141 | /* PSYCHO interrupt mapping support. */ |
| 142 | #define PSYCHO_IMAP_A_SLOT0 0x0c00UL |
| 143 | #define PSYCHO_IMAP_B_SLOT0 0x0c20UL |
| 144 | static unsigned long psycho_pcislot_imap_offset(unsigned long ino) |
| 145 | { |
| 146 | unsigned int bus = (ino & 0x10) >> 4; |
| 147 | unsigned int slot = (ino & 0x0c) >> 2; |
| 148 | |
| 149 | if (bus == 0) |
| 150 | return PSYCHO_IMAP_A_SLOT0 + (slot * 8); |
| 151 | else |
| 152 | return PSYCHO_IMAP_B_SLOT0 + (slot * 8); |
| 153 | } |
| 154 | |
| 155 | #define PSYCHO_IMAP_SCSI 0x1000UL |
| 156 | #define PSYCHO_IMAP_ETH 0x1008UL |
| 157 | #define PSYCHO_IMAP_BPP 0x1010UL |
| 158 | #define PSYCHO_IMAP_AU_REC 0x1018UL |
| 159 | #define PSYCHO_IMAP_AU_PLAY 0x1020UL |
| 160 | #define PSYCHO_IMAP_PFAIL 0x1028UL |
| 161 | #define PSYCHO_IMAP_KMS 0x1030UL |
| 162 | #define PSYCHO_IMAP_FLPY 0x1038UL |
| 163 | #define PSYCHO_IMAP_SHW 0x1040UL |
| 164 | #define PSYCHO_IMAP_KBD 0x1048UL |
| 165 | #define PSYCHO_IMAP_MS 0x1050UL |
| 166 | #define PSYCHO_IMAP_SER 0x1058UL |
| 167 | #define PSYCHO_IMAP_TIM0 0x1060UL |
| 168 | #define PSYCHO_IMAP_TIM1 0x1068UL |
| 169 | #define PSYCHO_IMAP_UE 0x1070UL |
| 170 | #define PSYCHO_IMAP_CE 0x1078UL |
| 171 | #define PSYCHO_IMAP_A_ERR 0x1080UL |
| 172 | #define PSYCHO_IMAP_B_ERR 0x1088UL |
| 173 | #define PSYCHO_IMAP_PMGMT 0x1090UL |
| 174 | #define PSYCHO_IMAP_GFX 0x1098UL |
| 175 | #define PSYCHO_IMAP_EUPA 0x10a0UL |
| 176 | |
| 177 | static unsigned long __psycho_onboard_imap_off[] = { |
| 178 | /*0x20*/ PSYCHO_IMAP_SCSI, |
| 179 | /*0x21*/ PSYCHO_IMAP_ETH, |
| 180 | /*0x22*/ PSYCHO_IMAP_BPP, |
| 181 | /*0x23*/ PSYCHO_IMAP_AU_REC, |
| 182 | /*0x24*/ PSYCHO_IMAP_AU_PLAY, |
| 183 | /*0x25*/ PSYCHO_IMAP_PFAIL, |
| 184 | /*0x26*/ PSYCHO_IMAP_KMS, |
| 185 | /*0x27*/ PSYCHO_IMAP_FLPY, |
| 186 | /*0x28*/ PSYCHO_IMAP_SHW, |
| 187 | /*0x29*/ PSYCHO_IMAP_KBD, |
| 188 | /*0x2a*/ PSYCHO_IMAP_MS, |
| 189 | /*0x2b*/ PSYCHO_IMAP_SER, |
| 190 | /*0x2c*/ PSYCHO_IMAP_TIM0, |
| 191 | /*0x2d*/ PSYCHO_IMAP_TIM1, |
| 192 | /*0x2e*/ PSYCHO_IMAP_UE, |
| 193 | /*0x2f*/ PSYCHO_IMAP_CE, |
| 194 | /*0x30*/ PSYCHO_IMAP_A_ERR, |
| 195 | /*0x31*/ PSYCHO_IMAP_B_ERR, |
David S. Miller | 46ba6d7 | 2006-07-16 22:10:44 -0700 | [diff] [blame] | 196 | /*0x32*/ PSYCHO_IMAP_PMGMT, |
| 197 | /*0x33*/ PSYCHO_IMAP_GFX, |
| 198 | /*0x34*/ PSYCHO_IMAP_EUPA, |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 199 | }; |
| 200 | #define PSYCHO_ONBOARD_IRQ_BASE 0x20 |
David S. Miller | 46ba6d7 | 2006-07-16 22:10:44 -0700 | [diff] [blame] | 201 | #define PSYCHO_ONBOARD_IRQ_LAST 0x34 |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 202 | #define psycho_onboard_imap_offset(__ino) \ |
| 203 | __psycho_onboard_imap_off[(__ino) - PSYCHO_ONBOARD_IRQ_BASE] |
| 204 | |
| 205 | #define PSYCHO_ICLR_A_SLOT0 0x1400UL |
| 206 | #define PSYCHO_ICLR_SCSI 0x1800UL |
| 207 | |
| 208 | #define psycho_iclr_offset(ino) \ |
| 209 | ((ino & 0x20) ? (PSYCHO_ICLR_SCSI + (((ino) & 0x1f) << 3)) : \ |
| 210 | (PSYCHO_ICLR_A_SLOT0 + (((ino) & 0x1f)<<3))) |
| 211 | |
| 212 | static unsigned int psycho_irq_build(struct device_node *dp, |
| 213 | unsigned int ino, |
| 214 | void *_data) |
| 215 | { |
| 216 | unsigned long controller_regs = (unsigned long) _data; |
| 217 | unsigned long imap, iclr; |
| 218 | unsigned long imap_off, iclr_off; |
| 219 | int inofixup = 0; |
| 220 | |
| 221 | ino &= 0x3f; |
| 222 | if (ino < PSYCHO_ONBOARD_IRQ_BASE) { |
| 223 | /* PCI slot */ |
| 224 | imap_off = psycho_pcislot_imap_offset(ino); |
| 225 | } else { |
| 226 | /* Onboard device */ |
| 227 | if (ino > PSYCHO_ONBOARD_IRQ_LAST) { |
| 228 | prom_printf("psycho_irq_build: Wacky INO [%x]\n", ino); |
| 229 | prom_halt(); |
| 230 | } |
| 231 | imap_off = psycho_onboard_imap_offset(ino); |
| 232 | } |
| 233 | |
| 234 | /* Now build the IRQ bucket. */ |
| 235 | imap = controller_regs + imap_off; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 236 | |
| 237 | iclr_off = psycho_iclr_offset(ino); |
| 238 | iclr = controller_regs + iclr_off; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 239 | |
| 240 | if ((ino & 0x20) == 0) |
| 241 | inofixup = ino & 0x03; |
| 242 | |
| 243 | return build_irq(inofixup, iclr, imap); |
| 244 | } |
| 245 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 246 | static void __init psycho_irq_trans_init(struct device_node *dp) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 247 | { |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 248 | const struct linux_prom64_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 249 | |
| 250 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 251 | dp->irq_trans->irq_build = psycho_irq_build; |
| 252 | |
| 253 | regs = of_get_property(dp, "reg", NULL); |
| 254 | dp->irq_trans->data = (void *) regs[2].phys_addr; |
| 255 | } |
| 256 | |
| 257 | #define sabre_read(__reg) \ |
| 258 | ({ u64 __ret; \ |
| 259 | __asm__ __volatile__("ldxa [%1] %2, %0" \ |
| 260 | : "=r" (__ret) \ |
| 261 | : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \ |
| 262 | : "memory"); \ |
| 263 | __ret; \ |
| 264 | }) |
| 265 | |
| 266 | struct sabre_irq_data { |
| 267 | unsigned long controller_regs; |
| 268 | unsigned int pci_first_busno; |
| 269 | }; |
| 270 | #define SABRE_CONFIGSPACE 0x001000000UL |
| 271 | #define SABRE_WRSYNC 0x1c20UL |
| 272 | |
| 273 | #define SABRE_CONFIG_BASE(CONFIG_SPACE) \ |
| 274 | (CONFIG_SPACE | (1UL << 24)) |
| 275 | #define SABRE_CONFIG_ENCODE(BUS, DEVFN, REG) \ |
| 276 | (((unsigned long)(BUS) << 16) | \ |
| 277 | ((unsigned long)(DEVFN) << 8) | \ |
| 278 | ((unsigned long)(REG))) |
| 279 | |
| 280 | /* When a device lives behind a bridge deeper in the PCI bus topology |
| 281 | * than APB, a special sequence must run to make sure all pending DMA |
| 282 | * transfers at the time of IRQ delivery are visible in the coherency |
| 283 | * domain by the cpu. This sequence is to perform a read on the far |
| 284 | * side of the non-APB bridge, then perform a read of Sabre's DMA |
| 285 | * write-sync register. |
| 286 | */ |
| 287 | static void sabre_wsync_handler(unsigned int ino, void *_arg1, void *_arg2) |
| 288 | { |
| 289 | unsigned int phys_hi = (unsigned int) (unsigned long) _arg1; |
| 290 | struct sabre_irq_data *irq_data = _arg2; |
| 291 | unsigned long controller_regs = irq_data->controller_regs; |
| 292 | unsigned long sync_reg = controller_regs + SABRE_WRSYNC; |
| 293 | unsigned long config_space = controller_regs + SABRE_CONFIGSPACE; |
| 294 | unsigned int bus, devfn; |
| 295 | u16 _unused; |
| 296 | |
| 297 | config_space = SABRE_CONFIG_BASE(config_space); |
| 298 | |
| 299 | bus = (phys_hi >> 16) & 0xff; |
| 300 | devfn = (phys_hi >> 8) & 0xff; |
| 301 | |
| 302 | config_space |= SABRE_CONFIG_ENCODE(bus, devfn, 0x00); |
| 303 | |
| 304 | __asm__ __volatile__("membar #Sync\n\t" |
| 305 | "lduha [%1] %2, %0\n\t" |
| 306 | "membar #Sync" |
| 307 | : "=r" (_unused) |
| 308 | : "r" ((u16 *) config_space), |
| 309 | "i" (ASI_PHYS_BYPASS_EC_E_L) |
| 310 | : "memory"); |
| 311 | |
| 312 | sabre_read(sync_reg); |
| 313 | } |
| 314 | |
| 315 | #define SABRE_IMAP_A_SLOT0 0x0c00UL |
| 316 | #define SABRE_IMAP_B_SLOT0 0x0c20UL |
| 317 | #define SABRE_IMAP_SCSI 0x1000UL |
| 318 | #define SABRE_IMAP_ETH 0x1008UL |
| 319 | #define SABRE_IMAP_BPP 0x1010UL |
| 320 | #define SABRE_IMAP_AU_REC 0x1018UL |
| 321 | #define SABRE_IMAP_AU_PLAY 0x1020UL |
| 322 | #define SABRE_IMAP_PFAIL 0x1028UL |
| 323 | #define SABRE_IMAP_KMS 0x1030UL |
| 324 | #define SABRE_IMAP_FLPY 0x1038UL |
| 325 | #define SABRE_IMAP_SHW 0x1040UL |
| 326 | #define SABRE_IMAP_KBD 0x1048UL |
| 327 | #define SABRE_IMAP_MS 0x1050UL |
| 328 | #define SABRE_IMAP_SER 0x1058UL |
| 329 | #define SABRE_IMAP_UE 0x1070UL |
| 330 | #define SABRE_IMAP_CE 0x1078UL |
| 331 | #define SABRE_IMAP_PCIERR 0x1080UL |
| 332 | #define SABRE_IMAP_GFX 0x1098UL |
| 333 | #define SABRE_IMAP_EUPA 0x10a0UL |
| 334 | #define SABRE_ICLR_A_SLOT0 0x1400UL |
| 335 | #define SABRE_ICLR_B_SLOT0 0x1480UL |
| 336 | #define SABRE_ICLR_SCSI 0x1800UL |
| 337 | #define SABRE_ICLR_ETH 0x1808UL |
| 338 | #define SABRE_ICLR_BPP 0x1810UL |
| 339 | #define SABRE_ICLR_AU_REC 0x1818UL |
| 340 | #define SABRE_ICLR_AU_PLAY 0x1820UL |
| 341 | #define SABRE_ICLR_PFAIL 0x1828UL |
| 342 | #define SABRE_ICLR_KMS 0x1830UL |
| 343 | #define SABRE_ICLR_FLPY 0x1838UL |
| 344 | #define SABRE_ICLR_SHW 0x1840UL |
| 345 | #define SABRE_ICLR_KBD 0x1848UL |
| 346 | #define SABRE_ICLR_MS 0x1850UL |
| 347 | #define SABRE_ICLR_SER 0x1858UL |
| 348 | #define SABRE_ICLR_UE 0x1870UL |
| 349 | #define SABRE_ICLR_CE 0x1878UL |
| 350 | #define SABRE_ICLR_PCIERR 0x1880UL |
| 351 | |
| 352 | static unsigned long sabre_pcislot_imap_offset(unsigned long ino) |
| 353 | { |
| 354 | unsigned int bus = (ino & 0x10) >> 4; |
| 355 | unsigned int slot = (ino & 0x0c) >> 2; |
| 356 | |
| 357 | if (bus == 0) |
| 358 | return SABRE_IMAP_A_SLOT0 + (slot * 8); |
| 359 | else |
| 360 | return SABRE_IMAP_B_SLOT0 + (slot * 8); |
| 361 | } |
| 362 | |
| 363 | static unsigned long __sabre_onboard_imap_off[] = { |
| 364 | /*0x20*/ SABRE_IMAP_SCSI, |
| 365 | /*0x21*/ SABRE_IMAP_ETH, |
| 366 | /*0x22*/ SABRE_IMAP_BPP, |
| 367 | /*0x23*/ SABRE_IMAP_AU_REC, |
| 368 | /*0x24*/ SABRE_IMAP_AU_PLAY, |
| 369 | /*0x25*/ SABRE_IMAP_PFAIL, |
| 370 | /*0x26*/ SABRE_IMAP_KMS, |
| 371 | /*0x27*/ SABRE_IMAP_FLPY, |
| 372 | /*0x28*/ SABRE_IMAP_SHW, |
| 373 | /*0x29*/ SABRE_IMAP_KBD, |
| 374 | /*0x2a*/ SABRE_IMAP_MS, |
| 375 | /*0x2b*/ SABRE_IMAP_SER, |
| 376 | /*0x2c*/ 0 /* reserved */, |
| 377 | /*0x2d*/ 0 /* reserved */, |
| 378 | /*0x2e*/ SABRE_IMAP_UE, |
| 379 | /*0x2f*/ SABRE_IMAP_CE, |
| 380 | /*0x30*/ SABRE_IMAP_PCIERR, |
David S. Miller | 46ba6d7 | 2006-07-16 22:10:44 -0700 | [diff] [blame] | 381 | /*0x31*/ 0 /* reserved */, |
| 382 | /*0x32*/ 0 /* reserved */, |
| 383 | /*0x33*/ SABRE_IMAP_GFX, |
| 384 | /*0x34*/ SABRE_IMAP_EUPA, |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 385 | }; |
| 386 | #define SABRE_ONBOARD_IRQ_BASE 0x20 |
| 387 | #define SABRE_ONBOARD_IRQ_LAST 0x30 |
| 388 | #define sabre_onboard_imap_offset(__ino) \ |
| 389 | __sabre_onboard_imap_off[(__ino) - SABRE_ONBOARD_IRQ_BASE] |
| 390 | |
| 391 | #define sabre_iclr_offset(ino) \ |
| 392 | ((ino & 0x20) ? (SABRE_ICLR_SCSI + (((ino) & 0x1f) << 3)) : \ |
| 393 | (SABRE_ICLR_A_SLOT0 + (((ino) & 0x1f)<<3))) |
| 394 | |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 395 | static int sabre_device_needs_wsync(struct device_node *dp) |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 396 | { |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 397 | struct device_node *parent = dp->parent; |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 398 | const char *parent_model, *parent_compat; |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 399 | |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 400 | /* This traversal up towards the root is meant to |
| 401 | * handle two cases: |
| 402 | * |
| 403 | * 1) non-PCI bus sitting under PCI, such as 'ebus' |
| 404 | * 2) the PCI controller interrupts themselves, which |
| 405 | * will use the sabre_irq_build but do not need |
| 406 | * the DMA synchronization handling |
| 407 | */ |
| 408 | while (parent) { |
| 409 | if (!strcmp(parent->type, "pci")) |
| 410 | break; |
| 411 | parent = parent->parent; |
| 412 | } |
| 413 | |
| 414 | if (!parent) |
| 415 | return 0; |
| 416 | |
| 417 | parent_model = of_get_property(parent, |
| 418 | "model", NULL); |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 419 | if (parent_model && |
| 420 | (!strcmp(parent_model, "SUNW,sabre") || |
| 421 | !strcmp(parent_model, "SUNW,simba"))) |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 422 | return 0; |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 423 | |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 424 | parent_compat = of_get_property(parent, |
| 425 | "compatible", NULL); |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 426 | if (parent_compat && |
| 427 | (!strcmp(parent_compat, "pci108e,a000") || |
| 428 | !strcmp(parent_compat, "pci108e,a001"))) |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 429 | return 0; |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 430 | |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 431 | return 1; |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 432 | } |
| 433 | |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 434 | static unsigned int sabre_irq_build(struct device_node *dp, |
| 435 | unsigned int ino, |
| 436 | void *_data) |
| 437 | { |
| 438 | struct sabre_irq_data *irq_data = _data; |
| 439 | unsigned long controller_regs = irq_data->controller_regs; |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 440 | const struct linux_prom_pci_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 441 | unsigned long imap, iclr; |
| 442 | unsigned long imap_off, iclr_off; |
| 443 | int inofixup = 0; |
| 444 | int virt_irq; |
| 445 | |
| 446 | ino &= 0x3f; |
| 447 | if (ino < SABRE_ONBOARD_IRQ_BASE) { |
| 448 | /* PCI slot */ |
| 449 | imap_off = sabre_pcislot_imap_offset(ino); |
| 450 | } else { |
| 451 | /* onboard device */ |
| 452 | if (ino > SABRE_ONBOARD_IRQ_LAST) { |
| 453 | prom_printf("sabre_irq_build: Wacky INO [%x]\n", ino); |
| 454 | prom_halt(); |
| 455 | } |
| 456 | imap_off = sabre_onboard_imap_offset(ino); |
| 457 | } |
| 458 | |
| 459 | /* Now build the IRQ bucket. */ |
| 460 | imap = controller_regs + imap_off; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 461 | |
| 462 | iclr_off = sabre_iclr_offset(ino); |
| 463 | iclr = controller_regs + iclr_off; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 464 | |
| 465 | if ((ino & 0x20) == 0) |
| 466 | inofixup = ino & 0x03; |
| 467 | |
| 468 | virt_irq = build_irq(inofixup, iclr, imap); |
| 469 | |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 470 | /* If the parent device is a PCI<->PCI bridge other than |
| 471 | * APB, we have to install a pre-handler to ensure that |
| 472 | * all pending DMA is drained before the interrupt handler |
| 473 | * is run. |
| 474 | */ |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 475 | regs = of_get_property(dp, "reg", NULL); |
David S. Miller | 9bbd952 | 2006-07-12 21:16:07 -0700 | [diff] [blame] | 476 | if (regs && sabre_device_needs_wsync(dp)) { |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 477 | irq_install_pre_handler(virt_irq, |
| 478 | sabre_wsync_handler, |
| 479 | (void *) (long) regs->phys_hi, |
David S. Miller | a23c3a8 | 2006-07-12 15:59:53 -0700 | [diff] [blame] | 480 | (void *) irq_data); |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | return virt_irq; |
| 484 | } |
| 485 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 486 | static void __init sabre_irq_trans_init(struct device_node *dp) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 487 | { |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 488 | const struct linux_prom64_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 489 | struct sabre_irq_data *irq_data; |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 490 | const u32 *busrange; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 491 | |
| 492 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 493 | dp->irq_trans->irq_build = sabre_irq_build; |
| 494 | |
| 495 | irq_data = prom_early_alloc(sizeof(struct sabre_irq_data)); |
| 496 | |
| 497 | regs = of_get_property(dp, "reg", NULL); |
| 498 | irq_data->controller_regs = regs[0].phys_addr; |
| 499 | |
| 500 | busrange = of_get_property(dp, "bus-range", NULL); |
| 501 | irq_data->pci_first_busno = busrange[0]; |
| 502 | |
| 503 | dp->irq_trans->data = irq_data; |
| 504 | } |
| 505 | |
| 506 | /* SCHIZO interrupt mapping support. Unlike Psycho, for this controller the |
| 507 | * imap/iclr registers are per-PBM. |
| 508 | */ |
| 509 | #define SCHIZO_IMAP_BASE 0x1000UL |
| 510 | #define SCHIZO_ICLR_BASE 0x1400UL |
| 511 | |
| 512 | static unsigned long schizo_imap_offset(unsigned long ino) |
| 513 | { |
| 514 | return SCHIZO_IMAP_BASE + (ino * 8UL); |
| 515 | } |
| 516 | |
| 517 | static unsigned long schizo_iclr_offset(unsigned long ino) |
| 518 | { |
| 519 | return SCHIZO_ICLR_BASE + (ino * 8UL); |
| 520 | } |
| 521 | |
| 522 | static unsigned long schizo_ino_to_iclr(unsigned long pbm_regs, |
| 523 | unsigned int ino) |
| 524 | { |
David S. Miller | 861fe90 | 2007-05-02 17:31:36 -0700 | [diff] [blame] | 525 | |
| 526 | return pbm_regs + schizo_iclr_offset(ino); |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | static unsigned long schizo_ino_to_imap(unsigned long pbm_regs, |
| 530 | unsigned int ino) |
| 531 | { |
David S. Miller | 861fe90 | 2007-05-02 17:31:36 -0700 | [diff] [blame] | 532 | return pbm_regs + schizo_imap_offset(ino); |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | #define schizo_read(__reg) \ |
| 536 | ({ u64 __ret; \ |
| 537 | __asm__ __volatile__("ldxa [%1] %2, %0" \ |
| 538 | : "=r" (__ret) \ |
| 539 | : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \ |
| 540 | : "memory"); \ |
| 541 | __ret; \ |
| 542 | }) |
| 543 | #define schizo_write(__reg, __val) \ |
| 544 | __asm__ __volatile__("stxa %0, [%1] %2" \ |
| 545 | : /* no outputs */ \ |
| 546 | : "r" (__val), "r" (__reg), \ |
| 547 | "i" (ASI_PHYS_BYPASS_EC_E) \ |
| 548 | : "memory") |
| 549 | |
| 550 | static void tomatillo_wsync_handler(unsigned int ino, void *_arg1, void *_arg2) |
| 551 | { |
| 552 | unsigned long sync_reg = (unsigned long) _arg2; |
| 553 | u64 mask = 1UL << (ino & IMAP_INO); |
| 554 | u64 val; |
| 555 | int limit; |
| 556 | |
| 557 | schizo_write(sync_reg, mask); |
| 558 | |
| 559 | limit = 100000; |
| 560 | val = 0; |
| 561 | while (--limit) { |
| 562 | val = schizo_read(sync_reg); |
| 563 | if (!(val & mask)) |
| 564 | break; |
| 565 | } |
| 566 | if (limit <= 0) { |
| 567 | printk("tomatillo_wsync_handler: DMA won't sync [%lx:%lx]\n", |
| 568 | val, mask); |
| 569 | } |
| 570 | |
| 571 | if (_arg1) { |
| 572 | static unsigned char cacheline[64] |
| 573 | __attribute__ ((aligned (64))); |
| 574 | |
| 575 | __asm__ __volatile__("rd %%fprs, %0\n\t" |
| 576 | "or %0, %4, %1\n\t" |
| 577 | "wr %1, 0x0, %%fprs\n\t" |
| 578 | "stda %%f0, [%5] %6\n\t" |
| 579 | "wr %0, 0x0, %%fprs\n\t" |
| 580 | "membar #Sync" |
| 581 | : "=&r" (mask), "=&r" (val) |
| 582 | : "0" (mask), "1" (val), |
| 583 | "i" (FPRS_FEF), "r" (&cacheline[0]), |
| 584 | "i" (ASI_BLK_COMMIT_P)); |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | struct schizo_irq_data { |
| 589 | unsigned long pbm_regs; |
| 590 | unsigned long sync_reg; |
| 591 | u32 portid; |
| 592 | int chip_version; |
| 593 | }; |
| 594 | |
| 595 | static unsigned int schizo_irq_build(struct device_node *dp, |
| 596 | unsigned int ino, |
| 597 | void *_data) |
| 598 | { |
| 599 | struct schizo_irq_data *irq_data = _data; |
| 600 | unsigned long pbm_regs = irq_data->pbm_regs; |
| 601 | unsigned long imap, iclr; |
| 602 | int ign_fixup; |
| 603 | int virt_irq; |
| 604 | int is_tomatillo; |
| 605 | |
| 606 | ino &= 0x3f; |
| 607 | |
| 608 | /* Now build the IRQ bucket. */ |
| 609 | imap = schizo_ino_to_imap(pbm_regs, ino); |
| 610 | iclr = schizo_ino_to_iclr(pbm_regs, ino); |
| 611 | |
| 612 | /* On Schizo, no inofixup occurs. This is because each |
| 613 | * INO has it's own IMAP register. On Psycho and Sabre |
| 614 | * there is only one IMAP register for each PCI slot even |
| 615 | * though four different INOs can be generated by each |
| 616 | * PCI slot. |
| 617 | * |
| 618 | * But, for JBUS variants (essentially, Tomatillo), we have |
| 619 | * to fixup the lowest bit of the interrupt group number. |
| 620 | */ |
| 621 | ign_fixup = 0; |
| 622 | |
| 623 | is_tomatillo = (irq_data->sync_reg != 0UL); |
| 624 | |
| 625 | if (is_tomatillo) { |
| 626 | if (irq_data->portid & 1) |
| 627 | ign_fixup = (1 << 6); |
| 628 | } |
| 629 | |
| 630 | virt_irq = build_irq(ign_fixup, iclr, imap); |
| 631 | |
| 632 | if (is_tomatillo) { |
| 633 | irq_install_pre_handler(virt_irq, |
| 634 | tomatillo_wsync_handler, |
| 635 | ((irq_data->chip_version <= 4) ? |
| 636 | (void *) 1 : (void *) 0), |
| 637 | (void *) irq_data->sync_reg); |
| 638 | } |
| 639 | |
| 640 | return virt_irq; |
| 641 | } |
| 642 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 643 | static void __init __schizo_irq_trans_init(struct device_node *dp, |
| 644 | int is_tomatillo) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 645 | { |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 646 | const struct linux_prom64_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 647 | struct schizo_irq_data *irq_data; |
| 648 | |
| 649 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 650 | dp->irq_trans->irq_build = schizo_irq_build; |
| 651 | |
| 652 | irq_data = prom_early_alloc(sizeof(struct schizo_irq_data)); |
| 653 | |
| 654 | regs = of_get_property(dp, "reg", NULL); |
| 655 | dp->irq_trans->data = irq_data; |
| 656 | |
| 657 | irq_data->pbm_regs = regs[0].phys_addr; |
David S. Miller | 9001f28 | 2006-10-29 16:32:31 -0800 | [diff] [blame] | 658 | if (is_tomatillo) |
| 659 | irq_data->sync_reg = regs[3].phys_addr + 0x1a18UL; |
| 660 | else |
| 661 | irq_data->sync_reg = 0UL; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 662 | irq_data->portid = of_getintprop_default(dp, "portid", 0); |
| 663 | irq_data->chip_version = of_getintprop_default(dp, "version#", 0); |
| 664 | } |
| 665 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 666 | static void __init schizo_irq_trans_init(struct device_node *dp) |
David S. Miller | 9001f28 | 2006-10-29 16:32:31 -0800 | [diff] [blame] | 667 | { |
| 668 | __schizo_irq_trans_init(dp, 0); |
| 669 | } |
| 670 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 671 | static void __init tomatillo_irq_trans_init(struct device_node *dp) |
David S. Miller | 9001f28 | 2006-10-29 16:32:31 -0800 | [diff] [blame] | 672 | { |
| 673 | __schizo_irq_trans_init(dp, 1); |
| 674 | } |
| 675 | |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 676 | static unsigned int pci_sun4v_irq_build(struct device_node *dp, |
| 677 | unsigned int devino, |
| 678 | void *_data) |
| 679 | { |
| 680 | u32 devhandle = (u32) (unsigned long) _data; |
| 681 | |
| 682 | return sun4v_build_irq(devhandle, devino); |
| 683 | } |
| 684 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 685 | static void __init pci_sun4v_irq_trans_init(struct device_node *dp) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 686 | { |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 687 | const struct linux_prom64_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 688 | |
| 689 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 690 | dp->irq_trans->irq_build = pci_sun4v_irq_build; |
| 691 | |
| 692 | regs = of_get_property(dp, "reg", NULL); |
| 693 | dp->irq_trans->data = (void *) (unsigned long) |
| 694 | ((regs->phys_addr >> 32UL) & 0x0fffffff); |
| 695 | } |
David S. Miller | 861fe90 | 2007-05-02 17:31:36 -0700 | [diff] [blame] | 696 | |
| 697 | struct fire_irq_data { |
| 698 | unsigned long pbm_regs; |
| 699 | u32 portid; |
| 700 | }; |
| 701 | |
| 702 | #define FIRE_IMAP_BASE 0x001000 |
| 703 | #define FIRE_ICLR_BASE 0x001400 |
| 704 | |
| 705 | static unsigned long fire_imap_offset(unsigned long ino) |
| 706 | { |
| 707 | return FIRE_IMAP_BASE + (ino * 8UL); |
| 708 | } |
| 709 | |
| 710 | static unsigned long fire_iclr_offset(unsigned long ino) |
| 711 | { |
| 712 | return FIRE_ICLR_BASE + (ino * 8UL); |
| 713 | } |
| 714 | |
| 715 | static unsigned long fire_ino_to_iclr(unsigned long pbm_regs, |
| 716 | unsigned int ino) |
| 717 | { |
| 718 | return pbm_regs + fire_iclr_offset(ino); |
| 719 | } |
| 720 | |
| 721 | static unsigned long fire_ino_to_imap(unsigned long pbm_regs, |
| 722 | unsigned int ino) |
| 723 | { |
| 724 | return pbm_regs + fire_imap_offset(ino); |
| 725 | } |
| 726 | |
| 727 | static unsigned int fire_irq_build(struct device_node *dp, |
| 728 | unsigned int ino, |
| 729 | void *_data) |
| 730 | { |
| 731 | struct fire_irq_data *irq_data = _data; |
| 732 | unsigned long pbm_regs = irq_data->pbm_regs; |
| 733 | unsigned long imap, iclr; |
| 734 | unsigned long int_ctrlr; |
| 735 | |
| 736 | ino &= 0x3f; |
| 737 | |
| 738 | /* Now build the IRQ bucket. */ |
| 739 | imap = fire_ino_to_imap(pbm_regs, ino); |
| 740 | iclr = fire_ino_to_iclr(pbm_regs, ino); |
| 741 | |
| 742 | /* Set the interrupt controller number. */ |
| 743 | int_ctrlr = 1 << 6; |
| 744 | upa_writeq(int_ctrlr, imap); |
| 745 | |
| 746 | /* The interrupt map registers do not have an INO field |
| 747 | * like other chips do. They return zero in the INO |
| 748 | * field, and the interrupt controller number is controlled |
Simon Arlott | e5dd42e | 2007-05-11 13:52:08 -0700 | [diff] [blame] | 749 | * in bits 6 to 9. So in order for build_irq() to get |
David S. Miller | 861fe90 | 2007-05-02 17:31:36 -0700 | [diff] [blame] | 750 | * the INO right we pass it in as part of the fixup |
| 751 | * which will get added to the map register zero value |
| 752 | * read by build_irq(). |
| 753 | */ |
| 754 | ino |= (irq_data->portid << 6); |
| 755 | ino -= int_ctrlr; |
| 756 | return build_irq(ino, iclr, imap); |
| 757 | } |
| 758 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 759 | static void __init fire_irq_trans_init(struct device_node *dp) |
David S. Miller | 861fe90 | 2007-05-02 17:31:36 -0700 | [diff] [blame] | 760 | { |
| 761 | const struct linux_prom64_registers *regs; |
| 762 | struct fire_irq_data *irq_data; |
| 763 | |
| 764 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 765 | dp->irq_trans->irq_build = fire_irq_build; |
| 766 | |
| 767 | irq_data = prom_early_alloc(sizeof(struct fire_irq_data)); |
| 768 | |
| 769 | regs = of_get_property(dp, "reg", NULL); |
| 770 | dp->irq_trans->data = irq_data; |
| 771 | |
| 772 | irq_data->pbm_regs = regs[0].phys_addr; |
| 773 | irq_data->portid = of_getintprop_default(dp, "portid", 0); |
| 774 | } |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 775 | #endif /* CONFIG_PCI */ |
| 776 | |
| 777 | #ifdef CONFIG_SBUS |
| 778 | /* INO number to IMAP register offset for SYSIO external IRQ's. |
| 779 | * This should conform to both Sunfire/Wildfire server and Fusion |
| 780 | * desktop designs. |
| 781 | */ |
David S. Miller | ec4d18f | 2007-06-07 16:58:22 -0700 | [diff] [blame] | 782 | #define SYSIO_IMAP_SLOT0 0x2c00UL |
| 783 | #define SYSIO_IMAP_SLOT1 0x2c08UL |
| 784 | #define SYSIO_IMAP_SLOT2 0x2c10UL |
| 785 | #define SYSIO_IMAP_SLOT3 0x2c18UL |
| 786 | #define SYSIO_IMAP_SCSI 0x3000UL |
| 787 | #define SYSIO_IMAP_ETH 0x3008UL |
| 788 | #define SYSIO_IMAP_BPP 0x3010UL |
| 789 | #define SYSIO_IMAP_AUDIO 0x3018UL |
| 790 | #define SYSIO_IMAP_PFAIL 0x3020UL |
| 791 | #define SYSIO_IMAP_KMS 0x3028UL |
| 792 | #define SYSIO_IMAP_FLPY 0x3030UL |
| 793 | #define SYSIO_IMAP_SHW 0x3038UL |
| 794 | #define SYSIO_IMAP_KBD 0x3040UL |
| 795 | #define SYSIO_IMAP_MS 0x3048UL |
| 796 | #define SYSIO_IMAP_SER 0x3050UL |
| 797 | #define SYSIO_IMAP_TIM0 0x3060UL |
| 798 | #define SYSIO_IMAP_TIM1 0x3068UL |
| 799 | #define SYSIO_IMAP_UE 0x3070UL |
| 800 | #define SYSIO_IMAP_CE 0x3078UL |
| 801 | #define SYSIO_IMAP_SBERR 0x3080UL |
| 802 | #define SYSIO_IMAP_PMGMT 0x3088UL |
| 803 | #define SYSIO_IMAP_GFX 0x3090UL |
| 804 | #define SYSIO_IMAP_EUPA 0x3098UL |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 805 | |
| 806 | #define bogon ((unsigned long) -1) |
| 807 | static unsigned long sysio_irq_offsets[] = { |
| 808 | /* SBUS Slot 0 --> 3, level 1 --> 7 */ |
| 809 | SYSIO_IMAP_SLOT0, SYSIO_IMAP_SLOT0, SYSIO_IMAP_SLOT0, SYSIO_IMAP_SLOT0, |
| 810 | SYSIO_IMAP_SLOT0, SYSIO_IMAP_SLOT0, SYSIO_IMAP_SLOT0, SYSIO_IMAP_SLOT0, |
| 811 | SYSIO_IMAP_SLOT1, SYSIO_IMAP_SLOT1, SYSIO_IMAP_SLOT1, SYSIO_IMAP_SLOT1, |
| 812 | SYSIO_IMAP_SLOT1, SYSIO_IMAP_SLOT1, SYSIO_IMAP_SLOT1, SYSIO_IMAP_SLOT1, |
| 813 | SYSIO_IMAP_SLOT2, SYSIO_IMAP_SLOT2, SYSIO_IMAP_SLOT2, SYSIO_IMAP_SLOT2, |
| 814 | SYSIO_IMAP_SLOT2, SYSIO_IMAP_SLOT2, SYSIO_IMAP_SLOT2, SYSIO_IMAP_SLOT2, |
| 815 | SYSIO_IMAP_SLOT3, SYSIO_IMAP_SLOT3, SYSIO_IMAP_SLOT3, SYSIO_IMAP_SLOT3, |
| 816 | SYSIO_IMAP_SLOT3, SYSIO_IMAP_SLOT3, SYSIO_IMAP_SLOT3, SYSIO_IMAP_SLOT3, |
| 817 | |
| 818 | /* Onboard devices (not relevant/used on SunFire). */ |
| 819 | SYSIO_IMAP_SCSI, |
| 820 | SYSIO_IMAP_ETH, |
| 821 | SYSIO_IMAP_BPP, |
| 822 | bogon, |
| 823 | SYSIO_IMAP_AUDIO, |
| 824 | SYSIO_IMAP_PFAIL, |
| 825 | bogon, |
| 826 | bogon, |
| 827 | SYSIO_IMAP_KMS, |
| 828 | SYSIO_IMAP_FLPY, |
| 829 | SYSIO_IMAP_SHW, |
| 830 | SYSIO_IMAP_KBD, |
| 831 | SYSIO_IMAP_MS, |
| 832 | SYSIO_IMAP_SER, |
| 833 | bogon, |
| 834 | bogon, |
| 835 | SYSIO_IMAP_TIM0, |
| 836 | SYSIO_IMAP_TIM1, |
| 837 | bogon, |
| 838 | bogon, |
| 839 | SYSIO_IMAP_UE, |
| 840 | SYSIO_IMAP_CE, |
| 841 | SYSIO_IMAP_SBERR, |
| 842 | SYSIO_IMAP_PMGMT, |
David S. Miller | 46ba6d7 | 2006-07-16 22:10:44 -0700 | [diff] [blame] | 843 | SYSIO_IMAP_GFX, |
| 844 | SYSIO_IMAP_EUPA, |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 845 | }; |
| 846 | |
| 847 | #undef bogon |
| 848 | |
| 849 | #define NUM_SYSIO_OFFSETS ARRAY_SIZE(sysio_irq_offsets) |
| 850 | |
| 851 | /* Convert Interrupt Mapping register pointer to associated |
| 852 | * Interrupt Clear register pointer, SYSIO specific version. |
| 853 | */ |
| 854 | #define SYSIO_ICLR_UNUSED0 0x3400UL |
David S. Miller | ec4d18f | 2007-06-07 16:58:22 -0700 | [diff] [blame] | 855 | #define SYSIO_ICLR_SLOT0 0x3408UL |
| 856 | #define SYSIO_ICLR_SLOT1 0x3448UL |
| 857 | #define SYSIO_ICLR_SLOT2 0x3488UL |
| 858 | #define SYSIO_ICLR_SLOT3 0x34c8UL |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 859 | static unsigned long sysio_imap_to_iclr(unsigned long imap) |
| 860 | { |
| 861 | unsigned long diff = SYSIO_ICLR_UNUSED0 - SYSIO_IMAP_SLOT0; |
| 862 | return imap + diff; |
| 863 | } |
| 864 | |
| 865 | static unsigned int sbus_of_build_irq(struct device_node *dp, |
| 866 | unsigned int ino, |
| 867 | void *_data) |
| 868 | { |
| 869 | unsigned long reg_base = (unsigned long) _data; |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 870 | const struct linux_prom_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 871 | unsigned long imap, iclr; |
| 872 | int sbus_slot = 0; |
| 873 | int sbus_level = 0; |
| 874 | |
| 875 | ino &= 0x3f; |
| 876 | |
| 877 | regs = of_get_property(dp, "reg", NULL); |
| 878 | if (regs) |
| 879 | sbus_slot = regs->which_io; |
| 880 | |
| 881 | if (ino < 0x20) |
| 882 | ino += (sbus_slot * 8); |
| 883 | |
| 884 | imap = sysio_irq_offsets[ino]; |
| 885 | if (imap == ((unsigned long)-1)) { |
| 886 | prom_printf("get_irq_translations: Bad SYSIO INO[%x]\n", |
| 887 | ino); |
| 888 | prom_halt(); |
| 889 | } |
| 890 | imap += reg_base; |
| 891 | |
| 892 | /* SYSIO inconsistency. For external SLOTS, we have to select |
| 893 | * the right ICLR register based upon the lower SBUS irq level |
| 894 | * bits. |
| 895 | */ |
| 896 | if (ino >= 0x20) { |
| 897 | iclr = sysio_imap_to_iclr(imap); |
| 898 | } else { |
| 899 | sbus_level = ino & 0x7; |
| 900 | |
| 901 | switch(sbus_slot) { |
| 902 | case 0: |
| 903 | iclr = reg_base + SYSIO_ICLR_SLOT0; |
| 904 | break; |
| 905 | case 1: |
| 906 | iclr = reg_base + SYSIO_ICLR_SLOT1; |
| 907 | break; |
| 908 | case 2: |
| 909 | iclr = reg_base + SYSIO_ICLR_SLOT2; |
| 910 | break; |
| 911 | default: |
| 912 | case 3: |
| 913 | iclr = reg_base + SYSIO_ICLR_SLOT3; |
| 914 | break; |
| 915 | }; |
| 916 | |
| 917 | iclr += ((unsigned long)sbus_level - 1UL) * 8UL; |
| 918 | } |
| 919 | return build_irq(sbus_level, iclr, imap); |
| 920 | } |
| 921 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 922 | static void __init sbus_irq_trans_init(struct device_node *dp) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 923 | { |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 924 | const struct linux_prom64_registers *regs; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 925 | |
| 926 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 927 | dp->irq_trans->irq_build = sbus_of_build_irq; |
| 928 | |
| 929 | regs = of_get_property(dp, "reg", NULL); |
| 930 | dp->irq_trans->data = (void *) (unsigned long) regs->phys_addr; |
| 931 | } |
| 932 | #endif /* CONFIG_SBUS */ |
| 933 | |
| 934 | |
| 935 | static unsigned int central_build_irq(struct device_node *dp, |
| 936 | unsigned int ino, |
| 937 | void *_data) |
| 938 | { |
| 939 | struct device_node *central_dp = _data; |
| 940 | struct of_device *central_op = of_find_device_by_node(central_dp); |
| 941 | struct resource *res; |
| 942 | unsigned long imap, iclr; |
| 943 | u32 tmp; |
| 944 | |
| 945 | if (!strcmp(dp->name, "eeprom")) { |
| 946 | res = ¢ral_op->resource[5]; |
| 947 | } else if (!strcmp(dp->name, "zs")) { |
| 948 | res = ¢ral_op->resource[4]; |
| 949 | } else if (!strcmp(dp->name, "clock-board")) { |
| 950 | res = ¢ral_op->resource[3]; |
| 951 | } else { |
| 952 | return ino; |
| 953 | } |
| 954 | |
| 955 | imap = res->start + 0x00UL; |
| 956 | iclr = res->start + 0x10UL; |
| 957 | |
| 958 | /* Set the INO state to idle, and disable. */ |
| 959 | upa_writel(0, iclr); |
| 960 | upa_readl(iclr); |
| 961 | |
| 962 | tmp = upa_readl(imap); |
| 963 | tmp &= ~0x80000000; |
| 964 | upa_writel(tmp, imap); |
| 965 | |
| 966 | return build_irq(0, iclr, imap); |
| 967 | } |
| 968 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 969 | static void __init central_irq_trans_init(struct device_node *dp) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 970 | { |
| 971 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 972 | dp->irq_trans->irq_build = central_build_irq; |
| 973 | |
| 974 | dp->irq_trans->data = dp; |
| 975 | } |
| 976 | |
| 977 | struct irq_trans { |
| 978 | const char *name; |
| 979 | void (*init)(struct device_node *); |
| 980 | }; |
| 981 | |
| 982 | #ifdef CONFIG_PCI |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 983 | static struct irq_trans __initdata pci_irq_trans_table[] = { |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 984 | { "SUNW,sabre", sabre_irq_trans_init }, |
| 985 | { "pci108e,a000", sabre_irq_trans_init }, |
| 986 | { "pci108e,a001", sabre_irq_trans_init }, |
| 987 | { "SUNW,psycho", psycho_irq_trans_init }, |
| 988 | { "pci108e,8000", psycho_irq_trans_init }, |
| 989 | { "SUNW,schizo", schizo_irq_trans_init }, |
| 990 | { "pci108e,8001", schizo_irq_trans_init }, |
| 991 | { "SUNW,schizo+", schizo_irq_trans_init }, |
| 992 | { "pci108e,8002", schizo_irq_trans_init }, |
David S. Miller | 9001f28 | 2006-10-29 16:32:31 -0800 | [diff] [blame] | 993 | { "SUNW,tomatillo", tomatillo_irq_trans_init }, |
| 994 | { "pci108e,a801", tomatillo_irq_trans_init }, |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 995 | { "SUNW,sun4v-pci", pci_sun4v_irq_trans_init }, |
David S. Miller | 861fe90 | 2007-05-02 17:31:36 -0700 | [diff] [blame] | 996 | { "pciex108e,80f0", fire_irq_trans_init }, |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 997 | }; |
| 998 | #endif |
| 999 | |
David S. Miller | 6e990b5 | 2006-06-30 00:07:40 -0700 | [diff] [blame] | 1000 | static unsigned int sun4v_vdev_irq_build(struct device_node *dp, |
| 1001 | unsigned int devino, |
| 1002 | void *_data) |
| 1003 | { |
| 1004 | u32 devhandle = (u32) (unsigned long) _data; |
| 1005 | |
| 1006 | return sun4v_build_irq(devhandle, devino); |
| 1007 | } |
| 1008 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 1009 | static void __init sun4v_vdev_irq_trans_init(struct device_node *dp) |
David S. Miller | 6e990b5 | 2006-06-30 00:07:40 -0700 | [diff] [blame] | 1010 | { |
Stephen Rothwell | 6a23acf | 2007-04-23 15:53:27 -0700 | [diff] [blame] | 1011 | const struct linux_prom64_registers *regs; |
David S. Miller | 6e990b5 | 2006-06-30 00:07:40 -0700 | [diff] [blame] | 1012 | |
| 1013 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); |
| 1014 | dp->irq_trans->irq_build = sun4v_vdev_irq_build; |
| 1015 | |
| 1016 | regs = of_get_property(dp, "reg", NULL); |
| 1017 | dp->irq_trans->data = (void *) (unsigned long) |
| 1018 | ((regs->phys_addr >> 32UL) & 0x0fffffff); |
| 1019 | } |
| 1020 | |
David S. Miller | c35a376 | 2007-05-07 00:02:24 -0700 | [diff] [blame] | 1021 | static void __init irq_trans_init(struct device_node *dp) |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1022 | { |
Randy Dunlap | 7233589 | 2006-07-05 20:18:39 -0700 | [diff] [blame] | 1023 | #ifdef CONFIG_PCI |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1024 | const char *model; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1025 | int i; |
Randy Dunlap | 7233589 | 2006-07-05 20:18:39 -0700 | [diff] [blame] | 1026 | #endif |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1027 | |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1028 | #ifdef CONFIG_PCI |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1029 | model = of_get_property(dp, "model", NULL); |
| 1030 | if (!model) |
| 1031 | model = of_get_property(dp, "compatible", NULL); |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1032 | if (model) { |
| 1033 | for (i = 0; i < ARRAY_SIZE(pci_irq_trans_table); i++) { |
| 1034 | struct irq_trans *t = &pci_irq_trans_table[i]; |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1035 | |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1036 | if (!strcmp(model, t->name)) |
| 1037 | return t->init(dp); |
| 1038 | } |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1039 | } |
| 1040 | #endif |
| 1041 | #ifdef CONFIG_SBUS |
| 1042 | if (!strcmp(dp->name, "sbus") || |
| 1043 | !strcmp(dp->name, "sbi")) |
| 1044 | return sbus_irq_trans_init(dp); |
| 1045 | #endif |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1046 | if (!strcmp(dp->name, "fhc") && |
| 1047 | !strcmp(dp->parent->name, "central")) |
| 1048 | return central_irq_trans_init(dp); |
David S. Miller | 6e990b5 | 2006-06-30 00:07:40 -0700 | [diff] [blame] | 1049 | if (!strcmp(dp->name, "virtual-devices")) |
| 1050 | return sun4v_vdev_irq_trans_init(dp); |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1051 | } |
| 1052 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1053 | static int is_root_node(const struct device_node *dp) |
| 1054 | { |
| 1055 | if (!dp) |
| 1056 | return 0; |
| 1057 | |
| 1058 | return (dp->parent == NULL); |
| 1059 | } |
| 1060 | |
| 1061 | /* The following routines deal with the black magic of fully naming a |
| 1062 | * node. |
| 1063 | * |
| 1064 | * Certain well known named nodes are just the simple name string. |
| 1065 | * |
| 1066 | * Actual devices have an address specifier appended to the base name |
| 1067 | * string, like this "foo@addr". The "addr" can be in any number of |
| 1068 | * formats, and the platform plus the type of the node determine the |
| 1069 | * format and how it is constructed. |
| 1070 | * |
| 1071 | * For children of the ROOT node, the naming convention is fixed and |
| 1072 | * determined by whether this is a sun4u or sun4v system. |
| 1073 | * |
| 1074 | * For children of other nodes, it is bus type specific. So |
| 1075 | * we walk up the tree until we discover a "device_type" property |
| 1076 | * we recognize and we go from there. |
| 1077 | * |
| 1078 | * As an example, the boot device on my workstation has a full path: |
| 1079 | * |
| 1080 | * /pci@1e,600000/ide@d/disk@0,0:c |
| 1081 | */ |
| 1082 | static void __init sun4v_path_component(struct device_node *dp, char *tmp_buf) |
| 1083 | { |
| 1084 | struct linux_prom64_registers *regs; |
| 1085 | struct property *rprop; |
| 1086 | u32 high_bits, low_bits, type; |
| 1087 | |
| 1088 | rprop = of_find_property(dp, "reg", NULL); |
| 1089 | if (!rprop) |
| 1090 | return; |
| 1091 | |
| 1092 | regs = rprop->value; |
| 1093 | if (!is_root_node(dp->parent)) { |
| 1094 | sprintf(tmp_buf, "%s@%x,%x", |
| 1095 | dp->name, |
| 1096 | (unsigned int) (regs->phys_addr >> 32UL), |
| 1097 | (unsigned int) (regs->phys_addr & 0xffffffffUL)); |
| 1098 | return; |
| 1099 | } |
| 1100 | |
| 1101 | type = regs->phys_addr >> 60UL; |
| 1102 | high_bits = (regs->phys_addr >> 32UL) & 0x0fffffffUL; |
| 1103 | low_bits = (regs->phys_addr & 0xffffffffUL); |
| 1104 | |
| 1105 | if (type == 0 || type == 8) { |
| 1106 | const char *prefix = (type == 0) ? "m" : "i"; |
| 1107 | |
| 1108 | if (low_bits) |
| 1109 | sprintf(tmp_buf, "%s@%s%x,%x", |
| 1110 | dp->name, prefix, |
| 1111 | high_bits, low_bits); |
| 1112 | else |
| 1113 | sprintf(tmp_buf, "%s@%s%x", |
| 1114 | dp->name, |
| 1115 | prefix, |
| 1116 | high_bits); |
| 1117 | } else if (type == 12) { |
| 1118 | sprintf(tmp_buf, "%s@%x", |
| 1119 | dp->name, high_bits); |
| 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | static void __init sun4u_path_component(struct device_node *dp, char *tmp_buf) |
| 1124 | { |
| 1125 | struct linux_prom64_registers *regs; |
| 1126 | struct property *prop; |
| 1127 | |
| 1128 | prop = of_find_property(dp, "reg", NULL); |
| 1129 | if (!prop) |
| 1130 | return; |
| 1131 | |
| 1132 | regs = prop->value; |
| 1133 | if (!is_root_node(dp->parent)) { |
| 1134 | sprintf(tmp_buf, "%s@%x,%x", |
| 1135 | dp->name, |
| 1136 | (unsigned int) (regs->phys_addr >> 32UL), |
| 1137 | (unsigned int) (regs->phys_addr & 0xffffffffUL)); |
| 1138 | return; |
| 1139 | } |
| 1140 | |
| 1141 | prop = of_find_property(dp, "upa-portid", NULL); |
| 1142 | if (!prop) |
| 1143 | prop = of_find_property(dp, "portid", NULL); |
| 1144 | if (prop) { |
| 1145 | unsigned long mask = 0xffffffffUL; |
| 1146 | |
| 1147 | if (tlb_type >= cheetah) |
| 1148 | mask = 0x7fffff; |
| 1149 | |
| 1150 | sprintf(tmp_buf, "%s@%x,%x", |
| 1151 | dp->name, |
| 1152 | *(u32 *)prop->value, |
| 1153 | (unsigned int) (regs->phys_addr & mask)); |
| 1154 | } |
| 1155 | } |
| 1156 | |
| 1157 | /* "name@slot,offset" */ |
| 1158 | static void __init sbus_path_component(struct device_node *dp, char *tmp_buf) |
| 1159 | { |
| 1160 | struct linux_prom_registers *regs; |
| 1161 | struct property *prop; |
| 1162 | |
| 1163 | prop = of_find_property(dp, "reg", NULL); |
| 1164 | if (!prop) |
| 1165 | return; |
| 1166 | |
| 1167 | regs = prop->value; |
| 1168 | sprintf(tmp_buf, "%s@%x,%x", |
| 1169 | dp->name, |
| 1170 | regs->which_io, |
| 1171 | regs->phys_addr); |
| 1172 | } |
| 1173 | |
| 1174 | /* "name@devnum[,func]" */ |
| 1175 | static void __init pci_path_component(struct device_node *dp, char *tmp_buf) |
| 1176 | { |
| 1177 | struct linux_prom_pci_registers *regs; |
| 1178 | struct property *prop; |
| 1179 | unsigned int devfn; |
| 1180 | |
| 1181 | prop = of_find_property(dp, "reg", NULL); |
| 1182 | if (!prop) |
| 1183 | return; |
| 1184 | |
| 1185 | regs = prop->value; |
| 1186 | devfn = (regs->phys_hi >> 8) & 0xff; |
| 1187 | if (devfn & 0x07) { |
| 1188 | sprintf(tmp_buf, "%s@%x,%x", |
| 1189 | dp->name, |
| 1190 | devfn >> 3, |
| 1191 | devfn & 0x07); |
| 1192 | } else { |
| 1193 | sprintf(tmp_buf, "%s@%x", |
| 1194 | dp->name, |
| 1195 | devfn >> 3); |
| 1196 | } |
| 1197 | } |
| 1198 | |
| 1199 | /* "name@UPA_PORTID,offset" */ |
| 1200 | static void __init upa_path_component(struct device_node *dp, char *tmp_buf) |
| 1201 | { |
| 1202 | struct linux_prom64_registers *regs; |
| 1203 | struct property *prop; |
| 1204 | |
| 1205 | prop = of_find_property(dp, "reg", NULL); |
| 1206 | if (!prop) |
| 1207 | return; |
| 1208 | |
| 1209 | regs = prop->value; |
| 1210 | |
| 1211 | prop = of_find_property(dp, "upa-portid", NULL); |
| 1212 | if (!prop) |
| 1213 | return; |
| 1214 | |
| 1215 | sprintf(tmp_buf, "%s@%x,%x", |
| 1216 | dp->name, |
| 1217 | *(u32 *) prop->value, |
| 1218 | (unsigned int) (regs->phys_addr & 0xffffffffUL)); |
| 1219 | } |
| 1220 | |
| 1221 | /* "name@reg" */ |
| 1222 | static void __init vdev_path_component(struct device_node *dp, char *tmp_buf) |
| 1223 | { |
| 1224 | struct property *prop; |
| 1225 | u32 *regs; |
| 1226 | |
| 1227 | prop = of_find_property(dp, "reg", NULL); |
| 1228 | if (!prop) |
| 1229 | return; |
| 1230 | |
| 1231 | regs = prop->value; |
| 1232 | |
| 1233 | sprintf(tmp_buf, "%s@%x", dp->name, *regs); |
| 1234 | } |
| 1235 | |
| 1236 | /* "name@addrhi,addrlo" */ |
| 1237 | static void __init ebus_path_component(struct device_node *dp, char *tmp_buf) |
| 1238 | { |
| 1239 | struct linux_prom64_registers *regs; |
| 1240 | struct property *prop; |
| 1241 | |
| 1242 | prop = of_find_property(dp, "reg", NULL); |
| 1243 | if (!prop) |
| 1244 | return; |
| 1245 | |
| 1246 | regs = prop->value; |
| 1247 | |
| 1248 | sprintf(tmp_buf, "%s@%x,%x", |
| 1249 | dp->name, |
| 1250 | (unsigned int) (regs->phys_addr >> 32UL), |
| 1251 | (unsigned int) (regs->phys_addr & 0xffffffffUL)); |
| 1252 | } |
| 1253 | |
| 1254 | /* "name@bus,addr" */ |
| 1255 | static void __init i2c_path_component(struct device_node *dp, char *tmp_buf) |
| 1256 | { |
| 1257 | struct property *prop; |
| 1258 | u32 *regs; |
| 1259 | |
| 1260 | prop = of_find_property(dp, "reg", NULL); |
| 1261 | if (!prop) |
| 1262 | return; |
| 1263 | |
| 1264 | regs = prop->value; |
| 1265 | |
| 1266 | /* This actually isn't right... should look at the #address-cells |
| 1267 | * property of the i2c bus node etc. etc. |
| 1268 | */ |
| 1269 | sprintf(tmp_buf, "%s@%x,%x", |
| 1270 | dp->name, regs[0], regs[1]); |
| 1271 | } |
| 1272 | |
| 1273 | /* "name@reg0[,reg1]" */ |
| 1274 | static void __init usb_path_component(struct device_node *dp, char *tmp_buf) |
| 1275 | { |
| 1276 | struct property *prop; |
| 1277 | u32 *regs; |
| 1278 | |
| 1279 | prop = of_find_property(dp, "reg", NULL); |
| 1280 | if (!prop) |
| 1281 | return; |
| 1282 | |
| 1283 | regs = prop->value; |
| 1284 | |
| 1285 | if (prop->length == sizeof(u32) || regs[1] == 1) { |
| 1286 | sprintf(tmp_buf, "%s@%x", |
| 1287 | dp->name, regs[0]); |
| 1288 | } else { |
| 1289 | sprintf(tmp_buf, "%s@%x,%x", |
| 1290 | dp->name, regs[0], regs[1]); |
| 1291 | } |
| 1292 | } |
| 1293 | |
| 1294 | /* "name@reg0reg1[,reg2reg3]" */ |
| 1295 | static void __init ieee1394_path_component(struct device_node *dp, char *tmp_buf) |
| 1296 | { |
| 1297 | struct property *prop; |
| 1298 | u32 *regs; |
| 1299 | |
| 1300 | prop = of_find_property(dp, "reg", NULL); |
| 1301 | if (!prop) |
| 1302 | return; |
| 1303 | |
| 1304 | regs = prop->value; |
| 1305 | |
| 1306 | if (regs[2] || regs[3]) { |
| 1307 | sprintf(tmp_buf, "%s@%08x%08x,%04x%08x", |
| 1308 | dp->name, regs[0], regs[1], regs[2], regs[3]); |
| 1309 | } else { |
| 1310 | sprintf(tmp_buf, "%s@%08x%08x", |
| 1311 | dp->name, regs[0], regs[1]); |
| 1312 | } |
| 1313 | } |
| 1314 | |
| 1315 | static void __init __build_path_component(struct device_node *dp, char *tmp_buf) |
| 1316 | { |
| 1317 | struct device_node *parent = dp->parent; |
| 1318 | |
| 1319 | if (parent != NULL) { |
| 1320 | if (!strcmp(parent->type, "pci") || |
| 1321 | !strcmp(parent->type, "pciex")) |
| 1322 | return pci_path_component(dp, tmp_buf); |
| 1323 | if (!strcmp(parent->type, "sbus")) |
| 1324 | return sbus_path_component(dp, tmp_buf); |
| 1325 | if (!strcmp(parent->type, "upa")) |
| 1326 | return upa_path_component(dp, tmp_buf); |
| 1327 | if (!strcmp(parent->type, "ebus")) |
| 1328 | return ebus_path_component(dp, tmp_buf); |
| 1329 | if (!strcmp(parent->name, "usb") || |
| 1330 | !strcmp(parent->name, "hub")) |
| 1331 | return usb_path_component(dp, tmp_buf); |
| 1332 | if (!strcmp(parent->type, "i2c")) |
| 1333 | return i2c_path_component(dp, tmp_buf); |
| 1334 | if (!strcmp(parent->type, "firewire")) |
| 1335 | return ieee1394_path_component(dp, tmp_buf); |
| 1336 | if (!strcmp(parent->type, "virtual-devices")) |
| 1337 | return vdev_path_component(dp, tmp_buf); |
| 1338 | |
| 1339 | /* "isa" is handled with platform naming */ |
| 1340 | } |
| 1341 | |
| 1342 | /* Use platform naming convention. */ |
| 1343 | if (tlb_type == hypervisor) |
| 1344 | return sun4v_path_component(dp, tmp_buf); |
| 1345 | else |
| 1346 | return sun4u_path_component(dp, tmp_buf); |
| 1347 | } |
| 1348 | |
| 1349 | static char * __init build_path_component(struct device_node *dp) |
| 1350 | { |
| 1351 | char tmp_buf[64], *n; |
| 1352 | |
| 1353 | tmp_buf[0] = '\0'; |
| 1354 | __build_path_component(dp, tmp_buf); |
| 1355 | if (tmp_buf[0] == '\0') |
| 1356 | strcpy(tmp_buf, dp->name); |
| 1357 | |
| 1358 | n = prom_early_alloc(strlen(tmp_buf) + 1); |
| 1359 | strcpy(n, tmp_buf); |
| 1360 | |
| 1361 | return n; |
| 1362 | } |
| 1363 | |
| 1364 | static char * __init build_full_name(struct device_node *dp) |
| 1365 | { |
| 1366 | int len, ourlen, plen; |
| 1367 | char *n; |
| 1368 | |
| 1369 | plen = strlen(dp->parent->full_name); |
| 1370 | ourlen = strlen(dp->path_component_name); |
| 1371 | len = ourlen + plen + 2; |
| 1372 | |
| 1373 | n = prom_early_alloc(len); |
| 1374 | strcpy(n, dp->parent->full_name); |
| 1375 | if (!is_root_node(dp->parent)) { |
| 1376 | strcpy(n + plen, "/"); |
| 1377 | plen++; |
| 1378 | } |
| 1379 | strcpy(n + plen, dp->path_component_name); |
| 1380 | |
| 1381 | return n; |
| 1382 | } |
| 1383 | |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1384 | static unsigned int unique_id; |
| 1385 | |
| 1386 | static struct property * __init build_one_prop(phandle node, char *prev, char *special_name, void *special_val, int special_len) |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1387 | { |
| 1388 | static struct property *tmp = NULL; |
| 1389 | struct property *p; |
| 1390 | |
| 1391 | if (tmp) { |
| 1392 | p = tmp; |
| 1393 | memset(p, 0, sizeof(*p) + 32); |
| 1394 | tmp = NULL; |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1395 | } else { |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1396 | p = prom_early_alloc(sizeof(struct property) + 32); |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1397 | p->unique_id = unique_id++; |
| 1398 | } |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1399 | |
| 1400 | p->name = (char *) (p + 1); |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1401 | if (special_name) { |
| 1402 | strcpy(p->name, special_name); |
| 1403 | p->length = special_len; |
| 1404 | p->value = prom_early_alloc(special_len); |
| 1405 | memcpy(p->value, special_val, special_len); |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1406 | } else { |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1407 | if (prev == NULL) { |
| 1408 | prom_firstprop(node, p->name); |
| 1409 | } else { |
| 1410 | prom_nextprop(node, prev, p->name); |
| 1411 | } |
| 1412 | if (strlen(p->name) == 0) { |
| 1413 | tmp = p; |
| 1414 | return NULL; |
| 1415 | } |
| 1416 | p->length = prom_getproplen(node, p->name); |
| 1417 | if (p->length <= 0) { |
| 1418 | p->length = 0; |
| 1419 | } else { |
| 1420 | p->value = prom_early_alloc(p->length + 1); |
| 1421 | prom_getproperty(node, p->name, p->value, p->length); |
| 1422 | ((unsigned char *)p->value)[p->length] = '\0'; |
| 1423 | } |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1424 | } |
| 1425 | return p; |
| 1426 | } |
| 1427 | |
| 1428 | static struct property * __init build_prop_list(phandle node) |
| 1429 | { |
| 1430 | struct property *head, *tail; |
| 1431 | |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1432 | head = tail = build_one_prop(node, NULL, |
| 1433 | ".node", &node, sizeof(node)); |
| 1434 | |
| 1435 | tail->next = build_one_prop(node, NULL, NULL, NULL, 0); |
| 1436 | tail = tail->next; |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1437 | while(tail) { |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1438 | tail->next = build_one_prop(node, tail->name, |
| 1439 | NULL, NULL, 0); |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1440 | tail = tail->next; |
| 1441 | } |
| 1442 | |
| 1443 | return head; |
| 1444 | } |
| 1445 | |
| 1446 | static char * __init get_one_property(phandle node, const char *name) |
| 1447 | { |
| 1448 | char *buf = "<NULL>"; |
| 1449 | int len; |
| 1450 | |
| 1451 | len = prom_getproplen(node, name); |
| 1452 | if (len > 0) { |
| 1453 | buf = prom_early_alloc(len); |
| 1454 | prom_getproperty(node, name, buf, len); |
| 1455 | } |
| 1456 | |
| 1457 | return buf; |
| 1458 | } |
| 1459 | |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1460 | static struct device_node * __init create_node(phandle node, struct device_node *parent) |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1461 | { |
| 1462 | struct device_node *dp; |
| 1463 | |
| 1464 | if (!node) |
| 1465 | return NULL; |
| 1466 | |
| 1467 | dp = prom_early_alloc(sizeof(*dp)); |
David S. Miller | 87b385d | 2006-06-25 23:18:57 -0700 | [diff] [blame] | 1468 | dp->unique_id = unique_id++; |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1469 | dp->parent = parent; |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1470 | |
| 1471 | kref_init(&dp->kref); |
| 1472 | |
| 1473 | dp->name = get_one_property(node, "name"); |
| 1474 | dp->type = get_one_property(node, "device_type"); |
| 1475 | dp->node = node; |
| 1476 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1477 | dp->properties = build_prop_list(node); |
| 1478 | |
David S. Miller | 2b1e597 | 2006-06-29 15:07:37 -0700 | [diff] [blame] | 1479 | irq_trans_init(dp); |
| 1480 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1481 | return dp; |
| 1482 | } |
| 1483 | |
| 1484 | static struct device_node * __init build_tree(struct device_node *parent, phandle node, struct device_node ***nextp) |
| 1485 | { |
David S. Miller | aa5242e | 2007-05-10 00:53:29 -0700 | [diff] [blame] | 1486 | struct device_node *ret = NULL, *prev_sibling = NULL; |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1487 | struct device_node *dp; |
| 1488 | |
David S. Miller | aa5242e | 2007-05-10 00:53:29 -0700 | [diff] [blame] | 1489 | while (1) { |
| 1490 | dp = create_node(node, parent); |
| 1491 | if (!dp) |
| 1492 | break; |
| 1493 | |
| 1494 | if (prev_sibling) |
| 1495 | prev_sibling->sibling = dp; |
| 1496 | |
| 1497 | if (!ret) |
| 1498 | ret = dp; |
| 1499 | prev_sibling = dp; |
| 1500 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1501 | *(*nextp) = dp; |
| 1502 | *nextp = &dp->allnext; |
| 1503 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1504 | dp->path_component_name = build_path_component(dp); |
| 1505 | dp->full_name = build_full_name(dp); |
| 1506 | |
| 1507 | dp->child = build_tree(dp, prom_getchild(node), nextp); |
| 1508 | |
David S. Miller | aa5242e | 2007-05-10 00:53:29 -0700 | [diff] [blame] | 1509 | node = prom_getsibling(node); |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1510 | } |
| 1511 | |
David S. Miller | aa5242e | 2007-05-10 00:53:29 -0700 | [diff] [blame] | 1512 | return ret; |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1513 | } |
| 1514 | |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1515 | static const char *get_mid_prop(void) |
| 1516 | { |
| 1517 | return (tlb_type == spitfire ? "upa-portid" : "portid"); |
| 1518 | } |
| 1519 | |
| 1520 | struct device_node *of_find_node_by_cpuid(int cpuid) |
| 1521 | { |
| 1522 | struct device_node *dp; |
| 1523 | const char *mid_prop = get_mid_prop(); |
| 1524 | |
| 1525 | for_each_node_by_type(dp, "cpu") { |
| 1526 | int id = of_getintprop_default(dp, mid_prop, -1); |
| 1527 | const char *this_mid_prop = mid_prop; |
| 1528 | |
| 1529 | if (id < 0) { |
| 1530 | this_mid_prop = "cpuid"; |
| 1531 | id = of_getintprop_default(dp, this_mid_prop, -1); |
| 1532 | } |
| 1533 | |
| 1534 | if (id < 0) { |
| 1535 | prom_printf("OF: Serious problem, cpu lacks " |
| 1536 | "%s property", this_mid_prop); |
| 1537 | prom_halt(); |
| 1538 | } |
| 1539 | if (cpuid == id) |
| 1540 | return dp; |
| 1541 | } |
| 1542 | return NULL; |
| 1543 | } |
| 1544 | |
| 1545 | static void __init of_fill_in_cpu_data(void) |
| 1546 | { |
| 1547 | struct device_node *dp; |
| 1548 | const char *mid_prop = get_mid_prop(); |
| 1549 | |
| 1550 | ncpus_probed = 0; |
| 1551 | for_each_node_by_type(dp, "cpu") { |
| 1552 | int cpuid = of_getintprop_default(dp, mid_prop, -1); |
| 1553 | const char *this_mid_prop = mid_prop; |
| 1554 | struct device_node *portid_parent; |
| 1555 | int portid = -1; |
| 1556 | |
| 1557 | portid_parent = NULL; |
| 1558 | if (cpuid < 0) { |
| 1559 | this_mid_prop = "cpuid"; |
| 1560 | cpuid = of_getintprop_default(dp, this_mid_prop, -1); |
| 1561 | if (cpuid >= 0) { |
| 1562 | int limit = 2; |
| 1563 | |
| 1564 | portid_parent = dp; |
| 1565 | while (limit--) { |
| 1566 | portid_parent = portid_parent->parent; |
| 1567 | if (!portid_parent) |
| 1568 | break; |
| 1569 | portid = of_getintprop_default(portid_parent, |
| 1570 | "portid", -1); |
| 1571 | if (portid >= 0) |
| 1572 | break; |
| 1573 | } |
| 1574 | } |
| 1575 | } |
| 1576 | |
| 1577 | if (cpuid < 0) { |
| 1578 | prom_printf("OF: Serious problem, cpu lacks " |
| 1579 | "%s property", this_mid_prop); |
| 1580 | prom_halt(); |
| 1581 | } |
| 1582 | |
| 1583 | ncpus_probed++; |
| 1584 | |
| 1585 | #ifdef CONFIG_SMP |
David S. Miller | 8a177c4 | 2007-09-16 14:45:06 -0700 | [diff] [blame^] | 1586 | if (cpuid >= NR_CPUS) { |
| 1587 | printk(KERN_WARNING "Ignoring CPU %d which is " |
| 1588 | ">= NR_CPUS (%d)\n", |
| 1589 | cpuid, NR_CPUS); |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1590 | continue; |
David S. Miller | 8a177c4 | 2007-09-16 14:45:06 -0700 | [diff] [blame^] | 1591 | } |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1592 | #else |
| 1593 | /* On uniprocessor we only want the values for the |
| 1594 | * real physical cpu the kernel booted onto, however |
| 1595 | * cpu_data() only has one entry at index 0. |
| 1596 | */ |
| 1597 | if (cpuid != real_hard_smp_processor_id()) |
| 1598 | continue; |
| 1599 | cpuid = 0; |
| 1600 | #endif |
| 1601 | |
| 1602 | cpu_data(cpuid).clock_tick = |
| 1603 | of_getintprop_default(dp, "clock-frequency", 0); |
| 1604 | |
| 1605 | if (portid_parent) { |
| 1606 | cpu_data(cpuid).dcache_size = |
| 1607 | of_getintprop_default(dp, "l1-dcache-size", |
| 1608 | 16 * 1024); |
| 1609 | cpu_data(cpuid).dcache_line_size = |
| 1610 | of_getintprop_default(dp, "l1-dcache-line-size", |
| 1611 | 32); |
| 1612 | cpu_data(cpuid).icache_size = |
| 1613 | of_getintprop_default(dp, "l1-icache-size", |
| 1614 | 8 * 1024); |
| 1615 | cpu_data(cpuid).icache_line_size = |
| 1616 | of_getintprop_default(dp, "l1-icache-line-size", |
| 1617 | 32); |
| 1618 | cpu_data(cpuid).ecache_size = |
| 1619 | of_getintprop_default(dp, "l2-cache-size", 0); |
| 1620 | cpu_data(cpuid).ecache_line_size = |
| 1621 | of_getintprop_default(dp, "l2-cache-line-size", 0); |
| 1622 | if (!cpu_data(cpuid).ecache_size || |
| 1623 | !cpu_data(cpuid).ecache_line_size) { |
| 1624 | cpu_data(cpuid).ecache_size = |
| 1625 | of_getintprop_default(portid_parent, |
| 1626 | "l2-cache-size", |
| 1627 | (4 * 1024 * 1024)); |
| 1628 | cpu_data(cpuid).ecache_line_size = |
| 1629 | of_getintprop_default(portid_parent, |
| 1630 | "l2-cache-line-size", 64); |
| 1631 | } |
| 1632 | |
| 1633 | cpu_data(cpuid).core_id = portid + 1; |
David S. Miller | 5cd342d | 2007-06-04 21:35:18 -0700 | [diff] [blame] | 1634 | cpu_data(cpuid).proc_id = portid; |
David S. Miller | a2f9f6b | 2007-06-04 21:48:33 -0700 | [diff] [blame] | 1635 | #ifdef CONFIG_SMP |
| 1636 | sparc64_multi_core = 1; |
| 1637 | #endif |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1638 | } else { |
| 1639 | cpu_data(cpuid).dcache_size = |
| 1640 | of_getintprop_default(dp, "dcache-size", 16 * 1024); |
| 1641 | cpu_data(cpuid).dcache_line_size = |
| 1642 | of_getintprop_default(dp, "dcache-line-size", 32); |
| 1643 | |
| 1644 | cpu_data(cpuid).icache_size = |
| 1645 | of_getintprop_default(dp, "icache-size", 16 * 1024); |
| 1646 | cpu_data(cpuid).icache_line_size = |
| 1647 | of_getintprop_default(dp, "icache-line-size", 32); |
| 1648 | |
| 1649 | cpu_data(cpuid).ecache_size = |
| 1650 | of_getintprop_default(dp, "ecache-size", |
| 1651 | (4 * 1024 * 1024)); |
| 1652 | cpu_data(cpuid).ecache_line_size = |
| 1653 | of_getintprop_default(dp, "ecache-line-size", 64); |
| 1654 | |
| 1655 | cpu_data(cpuid).core_id = 0; |
David S. Miller | 5cd342d | 2007-06-04 21:35:18 -0700 | [diff] [blame] | 1656 | cpu_data(cpuid).proc_id = -1; |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1657 | } |
| 1658 | |
| 1659 | #ifdef CONFIG_SMP |
| 1660 | cpu_set(cpuid, cpu_present_map); |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 1661 | cpu_set(cpuid, cpu_possible_map); |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1662 | #endif |
| 1663 | } |
| 1664 | |
| 1665 | smp_fill_in_sib_core_maps(); |
| 1666 | } |
| 1667 | |
David S. Miller | c73fcc8 | 2007-07-20 16:59:26 -0700 | [diff] [blame] | 1668 | struct device_node *of_console_device; |
| 1669 | EXPORT_SYMBOL(of_console_device); |
| 1670 | |
| 1671 | char *of_console_path; |
| 1672 | EXPORT_SYMBOL(of_console_path); |
| 1673 | |
| 1674 | char *of_console_options; |
| 1675 | EXPORT_SYMBOL(of_console_options); |
| 1676 | |
| 1677 | static void __init of_console_init(void) |
| 1678 | { |
| 1679 | char *msg = "OF stdout device is: %s\n"; |
| 1680 | struct device_node *dp; |
| 1681 | const char *type; |
| 1682 | phandle node; |
| 1683 | |
| 1684 | of_console_path = prom_early_alloc(256); |
| 1685 | if (prom_ihandle2path(prom_stdout, of_console_path, 256) < 0) { |
| 1686 | prom_printf("Cannot obtain path of stdout.\n"); |
| 1687 | prom_halt(); |
| 1688 | } |
| 1689 | of_console_options = strrchr(of_console_path, ':'); |
| 1690 | if (of_console_options) { |
| 1691 | of_console_options++; |
| 1692 | if (*of_console_options == '\0') |
| 1693 | of_console_options = NULL; |
| 1694 | } |
| 1695 | |
| 1696 | node = prom_inst2pkg(prom_stdout); |
| 1697 | if (!node) { |
| 1698 | prom_printf("Cannot resolve stdout node from " |
| 1699 | "instance %08x.\n", prom_stdout); |
| 1700 | prom_halt(); |
| 1701 | } |
| 1702 | |
| 1703 | dp = of_find_node_by_phandle(node); |
| 1704 | type = of_get_property(dp, "device_type", NULL); |
| 1705 | if (!type) { |
| 1706 | prom_printf("Console stdout lacks device_type property.\n"); |
| 1707 | prom_halt(); |
| 1708 | } |
| 1709 | |
| 1710 | if (strcmp(type, "display") && strcmp(type, "serial")) { |
| 1711 | prom_printf("Console device_type is neither display " |
| 1712 | "nor serial.\n"); |
| 1713 | prom_halt(); |
| 1714 | } |
| 1715 | |
| 1716 | of_console_device = dp; |
| 1717 | |
| 1718 | prom_printf(msg, of_console_path); |
| 1719 | printk(msg, of_console_path); |
| 1720 | } |
| 1721 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1722 | void __init prom_build_devicetree(void) |
| 1723 | { |
| 1724 | struct device_node **nextp; |
| 1725 | |
David S. Miller | 4130a4b | 2006-10-25 22:31:06 -0700 | [diff] [blame] | 1726 | allnodes = create_node(prom_root_node, NULL); |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1727 | allnodes->path_component_name = ""; |
| 1728 | allnodes->full_name = "/"; |
| 1729 | |
| 1730 | nextp = &allnodes->allnext; |
| 1731 | allnodes->child = build_tree(allnodes, |
| 1732 | prom_getchild(allnodes->node), |
| 1733 | &nextp); |
David S. Miller | c73fcc8 | 2007-07-20 16:59:26 -0700 | [diff] [blame] | 1734 | of_console_init(); |
| 1735 | |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1736 | printk("PROM: Built device tree with %u bytes of memory.\n", |
| 1737 | prom_early_allocated); |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1738 | |
| 1739 | if (tlb_type != hypervisor) |
| 1740 | of_fill_in_cpu_data(); |
David S. Miller | 372b07b | 2006-06-21 15:35:28 -0700 | [diff] [blame] | 1741 | } |