1 /*- 2 * Copyright (c) 2002-2004 M. Warner Losh. 3 * Copyright (c) 2000-2001 Jonathan Chen. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, 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 */ 28 29 /*- 30 * Copyright (c) 1998, 1999 and 2000 31 * HAYAKAWA Koichi. All rights reserved. 32 * 33 * Redistribution and use in source and binary forms, with or without 34 * modification, are permitted provided that the following conditions 35 * are met: 36 * 1. Redistributions of source code must retain the above copyright 37 * notice, this list of conditions and the following disclaimer. 38 * 2. Redistributions in binary form must reproduce the above copyright 39 * notice, this list of conditions and the following disclaimer in the 40 * documentation and/or other materials provided with the distribution. 41 * 3. All advertising materials mentioning features or use of this software 42 * must display the following acknowledgement: 43 * This product includes software developed by HAYAKAWA Koichi. 44 * 4. The name of the author may not be used to endorse or promote products 45 * derived from this software without specific prior written permission. 46 * 47 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 48 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 49 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 50 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 51 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 52 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 53 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 54 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 55 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 56 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 57 */ 58 59 /* 60 * Driver for PCI to CardBus Bridge chips 61 * 62 * References: 63 * TI Datasheets: 64 * http://www-s.ti.com/cgi-bin/sc/generic2.cgi?family=PCI+CARDBUS+CONTROLLERS 65 * 66 * Written by Jonathan Chen <jon@freebsd.org> 67 * The author would like to acknowledge: 68 * * HAYAKAWA Koichi: Author of the NetBSD code for the same thing 69 * * Warner Losh: Newbus/newcard guru and author of the pccard side of things 70 * * YAMAMOTO Shigeru: Author of another FreeBSD cardbus driver 71 * * David Cross: Author of the initial ugly hack for a specific cardbus card 72 */ 73 74 #include <sys/cdefs.h> 75 __FBSDID("$FreeBSD$"); 76 77 #include <sys/param.h> 78 #include <sys/systm.h> 79 #include <sys/proc.h> 80 #include <sys/condvar.h> 81 #include <sys/errno.h> 82 #include <sys/kernel.h> 83 #include <sys/lock.h> 84 #include <sys/malloc.h> 85 #include <sys/mutex.h> 86 #include <sys/sysctl.h> 87 #include <sys/kthread.h> 88 #include <sys/bus.h> 89 #include <machine/bus.h> 90 #include <sys/rman.h> 91 #include <machine/resource.h> 92 #include <sys/module.h> 93 94 #include <dev/pci/pcireg.h> 95 #include <dev/pci/pcivar.h> 96 #include <machine/clock.h> 97 98 #include <dev/pccard/pccardreg.h> 99 #include <dev/pccard/pccardvar.h> 100 101 #include <dev/exca/excareg.h> 102 #include <dev/exca/excavar.h> 103 104 #include <dev/pccbb/pccbbreg.h> 105 #include <dev/pccbb/pccbbvar.h> 106 107 #include "power_if.h" 108 #include "card_if.h" 109 #include "pcib_if.h" 110 111 #define DPRINTF(x) do { if (cbb_debug) printf x; } while (0) 112 #define DEVPRINTF(x) do { if (cbb_debug) device_printf x; } while (0) 113 114 #define PCI_MASK_CONFIG(DEV,REG,MASK,SIZE) \ 115 pci_write_config(DEV, REG, pci_read_config(DEV, REG, SIZE) MASK, SIZE) 116 #define PCI_MASK2_CONFIG(DEV,REG,MASK1,MASK2,SIZE) \ 117 pci_write_config(DEV, REG, ( \ 118 pci_read_config(DEV, REG, SIZE) MASK1) MASK2, SIZE) 119 120 static void cbb_chipinit(struct cbb_softc *sc); 121 122 static struct yenta_chipinfo { 123 uint32_t yc_id; 124 const char *yc_name; 125 int yc_chiptype; 126 } yc_chipsets[] = { 127 /* Texas Instruments chips */ 128 {PCIC_ID_TI1031, "TI1031 PCI-PC Card Bridge", CB_TI113X}, 129 {PCIC_ID_TI1130, "TI1130 PCI-CardBus Bridge", CB_TI113X}, 130 {PCIC_ID_TI1131, "TI1131 PCI-CardBus Bridge", CB_TI113X}, 131 132 {PCIC_ID_TI1210, "TI1210 PCI-CardBus Bridge", CB_TI12XX}, 133 {PCIC_ID_TI1211, "TI1211 PCI-CardBus Bridge", CB_TI12XX}, 134 {PCIC_ID_TI1220, "TI1220 PCI-CardBus Bridge", CB_TI12XX}, 135 {PCIC_ID_TI1221, "TI1221 PCI-CardBus Bridge", CB_TI12XX}, 136 {PCIC_ID_TI1225, "TI1225 PCI-CardBus Bridge", CB_TI12XX}, 137 {PCIC_ID_TI1250, "TI1250 PCI-CardBus Bridge", CB_TI125X}, 138 {PCIC_ID_TI1251, "TI1251 PCI-CardBus Bridge", CB_TI125X}, 139 {PCIC_ID_TI1251B,"TI1251B PCI-CardBus Bridge",CB_TI125X}, 140 {PCIC_ID_TI1260, "TI1260 PCI-CardBus Bridge", CB_TI12XX}, 141 {PCIC_ID_TI1260B,"TI1260B PCI-CardBus Bridge",CB_TI12XX}, 142 {PCIC_ID_TI1410, "TI1410 PCI-CardBus Bridge", CB_TI12XX}, 143 {PCIC_ID_TI1420, "TI1420 PCI-CardBus Bridge", CB_TI12XX}, 144 {PCIC_ID_TI1421, "TI1421 PCI-CardBus Bridge", CB_TI12XX}, 145 {PCIC_ID_TI1450, "TI1450 PCI-CardBus Bridge", CB_TI125X}, /*SIC!*/ 146 {PCIC_ID_TI1451, "TI1451 PCI-CardBus Bridge", CB_TI12XX}, 147 {PCIC_ID_TI1510, "TI1510 PCI-CardBus Bridge", CB_TI12XX}, 148 {PCIC_ID_TI1520, "TI1520 PCI-CardBus Bridge", CB_TI12XX}, 149 {PCIC_ID_TI4410, "TI4410 PCI-CardBus Bridge", CB_TI12XX}, 150 {PCIC_ID_TI4450, "TI4450 PCI-CardBus Bridge", CB_TI12XX}, 151 {PCIC_ID_TI4451, "TI4451 PCI-CardBus Bridge", CB_TI12XX}, 152 {PCIC_ID_TI4510, "TI4510 PCI-CardBus Bridge", CB_TI12XX}, 153 {PCIC_ID_TI6411, "TI6411 PCI-CardBus Bridge", CB_TI12XX}, 154 {PCIC_ID_TI6420, "TI6420 PCI-CardBus Bridge", CB_TI12XX}, 155 {PCIC_ID_TI6420SC, "TI6420 PCI-CardBus Bridge", CB_TI12XX}, 156 {PCIC_ID_TI7410, "TI7410 PCI-CardBus Bridge", CB_TI12XX}, 157 {PCIC_ID_TI7510, "TI7510 PCI-CardBus Bridge", CB_TI12XX}, 158 {PCIC_ID_TI7610, "TI7610 PCI-CardBus Bridge", CB_TI12XX}, 159 {PCIC_ID_TI7610M, "TI7610 PCI-CardBus Bridge", CB_TI12XX}, 160 {PCIC_ID_TI7610SD, "TI7610 PCI-CardBus Bridge", CB_TI12XX}, 161 {PCIC_ID_TI7610MS, "TI7610 PCI-CardBus Bridge", CB_TI12XX}, 162 163 /* ENE */ 164 {PCIC_ID_ENE_CB710, "ENE CB710 PCI-CardBus Bridge", CB_TI12XX}, 165 {PCIC_ID_ENE_CB720, "ENE CB720 PCI-CardBus Bridge", CB_TI12XX}, 166 {PCIC_ID_ENE_CB1211, "ENE CB1211 PCI-CardBus Bridge", CB_TI12XX}, 167 {PCIC_ID_ENE_CB1225, "ENE CB1225 PCI-CardBus Bridge", CB_TI12XX}, 168 {PCIC_ID_ENE_CB1410, "ENE CB1410 PCI-CardBus Bridge", CB_TI12XX}, 169 {PCIC_ID_ENE_CB1420, "ENE CB1420 PCI-CardBus Bridge", CB_TI12XX}, 170 171 /* Ricoh chips */ 172 {PCIC_ID_RICOH_RL5C465, "RF5C465 PCI-CardBus Bridge", CB_RF5C46X}, 173 {PCIC_ID_RICOH_RL5C466, "RF5C466 PCI-CardBus Bridge", CB_RF5C46X}, 174 {PCIC_ID_RICOH_RL5C475, "RF5C475 PCI-CardBus Bridge", CB_RF5C47X}, 175 {PCIC_ID_RICOH_RL5C476, "RF5C476 PCI-CardBus Bridge", CB_RF5C47X}, 176 {PCIC_ID_RICOH_RL5C477, "RF5C477 PCI-CardBus Bridge", CB_RF5C47X}, 177 {PCIC_ID_RICOH_RL5C478, "RF5C478 PCI-CardBus Bridge", CB_RF5C47X}, 178 179 /* Toshiba products */ 180 {PCIC_ID_TOPIC95, "ToPIC95 PCI-CardBus Bridge", CB_TOPIC95}, 181 {PCIC_ID_TOPIC95B, "ToPIC95B PCI-CardBus Bridge", CB_TOPIC95}, 182 {PCIC_ID_TOPIC97, "ToPIC97 PCI-CardBus Bridge", CB_TOPIC97}, 183 {PCIC_ID_TOPIC100, "ToPIC100 PCI-CardBus Bridge", CB_TOPIC97}, 184 185 /* Cirrus Logic */ 186 {PCIC_ID_CLPD6832, "CLPD6832 PCI-CardBus Bridge", CB_CIRRUS}, 187 {PCIC_ID_CLPD6833, "CLPD6833 PCI-CardBus Bridge", CB_CIRRUS}, 188 {PCIC_ID_CLPD6834, "CLPD6834 PCI-CardBus Bridge", CB_CIRRUS}, 189 190 /* 02Micro */ 191 {PCIC_ID_OZ6832, "O2Micro OZ6832/6833 PCI-CardBus Bridge", CB_O2MICRO}, 192 {PCIC_ID_OZ6860, "O2Micro OZ6836/6860 PCI-CardBus Bridge", CB_O2MICRO}, 193 {PCIC_ID_OZ6872, "O2Micro OZ6812/6872 PCI-CardBus Bridge", CB_O2MICRO}, 194 {PCIC_ID_OZ6912, "O2Micro OZ6912/6972 PCI-CardBus Bridge", CB_O2MICRO}, 195 {PCIC_ID_OZ6922, "O2Micro OZ6922 PCI-CardBus Bridge", CB_O2MICRO}, 196 {PCIC_ID_OZ6933, "O2Micro OZ6933 PCI-CardBus Bridge", CB_O2MICRO}, 197 {PCIC_ID_OZ711E1, "O2Micro OZ711E1 PCI-CardBus Bridge", CB_O2MICRO}, 198 {PCIC_ID_OZ711EC1, "O2Micro OZ711EC1/M1 PCI-CardBus Bridge", CB_O2MICRO}, 199 {PCIC_ID_OZ711E2, "O2Micro OZ711E2 PCI-CardBus Bridge", CB_O2MICRO}, 200 {PCIC_ID_OZ711M1, "O2Micro OZ711M1 PCI-CardBus Bridge", CB_O2MICRO}, 201 {PCIC_ID_OZ711M2, "O2Micro OZ711M2 PCI-CardBus Bridge", CB_O2MICRO}, 202 {PCIC_ID_OZ711M3, "O2Micro OZ711M3 PCI-CardBus Bridge", CB_O2MICRO}, 203 204 /* SMC */ 205 {PCIC_ID_SMC_34C90, "SMC 34C90 PCI-CardBus Bridge", CB_CIRRUS}, 206 207 /* sentinel */ 208 {0 /* null id */, "unknown", CB_UNKNOWN}, 209 }; 210 211 /************************************************************************/ 212 /* Probe/Attach */ 213 /************************************************************************/ 214 215 static int 216 cbb_chipset(uint32_t pci_id, const char **namep) 217 { 218 struct yenta_chipinfo *ycp; 219 220 for (ycp = yc_chipsets; ycp->yc_id != 0 && pci_id != ycp->yc_id; ++ycp) 221 continue; 222 if (namep != NULL) 223 *namep = ycp->yc_name; 224 return (ycp->yc_chiptype); 225 } 226 227 static int 228 cbb_pci_probe(device_t brdev) 229 { 230 const char *name; 231 uint32_t progif; 232 uint32_t subclass; 233 234 /* 235 * Do we know that we support the chipset? If so, then we 236 * accept the device. 237 */ 238 if (cbb_chipset(pci_get_devid(brdev), &name) != CB_UNKNOWN) { 239 device_set_desc(brdev, name); 240 return (BUS_PROBE_DEFAULT); 241 } 242 243 /* 244 * We do support generic CardBus bridges. All that we've seen 245 * to date have progif 0 (the Yenta spec, and successors mandate 246 * this). 247 */ 248 subclass = pci_get_subclass(brdev); 249 progif = pci_get_progif(brdev); 250 if (subclass == PCIS_BRIDGE_CARDBUS && progif == 0) { 251 device_set_desc(brdev, "PCI-CardBus Bridge"); 252 return (BUS_PROBE_DEFAULT); 253 } 254 return (ENXIO); 255 } 256 257 /* 258 * Still need this because the pci code only does power for type 0 259 * header devices. 260 */ 261 static void 262 cbb_powerstate_d0(device_t dev) 263 { 264 u_int32_t membase, irq; 265 266 if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) { 267 /* Save important PCI config data. */ 268 membase = pci_read_config(dev, CBBR_SOCKBASE, 4); 269 irq = pci_read_config(dev, PCIR_INTLINE, 4); 270 271 /* Reset the power state. */ 272 device_printf(dev, "chip is in D%d power mode " 273 "-- setting to D0\n", pci_get_powerstate(dev)); 274 275 pci_set_powerstate(dev, PCI_POWERSTATE_D0); 276 277 /* Restore PCI config data. */ 278 pci_write_config(dev, CBBR_SOCKBASE, membase, 4); 279 pci_write_config(dev, PCIR_INTLINE, irq, 4); 280 } 281 } 282 283 /* 284 * Print out the config space 285 */ 286 static void 287 cbb_print_config(device_t dev) 288 { 289 int i; 290 291 device_printf(dev, "PCI Configuration space:"); 292 for (i = 0; i < 256; i += 4) { 293 if (i % 16 == 0) 294 printf("\n 0x%02x: ", i); 295 printf("0x%08x ", pci_read_config(dev, i, 4)); 296 } 297 printf("\n"); 298 } 299 300 static int 301 cbb_pci_attach(device_t brdev) 302 { 303 static int curr_bus_number = 2; /* XXX EVILE BAD (see below) */ 304 struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev); 305 int rid, bus, pribus; 306 device_t parent; 307 308 parent = device_get_parent(brdev); 309 mtx_init(&sc->mtx, device_get_nameunit(brdev), "cbb", MTX_DEF); 310 cv_init(&sc->cv, "cbb cv"); 311 cv_init(&sc->powercv, "cbb cv"); 312 sc->chipset = cbb_chipset(pci_get_devid(brdev), NULL); 313 sc->dev = brdev; 314 sc->cbdev = NULL; 315 sc->exca[0].pccarddev = NULL; 316 sc->secbus = pci_read_config(brdev, PCIR_SECBUS_2, 1); 317 sc->subbus = pci_read_config(brdev, PCIR_SUBBUS_2, 1); 318 SLIST_INIT(&sc->rl); 319 cbb_powerstate_d0(brdev); 320 321 rid = CBBR_SOCKBASE; 322 sc->base_res = bus_alloc_resource_any(brdev, SYS_RES_MEMORY, &rid, 323 RF_ACTIVE); 324 if (!sc->base_res) { 325 device_printf(brdev, "Could not map register memory\n"); 326 mtx_destroy(&sc->mtx); 327 cv_destroy(&sc->cv); 328 return (ENOMEM); 329 } else { 330 DEVPRINTF((brdev, "Found memory at %08lx\n", 331 rman_get_start(sc->base_res))); 332 } 333 334 sc->bst = rman_get_bustag(sc->base_res); 335 sc->bsh = rman_get_bushandle(sc->base_res); 336 exca_init(&sc->exca[0], brdev, sc->bst, sc->bsh, CBB_EXCA_OFFSET); 337 sc->exca[0].flags |= EXCA_HAS_MEMREG_WIN; 338 sc->exca[0].chipset = EXCA_CARDBUS; 339 sc->chipinit = cbb_chipinit; 340 sc->chipinit(sc); 341 342 /* 343 * This is a gross hack. We should be scanning the entire pci 344 * tree, assigning bus numbers in a way such that we (1) can 345 * reserve 1 extra bus just in case and (2) all sub busses 346 * are in an appropriate range. 347 */ 348 bus = pci_read_config(brdev, PCIR_SECBUS_2, 1); 349 pribus = pcib_get_bus(parent); 350 DEVPRINTF((brdev, "Secondary bus is %d\n", bus)); 351 if (bus == 0) { 352 if (curr_bus_number <= pribus) 353 curr_bus_number = pribus + 1; 354 if (pci_read_config(brdev, PCIR_PRIBUS_2, 1) != pribus) { 355 DEVPRINTF((brdev, "Setting primary bus to %d\n", pribus)); 356 pci_write_config(brdev, PCIR_PRIBUS_2, pribus, 1); 357 } 358 bus = curr_bus_number; 359 DEVPRINTF((brdev, "Secondary bus set to %d subbus %d\n", bus, 360 bus + 1)); 361 sc->secbus = bus; 362 sc->subbus = bus + 1; 363 pci_write_config(brdev, PCIR_SECBUS_2, bus, 1); 364 pci_write_config(brdev, PCIR_SUBBUS_2, bus + 1, 1); 365 curr_bus_number += 2; 366 } 367 368 /* attach children */ 369 sc->cbdev = device_add_child(brdev, "cardbus", -1); 370 if (sc->cbdev == NULL) 371 DEVPRINTF((brdev, "WARNING: cannot add cardbus bus.\n")); 372 else if (device_probe_and_attach(sc->cbdev) != 0) 373 DEVPRINTF((brdev, "WARNING: cannot attach cardbus bus!\n")); 374 375 sc->exca[0].pccarddev = device_add_child(brdev, "pccard", -1); 376 if (sc->exca[0].pccarddev == NULL) 377 DEVPRINTF((brdev, "WARNING: cannot add pccard bus.\n")); 378 else if (device_probe_and_attach(sc->exca[0].pccarddev) != 0) 379 DEVPRINTF((brdev, "WARNING: cannot attach pccard bus.\n")); 380 381 /* Map and establish the interrupt. */ 382 rid = 0; 383 sc->irq_res = bus_alloc_resource_any(brdev, SYS_RES_IRQ, &rid, 384 RF_SHAREABLE | RF_ACTIVE); 385 if (sc->irq_res == NULL) { 386 printf("cbb: Unable to map IRQ...\n"); 387 goto err; 388 } 389 390 if (bus_setup_intr(brdev, sc->irq_res, INTR_TYPE_AV | INTR_MPSAFE, 391 cbb_intr, sc, &sc->intrhand)) { 392 device_printf(brdev, "couldn't establish interrupt"); 393 goto err; 394 } 395 396 /* reset 16-bit pcmcia bus */ 397 exca_clrb(&sc->exca[0], EXCA_INTR, EXCA_INTR_RESET); 398 399 /* turn off power */ 400 cbb_power(brdev, CARD_OFF); 401 402 /* CSC Interrupt: Card detect interrupt on */ 403 cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD); 404 405 /* reset interrupt */ 406 cbb_set(sc, CBB_SOCKET_EVENT, cbb_get(sc, CBB_SOCKET_EVENT)); 407 408 if (bootverbose) 409 cbb_print_config(brdev); 410 411 /* Start the thread */ 412 if (kthread_create(cbb_event_thread, sc, &sc->event_thread, 0, 0, 413 "%s", device_get_nameunit(brdev))) { 414 device_printf(brdev, "unable to create event thread.\n"); 415 panic("cbb_create_event_thread"); 416 } 417 return (0); 418 err: 419 if (sc->irq_res) 420 bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res); 421 if (sc->base_res) { 422 bus_release_resource(brdev, SYS_RES_MEMORY, CBBR_SOCKBASE, 423 sc->base_res); 424 } 425 mtx_destroy(&sc->mtx); 426 cv_destroy(&sc->cv); 427 return (ENOMEM); 428 } 429 430 static void 431 cbb_chipinit(struct cbb_softc *sc) 432 { 433 uint32_t mux, sysctrl, reg; 434 435 /* Set CardBus latency timer */ 436 if (pci_read_config(sc->dev, PCIR_SECLAT_1, 1) < 0x20) 437 pci_write_config(sc->dev, PCIR_SECLAT_1, 0x20, 1); 438 439 /* Set PCI latency timer */ 440 if (pci_read_config(sc->dev, PCIR_LATTIMER, 1) < 0x20) 441 pci_write_config(sc->dev, PCIR_LATTIMER, 0x20, 1); 442 443 /* Enable memory access */ 444 PCI_MASK_CONFIG(sc->dev, PCIR_COMMAND, 445 | PCIM_CMD_MEMEN 446 | PCIM_CMD_PORTEN 447 | PCIM_CMD_BUSMASTEREN, 2); 448 449 /* disable Legacy IO */ 450 switch (sc->chipset) { 451 case CB_RF5C46X: 452 PCI_MASK_CONFIG(sc->dev, CBBR_BRIDGECTRL, 453 & ~(CBBM_BRIDGECTRL_RL_3E0_EN | 454 CBBM_BRIDGECTRL_RL_3E2_EN), 2); 455 break; 456 default: 457 pci_write_config(sc->dev, CBBR_LEGACY, 0x0, 4); 458 break; 459 } 460 461 /* Use PCI interrupt for interrupt routing */ 462 PCI_MASK2_CONFIG(sc->dev, CBBR_BRIDGECTRL, 463 & ~(CBBM_BRIDGECTRL_MASTER_ABORT | 464 CBBM_BRIDGECTRL_INTR_IREQ_ISA_EN), 465 | CBBM_BRIDGECTRL_WRITE_POST_EN, 466 2); 467 468 /* 469 * XXX this should be a function table, ala OLDCARD. This means 470 * that we could more easily support ISA interrupts for pccard 471 * cards if we had to. 472 */ 473 switch (sc->chipset) { 474 case CB_TI113X: 475 /* 476 * The TI 1031, TI 1130 and TI 1131 all require another bit 477 * be set to enable PCI routing of interrupts, and then 478 * a bit for each of the CSC and Function interrupts we 479 * want routed. 480 */ 481 PCI_MASK_CONFIG(sc->dev, CBBR_CBCTRL, 482 | CBBM_CBCTRL_113X_PCI_INTR | 483 CBBM_CBCTRL_113X_PCI_CSC | CBBM_CBCTRL_113X_PCI_IRQ_EN, 484 1); 485 PCI_MASK_CONFIG(sc->dev, CBBR_DEVCTRL, 486 & ~(CBBM_DEVCTRL_INT_SERIAL | 487 CBBM_DEVCTRL_INT_PCI), 1); 488 break; 489 case CB_TI12XX: 490 /* 491 * Some TI 12xx (and [14][45]xx) based pci cards 492 * sometimes have issues with the MFUNC register not 493 * being initialized due to a bad EEPROM on board. 494 * Laptops that this matters on have this register 495 * properly initialized. 496 * 497 * The TI125X parts have a different register. 498 */ 499 mux = pci_read_config(sc->dev, CBBR_MFUNC, 4); 500 sysctrl = pci_read_config(sc->dev, CBBR_SYSCTRL, 4); 501 if (mux == 0) { 502 mux = (mux & ~CBBM_MFUNC_PIN0) | 503 CBBM_MFUNC_PIN0_INTA; 504 if ((sysctrl & CBBM_SYSCTRL_INTRTIE) == 0) 505 mux = (mux & ~CBBM_MFUNC_PIN1) | 506 CBBM_MFUNC_PIN1_INTB; 507 pci_write_config(sc->dev, CBBR_MFUNC, mux, 4); 508 } 509 /*FALLTHROUGH*/ 510 case CB_TI125X: 511 /* 512 * Disable zoom video. Some machines initialize this 513 * improperly and exerpience has shown that this helps 514 * prevent strange behavior. 515 */ 516 pci_write_config(sc->dev, CBBR_MMCTRL, 0, 4); 517 break; 518 case CB_O2MICRO: 519 /* 520 * Issue #1: INT# generated at the same time as 521 * selected ISA IRQ. When IREQ# or STSCHG# is active, 522 * in addition to the ISA IRQ being generated, INT# 523 * will also be generated at the same time. 524 * 525 * Some of the older controllers have an issue in 526 * which the slot's PCI INT# will be asserted whenever 527 * IREQ# or STSCGH# is asserted even if ExCA registers 528 * 03h or 05h have an ISA IRQ selected. 529 * 530 * The fix for this issue, which will work for any 531 * controller (old or new), is to set ExCA registers 532 * 3Ah (slot 0) & 7Ah (slot 1) bits 7:4 = 1010b. 533 * These bits are undocumented. By setting this 534 * register (of each slot) to '1010xxxxb' a routing of 535 * IREQ# to INTC# and STSCHG# to INTC# is selected. 536 * Since INTC# isn't connected there will be no 537 * unexpected PCI INT when IREQ# or STSCHG# is active. 538 * However, INTA# (slot 0) or INTB# (slot 1) will 539 * still be correctly generated if NO ISA IRQ is 540 * selected (ExCA regs 03h or 05h are cleared). 541 */ 542 reg = exca_getb(&sc->exca[0], EXCA_O2MICRO_CTRL_C); 543 reg = (reg & 0x0f) | 544 EXCA_O2CC_IREQ_INTC | EXCA_O2CC_STSCHG_INTC; 545 exca_putb(&sc->exca[0], EXCA_O2MICRO_CTRL_C, reg); 546 547 break; 548 case CB_TOPIC97: 549 /* 550 * Disable Zoom Video, ToPIC 97, 100. 551 */ 552 pci_write_config(sc->dev, CBBR_TOPIC_ZV_CONTROL, 0, 1); 553 /* 554 * ToPIC 97, 100 555 * At offset 0xa1: INTERRUPT CONTROL register 556 * 0x1: Turn on INT interrupts. 557 */ 558 PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_INTCTRL, 559 | CBBM_TOPIC_INTCTRL_INTIRQSEL, 1); 560 goto topic_common; 561 case CB_TOPIC95: 562 /* 563 * SOCKETCTRL appears to be TOPIC 95/B specific 564 */ 565 PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_SOCKETCTRL, 566 | CBBM_TOPIC_SOCKETCTRL_SCR_IRQSEL, 4); 567 568 topic_common:; 569 /* 570 * At offset 0xa0: SLOT CONTROL 571 * 0x80 Enable CardBus Functionality 572 * 0x40 Enable CardBus and PC Card registers 573 * 0x20 Lock ID in exca regs 574 * 0x10 Write protect ID in config regs 575 * Clear the rest of the bits, which defaults the slot 576 * in legacy mode to 0x3e0 and offset 0. (legacy 577 * mode is determined elsewhere) 578 */ 579 pci_write_config(sc->dev, CBBR_TOPIC_SLOTCTRL, 580 CBBM_TOPIC_SLOTCTRL_SLOTON | 581 CBBM_TOPIC_SLOTCTRL_SLOTEN | 582 CBBM_TOPIC_SLOTCTRL_ID_LOCK | 583 CBBM_TOPIC_SLOTCTRL_ID_WP, 1); 584 585 /* 586 * At offset 0xa3 Card Detect Control Register 587 * 0x80 CARDBUS enbale 588 * 0x01 Cleared for hardware change detect 589 */ 590 PCI_MASK2_CONFIG(sc->dev, CBBR_TOPIC_CDC, 591 | CBBM_TOPIC_CDC_CARDBUS, 592 & ~CBBM_TOPIC_CDC_SWDETECT, 4); 593 break; 594 } 595 596 /* 597 * Need to tell ExCA registers to CSC interrupts route via PCI 598 * interrupts. There are two ways to do this. Once is to set 599 * INTR_ENABLE and the other is to set CSC to 0. Since both 600 * methods are mutually compatible, we do both. 601 */ 602 exca_putb(&sc->exca[0], EXCA_INTR, EXCA_INTR_ENABLE); 603 exca_putb(&sc->exca[0], EXCA_CSC_INTR, 0); 604 605 cbb_disable_func_intr(sc); 606 607 /* close all memory and io windows */ 608 pci_write_config(sc->dev, CBBR_MEMBASE0, 0xffffffff, 4); 609 pci_write_config(sc->dev, CBBR_MEMLIMIT0, 0, 4); 610 pci_write_config(sc->dev, CBBR_MEMBASE1, 0xffffffff, 4); 611 pci_write_config(sc->dev, CBBR_MEMLIMIT1, 0, 4); 612 pci_write_config(sc->dev, CBBR_IOBASE0, 0xffffffff, 4); 613 pci_write_config(sc->dev, CBBR_IOLIMIT0, 0, 4); 614 pci_write_config(sc->dev, CBBR_IOBASE1, 0xffffffff, 4); 615 pci_write_config(sc->dev, CBBR_IOLIMIT1, 0, 4); 616 } 617 618 static int 619 cbb_route_interrupt(device_t pcib, device_t dev, int pin) 620 { 621 struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(pcib); 622 623 return (rman_get_start(sc->irq_res)); 624 } 625 626 static device_method_t cbb_methods[] = { 627 /* Device interface */ 628 DEVMETHOD(device_probe, cbb_pci_probe), 629 DEVMETHOD(device_attach, cbb_pci_attach), 630 DEVMETHOD(device_detach, cbb_detach), 631 DEVMETHOD(device_shutdown, cbb_shutdown), 632 DEVMETHOD(device_suspend, cbb_suspend), 633 DEVMETHOD(device_resume, cbb_resume), 634 635 /* bus methods */ 636 DEVMETHOD(bus_print_child, bus_generic_print_child), 637 DEVMETHOD(bus_read_ivar, cbb_read_ivar), 638 DEVMETHOD(bus_write_ivar, cbb_write_ivar), 639 DEVMETHOD(bus_alloc_resource, cbb_alloc_resource), 640 DEVMETHOD(bus_release_resource, cbb_release_resource), 641 DEVMETHOD(bus_activate_resource, cbb_activate_resource), 642 DEVMETHOD(bus_deactivate_resource, cbb_deactivate_resource), 643 DEVMETHOD(bus_driver_added, cbb_driver_added), 644 DEVMETHOD(bus_child_detached, cbb_child_detached), 645 DEVMETHOD(bus_setup_intr, cbb_setup_intr), 646 DEVMETHOD(bus_teardown_intr, cbb_teardown_intr), 647 DEVMETHOD(bus_child_present, cbb_child_present), 648 649 /* 16-bit card interface */ 650 DEVMETHOD(card_set_res_flags, cbb_pcic_set_res_flags), 651 DEVMETHOD(card_set_memory_offset, cbb_pcic_set_memory_offset), 652 653 /* power interface */ 654 DEVMETHOD(power_enable_socket, cbb_power_enable_socket), 655 DEVMETHOD(power_disable_socket, cbb_power_disable_socket), 656 657 /* pcib compatibility interface */ 658 DEVMETHOD(pcib_maxslots, cbb_maxslots), 659 DEVMETHOD(pcib_read_config, cbb_read_config), 660 DEVMETHOD(pcib_write_config, cbb_write_config), 661 DEVMETHOD(pcib_route_interrupt, cbb_route_interrupt), 662 663 {0,0} 664 }; 665 666 static driver_t cbb_driver = { 667 "cbb", 668 cbb_methods, 669 sizeof(struct cbb_softc) 670 }; 671 672 DRIVER_MODULE(cbb, pci, cbb_driver, cbb_devclass, 0, 0); 673 MODULE_DEPEND(cbb, exca, 1, 1, 1); 674