1 /*- 2 * Copyright 2003 by Peter Grehan. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 3. The name of the author may not be used to endorse or promote products 13 * derived from this software without specific prior written permission. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 20 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 22 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 23 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 * 27 * $FreeBSD$ 28 */ 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/module.h> 33 #include <sys/bus.h> 34 #include <sys/conf.h> 35 #include <sys/kernel.h> 36 37 #include <dev/ofw/openfirm.h> 38 #include <dev/ofw/ofw_pci.h> 39 40 #include <dev/pci/pcivar.h> 41 #include <dev/pci/pcireg.h> 42 43 #include <machine/bus.h> 44 #include <machine/md_var.h> 45 #include <machine/nexusvar.h> 46 #include <machine/pio.h> 47 #include <machine/resource.h> 48 49 #include <sys/rman.h> 50 51 #include <powerpc/ofw/ofw_pci.h> 52 #include <powerpc/powermac/gracklevar.h> 53 54 #include <vm/vm.h> 55 #include <vm/pmap.h> 56 57 #include "pcib_if.h" 58 59 int badaddr(void *, size_t); /* XXX */ 60 61 /* 62 * Device interface. 63 */ 64 static int grackle_probe(device_t); 65 static int grackle_attach(device_t); 66 67 /* 68 * Bus interface. 69 */ 70 static int grackle_read_ivar(device_t, device_t, int, 71 uintptr_t *); 72 static struct resource * grackle_alloc_resource(device_t bus, 73 device_t child, int type, int *rid, u_long start, 74 u_long end, u_long count, u_int flags); 75 static int grackle_release_resource(device_t bus, device_t child, 76 int type, int rid, struct resource *res); 77 static int grackle_activate_resource(device_t bus, device_t child, 78 int type, int rid, struct resource *res); 79 static int grackle_deactivate_resource(device_t bus, 80 device_t child, int type, int rid, 81 struct resource *res); 82 83 84 /* 85 * pcib interface. 86 */ 87 static int grackle_maxslots(device_t); 88 static u_int32_t grackle_read_config(device_t, u_int, u_int, u_int, 89 u_int, int); 90 static void grackle_write_config(device_t, u_int, u_int, u_int, 91 u_int, u_int32_t, int); 92 static int grackle_route_interrupt(device_t, device_t, int); 93 94 /* 95 * Local routines. 96 */ 97 static int grackle_enable_config(struct grackle_softc *, u_int, 98 u_int, u_int, u_int); 99 static void grackle_disable_config(struct grackle_softc *); 100 101 /* 102 * Driver methods. 103 */ 104 static device_method_t grackle_methods[] = { 105 /* Device interface */ 106 DEVMETHOD(device_probe, grackle_probe), 107 DEVMETHOD(device_attach, grackle_attach), 108 109 /* Bus interface */ 110 DEVMETHOD(bus_print_child, bus_generic_print_child), 111 DEVMETHOD(bus_read_ivar, grackle_read_ivar), 112 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 113 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 114 DEVMETHOD(bus_alloc_resource, grackle_alloc_resource), 115 DEVMETHOD(bus_release_resource, grackle_release_resource), 116 DEVMETHOD(bus_activate_resource, grackle_activate_resource), 117 DEVMETHOD(bus_deactivate_resource, grackle_deactivate_resource), 118 119 /* pcib interface */ 120 DEVMETHOD(pcib_maxslots, grackle_maxslots), 121 DEVMETHOD(pcib_read_config, grackle_read_config), 122 DEVMETHOD(pcib_write_config, grackle_write_config), 123 DEVMETHOD(pcib_route_interrupt, grackle_route_interrupt), 124 125 { 0, 0 } 126 }; 127 128 static driver_t grackle_driver = { 129 "pcib", 130 grackle_methods, 131 sizeof(struct grackle_softc) 132 }; 133 134 static devclass_t grackle_devclass; 135 136 DRIVER_MODULE(grackle, nexus, grackle_driver, grackle_devclass, 0, 0); 137 138 static int 139 grackle_probe(device_t dev) 140 { 141 char *type, *compatible; 142 143 type = nexus_get_device_type(dev); 144 compatible = nexus_get_compatible(dev); 145 146 if (type == NULL || compatible == NULL) 147 return (ENXIO); 148 149 if (strcmp(type, "pci") != 0 || strcmp(compatible, "grackle") != 0) 150 return (ENXIO); 151 152 device_set_desc(dev, "MPC106 (Grackle) Host-PCI bridge"); 153 return (0); 154 } 155 156 static int 157 grackle_attach(device_t dev) 158 { 159 struct grackle_softc *sc; 160 phandle_t node; 161 u_int32_t busrange[2]; 162 struct grackle_range *rp, *io, *mem[2]; 163 int nmem, i; 164 165 node = nexus_get_node(dev); 166 sc = device_get_softc(dev); 167 168 if (OF_getprop(node, "bus-range", busrange, sizeof(busrange)) != 8) 169 return (ENXIO); 170 171 sc->sc_dev = dev; 172 sc->sc_node = node; 173 sc->sc_bus = busrange[0]; 174 175 /* 176 * The Grackle PCI config addr/data registers are actually in 177 * PCI space, but since they are needed to actually probe the 178 * PCI bus, use the fact that they are also available directly 179 * on the processor bus and map them 180 */ 181 sc->sc_addr = (vm_offset_t)pmap_mapdev(GRACKLE_ADDR, PAGE_SIZE); 182 sc->sc_data = (vm_offset_t)pmap_mapdev(GRACKLE_DATA, PAGE_SIZE); 183 184 bzero(sc->sc_range, sizeof(sc->sc_range)); 185 sc->sc_nrange = OF_getprop(node, "ranges", sc->sc_range, 186 sizeof(sc->sc_range)); 187 188 if (sc->sc_nrange == -1) { 189 device_printf(dev, "could not get ranges\n"); 190 return (ENXIO); 191 } 192 193 sc->sc_range[6].pci_hi = 0; 194 io = NULL; 195 nmem = 0; 196 197 for (rp = sc->sc_range; rp->pci_hi != 0; rp++) { 198 switch (rp->pci_hi & OFW_PCI_PHYS_HI_SPACEMASK) { 199 case OFW_PCI_PHYS_HI_SPACE_CONFIG: 200 break; 201 case OFW_PCI_PHYS_HI_SPACE_IO: 202 io = rp; 203 break; 204 case OFW_PCI_PHYS_HI_SPACE_MEM32: 205 mem[nmem] = rp; 206 nmem++; 207 break; 208 case OFW_PCI_PHYS_HI_SPACE_MEM64: 209 break; 210 } 211 } 212 213 if (io == NULL) { 214 device_printf(dev, "can't find io range\n"); 215 return (ENXIO); 216 } 217 sc->sc_io_rman.rm_type = RMAN_ARRAY; 218 sc->sc_io_rman.rm_descr = "Grackle PCI I/O Ports"; 219 sc->sc_iostart = io->pci_iospace; 220 if (rman_init(&sc->sc_io_rman) != 0 || 221 rman_manage_region(&sc->sc_io_rman, io->pci_lo, 222 io->pci_lo + io->size_lo) != 0) { 223 device_printf(dev, "failed to set up io range management\n"); 224 return (ENXIO); 225 } 226 227 if (nmem == 0) { 228 device_printf(dev, "can't find mem ranges\n"); 229 return (ENXIO); 230 } 231 sc->sc_mem_rman.rm_type = RMAN_ARRAY; 232 sc->sc_mem_rman.rm_descr = "Grackle PCI Memory"; 233 if (rman_init(&sc->sc_mem_rman) != 0) { 234 device_printf(dev, 235 "failed to init mem range resources\n"); 236 return (ENXIO); 237 } 238 for (i = 0; i < nmem; i++) { 239 if (rman_manage_region(&sc->sc_mem_rman, mem[i]->pci_lo, 240 mem[i]->pci_lo + mem[i]->size_lo) != 0) { 241 device_printf(dev, 242 "failed to set up memory range management\n"); 243 return (ENXIO); 244 } 245 } 246 247 /* 248 * Write out the correct PIC interrupt values to config space 249 * of all devices on the bus. 250 */ 251 ofw_pci_fixup(dev, sc->sc_bus, sc->sc_node); 252 253 device_add_child(dev, "pci", device_get_unit(dev)); 254 return (bus_generic_attach(dev)); 255 } 256 257 static int 258 grackle_maxslots(device_t dev) 259 { 260 261 return (PCI_SLOTMAX); 262 } 263 264 static u_int32_t 265 grackle_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, 266 int width) 267 { 268 struct grackle_softc *sc; 269 vm_offset_t caoff; 270 u_int32_t retval = 0xffffffff; 271 272 sc = device_get_softc(dev); 273 caoff = sc->sc_data + (reg & 0x03); 274 275 if (grackle_enable_config(sc, bus, slot, func, reg) != 0) { 276 277 /* 278 * Config probes to non-existent devices on the 279 * secondary bus generates machine checks. Be sure 280 * to catch these. 281 */ 282 if (bus > 0) { 283 if (badaddr((void *)sc->sc_data, 4)) { 284 return (retval); 285 } 286 } 287 288 switch (width) { 289 case 1: 290 retval = (in8rb(caoff)); 291 break; 292 case 2: 293 retval = (in16rb(caoff)); 294 break; 295 case 4: 296 retval = (in32rb(caoff)); 297 break; 298 } 299 } 300 grackle_disable_config(sc); 301 302 return (retval); 303 } 304 305 static void 306 grackle_write_config(device_t dev, u_int bus, u_int slot, u_int func, 307 u_int reg, u_int32_t val, int width) 308 { 309 struct grackle_softc *sc; 310 vm_offset_t caoff; 311 312 sc = device_get_softc(dev); 313 caoff = sc->sc_data + (reg & 0x03); 314 315 if (grackle_enable_config(sc, bus, slot, func, reg)) { 316 switch (width) { 317 case 1: 318 out8rb(caoff, val); 319 (void)in8rb(caoff); 320 break; 321 case 2: 322 out16rb(caoff, val); 323 (void)in16rb(caoff); 324 break; 325 case 4: 326 out32rb(caoff, val); 327 (void)in32rb(caoff); 328 break; 329 } 330 } 331 grackle_disable_config(sc); 332 } 333 334 static int 335 grackle_route_interrupt(device_t bus, device_t dev, int pin) 336 { 337 338 return (0); 339 } 340 341 static int 342 grackle_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) 343 { 344 struct grackle_softc *sc; 345 346 sc = device_get_softc(dev); 347 348 switch (which) { 349 case PCIB_IVAR_DOMAIN: 350 *result = 0; 351 return (0); 352 case PCIB_IVAR_BUS: 353 *result = sc->sc_bus; 354 return (0); 355 } 356 357 return (ENOENT); 358 } 359 360 static struct resource * 361 grackle_alloc_resource(device_t bus, device_t child, int type, int *rid, 362 u_long start, u_long end, u_long count, u_int flags) 363 { 364 struct grackle_softc *sc; 365 struct resource *rv; 366 struct rman *rm; 367 int needactivate; 368 369 needactivate = flags & RF_ACTIVE; 370 flags &= ~RF_ACTIVE; 371 372 sc = device_get_softc(bus); 373 374 switch (type) { 375 case SYS_RES_MEMORY: 376 rm = &sc->sc_mem_rman; 377 break; 378 379 case SYS_RES_IOPORT: 380 rm = &sc->sc_io_rman; 381 break; 382 383 case SYS_RES_IRQ: 384 return (bus_alloc_resource(bus, type, rid, start, end, count, 385 flags)); 386 387 default: 388 device_printf(bus, "unknown resource request from %s\n", 389 device_get_nameunit(child)); 390 return (NULL); 391 } 392 393 rv = rman_reserve_resource(rm, start, end, count, flags, child); 394 if (rv == NULL) { 395 device_printf(bus, "failed to reserve resource for %s\n", 396 device_get_nameunit(child)); 397 return (NULL); 398 } 399 400 rman_set_rid(rv, *rid); 401 402 if (needactivate) { 403 if (bus_activate_resource(child, type, *rid, rv) != 0) { 404 device_printf(bus, 405 "failed to activate resource for %s\n", 406 device_get_nameunit(child)); 407 rman_release_resource(rv); 408 return (NULL); 409 } 410 } 411 412 return (rv); 413 } 414 415 static int 416 grackle_release_resource(device_t bus, device_t child, int type, int rid, 417 struct resource *res) 418 { 419 if (rman_get_flags(res) & RF_ACTIVE) { 420 int error = bus_deactivate_resource(child, type, rid, res); 421 if (error) 422 return error; 423 } 424 425 return (rman_release_resource(res)); 426 } 427 428 static int 429 grackle_activate_resource(device_t bus, device_t child, int type, int rid, 430 struct resource *res) 431 { 432 struct grackle_softc *sc; 433 void *p; 434 435 sc = device_get_softc(bus); 436 437 if (type == SYS_RES_IRQ) { 438 return (bus_activate_resource(bus, type, rid, res)); 439 } 440 if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) { 441 vm_offset_t start; 442 443 start = (vm_offset_t)rman_get_start(res); 444 /* 445 * For i/o-ports, convert the start address to the 446 * MPC106 PCI i/o window 447 */ 448 if (type == SYS_RES_IOPORT) 449 start += sc->sc_iostart; 450 451 if (bootverbose) 452 printf("grackle mapdev: start %x, len %ld\n", start, 453 rman_get_size(res)); 454 455 p = pmap_mapdev(start, (vm_size_t)rman_get_size(res)); 456 if (p == NULL) 457 return (ENOMEM); 458 459 rman_set_virtual(res, p); 460 rman_set_bustag(res, &bs_le_tag); 461 rman_set_bushandle(res, (u_long)p); 462 } 463 464 return (rman_activate_resource(res)); 465 } 466 467 static int 468 grackle_deactivate_resource(device_t bus, device_t child, int type, int rid, 469 struct resource *res) 470 { 471 /* 472 * If this is a memory resource, unmap it. 473 */ 474 if ((type == SYS_RES_MEMORY) || (type == SYS_RES_IOPORT)) { 475 u_int32_t psize; 476 477 psize = rman_get_size(res); 478 pmap_unmapdev((vm_offset_t)rman_get_virtual(res), psize); 479 } 480 481 return (rman_deactivate_resource(res)); 482 } 483 484 485 static int 486 grackle_enable_config(struct grackle_softc *sc, u_int bus, u_int slot, 487 u_int func, u_int reg) 488 { 489 u_int32_t cfgval; 490 491 /* 492 * Unlike UniNorth, the format of the config word is the same 493 * for local (0) and remote busses. 494 */ 495 cfgval = (bus << 16) | (slot << 11) | (func << 8) | (reg & 0xFC) 496 | GRACKLE_CFG_ENABLE; 497 498 out32rb(sc->sc_addr, cfgval); 499 (void) in32rb(sc->sc_addr); 500 501 return (1); 502 } 503 504 static void 505 grackle_disable_config(struct grackle_softc *sc) 506 { 507 /* 508 * Clear the GRACKLE_CFG_ENABLE bit to prevent stray 509 * accesses from causing config cycles 510 */ 511 out32rb(sc->sc_addr, 0); 512 } 513 514 /* 515 * Driver to swallow Grackle host bridges from the PCI bus side. 516 */ 517 static int 518 grackle_hb_probe(device_t dev) 519 { 520 521 if (pci_get_devid(dev) == 0x00021057) { 522 device_set_desc(dev, "Grackle Host to PCI bridge"); 523 device_quiet(dev); 524 return (0); 525 } 526 527 return (ENXIO); 528 } 529 530 static int 531 grackle_hb_attach(device_t dev) 532 { 533 534 return (0); 535 } 536 537 static device_method_t grackle_hb_methods[] = { 538 /* Device interface */ 539 DEVMETHOD(device_probe, grackle_hb_probe), 540 DEVMETHOD(device_attach, grackle_hb_attach), 541 542 { 0, 0 } 543 }; 544 545 static driver_t grackle_hb_driver = { 546 "grackle_hb", 547 grackle_hb_methods, 548 1, 549 }; 550 static devclass_t grackle_hb_devclass; 551 552 DRIVER_MODULE(grackle_hb, pci, grackle_hb_driver, grackle_hb_devclass, 0, 0); 553