Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 | /* * bios32.c - PCI BIOS functions for m68k systems. * * Written by Wout Klaren. * * Based on the DEC Alpha bios32.c by Dave Rusling and David Mosberger. */ #include <linux/config.h> #include <linux/init.h> #include <linux/kernel.h> #if 0 # define DBG_DEVS(args) printk args #else # define DBG_DEVS(args) #endif #ifdef CONFIG_PCI /* * PCI support for Linux/m68k. Currently only the Hades is supported. * * The support for PCI bridges in the DEC Alpha version has * been removed in this version. */ #include <linux/pci.h> #include <linux/slab.h> #include <linux/mm.h> #include <asm/io.h> #include <asm/pci.h> #include <asm/uaccess.h> #define KB 1024 #define MB (1024*KB) #define GB (1024*MB) #define MAJOR_REV 0 #define MINOR_REV 5 /* * Align VAL to ALIGN, which must be a power of two. */ #define ALIGN(val,align) (((val) + ((align) - 1)) & ~((align) - 1)) #define MAX(val1, val2) (((val1) > (val2)) ? val1 : val2) /* * Offsets relative to the I/O and memory base addresses from where resources * are allocated. */ #define IO_ALLOC_OFFSET 0x00004000 #define MEM_ALLOC_OFFSET 0x04000000 /* * Declarations of hardware specific initialisation functions. */ extern struct pci_bus_info *init_hades_pci(void); /* * Bus info structure of the PCI bus. A pointer to this structure is * put in the sysdata member of the pci_bus structure. */ static struct pci_bus_info *bus_info; static int pci_modify = 1; /* If set, layout the PCI bus ourself. */ static int skip_vga = 0; /* If set do not modify base addresses of vga cards.*/ static int disable_pci_burst = 0; /* If set do not allow PCI bursts. */ static unsigned int io_base; static unsigned int mem_base; struct pci_fixup pcibios_fixups[] = { { 0 } }; /* * static void disable_dev(struct pci_dev *dev) * * Disable PCI device DEV so that it does not respond to I/O or memory * accesses. * * Parameters: * * dev - device to disable. */ static void __init disable_dev(struct pci_dev *dev) { struct pci_bus *bus; unsigned short cmd; if (((dev->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA) || (dev->class >> 8 == PCI_CLASS_DISPLAY_VGA) || (dev->class >> 8 == PCI_CLASS_DISPLAY_XGA)) && skip_vga) return; bus = dev->bus; pcibios_read_config_word(bus->number, dev->devfn, PCI_COMMAND, &cmd); cmd &= (~PCI_COMMAND_IO & ~PCI_COMMAND_MEMORY & ~PCI_COMMAND_MASTER); pcibios_write_config_word(bus->number, dev->devfn, PCI_COMMAND, cmd); } /* * static void layout_dev(struct pci_dev *dev) * * Layout memory and I/O for a device. * * Parameters: * * device - device to layout memory and I/O for. */ static void __init layout_dev(struct pci_dev *dev) { struct pci_bus *bus; unsigned short cmd; unsigned int base, mask, size, reg; unsigned int alignto; int i; /* * Skip video cards if requested. */ if (((dev->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA) || (dev->class >> 8 == PCI_CLASS_DISPLAY_VGA) || (dev->class >> 8 == PCI_CLASS_DISPLAY_XGA)) && skip_vga) return; bus = dev->bus; pcibios_read_config_word(bus->number, dev->devfn, PCI_COMMAND, &cmd); for (reg = PCI_BASE_ADDRESS_0, i = 0; reg <= PCI_BASE_ADDRESS_5; reg += 4, i++) { /* * Figure out how much space and of what type this * device wants. */ pcibios_write_config_dword(bus->number, dev->devfn, reg, 0xffffffff); pcibios_read_config_dword(bus->number, dev->devfn, reg, &base); if (!base) { /* this base-address register is unused */ dev->resource[i].start = 0; dev->resource[i].end = 0; dev->resource[i].flags = 0; continue; } /* * We've read the base address register back after * writing all ones and so now we must decode it. */ if (base & PCI_BASE_ADDRESS_SPACE_IO) { /* * I/O space base address register. */ cmd |= PCI_COMMAND_IO; base &= PCI_BASE_ADDRESS_IO_MASK; mask = (~base << 1) | 0x1; size = (mask & base) & 0xffffffff; /* * Align to multiple of size of minimum base. */ alignto = MAX(0x040, size) ; base = ALIGN(io_base, alignto); io_base = base + size; pcibios_write_config_dword(bus->number, dev->devfn, reg, base | PCI_BASE_ADDRESS_SPACE_IO); dev->resource[i].start = base; dev->resource[i].end = dev->resource[i].start + size - 1; dev->resource[i].flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO; DBG_DEVS(("layout_dev: IO address: %lX\n", base)); } else { unsigned int type; /* * Memory space base address register. */ cmd |= PCI_COMMAND_MEMORY; type = base & PCI_BASE_ADDRESS_MEM_TYPE_MASK; base &= PCI_BASE_ADDRESS_MEM_MASK; mask = (~base << 1) | 0x1; size = (mask & base) & 0xffffffff; switch (type) { case PCI_BASE_ADDRESS_MEM_TYPE_32: case PCI_BASE_ADDRESS_MEM_TYPE_64: break; case PCI_BASE_ADDRESS_MEM_TYPE_1M: printk("bios32 WARNING: slot %d, function %d " "requests memory below 1MB---don't " "know how to do that.\n", PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn)); continue; } /* * Align to multiple of size of minimum base. */ alignto = MAX(0x1000, size) ; base = ALIGN(mem_base, alignto); mem_base = base + size; pcibios_write_config_dword(bus->number, dev->devfn, reg, base); dev->resource[i].start = base; dev->resource[i].end = dev->resource[i].start + size - 1; dev->resource[i].flags = IORESOURCE_MEM; if (type == PCI_BASE_ADDRESS_MEM_TYPE_64) { /* * 64-bit address, set the highest 32 bits * to zero. */ reg += 4; pcibios_write_config_dword(bus->number, dev->devfn, reg, 0); i++; dev->resource[i].start = 0; dev->resource[i].end = 0; dev->resource[i].flags = 0; } } } /* * Enable device: */ if (dev->class >> 8 == PCI_CLASS_NOT_DEFINED || dev->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA || dev->class >> 8 == PCI_CLASS_DISPLAY_VGA || dev->class >> 8 == PCI_CLASS_DISPLAY_XGA) { /* * All of these (may) have I/O scattered all around * and may not use i/o-base address registers at all. * So we just have to always enable I/O to these * devices. */ cmd |= PCI_COMMAND_IO; } pcibios_write_config_word(bus->number, dev->devfn, PCI_COMMAND, cmd | PCI_COMMAND_MASTER); pcibios_write_config_byte(bus->number, dev->devfn, PCI_LATENCY_TIMER, (disable_pci_burst) ? 0 : 32); if (bus_info != NULL) bus_info->conf_device(bus->number, dev->devfn); /* Machine dependent configuration. */ DBG_DEVS(("layout_dev: bus %d slot 0x%x VID 0x%x DID 0x%x class 0x%x\n", bus->number, PCI_SLOT(dev->devfn), dev->vendor, dev->device, dev->class)); } /* * static void layout_bus(struct pci_bus *bus) * * Layout memory and I/O for all devices on the given bus. * * Parameters: * * bus - bus. */ static void __init layout_bus(struct pci_bus *bus) { unsigned int bio, bmem; struct pci_dev *dev; DBG_DEVS(("layout_bus: starting bus %d\n", bus->number)); if (!bus->devices && !bus->children) return; /* * Align the current bases on appropriate boundaries (4K for * IO and 1MB for memory). */ bio = io_base = ALIGN(io_base, 4*KB); bmem = mem_base = ALIGN(mem_base, 1*MB); /* * PCI devices might have been setup by a PCI BIOS emulation * running under TOS. In these cases there is a * window during which two devices may have an overlapping * address range. To avoid this causing trouble, we first * turn off the I/O and memory address decoders for all PCI * devices. They'll be re-enabled only once all address * decoders are programmed consistently. */ DBG_DEVS(("layout_bus: disable_dev for bus %d\n", bus->number)); for (dev = bus->devices; dev; dev = dev->sibling) { if ((dev->class >> 16 != PCI_BASE_CLASS_BRIDGE) || (dev->class >> 8 == PCI_CLASS_BRIDGE_PCMCIA)) disable_dev(dev); } /* * Allocate space to each device: */ DBG_DEVS(("layout_bus: starting bus %d devices\n", bus->number)); for (dev = bus->devices; dev; dev = dev->sibling) { if ((dev->class >> 16 != PCI_BASE_CLASS_BRIDGE) || (dev->class >> 8 == PCI_CLASS_BRIDGE_PCMCIA)) layout_dev(dev); } DBG_DEVS(("layout_bus: bus %d finished\n", bus->number)); } /* * static void pcibios_fixup(void) * * Layout memory and I/O of all devices on the PCI bus if 'pci_modify' is * true. This might be necessary because not every m68k machine with a PCI * bus has a PCI BIOS. This function should be called right after * pci_scan_bus() in pcibios_init(). */ static void __init pcibios_fixup(void) { if (pci_modify) { /* * Set base addresses for allocation of I/O and memory space. */ io_base = bus_info->io_space.start + IO_ALLOC_OFFSET; mem_base = bus_info->mem_space.start + MEM_ALLOC_OFFSET; /* * Scan the tree, allocating PCI memory and I/O space. */ layout_bus(pci_bus_b(pci_root.next)); } /* * Fix interrupt assignments, etc. */ bus_info->fixup(pci_modify); } /* * static void pcibios_claim_resources(struct pci_bus *bus) * * Claim all resources that are assigned to devices on the given bus. * * Parameters: * * bus - bus. */ static void __init pcibios_claim_resources(struct pci_bus *bus) { struct pci_dev *dev; int i; while (bus) { for (dev = bus->devices; (dev != NULL); dev = dev->sibling) { for (i = 0; i < PCI_NUM_RESOURCES; i++) { struct resource *r = &dev->resource[i]; struct resource *pr; struct pci_bus_info *bus_info = (struct pci_bus_info *) dev->sysdata; if ((r->start == 0) || (r->parent != NULL)) continue; #if 1 if (r->flags & IORESOURCE_IO) pr = &bus_info->io_space; else pr = &bus_info->mem_space; #else if (r->flags & IORESOURCE_IO) pr = &ioport_resource; else pr = &iomem_resource; #endif if (request_resource(pr, r) < 0) { printk(KERN_ERR "PCI: Address space collision on region %d of device %s\n", i, dev->name); } } } if (bus->children) pcibios_claim_resources(bus->children); bus = bus->next; } } /* * int pcibios_assign_resource(struct pci_dev *dev, int i) * * Assign a new address to a PCI resource. * * Parameters: * * dev - device. * i - resource. * * Result: 0 if successful. */ int __init pcibios_assign_resource(struct pci_dev *dev, int i) { struct resource *r = &dev->resource[i]; struct resource *pr = pci_find_parent_resource(dev, r); unsigned long size = r->end + 1; if (!pr) return -EINVAL; if (r->flags & IORESOURCE_IO) { if (size > 0x100) return -EFBIG; if (allocate_resource(pr, r, size, bus_info->io_space.start + IO_ALLOC_OFFSET, bus_info->io_space.end, 1024)) return -EBUSY; } else { if (allocate_resource(pr, r, size, bus_info->mem_space.start + MEM_ALLOC_OFFSET, bus_info->mem_space.end, size)) return -EBUSY; } if (i < 6) pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i, r->start); return 0; } void __init pcibios_fixup_bus(struct pci_bus *bus) { struct pci_dev *dev; void *sysdata; sysdata = (bus->parent) ? bus->parent->sysdata : bus->sysdata; for (dev = bus->devices; (dev != NULL); dev = dev->sibling) dev->sysdata = sysdata; } void __init pcibios_init(void) { printk("Linux/m68k PCI BIOS32 revision %x.%02x\n", MAJOR_REV, MINOR_REV); bus_info = NULL; #ifdef CONFIG_HADES if (MACH_IS_HADES) bus_info = init_hades_pci(); #endif if (bus_info != NULL) { printk("PCI: Probing PCI hardware\n"); pci_scan_bus(0, bus_info->m68k_pci_ops, bus_info); pcibios_fixup(); pcibios_claim_resources(pci_root); } else printk("PCI: No PCI bus detected\n"); } char * __init pcibios_setup(char *str) { if (!strcmp(str, "nomodify")) { pci_modify = 0; return NULL; } else if (!strcmp(str, "skipvga")) { skip_vga = 1; return NULL; } else if (!strcmp(str, "noburst")) { disable_pci_burst = 1; return NULL; } return str; } #endif /* CONFIG_PCI */ |