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 * without modification, immediately at the beginning of the file. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the 15 * distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 /* 31 * Copyright (c) 1998, 1999 and 2000 32 * HAYAKAWA Koichi. All rights reserved. 33 * 34 * Redistribution and use in source and binary forms, with or without 35 * modification, are permitted provided that the following conditions 36 * are met: 37 * 1. Redistributions of source code must retain the above copyright 38 * notice, this list of conditions and the following disclaimer. 39 * 2. Redistributions in binary form must reproduce the above copyright 40 * notice, this list of conditions and the following disclaimer in the 41 * documentation and/or other materials provided with the distribution. 42 * 3. All advertising materials mentioning features or use of this software 43 * must display the following acknowledgement: 44 * This product includes software developed by HAYAKAWA Koichi. 45 * 4. The name of the author may not be used to endorse or promote products 46 * derived from this software without specific prior written permission. 47 * 48 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 49 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 50 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 51 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 52 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 53 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 54 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 55 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 56 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 57 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 58 */ 59 60 /* 61 * Driver for PCI to CardBus Bridge chips 62 * 63 * References: 64 * TI Datasheets: 65 * http://www-s.ti.com/cgi-bin/sc/generic2.cgi?family=PCI+CARDBUS+CONTROLLERS 66 * 67 * Written by Jonathan Chen <jon@freebsd.org> 68 * The author would like to acknowledge: 69 * * HAYAKAWA Koichi: Author of the NetBSD code for the same thing 70 * * Warner Losh: Newbus/newcard guru and author of the pccard side of things 71 * * YAMAMOTO Shigeru: Author of another FreeBSD cardbus driver 72 * * David Cross: Author of the initial ugly hack for a specific cardbus card 73 */ 74 75 #include <sys/cdefs.h> 76 __FBSDID("$FreeBSD$"); 77 78 #include <sys/param.h> 79 #include <sys/systm.h> 80 #include <sys/proc.h> 81 #include <sys/condvar.h> 82 #include <sys/errno.h> 83 #include <sys/kernel.h> 84 #include <sys/module.h> 85 #include <sys/lock.h> 86 #include <sys/malloc.h> 87 #include <sys/mutex.h> 88 #include <sys/sysctl.h> 89 #include <sys/kthread.h> 90 #include <sys/bus.h> 91 #include <machine/bus.h> 92 #include <sys/rman.h> 93 #include <machine/resource.h> 94 95 #include <dev/pci/pcireg.h> 96 #include <dev/pci/pcivar.h> 97 #include <machine/clock.h> 98 99 #include <dev/pccard/pccardreg.h> 100 #include <dev/pccard/pccardvar.h> 101 102 #include <dev/exca/excareg.h> 103 #include <dev/exca/excavar.h> 104 105 #include <dev/pccbb/pccbbreg.h> 106 #include <dev/pccbb/pccbbvar.h> 107 108 #include "power_if.h" 109 #include "card_if.h" 110 #include "pcib_if.h" 111 112 #define DPRINTF(x) do { if (cbb_debug) printf x; } while (0) 113 #define DEVPRINTF(x) do { if (cbb_debug) device_printf x; } while (0) 114 115 #define PCI_MASK_CONFIG(DEV,REG,MASK,SIZE) \ 116 pci_write_config(DEV, REG, pci_read_config(DEV, REG, SIZE) MASK, SIZE) 117 #define PCI_MASK2_CONFIG(DEV,REG,MASK1,MASK2,SIZE) \ 118 pci_write_config(DEV, REG, ( \ 119 pci_read_config(DEV, REG, SIZE) MASK1) MASK2, SIZE) 120 121 #define CBB_CARD_PRESENT(s) ((s & CBB_STATE_CD) == 0) 122 123 #define CBB_START_MEM 0x88000000 124 #define CBB_START_32_IO 0x1000 125 #define CBB_START_16_IO 0x100 126 127 struct yenta_chipinfo { 128 uint32_t yc_id; 129 const char *yc_name; 130 int yc_chiptype; 131 } yc_chipsets[] = { 132 /* Texas Instruments chips */ 133 {PCIC_ID_TI1031, "TI1031 PCI-PC Card Bridge", CB_TI113X}, 134 {PCIC_ID_TI1130, "TI1130 PCI-CardBus Bridge", CB_TI113X}, 135 {PCIC_ID_TI1131, "TI1131 PCI-CardBus Bridge", CB_TI113X}, 136 137 {PCIC_ID_TI1210, "TI1210 PCI-CardBus Bridge", CB_TI12XX}, 138 {PCIC_ID_TI1211, "TI1211 PCI-CardBus Bridge", CB_TI12XX}, 139 {PCIC_ID_TI1220, "TI1220 PCI-CardBus Bridge", CB_TI12XX}, 140 {PCIC_ID_TI1221, "TI1221 PCI-CardBus Bridge", CB_TI12XX}, 141 {PCIC_ID_TI1225, "TI1225 PCI-CardBus Bridge", CB_TI12XX}, 142 {PCIC_ID_TI1250, "TI1250 PCI-CardBus Bridge", CB_TI125X}, 143 {PCIC_ID_TI1251, "TI1251 PCI-CardBus Bridge", CB_TI125X}, 144 {PCIC_ID_TI1251B,"TI1251B PCI-CardBus Bridge",CB_TI125X}, 145 {PCIC_ID_TI1260, "TI1260 PCI-CardBus Bridge", CB_TI12XX}, 146 {PCIC_ID_TI1260B,"TI1260B PCI-CardBus Bridge",CB_TI12XX}, 147 {PCIC_ID_TI1410, "TI1410 PCI-CardBus Bridge", CB_TI12XX}, 148 {PCIC_ID_TI1420, "TI1420 PCI-CardBus Bridge", CB_TI12XX}, 149 {PCIC_ID_TI1421, "TI1421 PCI-CardBus Bridge", CB_TI12XX}, 150 {PCIC_ID_TI1450, "TI1450 PCI-CardBus Bridge", CB_TI125X}, /*SIC!*/ 151 {PCIC_ID_TI1451, "TI1451 PCI-CardBus Bridge", CB_TI12XX}, 152 {PCIC_ID_TI1510, "TI1510 PCI-CardBus Bridge", CB_TI12XX}, 153 {PCIC_ID_TI1520, "TI1520 PCI-CardBus Bridge", CB_TI12XX}, 154 {PCIC_ID_TI4410, "TI4410 PCI-CardBus Bridge", CB_TI12XX}, 155 {PCIC_ID_TI4450, "TI4450 PCI-CardBus Bridge", CB_TI12XX}, 156 {PCIC_ID_TI4451, "TI4451 PCI-CardBus Bridge", CB_TI12XX}, 157 {PCIC_ID_TI4510, "TI4510 PCI-CardBus Bridge", CB_TI12XX}, 158 159 /* ENE */ 160 {PCIC_ID_ENE_CB710, "ENE CB710 PCI-CardBus Bridge", CB_TI12XX}, 161 {PCIC_ID_ENE_CB720, "ENE CB720 PCI-CardBus Bridge", CB_TI12XX}, 162 {PCIC_ID_ENE_CB1211, "ENE CB1211 PCI-CardBus Bridge", CB_TI12XX}, 163 {PCIC_ID_ENE_CB1225, "ENE CB1225 PCI-CardBus Bridge", CB_TI12XX}, 164 {PCIC_ID_ENE_CB1410, "ENE CB1410 PCI-CardBus Bridge", CB_TI12XX}, 165 {PCIC_ID_ENE_CB1420, "ENE CB1420 PCI-CardBus Bridge", CB_TI12XX}, 166 167 /* Ricoh chips */ 168 {PCIC_ID_RICOH_RL5C465, "RF5C465 PCI-CardBus Bridge", CB_RF5C46X}, 169 {PCIC_ID_RICOH_RL5C466, "RF5C466 PCI-CardBus Bridge", CB_RF5C46X}, 170 {PCIC_ID_RICOH_RL5C475, "RF5C475 PCI-CardBus Bridge", CB_RF5C47X}, 171 {PCIC_ID_RICOH_RL5C476, "RF5C476 PCI-CardBus Bridge", CB_RF5C47X}, 172 {PCIC_ID_RICOH_RL5C477, "RF5C477 PCI-CardBus Bridge", CB_RF5C47X}, 173 {PCIC_ID_RICOH_RL5C478, "RF5C478 PCI-CardBus Bridge", CB_RF5C47X}, 174 175 /* Toshiba products */ 176 {PCIC_ID_TOPIC95, "ToPIC95 PCI-CardBus Bridge", CB_TOPIC95}, 177 {PCIC_ID_TOPIC95B, "ToPIC95B PCI-CardBus Bridge", CB_TOPIC95}, 178 {PCIC_ID_TOPIC97, "ToPIC97 PCI-CardBus Bridge", CB_TOPIC97}, 179 {PCIC_ID_TOPIC100, "ToPIC100 PCI-CardBus Bridge", CB_TOPIC97}, 180 181 /* Cirrus Logic */ 182 {PCIC_ID_CLPD6832, "CLPD6832 PCI-CardBus Bridge", CB_CIRRUS}, 183 {PCIC_ID_CLPD6833, "CLPD6833 PCI-CardBus Bridge", CB_CIRRUS}, 184 {PCIC_ID_CLPD6834, "CLPD6834 PCI-CardBus Bridge", CB_CIRRUS}, 185 186 /* 02Micro */ 187 {PCIC_ID_OZ6832, "O2Micro OZ6832/6833 PCI-CardBus Bridge", CB_O2MICRO}, 188 {PCIC_ID_OZ6860, "O2Micro OZ6836/6860 PCI-CardBus Bridge", CB_O2MICRO}, 189 {PCIC_ID_OZ6872, "O2Micro OZ6812/6872 PCI-CardBus Bridge", CB_O2MICRO}, 190 {PCIC_ID_OZ6912, "O2Micro OZ6912/6972 PCI-CardBus Bridge", CB_O2MICRO}, 191 {PCIC_ID_OZ6922, "O2Micro OZ6922 PCI-CardBus Bridge", CB_O2MICRO}, 192 {PCIC_ID_OZ6933, "O2Micro OZ6933 PCI-CardBus Bridge", CB_O2MICRO}, 193 {PCIC_ID_OZ711E1, "O2Micro OZ711E1 PCI-CardBus Bridge", CB_O2MICRO}, 194 195 /* sentinel */ 196 {0 /* null id */, "unknown", CB_UNKNOWN}, 197 }; 198 199 /* sysctl vars */ 200 SYSCTL_NODE(_hw, OID_AUTO, cbb, CTLFLAG_RD, 0, "CBB parameters"); 201 202 /* There's no way to say TUNEABLE_LONG to get the right types */ 203 u_long cbb_start_mem = CBB_START_MEM; 204 TUNABLE_INT("hw.cbb.start_memory", (int *)&cbb_start_mem); 205 SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_memory, CTLFLAG_RW, 206 &cbb_start_mem, CBB_START_MEM, 207 "Starting address for memory allocations"); 208 209 u_long cbb_start_16_io = CBB_START_16_IO; 210 TUNABLE_INT("hw.cbb.start_16_io", (int *)&cbb_start_16_io); 211 SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_16_io, CTLFLAG_RW, 212 &cbb_start_16_io, CBB_START_16_IO, 213 "Starting ioport for 16-bit cards"); 214 215 u_long cbb_start_32_io = CBB_START_32_IO; 216 TUNABLE_INT("hw.cbb.start_32_io", (int *)&cbb_start_32_io); 217 SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_32_io, CTLFLAG_RW, 218 &cbb_start_32_io, CBB_START_32_IO, 219 "Starting ioport for 32-bit cards"); 220 221 int cbb_debug = 0; 222 TUNABLE_INT("hw.cbb.debug", &cbb_debug); 223 SYSCTL_ULONG(_hw_cbb, OID_AUTO, debug, CTLFLAG_RW, &cbb_debug, 0, 224 "Verbose cardbus bridge debugging"); 225 226 static int cbb_chipset(uint32_t pci_id, const char **namep); 227 static int cbb_probe(device_t brdev); 228 static void cbb_chipinit(struct cbb_softc *sc); 229 static int cbb_attach(device_t brdev); 230 static int cbb_detach(device_t brdev); 231 static int cbb_shutdown(device_t brdev); 232 static void cbb_driver_added(device_t brdev, driver_t *driver); 233 static void cbb_child_detached(device_t brdev, device_t child); 234 static void cbb_event_thread(void *arg); 235 static void cbb_insert(struct cbb_softc *sc); 236 static void cbb_removal(struct cbb_softc *sc); 237 static void cbb_intr(void *arg); 238 static int cbb_detect_voltage(device_t brdev); 239 static int cbb_power(device_t brdev, int volts); 240 static void cbb_cardbus_reset(device_t brdev); 241 static int cbb_cardbus_power_enable_socket(device_t brdev, 242 device_t child); 243 static void cbb_cardbus_power_disable_socket(device_t brdev, 244 device_t child); 245 static int cbb_cardbus_io_open(device_t brdev, int win, uint32_t start, 246 uint32_t end); 247 static int cbb_cardbus_mem_open(device_t brdev, int win, 248 uint32_t start, uint32_t end); 249 static void cbb_cardbus_auto_open(struct cbb_softc *sc, int type); 250 static int cbb_cardbus_activate_resource(device_t brdev, device_t child, 251 int type, int rid, struct resource *res); 252 static int cbb_cardbus_deactivate_resource(device_t brdev, 253 device_t child, int type, int rid, struct resource *res); 254 static struct resource *cbb_cardbus_alloc_resource(device_t brdev, 255 device_t child, int type, int *rid, u_long start, 256 u_long end, u_long count, u_int flags); 257 static int cbb_cardbus_release_resource(device_t brdev, device_t child, 258 int type, int rid, struct resource *res); 259 static int cbb_power_enable_socket(device_t brdev, device_t child); 260 static void cbb_power_disable_socket(device_t brdev, device_t child); 261 static int cbb_activate_resource(device_t brdev, device_t child, 262 int type, int rid, struct resource *r); 263 static int cbb_deactivate_resource(device_t brdev, device_t child, 264 int type, int rid, struct resource *r); 265 static struct resource *cbb_alloc_resource(device_t brdev, device_t child, 266 int type, int *rid, u_long start, u_long end, u_long count, 267 u_int flags); 268 static int cbb_release_resource(device_t brdev, device_t child, 269 int type, int rid, struct resource *r); 270 static int cbb_read_ivar(device_t brdev, device_t child, int which, 271 uintptr_t *result); 272 static int cbb_write_ivar(device_t brdev, device_t child, int which, 273 uintptr_t value); 274 static int cbb_maxslots(device_t brdev); 275 static uint32_t cbb_read_config(device_t brdev, int b, int s, int f, 276 int reg, int width); 277 static void cbb_write_config(device_t brdev, int b, int s, int f, 278 int reg, uint32_t val, int width); 279 280 /* 281 */ 282 static __inline void 283 cbb_set(struct cbb_softc *sc, uint32_t reg, uint32_t val) 284 { 285 bus_space_write_4(sc->bst, sc->bsh, reg, val); 286 } 287 288 static __inline uint32_t 289 cbb_get(struct cbb_softc *sc, uint32_t reg) 290 { 291 return (bus_space_read_4(sc->bst, sc->bsh, reg)); 292 } 293 294 static __inline void 295 cbb_setb(struct cbb_softc *sc, uint32_t reg, uint32_t bits) 296 { 297 cbb_set(sc, reg, cbb_get(sc, reg) | bits); 298 } 299 300 static __inline void 301 cbb_clrb(struct cbb_softc *sc, uint32_t reg, uint32_t bits) 302 { 303 cbb_set(sc, reg, cbb_get(sc, reg) & ~bits); 304 } 305 306 static void 307 cbb_remove_res(struct cbb_softc *sc, struct resource *res) 308 { 309 struct cbb_reslist *rle; 310 311 SLIST_FOREACH(rle, &sc->rl, link) { 312 if (rle->res == res) { 313 SLIST_REMOVE(&sc->rl, rle, cbb_reslist, link); 314 free(rle, M_DEVBUF); 315 return; 316 } 317 } 318 } 319 320 static struct resource * 321 cbb_find_res(struct cbb_softc *sc, int type, int rid) 322 { 323 struct cbb_reslist *rle; 324 325 SLIST_FOREACH(rle, &sc->rl, link) 326 if (SYS_RES_MEMORY == rle->type && rid == rle->rid) 327 return (rle->res); 328 return (NULL); 329 } 330 331 static void 332 cbb_insert_res(struct cbb_softc *sc, struct resource *res, int type, 333 int rid) 334 { 335 struct cbb_reslist *rle; 336 337 /* 338 * Need to record allocated resource so we can iterate through 339 * it later. 340 */ 341 rle = malloc(sizeof(struct cbb_reslist), M_DEVBUF, M_NOWAIT); 342 if (rle == NULL) 343 panic("cbb_cardbus_alloc_resource: can't record entry!"); 344 rle->res = res; 345 rle->type = type; 346 rle->rid = rid; 347 SLIST_INSERT_HEAD(&sc->rl, rle, link); 348 } 349 350 static void 351 cbb_destroy_res(struct cbb_softc *sc) 352 { 353 struct cbb_reslist *rle; 354 355 while ((rle = SLIST_FIRST(&sc->rl)) != NULL) { 356 device_printf(sc->dev, "Danger Will Robinson: Resource " 357 "left allocated! This is a bug... " 358 "(rid=%x, type=%d, addr=%lx)\n", rle->rid, rle->type, 359 rman_get_start(rle->res)); 360 SLIST_REMOVE_HEAD(&sc->rl, link); 361 free(rle, M_DEVBUF); 362 } 363 } 364 365 /************************************************************************/ 366 /* Probe/Attach */ 367 /************************************************************************/ 368 369 static int 370 cbb_chipset(uint32_t pci_id, const char **namep) 371 { 372 struct yenta_chipinfo *ycp; 373 374 for (ycp = yc_chipsets; ycp->yc_id != 0 && pci_id != ycp->yc_id; ++ycp) 375 continue; 376 if (namep != NULL) 377 *namep = ycp->yc_name; 378 return (ycp->yc_chiptype); 379 } 380 381 static int 382 cbb_probe(device_t brdev) 383 { 384 const char *name; 385 uint32_t progif; 386 uint32_t subclass; 387 388 /* 389 * Do we know that we support the chipset? If so, then we 390 * accept the device. 391 */ 392 if (cbb_chipset(pci_get_devid(brdev), &name) != CB_UNKNOWN) { 393 device_set_desc(brdev, name); 394 return (0); 395 } 396 397 /* 398 * We do support generic CardBus bridges. All that we've seen 399 * to date have progif 0 (the Yenta spec, and successors mandate 400 * this). We do not support PCI PCMCIA bridges (with one exception) 401 * with this driver since they generally are I/O mapped. Those 402 * are supported by the pcic driver. This should help us be more 403 * future proof. 404 */ 405 subclass = pci_get_subclass(brdev); 406 progif = pci_get_progif(brdev); 407 if (subclass == PCIS_BRIDGE_CARDBUS && progif == 0) { 408 device_set_desc(brdev, "PCI-CardBus Bridge"); 409 return (0); 410 } 411 return (ENXIO); 412 } 413 414 415 /* 416 * Disable function interrupts by telling the bridge to generate IRQ1 417 * interrupts. These interrupts aren't really generated by the chip, since 418 * IRQ1 is reserved. Some chipsets assert INTA# inappropriately during 419 * initialization, so this helps to work around the problem. 420 * 421 * XXX We can't do this workaround for all chipsets, because this 422 * XXX causes interference with the keyboard because somechipsets will 423 * XXX actually signal IRQ1 over their serial interrupt connections to 424 * XXX the south bridge. Disable it it for now. 425 */ 426 static void 427 cbb_disable_func_intr(struct cbb_softc *sc) 428 { 429 #if 0 430 uint8_t reg; 431 432 reg = (exca_getb(&sc->exca, EXCA_INTR) & ~EXCA_INTR_IRQ_MASK) | 433 EXCA_INTR_IRQ_RESERVED1; 434 exca_putb(&sc->exca, EXCA_INTR, reg); 435 #endif 436 } 437 438 /* 439 * Enable function interrupts. We turn on function interrupts when the card 440 * requests an interrupt. The PCMCIA standard says that we should set 441 * the lower 4 bits to 0 to route via PCI. Note: we call this for both 442 * CardBus and R2 (PC Card) cases, but it should have no effect on CardBus 443 * cards. 444 */ 445 static void 446 cbb_enable_func_intr(struct cbb_softc *sc) 447 { 448 uint8_t reg; 449 450 reg = (exca_getb(&sc->exca, EXCA_INTR) & ~EXCA_INTR_IRQ_MASK) | 451 EXCA_INTR_IRQ_NONE; 452 exca_putb(&sc->exca, EXCA_INTR, reg); 453 } 454 455 static void 456 cbb_chipinit(struct cbb_softc *sc) 457 { 458 uint32_t mux, sysctrl, reg; 459 460 /* Set CardBus latency timer */ 461 if (pci_read_config(sc->dev, PCIR_SECLAT_1, 1) < 0x20) 462 pci_write_config(sc->dev, PCIR_SECLAT_1, 0x20, 1); 463 464 /* Set PCI latency timer */ 465 if (pci_read_config(sc->dev, PCIR_LATTIMER, 1) < 0x20) 466 pci_write_config(sc->dev, PCIR_LATTIMER, 0x20, 1); 467 468 /* Enable memory access */ 469 PCI_MASK_CONFIG(sc->dev, PCIR_COMMAND, 470 | PCIM_CMD_MEMEN 471 | PCIM_CMD_PORTEN 472 | PCIM_CMD_BUSMASTEREN, 2); 473 474 /* disable Legacy IO */ 475 switch (sc->chipset) { 476 case CB_RF5C46X: 477 PCI_MASK_CONFIG(sc->dev, CBBR_BRIDGECTRL, 478 & ~(CBBM_BRIDGECTRL_RL_3E0_EN | 479 CBBM_BRIDGECTRL_RL_3E2_EN), 2); 480 break; 481 default: 482 pci_write_config(sc->dev, CBBR_LEGACY, 0x0, 4); 483 break; 484 } 485 486 /* Use PCI interrupt for interrupt routing */ 487 PCI_MASK2_CONFIG(sc->dev, CBBR_BRIDGECTRL, 488 & ~(CBBM_BRIDGECTRL_MASTER_ABORT | 489 CBBM_BRIDGECTRL_INTR_IREQ_EN), 490 | CBBM_BRIDGECTRL_WRITE_POST_EN, 491 2); 492 493 /* 494 * XXX this should be a function table, ala OLDCARD. This means 495 * that we could more easily support ISA interrupts for pccard 496 * cards if we had to. 497 */ 498 switch (sc->chipset) { 499 case CB_TI113X: 500 /* 501 * The TI 1031, TI 1130 and TI 1131 all require another bit 502 * be set to enable PCI routing of interrupts, and then 503 * a bit for each of the CSC and Function interrupts we 504 * want routed. 505 */ 506 PCI_MASK_CONFIG(sc->dev, CBBR_CBCTRL, 507 | CBBM_CBCTRL_113X_PCI_INTR | 508 CBBM_CBCTRL_113X_PCI_CSC | CBBM_CBCTRL_113X_PCI_IRQ_EN, 509 1); 510 PCI_MASK_CONFIG(sc->dev, CBBR_DEVCTRL, 511 & ~(CBBM_DEVCTRL_INT_SERIAL | 512 CBBM_DEVCTRL_INT_PCI), 1); 513 break; 514 case CB_TI12XX: 515 /* 516 * Some TI 12xx (and [14][45]xx) based pci cards 517 * sometimes have issues with the MFUNC register not 518 * being initialized due to a bad EEPROM on board. 519 * Laptops that this matters on have this register 520 * properly initialized. 521 * 522 * The TI125X parts have a different register. 523 */ 524 mux = pci_read_config(sc->dev, CBBR_MFUNC, 4); 525 sysctrl = pci_read_config(sc->dev, CBBR_SYSCTRL, 4); 526 if (mux == 0) { 527 mux = (mux & ~CBBM_MFUNC_PIN0) | 528 CBBM_MFUNC_PIN0_INTA; 529 if ((sysctrl & CBBM_SYSCTRL_INTRTIE) == 0) 530 mux = (mux & ~CBBM_MFUNC_PIN1) | 531 CBBM_MFUNC_PIN1_INTB; 532 pci_write_config(sc->dev, CBBR_MFUNC, mux, 4); 533 } 534 /*FALLTHROUGH*/ 535 case CB_TI125X: 536 /* 537 * Disable zoom video. Some machines initialize this 538 * improperly and exerpience has shown that this helps 539 * prevent strange behavior. 540 */ 541 pci_write_config(sc->dev, CBBR_MMCTRL, 0, 4); 542 break; 543 case CB_O2MICRO: 544 /* 545 * Issue #1: INT# generated at the same time as 546 * selected ISA IRQ. When IREQ# or STSCHG# is active, 547 * in addition to the ISA IRQ being generated, INT# 548 * will also be generated at the same time. 549 * 550 * Some of the older controllers have an issue in 551 * which the slot's PCI INT# will be asserted whenever 552 * IREQ# or STSCGH# is asserted even if ExCA registers 553 * 03h or 05h have an ISA IRQ selected. 554 * 555 * The fix for this issue, which will work for any 556 * controller (old or new), is to set ExCA registers 557 * 3Ah (slot 0) & 7Ah (slot 1) bits 7:4 = 1010b. 558 * These bits are undocumented. By setting this 559 * register (of each slot) to '1010xxxxb' a routing of 560 * IREQ# to INTC# and STSCHG# to INTC# is selected. 561 * Since INTC# isn't connected there will be no 562 * unexpected PCI INT when IREQ# or STSCHG# is active. 563 * However, INTA# (slot 0) or INTB# (slot 1) will 564 * still be correctly generated if NO ISA IRQ is 565 * selected (ExCA regs 03h or 05h are cleared). 566 */ 567 reg = exca_getb(&sc->exca, EXCA_O2MICRO_CTRL_C); 568 reg = (reg & 0x0f) | 569 EXCA_O2CC_IREQ_INTC | EXCA_O2CC_STSCHG_INTC; 570 exca_putb(&sc->exca, EXCA_O2MICRO_CTRL_C, reg); 571 572 break; 573 case CB_TOPIC97: 574 /* 575 * Disable Zoom Video, ToPIC 97, 100. 576 */ 577 pci_write_config(sc->dev, CBBR_TOPIC_ZV_CONTROL, 0, 1); 578 /* 579 * ToPIC 97, 100 580 * At offset 0xa1: INTERRUPT CONTROL register 581 * 0x1: Turn on INT interrupts. 582 */ 583 PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_INTCTRL, 584 | CBBM_TOPIC_INTCTRL_INTIRQSEL, 1); 585 goto topic_common; 586 case CB_TOPIC95: 587 /* 588 * SOCKETCTRL appears to be TOPIC 95/B specific 589 */ 590 PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_SOCKETCTRL, 591 | CBBM_TOPIC_SOCKETCTRL_SCR_IRQSEL, 4); 592 593 topic_common:; 594 /* 595 * At offset 0xa0: SLOT CONTROL 596 * 0x80 Enable CardBus Functionality 597 * 0x40 Enable CardBus and PC Card registers 598 * 0x20 Lock ID in exca regs 599 * 0x10 Write protect ID in config regs 600 * Clear the rest of the bits, which defaults the slot 601 * in legacy mode to 0x3e0 and offset 0. (legacy 602 * mode is determined elsewhere) 603 */ 604 pci_write_config(sc->dev, CBBR_TOPIC_SLOTCTRL, 605 CBBM_TOPIC_SLOTCTRL_SLOTON | 606 CBBM_TOPIC_SLOTCTRL_SLOTEN | 607 CBBM_TOPIC_SLOTCTRL_ID_LOCK | 608 CBBM_TOPIC_SLOTCTRL_ID_WP, 1); 609 610 /* 611 * At offset 0xa3 Card Detect Control Register 612 * 0x80 CARDBUS enbale 613 * 0x01 Cleared for hardware change detect 614 */ 615 PCI_MASK2_CONFIG(sc->dev, CBBR_TOPIC_CDC, 616 | CBBM_TOPIC_CDC_CARDBUS, 617 & ~CBBM_TOPIC_CDC_SWDETECT, 4); 618 break; 619 } 620 621 /* 622 * Need to tell ExCA registers to CSC interrupts route via PCI 623 * interrupts. There are two ways to do this. Once is to set 624 * INTR_ENABLE and the other is to set CSC to 0. Since both 625 * methods are mutually compatible, we do both. 626 */ 627 exca_putb(&sc->exca, EXCA_INTR, EXCA_INTR_ENABLE); 628 exca_putb(&sc->exca, EXCA_CSC_INTR, 0); 629 630 cbb_disable_func_intr(sc); 631 632 /* close all memory and io windows */ 633 pci_write_config(sc->dev, CBBR_MEMBASE0, 0xffffffff, 4); 634 pci_write_config(sc->dev, CBBR_MEMLIMIT0, 0, 4); 635 pci_write_config(sc->dev, CBBR_MEMBASE1, 0xffffffff, 4); 636 pci_write_config(sc->dev, CBBR_MEMLIMIT1, 0, 4); 637 pci_write_config(sc->dev, CBBR_IOBASE0, 0xffffffff, 4); 638 pci_write_config(sc->dev, CBBR_IOLIMIT0, 0, 4); 639 pci_write_config(sc->dev, CBBR_IOBASE1, 0xffffffff, 4); 640 pci_write_config(sc->dev, CBBR_IOLIMIT1, 0, 4); 641 } 642 643 #ifndef BURN_BRIDGES 644 /* 645 * Still need this because the pci code only does power for type 0 646 * header devices. 647 */ 648 static void 649 cbb_powerstate_d0(device_t dev) 650 { 651 u_int32_t membase, irq; 652 653 if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) { 654 /* Save important PCI config data. */ 655 membase = pci_read_config(dev, CBBR_SOCKBASE, 4); 656 irq = pci_read_config(dev, PCIR_INTLINE, 4); 657 658 /* Reset the power state. */ 659 device_printf(dev, "chip is in D%d power mode " 660 "-- setting to D0\n", pci_get_powerstate(dev)); 661 662 pci_set_powerstate(dev, PCI_POWERSTATE_D0); 663 664 /* Restore PCI config data. */ 665 pci_write_config(dev, CBBR_SOCKBASE, membase, 4); 666 pci_write_config(dev, PCIR_INTLINE, irq, 4); 667 } 668 } 669 #endif 670 671 /* 672 * Print out the config space 673 */ 674 static void 675 cbb_print_config(device_t dev) 676 { 677 int i; 678 679 device_printf(dev, "PCI Configuration space:"); 680 for (i = 0; i < 256; i += 4) { 681 if (i % 16 == 0) 682 printf("\n 0x%02x: ", i); 683 printf("0x%08x ", pci_read_config(dev, i, 4)); 684 } 685 printf("\n"); 686 } 687 688 static int 689 cbb_attach(device_t brdev) 690 { 691 static int curr_bus_number = 2; /* XXX EVILE BAD (see below) */ 692 struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev); 693 int rid, bus, pribus; 694 device_t parent; 695 696 parent = device_get_parent(brdev); 697 mtx_init(&sc->mtx, device_get_nameunit(brdev), "cbb", MTX_DEF); 698 cv_init(&sc->cv, "cbb cv"); 699 sc->chipset = cbb_chipset(pci_get_devid(brdev), NULL); 700 sc->dev = brdev; 701 sc->cbdev = NULL; 702 sc->exca.pccarddev = NULL; 703 sc->secbus = pci_read_config(brdev, PCIR_SECBUS_2, 1); 704 sc->subbus = pci_read_config(brdev, PCIR_SUBBUS_2, 1); 705 SLIST_INIT(&sc->rl); 706 STAILQ_INIT(&sc->intr_handlers); 707 #ifndef BURN_BRIDGES 708 cbb_powerstate_d0(brdev); 709 #endif 710 711 rid = CBBR_SOCKBASE; 712 sc->base_res = bus_alloc_resource_any(brdev, SYS_RES_MEMORY, &rid, 713 RF_ACTIVE); 714 if (!sc->base_res) { 715 device_printf(brdev, "Could not map register memory\n"); 716 mtx_destroy(&sc->mtx); 717 cv_destroy(&sc->cv); 718 return (ENOMEM); 719 } else { 720 DEVPRINTF((brdev, "Found memory at %08lx\n", 721 rman_get_start(sc->base_res))); 722 } 723 724 sc->bst = rman_get_bustag(sc->base_res); 725 sc->bsh = rman_get_bushandle(sc->base_res); 726 exca_init(&sc->exca, brdev, sc->bst, sc->bsh, CBB_EXCA_OFFSET); 727 sc->exca.flags |= EXCA_HAS_MEMREG_WIN; 728 sc->exca.chipset = EXCA_CARDBUS; 729 cbb_chipinit(sc); 730 731 /* 732 * This is a gross hack. We should be scanning the entire pci 733 * tree, assigning bus numbers in a way such that we (1) can 734 * reserve 1 extra bus just in case and (2) all sub busses 735 * are in an appropriate range. 736 */ 737 bus = pci_read_config(brdev, PCIR_SECBUS_2, 1); 738 pribus = pcib_get_bus(parent); 739 DEVPRINTF((brdev, "Secondary bus is %d\n", bus)); 740 if (bus == 0) { 741 if (curr_bus_number <= pribus) 742 curr_bus_number = pribus + 1; 743 if (pci_read_config(brdev, PCIR_PRIBUS_2, 1) != pribus) { 744 DEVPRINTF((brdev, "Setting primary bus to %d\n", pribus)); 745 pci_write_config(brdev, PCIR_PRIBUS_2, pribus, 1); 746 } 747 bus = curr_bus_number; 748 DEVPRINTF((brdev, "Secondary bus set to %d subbus %d\n", bus, 749 bus + 1)); 750 sc->secbus = bus; 751 sc->subbus = bus + 1; 752 pci_write_config(brdev, PCIR_SECBUS_2, bus, 1); 753 pci_write_config(brdev, PCIR_SUBBUS_2, bus + 1, 1); 754 curr_bus_number += 2; 755 } 756 757 /* attach children */ 758 sc->cbdev = device_add_child(brdev, "cardbus", -1); 759 if (sc->cbdev == NULL) 760 DEVPRINTF((brdev, "WARNING: cannot add cardbus bus.\n")); 761 else if (device_probe_and_attach(sc->cbdev) != 0) 762 DEVPRINTF((brdev, "WARNING: cannot attach cardbus bus!\n")); 763 764 sc->exca.pccarddev = device_add_child(brdev, "pccard", -1); 765 if (sc->exca.pccarddev == NULL) 766 DEVPRINTF((brdev, "WARNING: cannot add pccard bus.\n")); 767 else if (device_probe_and_attach(sc->exca.pccarddev) != 0) 768 DEVPRINTF((brdev, "WARNING: cannot attach pccard bus.\n")); 769 770 /* Map and establish the interrupt. */ 771 rid = 0; 772 sc->irq_res = bus_alloc_resource_any(brdev, SYS_RES_IRQ, &rid, 773 RF_SHAREABLE | RF_ACTIVE); 774 if (sc->irq_res == NULL) { 775 printf("cbb: Unable to map IRQ...\n"); 776 goto err; 777 } 778 779 if (bus_setup_intr(brdev, sc->irq_res, INTR_TYPE_AV | INTR_MPSAFE, 780 cbb_intr, sc, &sc->intrhand)) { 781 device_printf(brdev, "couldn't establish interrupt"); 782 goto err; 783 } 784 785 /* reset 16-bit pcmcia bus */ 786 exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET); 787 788 /* turn off power */ 789 cbb_power(brdev, CARD_OFF); 790 791 /* CSC Interrupt: Card detect interrupt on */ 792 cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD); 793 794 /* reset interrupt */ 795 cbb_set(sc, CBB_SOCKET_EVENT, cbb_get(sc, CBB_SOCKET_EVENT)); 796 797 if (bootverbose) 798 cbb_print_config(brdev); 799 800 /* Start the thread */ 801 if (kthread_create(cbb_event_thread, sc, &sc->event_thread, 0, 0, 802 "%s", device_get_nameunit(brdev))) { 803 device_printf(brdev, "unable to create event thread.\n"); 804 panic("cbb_create_event_thread"); 805 } 806 return (0); 807 err: 808 if (sc->irq_res) 809 bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res); 810 if (sc->base_res) { 811 bus_release_resource(brdev, SYS_RES_MEMORY, CBBR_SOCKBASE, 812 sc->base_res); 813 } 814 mtx_destroy(&sc->mtx); 815 cv_destroy(&sc->cv); 816 return (ENOMEM); 817 } 818 819 static int 820 cbb_detach(device_t brdev) 821 { 822 struct cbb_softc *sc = device_get_softc(brdev); 823 int numdevs; 824 device_t *devlist; 825 int tmp; 826 int error; 827 828 device_get_children(brdev, &devlist, &numdevs); 829 830 error = 0; 831 for (tmp = 0; tmp < numdevs; tmp++) { 832 if (device_detach(devlist[tmp]) == 0) 833 device_delete_child(brdev, devlist[tmp]); 834 else 835 error++; 836 } 837 free(devlist, M_TEMP); 838 if (error > 0) 839 return (ENXIO); 840 841 mtx_lock(&sc->mtx); 842 bus_teardown_intr(brdev, sc->irq_res, sc->intrhand); 843 sc->flags |= CBB_KTHREAD_DONE; 844 if (sc->flags & CBB_KTHREAD_RUNNING) { 845 cv_broadcast(&sc->cv); 846 msleep(sc->event_thread, &sc->mtx, PWAIT, "cbbun", 0); 847 } 848 mtx_unlock(&sc->mtx); 849 850 bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res); 851 bus_release_resource(brdev, SYS_RES_MEMORY, CBBR_SOCKBASE, 852 sc->base_res); 853 mtx_destroy(&sc->mtx); 854 cv_destroy(&sc->cv); 855 return (0); 856 } 857 858 static int 859 cbb_shutdown(device_t brdev) 860 { 861 struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev); 862 /* properly reset everything at shutdown */ 863 864 PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, |CBBM_BRIDGECTRL_RESET, 2); 865 exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET); 866 867 cbb_set(sc, CBB_SOCKET_MASK, 0); 868 869 cbb_power(brdev, CARD_OFF); 870 871 exca_putb(&sc->exca, EXCA_ADDRWIN_ENABLE, 0); 872 pci_write_config(brdev, CBBR_MEMBASE0, 0, 4); 873 pci_write_config(brdev, CBBR_MEMLIMIT0, 0, 4); 874 pci_write_config(brdev, CBBR_MEMBASE1, 0, 4); 875 pci_write_config(brdev, CBBR_MEMLIMIT1, 0, 4); 876 pci_write_config(brdev, CBBR_IOBASE0, 0, 4); 877 pci_write_config(brdev, CBBR_IOLIMIT0, 0, 4); 878 pci_write_config(brdev, CBBR_IOBASE1, 0, 4); 879 pci_write_config(brdev, CBBR_IOLIMIT1, 0, 4); 880 pci_write_config(brdev, PCIR_COMMAND, 0, 2); 881 return (0); 882 } 883 884 static int 885 cbb_setup_intr(device_t dev, device_t child, struct resource *irq, 886 int flags, driver_intr_t *intr, void *arg, void **cookiep) 887 { 888 struct cbb_intrhand *ih; 889 struct cbb_softc *sc = device_get_softc(dev); 890 891 /* 892 * You aren't allowed to have fast interrupts for pccard/cardbus 893 * things since those interrupts are PCI and shared. Since we use 894 * the PCI interrupt for the status change interrupts, it can't be 895 * free for use by the driver. Fast interrupts must not be shared. 896 * Well, this is no longer strictly true. You can have multiple 897 * FAST ISRs, but can't mix fast and slow, so we have to assume 898 * least common denominator until the base system supports mixing 899 * and matching better. 900 */ 901 if ((flags & INTR_FAST) != 0) 902 return (EINVAL); 903 ih = malloc(sizeof(struct cbb_intrhand), M_DEVBUF, M_NOWAIT); 904 if (ih == NULL) 905 return (ENOMEM); 906 *cookiep = ih; 907 ih->intr = intr; 908 ih->arg = arg; 909 ih->flags = flags & INTR_MPSAFE; 910 STAILQ_INSERT_TAIL(&sc->intr_handlers, ih, entries); 911 cbb_enable_func_intr(sc); 912 /* 913 * XXX need to turn on ISA interrupts, if we ever support them, but 914 * XXX for now that's all we need to do. 915 */ 916 return (0); 917 } 918 919 static int 920 cbb_teardown_intr(device_t dev, device_t child, struct resource *irq, 921 void *cookie) 922 { 923 struct cbb_intrhand *ih; 924 struct cbb_softc *sc = device_get_softc(dev); 925 926 /* XXX Need to do different things for ISA interrupts. */ 927 ih = (struct cbb_intrhand *) cookie; 928 STAILQ_REMOVE(&sc->intr_handlers, ih, cbb_intrhand, entries); 929 free(ih, M_DEVBUF); 930 return (0); 931 } 932 933 934 static void 935 cbb_driver_added(device_t brdev, driver_t *driver) 936 { 937 struct cbb_softc *sc = device_get_softc(brdev); 938 device_t *devlist; 939 device_t dev; 940 int tmp; 941 int numdevs; 942 int wake = 0; 943 944 DEVICE_IDENTIFY(driver, brdev); 945 device_get_children(brdev, &devlist, &numdevs); 946 for (tmp = 0; tmp < numdevs; tmp++) { 947 dev = devlist[tmp]; 948 if (device_get_state(dev) == DS_NOTPRESENT && 949 device_probe_and_attach(dev) == 0) 950 wake++; 951 } 952 free(devlist, M_TEMP); 953 954 if (wake > 0) { 955 mtx_lock(&sc->mtx); 956 cv_signal(&sc->cv); 957 mtx_unlock(&sc->mtx); 958 } 959 } 960 961 static void 962 cbb_child_detached(device_t brdev, device_t child) 963 { 964 struct cbb_softc *sc = device_get_softc(brdev); 965 966 if (child != sc->cbdev && child != sc->exca.pccarddev) 967 device_printf(brdev, "Unknown child detached: %s\n", 968 device_get_nameunit(child)); 969 } 970 971 /************************************************************************/ 972 /* Kthreads */ 973 /************************************************************************/ 974 975 static void 976 cbb_event_thread(void *arg) 977 { 978 struct cbb_softc *sc = arg; 979 uint32_t status; 980 int err; 981 int not_a_card = 0; 982 983 sc->flags |= CBB_KTHREAD_RUNNING; 984 while ((sc->flags & CBB_KTHREAD_DONE) == 0) { 985 /* 986 * We take out Giant here because we need it deep, 987 * down in the bowels of the vm system for mapping the 988 * memory we need to read the CIS. In addition, since 989 * we are adding/deleting devices from the dev tree, 990 * and that code isn't MP safe, we have to hold Giant. 991 */ 992 mtx_lock(&Giant); 993 status = cbb_get(sc, CBB_SOCKET_STATE); 994 DPRINTF(("Status is 0x%x\n", status)); 995 if (!CBB_CARD_PRESENT(status)) { 996 not_a_card = 0; /* We know card type */ 997 cbb_removal(sc); 998 } else if (status & CBB_STATE_NOT_A_CARD) { 999 /* 1000 * Up to 20 times, try to rescan the card when we 1001 * see NOT_A_CARD. 1002 */ 1003 if (not_a_card++ < 20) { 1004 DEVPRINTF((sc->dev, 1005 "Not a card bit set, rescanning\n")); 1006 cbb_setb(sc, CBB_SOCKET_FORCE, CBB_FORCE_CV_TEST); 1007 } else { 1008 device_printf(sc->dev, 1009 "Can't determine card type\n"); 1010 } 1011 } else { 1012 not_a_card = 0; /* We know card type */ 1013 cbb_insert(sc); 1014 } 1015 mtx_unlock(&Giant); 1016 1017 /* 1018 * Wait until it has been 1s since the last time we 1019 * get an interrupt. We handle the rest of the interrupt 1020 * at the top of the loop. Although we clear the bit in the 1021 * ISR, we signal sc->cv from the detach path after we've 1022 * set the CBB_KTHREAD_DONE bit, so we can't do a simple 1023 * 1s sleep here. 1024 * 1025 * In our ISR, we turn off the card changed interrupt. Turn 1026 * them back on here before we wait for them to happen. We 1027 * turn them on/off so that we can tolerate a large latency 1028 * between the time we signal cbb_event_thread and it gets 1029 * a chance to run. 1030 */ 1031 mtx_lock(&sc->mtx); 1032 cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD); 1033 cv_wait(&sc->cv, &sc->mtx); 1034 err = 0; 1035 while (err != EWOULDBLOCK && 1036 (sc->flags & CBB_KTHREAD_DONE) == 0) 1037 err = cv_timedwait(&sc->cv, &sc->mtx, 1 * hz); 1038 mtx_unlock(&sc->mtx); 1039 } 1040 sc->flags &= ~CBB_KTHREAD_RUNNING; 1041 kthread_exit(0); 1042 } 1043 1044 /************************************************************************/ 1045 /* Insert/removal */ 1046 /************************************************************************/ 1047 1048 static void 1049 cbb_insert(struct cbb_softc *sc) 1050 { 1051 uint32_t sockevent, sockstate; 1052 1053 sockevent = cbb_get(sc, CBB_SOCKET_EVENT); 1054 sockstate = cbb_get(sc, CBB_SOCKET_STATE); 1055 1056 DEVPRINTF((sc->dev, "card inserted: event=0x%08x, state=%08x\n", 1057 sockevent, sockstate)); 1058 1059 if (sockstate & CBB_STATE_R2_CARD) { 1060 if (sc->exca.pccarddev) 1061 sc->flags |= CBB_16BIT_CARD | CBB_CARD_OK; 1062 exca_insert(&sc->exca); 1063 } else if (sockstate & CBB_STATE_CB_CARD) { 1064 if (sc->cbdev != NULL) { 1065 sc->flags &= ~CBB_16BIT_CARD; 1066 sc->flags |= CBB_CARD_OK; 1067 if (CARD_ATTACH_CARD(sc->cbdev) != 0) 1068 device_printf(sc->dev, 1069 "CardBus card activation failed\n"); 1070 } else { 1071 device_printf(sc->dev, 1072 "CardBus card inserted, but no cardbus bus.\n"); 1073 } 1074 } else { 1075 /* 1076 * We should power the card down, and try again a couple of 1077 * times if this happens. XXX 1078 */ 1079 device_printf(sc->dev, "Unsupported card type detected\n"); 1080 } 1081 } 1082 1083 static void 1084 cbb_removal(struct cbb_softc *sc) 1085 { 1086 if (sc->flags & CBB_16BIT_CARD) { 1087 exca_removal(&sc->exca); 1088 } else { 1089 if (sc->cbdev != NULL) 1090 CARD_DETACH_CARD(sc->cbdev); 1091 } 1092 cbb_destroy_res(sc); 1093 } 1094 1095 /************************************************************************/ 1096 /* Interrupt Handler */ 1097 /************************************************************************/ 1098 1099 static void 1100 cbb_intr(void *arg) 1101 { 1102 struct cbb_softc *sc = arg; 1103 uint32_t sockevent; 1104 struct cbb_intrhand *ih; 1105 1106 /* 1107 * This ISR needs work XXX 1108 */ 1109 sockevent = cbb_get(sc, CBB_SOCKET_EVENT); 1110 if (sockevent != 0) { 1111 /* ack the interrupt */ 1112 cbb_setb(sc, CBB_SOCKET_EVENT, sockevent); 1113 1114 /* 1115 * If anything has happened to the socket, we assume that 1116 * the card is no longer OK, and we shouldn't call its 1117 * ISR. We set CARD_OK as soon as we've attached the 1118 * card. This helps in a noisy eject, which happens 1119 * all too often when users are ejecting their PC Cards. 1120 * 1121 * We use this method in preference to checking to see if 1122 * the card is still there because the check suffers from 1123 * a race condition in the bouncing case. Prior versions 1124 * of the pccard software used a similar trick and achieved 1125 * excellent results. 1126 */ 1127 if (sockevent & CBB_SOCKET_EVENT_CD) { 1128 mtx_lock(&sc->mtx); 1129 cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD); 1130 sc->flags &= ~CBB_CARD_OK; 1131 cbb_disable_func_intr(sc); 1132 cv_signal(&sc->cv); 1133 mtx_unlock(&sc->mtx); 1134 } 1135 } 1136 /* 1137 * Some chips also require us to read the old ExCA registe for 1138 * card status change when we route CSC vis PCI. This isn't supposed 1139 * to be required, but it clears the interrupt state on some chipsets. 1140 * Maybe there's a setting that would obviate its need. Maybe we 1141 * should test the status bits and deal with them, but so far we've 1142 * not found any machines that don't also give us the socket status 1143 * indication above. 1144 * 1145 * We have to call this unconditionally because some bridges deliver 1146 * the even independent of the CBB_SOCKET_EVENT_CD above. 1147 */ 1148 exca_getb(&sc->exca, EXCA_CSC); 1149 1150 /* 1151 * If the card is OK, call all the interrupt handlers. 1152 */ 1153 if (sc->flags & CBB_CARD_OK) { 1154 STAILQ_FOREACH(ih, &sc->intr_handlers, entries) { 1155 if ((ih->flags & INTR_MPSAFE) == 0) 1156 mtx_lock(&Giant); 1157 (*ih->intr)(ih->arg); 1158 if ((ih->flags & INTR_MPSAFE) == 0) 1159 mtx_unlock(&Giant); 1160 } 1161 } 1162 } 1163 1164 /************************************************************************/ 1165 /* Generic Power functions */ 1166 /************************************************************************/ 1167 1168 static int 1169 cbb_detect_voltage(device_t brdev) 1170 { 1171 struct cbb_softc *sc = device_get_softc(brdev); 1172 uint32_t psr; 1173 int vol = CARD_UKN_CARD; 1174 1175 psr = cbb_get(sc, CBB_SOCKET_STATE); 1176 1177 if (psr & CBB_STATE_5VCARD) 1178 vol |= CARD_5V_CARD; 1179 if (psr & CBB_STATE_3VCARD) 1180 vol |= CARD_3V_CARD; 1181 if (psr & CBB_STATE_XVCARD) 1182 vol |= CARD_XV_CARD; 1183 if (psr & CBB_STATE_YVCARD) 1184 vol |= CARD_YV_CARD; 1185 1186 return (vol); 1187 } 1188 1189 static uint8_t 1190 cbb_o2micro_power_hack(struct cbb_softc *sc) 1191 { 1192 uint8_t reg; 1193 1194 /* 1195 * Issue #2: INT# not qualified with IRQ Routing Bit. An 1196 * unexpected PCI INT# may be generated during PC-Card 1197 * initialization even with the IRQ Routing Bit Set with some 1198 * PC-Cards. 1199 * 1200 * This is a two part issue. The first part is that some of 1201 * our older controllers have an issue in which the slot's PCI 1202 * INT# is NOT qualified by the IRQ routing bit (PCI reg. 3Eh 1203 * bit 7). Regardless of the IRQ routing bit, if NO ISA IRQ 1204 * is selected (ExCA register 03h bits 3:0, of the slot, are 1205 * cleared) we will generate INT# if IREQ# is asserted. The 1206 * second part is because some PC-Cards prematurally assert 1207 * IREQ# before the ExCA registers are fully programmed. This 1208 * in turn asserts INT# because ExCA register 03h bits 3:0 1209 * (ISA IRQ Select) are not yet programmed. 1210 * 1211 * The fix for this issue, which will work for any controller 1212 * (old or new), is to set ExCA register 03h bits 3:0 = 0001b 1213 * (select IRQ1), of the slot, before turning on slot power. 1214 * Selecting IRQ1 will result in INT# NOT being asserted 1215 * (because IRQ1 is selected), and IRQ1 won't be asserted 1216 * because our controllers don't generate IRQ1. 1217 */ 1218 reg = exca_getb(&sc->exca, EXCA_INTR); 1219 exca_putb(&sc->exca, EXCA_INTR, (reg & 0xf0) | 1); 1220 return (reg); 1221 } 1222 1223 /* 1224 * Restore the damage that cbb_o2micro_power_hack does to EXCA_INTR so 1225 * we don't have an interrupt storm on power on. This has the efect of 1226 * disabling card status change interrupts for the duration of poweron. 1227 */ 1228 static void 1229 cbb_o2micro_power_hack2(struct cbb_softc *sc, uint8_t reg) 1230 { 1231 exca_putb(&sc->exca, EXCA_INTR, reg); 1232 } 1233 1234 static int 1235 cbb_power(device_t brdev, int volts) 1236 { 1237 uint32_t status, sock_ctrl; 1238 struct cbb_softc *sc = device_get_softc(brdev); 1239 int timeout; 1240 int retval = 0; 1241 uint32_t sockevent; 1242 uint8_t reg = 0; 1243 1244 status = cbb_get(sc, CBB_SOCKET_STATE); 1245 sock_ctrl = cbb_get(sc, CBB_SOCKET_CONTROL); 1246 1247 sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK; 1248 switch (volts & CARD_VCCMASK) { 1249 case 5: 1250 sock_ctrl |= CBB_SOCKET_CTRL_VCC_5V; 1251 break; 1252 case 3: 1253 sock_ctrl |= CBB_SOCKET_CTRL_VCC_3V; 1254 break; 1255 case XV: 1256 sock_ctrl |= CBB_SOCKET_CTRL_VCC_XV; 1257 break; 1258 case YV: 1259 sock_ctrl |= CBB_SOCKET_CTRL_VCC_YV; 1260 break; 1261 case 0: 1262 break; 1263 default: 1264 return (0); /* power NEVER changed */ 1265 } 1266 1267 /* VPP == VCC */ 1268 sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK; 1269 sock_ctrl |= ((sock_ctrl >> 4) & 0x07); 1270 1271 if (cbb_get(sc, CBB_SOCKET_CONTROL) == sock_ctrl) 1272 return (1); /* no change necessary */ 1273 DEVPRINTF((sc->dev, "cbb_power: %dV\n", volts)); 1274 if (volts != 0 && sc->chipset == CB_O2MICRO) 1275 reg = cbb_o2micro_power_hack(sc); 1276 1277 cbb_set(sc, CBB_SOCKET_CONTROL, sock_ctrl); 1278 status = cbb_get(sc, CBB_SOCKET_STATE); 1279 1280 /* 1281 * XXX This busy wait is bogus. We should wait for a power 1282 * interrupt and then whine if the status is bad. If we're 1283 * worried about the card not coming up, then we should also 1284 * schedule a timeout which we can cancel in the power interrupt. 1285 */ 1286 timeout = 20; 1287 do { 1288 DELAY(20*1000); 1289 sockevent = cbb_get(sc, CBB_SOCKET_EVENT); 1290 } while (!(sockevent & CBB_SOCKET_EVENT_POWER) && --timeout > 0); 1291 /* reset event status */ 1292 /* XXX should only reset EVENT_POWER */ 1293 cbb_set(sc, CBB_SOCKET_EVENT, sockevent); 1294 if (timeout < 0) { 1295 printf ("VCC supply failed.\n"); 1296 goto done; 1297 } 1298 1299 /* XXX 1300 * delay 400 ms: thgough the standard defines that the Vcc set-up time 1301 * is 20 ms, some PC-Card bridge requires longer duration. 1302 * XXX Note: We should check the stutus AFTER the delay to give time 1303 * for things to stabilize. 1304 */ 1305 DELAY(400*1000); 1306 1307 if (status & CBB_STATE_BAD_VCC_REQ) { 1308 device_printf(sc->dev, 1309 "bad Vcc request. ctrl=0x%x, status=0x%x\n", 1310 sock_ctrl ,status); 1311 printf("cbb_power: %dV\n", volts); 1312 goto done; 1313 } 1314 retval = 1; 1315 done:; 1316 if (volts != 0 && sc->chipset == CB_O2MICRO) 1317 cbb_o2micro_power_hack2(sc, reg); 1318 return (retval); 1319 } 1320 1321 /* 1322 * detect the voltage for the card, and set it. Since the power 1323 * used is the square of the voltage, lower voltages is a big win 1324 * and what Windows does (and what Microsoft prefers). The MS paper 1325 * also talks about preferring the CIS entry as well. In addition, 1326 * we power up with OE disabled. We'll set it later in the power 1327 * up sequence. 1328 */ 1329 static int 1330 cbb_do_power(device_t brdev) 1331 { 1332 struct cbb_softc *sc = device_get_softc(brdev); 1333 int voltage; 1334 1335 /* Don't enable OE */ 1336 exca_clrb(&sc->exca, EXCA_PWRCTL, EXCA_PWRCTL_OE); 1337 1338 /* Prefer lowest voltage supported */ 1339 voltage = cbb_detect_voltage(brdev); 1340 cbb_power(brdev, CARD_OFF); 1341 if (voltage & CARD_YV_CARD) 1342 cbb_power(brdev, CARD_VCC(YV)); 1343 else if (voltage & CARD_XV_CARD) 1344 cbb_power(brdev, CARD_VCC(XV)); 1345 else if (voltage & CARD_3V_CARD) 1346 cbb_power(brdev, CARD_VCC(3)); 1347 else if (voltage & CARD_5V_CARD) 1348 cbb_power(brdev, CARD_VCC(5)); 1349 else { 1350 device_printf(brdev, "Unknown card voltage\n"); 1351 return (ENXIO); 1352 } 1353 return (0); 1354 } 1355 1356 /************************************************************************/ 1357 /* CardBus power functions */ 1358 /************************************************************************/ 1359 1360 static void 1361 cbb_cardbus_reset(device_t brdev) 1362 { 1363 struct cbb_softc *sc = device_get_softc(brdev); 1364 int delay_us; 1365 1366 delay_us = sc->chipset == CB_RF5C47X ? 400*1000 : 20*1000; 1367 1368 PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, |CBBM_BRIDGECTRL_RESET, 2); 1369 1370 DELAY(delay_us); 1371 1372 /* If a card exists, unreset it! */ 1373 if (CBB_CARD_PRESENT(cbb_get(sc, CBB_SOCKET_STATE))) { 1374 PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, 1375 &~CBBM_BRIDGECTRL_RESET, 2); 1376 DELAY(delay_us); 1377 } 1378 } 1379 1380 static int 1381 cbb_cardbus_power_enable_socket(device_t brdev, device_t child) 1382 { 1383 struct cbb_softc *sc = device_get_softc(brdev); 1384 int err; 1385 1386 if (!CBB_CARD_PRESENT(cbb_get(sc, CBB_SOCKET_STATE))) 1387 return (ENODEV); 1388 1389 err = cbb_do_power(brdev); 1390 if (err) 1391 return (err); 1392 cbb_cardbus_reset(brdev); 1393 return (0); 1394 } 1395 1396 static void 1397 cbb_cardbus_power_disable_socket(device_t brdev, device_t child) 1398 { 1399 cbb_power(brdev, CARD_OFF); 1400 cbb_cardbus_reset(brdev); 1401 } 1402 1403 /************************************************************************/ 1404 /* CardBus Resource */ 1405 /************************************************************************/ 1406 1407 static int 1408 cbb_cardbus_io_open(device_t brdev, int win, uint32_t start, uint32_t end) 1409 { 1410 int basereg; 1411 int limitreg; 1412 1413 if ((win < 0) || (win > 1)) { 1414 DEVPRINTF((brdev, 1415 "cbb_cardbus_io_open: window out of range %d\n", win)); 1416 return (EINVAL); 1417 } 1418 1419 basereg = win * 8 + CBBR_IOBASE0; 1420 limitreg = win * 8 + CBBR_IOLIMIT0; 1421 1422 pci_write_config(brdev, basereg, start, 4); 1423 pci_write_config(brdev, limitreg, end, 4); 1424 return (0); 1425 } 1426 1427 static int 1428 cbb_cardbus_mem_open(device_t brdev, int win, uint32_t start, uint32_t end) 1429 { 1430 int basereg; 1431 int limitreg; 1432 1433 if ((win < 0) || (win > 1)) { 1434 DEVPRINTF((brdev, 1435 "cbb_cardbus_mem_open: window out of range %d\n", win)); 1436 return (EINVAL); 1437 } 1438 1439 basereg = win*8 + CBBR_MEMBASE0; 1440 limitreg = win*8 + CBBR_MEMLIMIT0; 1441 1442 pci_write_config(brdev, basereg, start, 4); 1443 pci_write_config(brdev, limitreg, end, 4); 1444 return (0); 1445 } 1446 1447 /* 1448 * XXX The following function belongs in the pci bus layer. 1449 */ 1450 static void 1451 cbb_cardbus_auto_open(struct cbb_softc *sc, int type) 1452 { 1453 uint32_t starts[2]; 1454 uint32_t ends[2]; 1455 struct cbb_reslist *rle; 1456 int align; 1457 int prefetchable[2]; 1458 uint32_t reg; 1459 1460 starts[0] = starts[1] = 0xffffffff; 1461 ends[0] = ends[1] = 0; 1462 1463 if (type == SYS_RES_MEMORY) 1464 align = CBB_MEMALIGN; 1465 else if (type == SYS_RES_IOPORT) 1466 align = CBB_IOALIGN; 1467 else 1468 align = 1; 1469 1470 /* 1471 * This looks somewhat bogus, and doesn't seem to really respect 1472 * alignment. The alignment stuff is happening too late (it 1473 * should happen at allocation time, not activation time) and 1474 * this code looks generally to be too complex for the purpose 1475 * it surves. 1476 */ 1477 SLIST_FOREACH(rle, &sc->rl, link) { 1478 if (rle->type != type) 1479 ; 1480 else if (rle->res == NULL) { 1481 device_printf(sc->dev, "WARNING: Resource not reserved? " 1482 "(type=%d, addr=%lx)\n", 1483 rle->type, rman_get_start(rle->res)); 1484 } else if (!(rman_get_flags(rle->res) & RF_ACTIVE)) { 1485 /* XXX */ 1486 } else if (starts[0] == 0xffffffff) { 1487 starts[0] = rman_get_start(rle->res); 1488 ends[0] = rman_get_end(rle->res); 1489 prefetchable[0] = 1490 rman_get_flags(rle->res) & RF_PREFETCHABLE; 1491 } else if (rman_get_end(rle->res) > ends[0] && 1492 rman_get_start(rle->res) - ends[0] < 1493 CBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] == 1494 (rman_get_flags(rle->res) & RF_PREFETCHABLE)) { 1495 ends[0] = rman_get_end(rle->res); 1496 } else if (rman_get_start(rle->res) < starts[0] && 1497 starts[0] - rman_get_end(rle->res) < 1498 CBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] == 1499 (rman_get_flags(rle->res) & RF_PREFETCHABLE)) { 1500 starts[0] = rman_get_start(rle->res); 1501 } else if (starts[1] == 0xffffffff) { 1502 starts[1] = rman_get_start(rle->res); 1503 ends[1] = rman_get_end(rle->res); 1504 prefetchable[1] = 1505 rman_get_flags(rle->res) & RF_PREFETCHABLE; 1506 } else if (rman_get_end(rle->res) > ends[1] && 1507 rman_get_start(rle->res) - ends[1] < 1508 CBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] == 1509 (rman_get_flags(rle->res) & RF_PREFETCHABLE)) { 1510 ends[1] = rman_get_end(rle->res); 1511 } else if (rman_get_start(rle->res) < starts[1] && 1512 starts[1] - rman_get_end(rle->res) < 1513 CBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] == 1514 (rman_get_flags(rle->res) & RF_PREFETCHABLE)) { 1515 starts[1] = rman_get_start(rle->res); 1516 } else { 1517 uint32_t diffs[2]; 1518 int win; 1519 1520 diffs[0] = diffs[1] = 0xffffffff; 1521 if (rman_get_start(rle->res) > ends[0]) 1522 diffs[0] = rman_get_start(rle->res) - ends[0]; 1523 else if (rman_get_end(rle->res) < starts[0]) 1524 diffs[0] = starts[0] - rman_get_end(rle->res); 1525 if (rman_get_start(rle->res) > ends[1]) 1526 diffs[1] = rman_get_start(rle->res) - ends[1]; 1527 else if (rman_get_end(rle->res) < starts[1]) 1528 diffs[1] = starts[1] - rman_get_end(rle->res); 1529 1530 win = (diffs[0] <= diffs[1])?0:1; 1531 if (rman_get_start(rle->res) > ends[win]) 1532 ends[win] = rman_get_end(rle->res); 1533 else if (rman_get_end(rle->res) < starts[win]) 1534 starts[win] = rman_get_start(rle->res); 1535 if (!(rman_get_flags(rle->res) & RF_PREFETCHABLE)) 1536 prefetchable[win] = 0; 1537 } 1538 1539 if (starts[0] != 0xffffffff) 1540 starts[0] -= starts[0] % align; 1541 if (starts[1] != 0xffffffff) 1542 starts[1] -= starts[1] % align; 1543 if (ends[0] % align != 0) 1544 ends[0] += align - ends[0] % align - 1; 1545 if (ends[1] % align != 0) 1546 ends[1] += align - ends[1] % align - 1; 1547 } 1548 1549 if (type == SYS_RES_MEMORY) { 1550 cbb_cardbus_mem_open(sc->dev, 0, starts[0], ends[0]); 1551 cbb_cardbus_mem_open(sc->dev, 1, starts[1], ends[1]); 1552 reg = pci_read_config(sc->dev, CBBR_BRIDGECTRL, 2); 1553 reg &= ~(CBBM_BRIDGECTRL_PREFETCH_0| 1554 CBBM_BRIDGECTRL_PREFETCH_1); 1555 reg |= (prefetchable[0]?CBBM_BRIDGECTRL_PREFETCH_0:0)| 1556 (prefetchable[1]?CBBM_BRIDGECTRL_PREFETCH_1:0); 1557 pci_write_config(sc->dev, CBBR_BRIDGECTRL, reg, 2); 1558 } else if (type == SYS_RES_IOPORT) { 1559 cbb_cardbus_io_open(sc->dev, 0, starts[0], ends[0]); 1560 cbb_cardbus_io_open(sc->dev, 1, starts[1], ends[1]); 1561 } 1562 } 1563 1564 static int 1565 cbb_cardbus_activate_resource(device_t brdev, device_t child, int type, 1566 int rid, struct resource *res) 1567 { 1568 int ret; 1569 1570 ret = BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child, 1571 type, rid, res); 1572 if (ret != 0) 1573 return (ret); 1574 cbb_cardbus_auto_open(device_get_softc(brdev), type); 1575 return (0); 1576 } 1577 1578 static int 1579 cbb_cardbus_deactivate_resource(device_t brdev, device_t child, int type, 1580 int rid, struct resource *res) 1581 { 1582 int ret; 1583 1584 ret = BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child, 1585 type, rid, res); 1586 if (ret != 0) 1587 return (ret); 1588 cbb_cardbus_auto_open(device_get_softc(brdev), type); 1589 return (0); 1590 } 1591 1592 static struct resource * 1593 cbb_cardbus_alloc_resource(device_t brdev, device_t child, int type, 1594 int *rid, u_long start, u_long end, u_long count, u_int flags) 1595 { 1596 struct cbb_softc *sc = device_get_softc(brdev); 1597 int tmp; 1598 struct resource *res; 1599 u_long align; 1600 1601 switch (type) { 1602 case SYS_RES_IRQ: 1603 tmp = rman_get_start(sc->irq_res); 1604 if (start > tmp || end < tmp || count != 1) { 1605 device_printf(child, "requested interrupt %ld-%ld," 1606 "count = %ld not supported by cbb\n", 1607 start, end, count); 1608 return (NULL); 1609 } 1610 start = end = tmp; 1611 flags |= RF_SHAREABLE; 1612 break; 1613 case SYS_RES_IOPORT: 1614 if (start <= cbb_start_32_io) 1615 start = cbb_start_32_io; 1616 if (end < start) 1617 end = start; 1618 break; 1619 case SYS_RES_MEMORY: 1620 if (start <= cbb_start_mem) 1621 start = cbb_start_mem; 1622 if (end < start) 1623 end = start; 1624 if (count < CBB_MEMALIGN) 1625 align = CBB_MEMALIGN; 1626 else 1627 align = count; 1628 if (align > (1 << RF_ALIGNMENT(flags))) 1629 flags = (flags & ~RF_ALIGNMENT_MASK) | 1630 rman_make_alignment_flags(align); 1631 break; 1632 } 1633 1634 res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid, 1635 start, end, count, flags & ~RF_ACTIVE); 1636 if (res == NULL) { 1637 printf("cbb alloc res fail\n"); 1638 return (NULL); 1639 } 1640 cbb_insert_res(sc, res, type, *rid); 1641 if (flags & RF_ACTIVE) 1642 if (bus_activate_resource(child, type, *rid, res) != 0) { 1643 bus_release_resource(child, type, *rid, res); 1644 return (NULL); 1645 } 1646 1647 return (res); 1648 } 1649 1650 static int 1651 cbb_cardbus_release_resource(device_t brdev, device_t child, int type, 1652 int rid, struct resource *res) 1653 { 1654 struct cbb_softc *sc = device_get_softc(brdev); 1655 int error; 1656 1657 if (rman_get_flags(res) & RF_ACTIVE) { 1658 error = bus_deactivate_resource(child, type, rid, res); 1659 if (error != 0) 1660 return (error); 1661 } 1662 cbb_remove_res(sc, res); 1663 return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child, 1664 type, rid, res)); 1665 } 1666 1667 /************************************************************************/ 1668 /* PC Card Power Functions */ 1669 /************************************************************************/ 1670 1671 static int 1672 cbb_pcic_power_enable_socket(device_t brdev, device_t child) 1673 { 1674 struct cbb_softc *sc = device_get_softc(brdev); 1675 int err; 1676 1677 DPRINTF(("cbb_pcic_socket_enable:\n")); 1678 1679 /* power down/up the socket to reset */ 1680 err = cbb_do_power(brdev); 1681 if (err) 1682 return (err); 1683 exca_reset(&sc->exca, child); 1684 1685 return (0); 1686 } 1687 1688 static void 1689 cbb_pcic_power_disable_socket(device_t brdev, device_t child) 1690 { 1691 struct cbb_softc *sc = device_get_softc(brdev); 1692 1693 DPRINTF(("cbb_pcic_socket_disable\n")); 1694 1695 /* reset signal asserting... */ 1696 exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET); 1697 DELAY(2*1000); 1698 1699 /* power down the socket */ 1700 cbb_power(brdev, CARD_OFF); 1701 exca_clrb(&sc->exca, EXCA_PWRCTL, EXCA_PWRCTL_OE); 1702 1703 /* wait 300ms until power fails (Tpf). */ 1704 DELAY(300 * 1000); 1705 } 1706 1707 /************************************************************************/ 1708 /* POWER methods */ 1709 /************************************************************************/ 1710 1711 static int 1712 cbb_power_enable_socket(device_t brdev, device_t child) 1713 { 1714 struct cbb_softc *sc = device_get_softc(brdev); 1715 1716 if (sc->flags & CBB_16BIT_CARD) 1717 return (cbb_pcic_power_enable_socket(brdev, child)); 1718 else 1719 return (cbb_cardbus_power_enable_socket(brdev, child)); 1720 } 1721 1722 static void 1723 cbb_power_disable_socket(device_t brdev, device_t child) 1724 { 1725 struct cbb_softc *sc = device_get_softc(brdev); 1726 if (sc->flags & CBB_16BIT_CARD) 1727 cbb_pcic_power_disable_socket(brdev, child); 1728 else 1729 cbb_cardbus_power_disable_socket(brdev, child); 1730 } 1731 1732 static int 1733 cbb_pcic_activate_resource(device_t brdev, device_t child, int type, int rid, 1734 struct resource *res) 1735 { 1736 struct cbb_softc *sc = device_get_softc(brdev); 1737 return (exca_activate_resource(&sc->exca, child, type, rid, res)); 1738 } 1739 1740 static int 1741 cbb_pcic_deactivate_resource(device_t brdev, device_t child, int type, 1742 int rid, struct resource *res) 1743 { 1744 struct cbb_softc *sc = device_get_softc(brdev); 1745 return (exca_deactivate_resource(&sc->exca, child, type, rid, res)); 1746 } 1747 1748 static struct resource * 1749 cbb_pcic_alloc_resource(device_t brdev, device_t child, int type, int *rid, 1750 u_long start, u_long end, u_long count, u_int flags) 1751 { 1752 struct resource *res = NULL; 1753 struct cbb_softc *sc = device_get_softc(brdev); 1754 int align; 1755 int tmp; 1756 1757 switch (type) { 1758 case SYS_RES_MEMORY: 1759 if (start < cbb_start_mem) 1760 start = cbb_start_mem; 1761 if (end < start) 1762 end = start; 1763 if (count < CBB_MEMALIGN) 1764 align = CBB_MEMALIGN; 1765 else 1766 align = count; 1767 if (align > (1 << RF_ALIGNMENT(flags))) 1768 flags = (flags & ~RF_ALIGNMENT_MASK) | 1769 rman_make_alignment_flags(align); 1770 break; 1771 case SYS_RES_IOPORT: 1772 if (start < cbb_start_16_io) 1773 start = cbb_start_16_io; 1774 if (end < start) 1775 end = start; 1776 break; 1777 case SYS_RES_IRQ: 1778 tmp = rman_get_start(sc->irq_res); 1779 if (start > tmp || end < tmp || count != 1) { 1780 device_printf(child, "requested interrupt %ld-%ld," 1781 "count = %ld not supported by cbb\n", 1782 start, end, count); 1783 return (NULL); 1784 } 1785 flags |= RF_SHAREABLE; 1786 start = end = rman_get_start(sc->irq_res); 1787 break; 1788 } 1789 res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid, 1790 start, end, count, flags & ~RF_ACTIVE); 1791 if (res == NULL) 1792 return (NULL); 1793 cbb_insert_res(sc, res, type, *rid); 1794 if (flags & RF_ACTIVE) { 1795 if (bus_activate_resource(child, type, *rid, res) != 0) { 1796 bus_release_resource(child, type, *rid, res); 1797 return (NULL); 1798 } 1799 } 1800 1801 return (res); 1802 } 1803 1804 static int 1805 cbb_pcic_release_resource(device_t brdev, device_t child, int type, 1806 int rid, struct resource *res) 1807 { 1808 struct cbb_softc *sc = device_get_softc(brdev); 1809 int error; 1810 1811 if (rman_get_flags(res) & RF_ACTIVE) { 1812 error = bus_deactivate_resource(child, type, rid, res); 1813 if (error != 0) 1814 return (error); 1815 } 1816 cbb_remove_res(sc, res); 1817 return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child, 1818 type, rid, res)); 1819 } 1820 1821 /************************************************************************/ 1822 /* PC Card methods */ 1823 /************************************************************************/ 1824 1825 static int 1826 cbb_pcic_set_res_flags(device_t brdev, device_t child, int type, int rid, 1827 uint32_t flags) 1828 { 1829 struct cbb_softc *sc = device_get_softc(brdev); 1830 struct resource *res; 1831 1832 if (type != SYS_RES_MEMORY) 1833 return (EINVAL); 1834 res = cbb_find_res(sc, type, rid); 1835 if (res == NULL) { 1836 device_printf(brdev, 1837 "set_res_flags: specified rid not found\n"); 1838 return (ENOENT); 1839 } 1840 return (exca_mem_set_flags(&sc->exca, res, flags)); 1841 } 1842 1843 static int 1844 cbb_pcic_set_memory_offset(device_t brdev, device_t child, int rid, 1845 uint32_t cardaddr, uint32_t *deltap) 1846 { 1847 struct cbb_softc *sc = device_get_softc(brdev); 1848 struct resource *res; 1849 1850 res = cbb_find_res(sc, SYS_RES_MEMORY, rid); 1851 if (res == NULL) { 1852 device_printf(brdev, 1853 "set_memory_offset: specified rid not found\n"); 1854 return (ENOENT); 1855 } 1856 return (exca_mem_set_offset(&sc->exca, res, cardaddr, deltap)); 1857 } 1858 1859 /************************************************************************/ 1860 /* BUS Methods */ 1861 /************************************************************************/ 1862 1863 1864 static int 1865 cbb_activate_resource(device_t brdev, device_t child, int type, int rid, 1866 struct resource *r) 1867 { 1868 struct cbb_softc *sc = device_get_softc(brdev); 1869 1870 if (sc->flags & CBB_16BIT_CARD) 1871 return (cbb_pcic_activate_resource(brdev, child, type, rid, r)); 1872 else 1873 return (cbb_cardbus_activate_resource(brdev, child, type, rid, 1874 r)); 1875 } 1876 1877 static int 1878 cbb_deactivate_resource(device_t brdev, device_t child, int type, 1879 int rid, struct resource *r) 1880 { 1881 struct cbb_softc *sc = device_get_softc(brdev); 1882 1883 if (sc->flags & CBB_16BIT_CARD) 1884 return (cbb_pcic_deactivate_resource(brdev, child, type, 1885 rid, r)); 1886 else 1887 return (cbb_cardbus_deactivate_resource(brdev, child, type, 1888 rid, r)); 1889 } 1890 1891 static struct resource * 1892 cbb_alloc_resource(device_t brdev, device_t child, int type, int *rid, 1893 u_long start, u_long end, u_long count, u_int flags) 1894 { 1895 struct cbb_softc *sc = device_get_softc(brdev); 1896 1897 if (sc->flags & CBB_16BIT_CARD) 1898 return (cbb_pcic_alloc_resource(brdev, child, type, rid, 1899 start, end, count, flags)); 1900 else 1901 return (cbb_cardbus_alloc_resource(brdev, child, type, rid, 1902 start, end, count, flags)); 1903 } 1904 1905 static int 1906 cbb_release_resource(device_t brdev, device_t child, int type, int rid, 1907 struct resource *r) 1908 { 1909 struct cbb_softc *sc = device_get_softc(brdev); 1910 1911 if (sc->flags & CBB_16BIT_CARD) 1912 return (cbb_pcic_release_resource(brdev, child, type, 1913 rid, r)); 1914 else 1915 return (cbb_cardbus_release_resource(brdev, child, type, 1916 rid, r)); 1917 } 1918 1919 static int 1920 cbb_read_ivar(device_t brdev, device_t child, int which, uintptr_t *result) 1921 { 1922 struct cbb_softc *sc = device_get_softc(brdev); 1923 1924 switch (which) { 1925 case PCIB_IVAR_BUS: 1926 *result = sc->secbus; 1927 return (0); 1928 } 1929 return (ENOENT); 1930 } 1931 1932 static int 1933 cbb_write_ivar(device_t brdev, device_t child, int which, uintptr_t value) 1934 { 1935 struct cbb_softc *sc = device_get_softc(brdev); 1936 1937 switch (which) { 1938 case PCIB_IVAR_BUS: 1939 sc->secbus = value; 1940 break; 1941 } 1942 return (ENOENT); 1943 } 1944 1945 /************************************************************************/ 1946 /* PCI compat methods */ 1947 /************************************************************************/ 1948 1949 static int 1950 cbb_maxslots(device_t brdev) 1951 { 1952 return (0); 1953 } 1954 1955 static uint32_t 1956 cbb_read_config(device_t brdev, int b, int s, int f, int reg, int width) 1957 { 1958 /* 1959 * Pass through to the next ppb up the chain (i.e. our grandparent). 1960 */ 1961 return (PCIB_READ_CONFIG(device_get_parent(device_get_parent(brdev)), 1962 b, s, f, reg, width)); 1963 } 1964 1965 static void 1966 cbb_write_config(device_t brdev, int b, int s, int f, int reg, uint32_t val, 1967 int width) 1968 { 1969 /* 1970 * Pass through to the next ppb up the chain (i.e. our grandparent). 1971 */ 1972 PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(brdev)), 1973 b, s, f, reg, val, width); 1974 } 1975 1976 static int 1977 cbb_suspend(device_t self) 1978 { 1979 int error = 0; 1980 struct cbb_softc *sc = device_get_softc(self); 1981 1982 cbb_set(sc, CBB_SOCKET_MASK, 0); /* Quiet hardware */ 1983 bus_teardown_intr(self, sc->irq_res, sc->intrhand); 1984 sc->flags &= ~CBB_CARD_OK; /* Card is bogus now */ 1985 error = bus_generic_suspend(self); 1986 return (error); 1987 } 1988 1989 static int 1990 cbb_resume(device_t self) 1991 { 1992 int error = 0; 1993 struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(self); 1994 uint32_t tmp; 1995 1996 /* 1997 * Some BIOSes will not save the BARs for the pci chips, so we 1998 * must do it ourselves. If the BAR is reset to 0 for an I/O 1999 * device, it will read back as 0x1, so no explicit test for 2000 * memory devices are needed. 2001 * 2002 * Note: The PCI bus code should do this automatically for us on 2003 * suspend/resume, but until it does, we have to cope. 2004 */ 2005 pci_write_config(self, CBBR_SOCKBASE, rman_get_start(sc->base_res), 4); 2006 DEVPRINTF((self, "PCI Memory allocated: %08lx\n", 2007 rman_get_start(sc->base_res))); 2008 2009 cbb_chipinit(sc); 2010 2011 /* reset interrupt -- Do we really need to do this? */ 2012 tmp = cbb_get(sc, CBB_SOCKET_EVENT); 2013 cbb_set(sc, CBB_SOCKET_EVENT, tmp); 2014 2015 /* re-establish the interrupt. */ 2016 if (bus_setup_intr(self, sc->irq_res, INTR_TYPE_AV | INTR_MPSAFE, 2017 cbb_intr, sc, &sc->intrhand)) { 2018 device_printf(self, "couldn't re-establish interrupt"); 2019 bus_release_resource(self, SYS_RES_IRQ, 0, sc->irq_res); 2020 bus_release_resource(self, SYS_RES_MEMORY, CBBR_SOCKBASE, 2021 sc->base_res); 2022 sc->irq_res = NULL; 2023 sc->base_res = NULL; 2024 return (ENOMEM); 2025 } 2026 2027 /* CSC Interrupt: Card detect interrupt on */ 2028 cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD); 2029 2030 /* Signal the thread to wakeup. */ 2031 mtx_lock(&sc->mtx); 2032 cv_signal(&sc->cv); 2033 mtx_unlock(&sc->mtx); 2034 2035 error = bus_generic_resume(self); 2036 2037 return (error); 2038 } 2039 2040 static int 2041 cbb_child_present(device_t self) 2042 { 2043 struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(self); 2044 uint32_t sockstate; 2045 2046 sockstate = cbb_get(sc, CBB_SOCKET_STATE); 2047 return (CBB_CARD_PRESENT(sockstate) && 2048 (sc->flags & CBB_CARD_OK) == CBB_CARD_OK); 2049 } 2050 2051 static device_method_t cbb_methods[] = { 2052 /* Device interface */ 2053 DEVMETHOD(device_probe, cbb_probe), 2054 DEVMETHOD(device_attach, cbb_attach), 2055 DEVMETHOD(device_detach, cbb_detach), 2056 DEVMETHOD(device_shutdown, cbb_shutdown), 2057 DEVMETHOD(device_suspend, cbb_suspend), 2058 DEVMETHOD(device_resume, cbb_resume), 2059 2060 /* bus methods */ 2061 DEVMETHOD(bus_print_child, bus_generic_print_child), 2062 DEVMETHOD(bus_read_ivar, cbb_read_ivar), 2063 DEVMETHOD(bus_write_ivar, cbb_write_ivar), 2064 DEVMETHOD(bus_alloc_resource, cbb_alloc_resource), 2065 DEVMETHOD(bus_release_resource, cbb_release_resource), 2066 DEVMETHOD(bus_activate_resource, cbb_activate_resource), 2067 DEVMETHOD(bus_deactivate_resource, cbb_deactivate_resource), 2068 DEVMETHOD(bus_driver_added, cbb_driver_added), 2069 DEVMETHOD(bus_child_detached, cbb_child_detached), 2070 DEVMETHOD(bus_setup_intr, cbb_setup_intr), 2071 DEVMETHOD(bus_teardown_intr, cbb_teardown_intr), 2072 DEVMETHOD(bus_child_present, cbb_child_present), 2073 2074 /* 16-bit card interface */ 2075 DEVMETHOD(card_set_res_flags, cbb_pcic_set_res_flags), 2076 DEVMETHOD(card_set_memory_offset, cbb_pcic_set_memory_offset), 2077 2078 /* power interface */ 2079 DEVMETHOD(power_enable_socket, cbb_power_enable_socket), 2080 DEVMETHOD(power_disable_socket, cbb_power_disable_socket), 2081 2082 /* pcib compatibility interface */ 2083 DEVMETHOD(pcib_maxslots, cbb_maxslots), 2084 DEVMETHOD(pcib_read_config, cbb_read_config), 2085 DEVMETHOD(pcib_write_config, cbb_write_config), 2086 {0,0} 2087 }; 2088 2089 static driver_t cbb_driver = { 2090 "cbb", 2091 cbb_methods, 2092 sizeof(struct cbb_softc) 2093 }; 2094 2095 static devclass_t cbb_devclass; 2096 2097 DRIVER_MODULE(cbb, pci, cbb_driver, cbb_devclass, 0, 0); 2098 MODULE_VERSION(cbb, 1); 2099 MODULE_DEPEND(cbb, exca, 1, 1, 1); 2100