1 /*- 2 * Copyright (c) 2000 Katsurajima Naoto <raven@katsurajima.seya.yokohama.jp> 3 * Copyright (c) 2001 Cameron Grant <cg@freebsd.org> 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, WHETHERIN 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 THEPOSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <dev/sound/pcm/sound.h> 29 #include <dev/sound/pcm/ac97.h> 30 #include <dev/sound/pci/ich.h> 31 32 #include <dev/pci/pcireg.h> 33 #include <dev/pci/pcivar.h> 34 35 SND_DECLARE_FILE("$FreeBSD$"); 36 37 /* -------------------------------------------------------------------- */ 38 39 #define ICH_TIMEOUT 1000 /* semaphore timeout polling count */ 40 #define ICH_DTBL_LENGTH 32 41 #define ICH_DEFAULT_BUFSZ 16384 42 #define ICH_MAX_BUFSZ 65536 43 #define ICH_MIN_BUFSZ 4096 44 #define ICH_DEFAULT_BLKCNT 2 45 #define ICH_MAX_BLKCNT 32 46 #define ICH_MIN_BLKCNT 2 47 #define ICH_MIN_BLKSZ 64 48 49 #define INTEL_VENDORID 0x8086 50 #define SIS_VENDORID 0x1039 51 #define NVIDIA_VENDORID 0x10de 52 #define AMD_VENDORID 0x1022 53 54 #define INTEL_82440MX 0x7195 55 #define INTEL_82801AA 0x2415 56 #define INTEL_82801AB 0x2425 57 #define INTEL_82801BA 0x2445 58 #define INTEL_82801CA 0x2485 59 #define INTEL_82801DB 0x24c5 /* ICH4 needs special handling */ 60 #define INTEL_82801EB 0x24d5 /* ICH5 needs to be treated as ICH4 */ 61 #define INTEL_6300ESB 0x25a6 /* 6300ESB needs to be treated as ICH4 */ 62 #define INTEL_82801FB 0x266e /* ICH6 needs to be treated as ICH4 */ 63 #define INTEL_82801GB 0x27de /* ICH7 needs to be treated as ICH4 */ 64 #define SIS_7012 0x7012 /* SiS 7012 needs special handling */ 65 #define NVIDIA_NFORCE 0x01b1 66 #define NVIDIA_NFORCE2 0x006a 67 #define NVIDIA_NFORCE2_400 0x008a 68 #define NVIDIA_NFORCE3 0x00da 69 #define NVIDIA_NFORCE3_250 0x00ea 70 #define NVIDIA_NFORCE4 0x0059 71 #define NVIDIA_NFORCE_410_MCP 0x026b 72 #define NVIDIA_NFORCE4_MCP 0x003a 73 #define AMD_768 0x7445 74 #define AMD_8111 0x746d 75 76 #define ICH_LOCK(sc) snd_mtxlock((sc)->ich_lock) 77 #define ICH_UNLOCK(sc) snd_mtxunlock((sc)->ich_lock) 78 #define ICH_LOCK_ASSERT(sc) snd_mtxassert((sc)->ich_lock) 79 80 #if 0 81 #define ICH_DEBUG(stmt) do { \ 82 stmt \ 83 } while(0) 84 #else 85 #define ICH_DEBUG(...) 86 #endif 87 88 #define ICH_CALIBRATE_DONE (1 << 0) 89 #define ICH_IGNORE_PCR (1 << 1) 90 #define ICH_IGNORE_RESET (1 << 2) 91 #define ICH_FIXED_RATE (1 << 3) 92 #define ICH_DMA_NOCACHE (1 << 4) 93 #define ICH_HIGH_LATENCY (1 << 5) 94 95 static const struct ich_type { 96 uint16_t vendor; 97 uint16_t devid; 98 uint32_t options; 99 #define PROBE_LOW 0x01 100 char *name; 101 } ich_devs[] = { 102 { INTEL_VENDORID, INTEL_82440MX, 0, 103 "Intel 440MX" }, 104 { INTEL_VENDORID, INTEL_82801AA, 0, 105 "Intel ICH (82801AA)" }, 106 { INTEL_VENDORID, INTEL_82801AB, 0, 107 "Intel ICH (82801AB)" }, 108 { INTEL_VENDORID, INTEL_82801BA, 0, 109 "Intel ICH2 (82801BA)" }, 110 { INTEL_VENDORID, INTEL_82801CA, 0, 111 "Intel ICH3 (82801CA)" }, 112 { INTEL_VENDORID, INTEL_82801DB, PROBE_LOW, 113 "Intel ICH4 (82801DB)" }, 114 { INTEL_VENDORID, INTEL_82801EB, PROBE_LOW, 115 "Intel ICH5 (82801EB)" }, 116 { INTEL_VENDORID, INTEL_6300ESB, PROBE_LOW, 117 "Intel 6300ESB" }, 118 { INTEL_VENDORID, INTEL_82801FB, PROBE_LOW, 119 "Intel ICH6 (82801FB)" }, 120 { INTEL_VENDORID, INTEL_82801GB, PROBE_LOW, 121 "Intel ICH7 (82801GB)" }, 122 { SIS_VENDORID, SIS_7012, 0, 123 "SiS 7012" }, 124 { NVIDIA_VENDORID, NVIDIA_NFORCE, 0, 125 "nVidia nForce" }, 126 { NVIDIA_VENDORID, NVIDIA_NFORCE2, 0, 127 "nVidia nForce2" }, 128 { NVIDIA_VENDORID, NVIDIA_NFORCE2_400, 0, 129 "nVidia nForce2 400" }, 130 { NVIDIA_VENDORID, NVIDIA_NFORCE3, 0, 131 "nVidia nForce3" }, 132 { NVIDIA_VENDORID, NVIDIA_NFORCE3_250, 0, 133 "nVidia nForce3 250" }, 134 { NVIDIA_VENDORID, NVIDIA_NFORCE4, 0, 135 "nVidia nForce4" }, 136 { NVIDIA_VENDORID, NVIDIA_NFORCE_410_MCP, 0, 137 "nVidia nForce 410 MCP" }, 138 { NVIDIA_VENDORID, NVIDIA_NFORCE4_MCP, 0, 139 "nVidia nForce 4 MCP" }, 140 { AMD_VENDORID, AMD_768, 0, 141 "AMD-768" }, 142 { AMD_VENDORID, AMD_8111, 0, 143 "AMD-8111" } 144 }; 145 146 /* buffer descriptor */ 147 struct ich_desc { 148 volatile uint32_t buffer; 149 volatile uint32_t length; 150 }; 151 152 struct sc_info; 153 154 /* channel registers */ 155 struct sc_chinfo { 156 uint32_t num:8, run:1, run_save:1; 157 uint32_t blksz, blkcnt, spd; 158 uint32_t regbase, spdreg; 159 uint32_t imask; 160 uint32_t civ; 161 162 struct snd_dbuf *buffer; 163 struct pcm_channel *channel; 164 struct sc_info *parent; 165 166 struct ich_desc *dtbl; 167 bus_addr_t desc_addr; 168 }; 169 170 /* device private data */ 171 struct sc_info { 172 device_t dev; 173 int hasvra, hasvrm, hasmic; 174 unsigned int chnum, bufsz, blkcnt; 175 int sample_size, swap_reg; 176 177 struct resource *nambar, *nabmbar, *irq; 178 int regtype, nambarid, nabmbarid, irqid; 179 bus_space_tag_t nambart, nabmbart; 180 bus_space_handle_t nambarh, nabmbarh; 181 bus_dma_tag_t dmat, chan_dmat; 182 bus_dmamap_t dtmap; 183 void *ih; 184 185 struct ac97_info *codec; 186 struct sc_chinfo ch[3]; 187 int ac97rate; 188 struct ich_desc *dtbl; 189 unsigned int dtbl_size; 190 bus_addr_t desc_addr; 191 struct intr_config_hook intrhook; 192 uint16_t vendor; 193 uint16_t devid; 194 uint32_t flags; 195 struct mtx *ich_lock; 196 }; 197 198 /* -------------------------------------------------------------------- */ 199 200 static uint32_t ich_fmt[] = { 201 AFMT_STEREO | AFMT_S16_LE, 202 0 203 }; 204 static struct pcmchan_caps ich_vrcaps = {8000, 48000, ich_fmt, 0}; 205 static struct pcmchan_caps ich_caps = {48000, 48000, ich_fmt, 0}; 206 207 /* -------------------------------------------------------------------- */ 208 /* Hardware */ 209 static __inline uint32_t 210 ich_rd(struct sc_info *sc, int regno, int size) 211 { 212 switch (size) { 213 case 1: 214 return (bus_space_read_1(sc->nabmbart, sc->nabmbarh, regno)); 215 case 2: 216 return (bus_space_read_2(sc->nabmbart, sc->nabmbarh, regno)); 217 case 4: 218 return (bus_space_read_4(sc->nabmbart, sc->nabmbarh, regno)); 219 default: 220 return (0xffffffff); 221 } 222 } 223 224 static __inline void 225 ich_wr(struct sc_info *sc, int regno, uint32_t data, int size) 226 { 227 switch (size) { 228 case 1: 229 bus_space_write_1(sc->nabmbart, sc->nabmbarh, regno, data); 230 break; 231 case 2: 232 bus_space_write_2(sc->nabmbart, sc->nabmbarh, regno, data); 233 break; 234 case 4: 235 bus_space_write_4(sc->nabmbart, sc->nabmbarh, regno, data); 236 break; 237 } 238 } 239 240 /* ac97 codec */ 241 static int 242 ich_waitcd(void *devinfo) 243 { 244 struct sc_info *sc = (struct sc_info *)devinfo; 245 uint32_t data; 246 int i; 247 248 for (i = 0; i < ICH_TIMEOUT; i++) { 249 data = ich_rd(sc, ICH_REG_ACC_SEMA, 1); 250 if ((data & 0x01) == 0) 251 return (0); 252 DELAY(1); 253 } 254 if ((sc->flags & ICH_IGNORE_PCR) != 0) 255 return (0); 256 device_printf(sc->dev, "CODEC semaphore timeout\n"); 257 return (ETIMEDOUT); 258 } 259 260 static int 261 ich_rdcd(kobj_t obj, void *devinfo, int regno) 262 { 263 struct sc_info *sc = (struct sc_info *)devinfo; 264 265 regno &= 0xff; 266 ich_waitcd(sc); 267 268 return (bus_space_read_2(sc->nambart, sc->nambarh, regno)); 269 } 270 271 static int 272 ich_wrcd(kobj_t obj, void *devinfo, int regno, uint16_t data) 273 { 274 struct sc_info *sc = (struct sc_info *)devinfo; 275 276 regno &= 0xff; 277 ich_waitcd(sc); 278 bus_space_write_2(sc->nambart, sc->nambarh, regno, data); 279 280 return (0); 281 } 282 283 static kobj_method_t ich_ac97_methods[] = { 284 KOBJMETHOD(ac97_read, ich_rdcd), 285 KOBJMETHOD(ac97_write, ich_wrcd), 286 { 0, 0 } 287 }; 288 AC97_DECLARE(ich_ac97); 289 290 /* -------------------------------------------------------------------- */ 291 /* common routines */ 292 293 static void 294 ich_filldtbl(struct sc_chinfo *ch) 295 { 296 struct sc_info *sc = ch->parent; 297 uint32_t base; 298 int i; 299 300 base = sndbuf_getbufaddr(ch->buffer); 301 if ((ch->blksz * ch->blkcnt) > sndbuf_getmaxsize(ch->buffer)) 302 ch->blksz = sndbuf_getmaxsize(ch->buffer) / ch->blkcnt; 303 if ((sndbuf_getblksz(ch->buffer) != ch->blksz || 304 sndbuf_getblkcnt(ch->buffer) != ch->blkcnt) && 305 sndbuf_resize(ch->buffer, ch->blkcnt, ch->blksz) != 0) 306 device_printf(sc->dev, "%s: failed blksz=%u blkcnt=%u\n", 307 __func__, ch->blksz, ch->blkcnt); 308 ch->blksz = sndbuf_getblksz(ch->buffer); 309 310 for (i = 0; i < ICH_DTBL_LENGTH; i++) { 311 ch->dtbl[i].buffer = base + (ch->blksz * (i % ch->blkcnt)); 312 ch->dtbl[i].length = ICH_BDC_IOC 313 | (ch->blksz / ch->parent->sample_size); 314 } 315 } 316 317 static int 318 ich_resetchan(struct sc_info *sc, int num) 319 { 320 int i, cr, regbase; 321 322 if (num == 0) 323 regbase = ICH_REG_PO_BASE; 324 else if (num == 1) 325 regbase = ICH_REG_PI_BASE; 326 else if (num == 2) 327 regbase = ICH_REG_MC_BASE; 328 else 329 return (ENXIO); 330 331 ich_wr(sc, regbase + ICH_REG_X_CR, 0, 1); 332 #if 1 333 /* This may result in no sound output on NForce 2 MBs, see PR 73987 */ 334 DELAY(100); 335 #else 336 (void)ich_rd(sc, regbase + ICH_REG_X_CR, 1); 337 #endif 338 ich_wr(sc, regbase + ICH_REG_X_CR, ICH_X_CR_RR, 1); 339 for (i = 0; i < ICH_TIMEOUT; i++) { 340 cr = ich_rd(sc, regbase + ICH_REG_X_CR, 1); 341 if (cr == 0) 342 return (0); 343 DELAY(1); 344 } 345 346 if (sc->flags & ICH_IGNORE_RESET) 347 return (0); 348 #if 0 349 else if (sc->vendor == NVIDIA_VENDORID) { 350 sc->flags |= ICH_IGNORE_RESET; 351 device_printf(sc->dev, "ignoring reset failure!\n"); 352 return (0); 353 } 354 #endif 355 356 device_printf(sc->dev, "cannot reset channel %d\n", num); 357 return (ENXIO); 358 } 359 360 /* -------------------------------------------------------------------- */ 361 /* channel interface */ 362 363 static void * 364 ichchan_init(kobj_t obj, void *devinfo, struct snd_dbuf *b, struct pcm_channel *c, int dir) 365 { 366 struct sc_info *sc = devinfo; 367 struct sc_chinfo *ch; 368 unsigned int num; 369 370 ICH_LOCK(sc); 371 num = sc->chnum++; 372 ch = &sc->ch[num]; 373 ch->num = num; 374 ch->buffer = b; 375 ch->channel = c; 376 ch->parent = sc; 377 ch->run = 0; 378 ch->dtbl = sc->dtbl + (ch->num * ICH_DTBL_LENGTH); 379 ch->desc_addr = sc->desc_addr + 380 (ch->num * ICH_DTBL_LENGTH * sizeof(struct ich_desc)); 381 ch->blkcnt = sc->blkcnt; 382 ch->blksz = sc->bufsz / ch->blkcnt; 383 384 switch(ch->num) { 385 case 0: /* play */ 386 KASSERT(dir == PCMDIR_PLAY, ("wrong direction")); 387 ch->regbase = ICH_REG_PO_BASE; 388 ch->spdreg = (sc->hasvra) ? AC97_REGEXT_FDACRATE : 0; 389 ch->imask = ICH_GLOB_STA_POINT; 390 break; 391 392 case 1: /* record */ 393 KASSERT(dir == PCMDIR_REC, ("wrong direction")); 394 ch->regbase = ICH_REG_PI_BASE; 395 ch->spdreg = (sc->hasvra) ? AC97_REGEXT_LADCRATE : 0; 396 ch->imask = ICH_GLOB_STA_PIINT; 397 break; 398 399 case 2: /* mic */ 400 KASSERT(dir == PCMDIR_REC, ("wrong direction")); 401 ch->regbase = ICH_REG_MC_BASE; 402 ch->spdreg = (sc->hasvrm) ? AC97_REGEXT_MADCRATE : 0; 403 ch->imask = ICH_GLOB_STA_MINT; 404 break; 405 406 default: 407 return (NULL); 408 } 409 410 if (sc->flags & ICH_FIXED_RATE) 411 ch->spdreg = 0; 412 413 ICH_UNLOCK(sc); 414 if (sndbuf_alloc(ch->buffer, sc->chan_dmat, 415 ((sc->flags & ICH_DMA_NOCACHE) ? BUS_DMA_NOCACHE : 0), 416 sc->bufsz) != 0) 417 return (NULL); 418 419 ICH_LOCK(sc); 420 ich_wr(sc, ch->regbase + ICH_REG_X_BDBAR, (uint32_t)(ch->desc_addr), 4); 421 ICH_UNLOCK(sc); 422 423 return (ch); 424 } 425 426 static int 427 ichchan_setformat(kobj_t obj, void *data, uint32_t format) 428 { 429 430 ICH_DEBUG( 431 struct sc_chinfo *ch = data; 432 struct sc_info *sc = ch->parent; 433 if (!(sc->flags & ICH_CALIBRATE_DONE)) 434 device_printf(sc->dev, 435 "WARNING: %s() called before calibration!\n", 436 __func__); 437 ); 438 439 return (0); 440 } 441 442 static int 443 ichchan_setspeed(kobj_t obj, void *data, uint32_t speed) 444 { 445 struct sc_chinfo *ch = data; 446 struct sc_info *sc = ch->parent; 447 448 ICH_DEBUG( 449 if (!(sc->flags & ICH_CALIBRATE_DONE)) 450 device_printf(sc->dev, 451 "WARNING: %s() called before calibration!\n", 452 __func__); 453 ); 454 455 if (ch->spdreg) { 456 int r, ac97rate; 457 458 ICH_LOCK(sc); 459 if (sc->ac97rate <= 32000 || sc->ac97rate >= 64000) 460 sc->ac97rate = 48000; 461 ac97rate = sc->ac97rate; 462 ICH_UNLOCK(sc); 463 r = (speed * 48000) / ac97rate; 464 /* 465 * Cast the return value of ac97_setrate() to uint64 so that 466 * the math don't overflow into the negative range. 467 */ 468 ch->spd = ((uint64_t)ac97_setrate(sc->codec, ch->spdreg, r) * 469 ac97rate) / 48000; 470 } else { 471 ch->spd = 48000; 472 } 473 return (ch->spd); 474 } 475 476 static int 477 ichchan_setblocksize(kobj_t obj, void *data, uint32_t blocksize) 478 { 479 struct sc_chinfo *ch = data; 480 struct sc_info *sc = ch->parent; 481 482 ICH_DEBUG( 483 if (!(sc->flags & ICH_CALIBRATE_DONE)) 484 device_printf(sc->dev, 485 "WARNING: %s() called before calibration!\n", 486 __func__); 487 ); 488 489 if (sc->flags & ICH_HIGH_LATENCY) 490 blocksize = sndbuf_getmaxsize(ch->buffer) / ch->blkcnt; 491 492 if (blocksize < ICH_MIN_BLKSZ) 493 blocksize = ICH_MIN_BLKSZ; 494 blocksize &= ~(ICH_MIN_BLKSZ - 1); 495 ch->blksz = blocksize; 496 ich_filldtbl(ch); 497 ICH_LOCK(sc); 498 ich_wr(sc, ch->regbase + ICH_REG_X_LVI, ch->blkcnt - 1, 1); 499 ICH_UNLOCK(sc); 500 501 return (ch->blksz); 502 } 503 504 static int 505 ichchan_trigger(kobj_t obj, void *data, int go) 506 { 507 struct sc_chinfo *ch = data; 508 struct sc_info *sc = ch->parent; 509 510 ICH_DEBUG( 511 if (!(sc->flags & ICH_CALIBRATE_DONE)) 512 device_printf(sc->dev, 513 "WARNING: %s() called before calibration!\n", 514 __func__); 515 ); 516 517 switch (go) { 518 case PCMTRIG_START: 519 ch->run = 1; 520 ICH_LOCK(sc); 521 ich_wr(sc, ch->regbase + ICH_REG_X_BDBAR, (uint32_t)(ch->desc_addr), 4); 522 ich_wr(sc, ch->regbase + ICH_REG_X_CR, ICH_X_CR_RPBM | ICH_X_CR_LVBIE | ICH_X_CR_IOCE, 1); 523 ICH_UNLOCK(sc); 524 break; 525 526 case PCMTRIG_ABORT: 527 ICH_LOCK(sc); 528 ich_resetchan(sc, ch->num); 529 ICH_UNLOCK(sc); 530 ch->run = 0; 531 break; 532 } 533 return (0); 534 } 535 536 static int 537 ichchan_getptr(kobj_t obj, void *data) 538 { 539 struct sc_chinfo *ch = data; 540 struct sc_info *sc = ch->parent; 541 uint32_t pos; 542 543 ICH_DEBUG( 544 if (!(sc->flags & ICH_CALIBRATE_DONE)) 545 device_printf(sc->dev, 546 "WARNING: %s() called before calibration!\n", 547 __func__); 548 ); 549 550 ICH_LOCK(sc); 551 ch->civ = ich_rd(sc, ch->regbase + ICH_REG_X_CIV, 1) % ch->blkcnt; 552 ICH_UNLOCK(sc); 553 554 pos = ch->civ * ch->blksz; 555 556 return (pos); 557 } 558 559 static struct pcmchan_caps * 560 ichchan_getcaps(kobj_t obj, void *data) 561 { 562 struct sc_chinfo *ch = data; 563 564 ICH_DEBUG( 565 struct sc_info *sc = ch->parent; 566 567 if (!(sc->flags & ICH_CALIBRATE_DONE)) 568 device_printf(ch->parent->dev, 569 "WARNING: %s() called before calibration!\n", 570 __func__); 571 ); 572 573 return ((ch->spdreg) ? &ich_vrcaps : &ich_caps); 574 } 575 576 static kobj_method_t ichchan_methods[] = { 577 KOBJMETHOD(channel_init, ichchan_init), 578 KOBJMETHOD(channel_setformat, ichchan_setformat), 579 KOBJMETHOD(channel_setspeed, ichchan_setspeed), 580 KOBJMETHOD(channel_setblocksize, ichchan_setblocksize), 581 KOBJMETHOD(channel_trigger, ichchan_trigger), 582 KOBJMETHOD(channel_getptr, ichchan_getptr), 583 KOBJMETHOD(channel_getcaps, ichchan_getcaps), 584 { 0, 0 } 585 }; 586 CHANNEL_DECLARE(ichchan); 587 588 /* -------------------------------------------------------------------- */ 589 /* The interrupt handler */ 590 591 static void 592 ich_intr(void *p) 593 { 594 struct sc_info *sc = (struct sc_info *)p; 595 struct sc_chinfo *ch; 596 uint32_t cbi, lbi, lvi, st, gs; 597 int i; 598 599 ICH_LOCK(sc); 600 601 ICH_DEBUG( 602 if (!(sc->flags & ICH_CALIBRATE_DONE)) 603 device_printf(sc->dev, 604 "WARNING: %s() called before calibration!\n", 605 __func__); 606 ); 607 608 gs = ich_rd(sc, ICH_REG_GLOB_STA, 4) & ICH_GLOB_STA_IMASK; 609 if (gs & (ICH_GLOB_STA_PRES | ICH_GLOB_STA_SRES)) { 610 /* Clear resume interrupt(s) - nothing doing with them */ 611 ich_wr(sc, ICH_REG_GLOB_STA, gs, 4); 612 } 613 gs &= ~(ICH_GLOB_STA_PRES | ICH_GLOB_STA_SRES); 614 615 for (i = 0; i < 3; i++) { 616 ch = &sc->ch[i]; 617 if ((ch->imask & gs) == 0) 618 continue; 619 gs &= ~ch->imask; 620 st = ich_rd(sc, ch->regbase + 621 ((sc->swap_reg) ? ICH_REG_X_PICB : ICH_REG_X_SR), 622 2); 623 st &= ICH_X_SR_FIFOE | ICH_X_SR_BCIS | ICH_X_SR_LVBCI; 624 if (st & (ICH_X_SR_BCIS | ICH_X_SR_LVBCI)) { 625 /* block complete - update buffer */ 626 if (ch->run) { 627 ICH_UNLOCK(sc); 628 chn_intr(ch->channel); 629 ICH_LOCK(sc); 630 } 631 lvi = ich_rd(sc, ch->regbase + ICH_REG_X_LVI, 1); 632 cbi = ch->civ % ch->blkcnt; 633 if (cbi == 0) 634 cbi = ch->blkcnt - 1; 635 else 636 cbi--; 637 lbi = lvi % ch->blkcnt; 638 if (cbi >= lbi) 639 lvi += cbi - lbi; 640 else 641 lvi += cbi + ch->blkcnt - lbi; 642 lvi %= ICH_DTBL_LENGTH; 643 ich_wr(sc, ch->regbase + ICH_REG_X_LVI, lvi, 1); 644 645 } 646 /* clear status bit */ 647 ich_wr(sc, ch->regbase + 648 ((sc->swap_reg) ? ICH_REG_X_PICB : ICH_REG_X_SR), 649 st, 2); 650 } 651 ICH_UNLOCK(sc); 652 if (gs != 0) { 653 device_printf(sc->dev, 654 "Unhandled interrupt, gs_intr = %x\n", gs); 655 } 656 } 657 658 /* ------------------------------------------------------------------------- */ 659 /* Sysctl to control ac97 speed (some boards appear to end up using 660 * XTAL_IN rather than BIT_CLK for link timing). 661 */ 662 663 static int 664 ich_initsys(struct sc_info* sc) 665 { 666 #ifdef SND_DYNSYSCTL 667 /* XXX: this should move to a device specific sysctl "dev.pcm.X.yyy" 668 via device_get_sysctl_*() as discussed on multimedia@ in msg-id 669 <861wujij2q.fsf@xps.des.no> */ 670 SYSCTL_ADD_INT(device_get_sysctl_ctx(sc->dev), 671 SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev)), 672 OID_AUTO, "ac97rate", CTLFLAG_RW, 673 &sc->ac97rate, 48000, 674 "AC97 link rate (default = 48000)"); 675 #endif /* SND_DYNSYSCTL */ 676 return (0); 677 } 678 679 static void 680 ich_setstatus(struct sc_info *sc) 681 { 682 char status[SND_STATUSLEN]; 683 684 snprintf(status, SND_STATUSLEN, 685 "at io 0x%lx, 0x%lx irq %ld bufsz %u %s", 686 rman_get_start(sc->nambar), rman_get_start(sc->nabmbar), 687 rman_get_start(sc->irq), sc->bufsz,PCM_KLDSTRING(snd_ich)); 688 689 if (bootverbose && (sc->flags & ICH_DMA_NOCACHE)) 690 device_printf(sc->dev, 691 "PCI Master abort workaround enabled\n"); 692 693 pcm_setstatus(sc->dev, status); 694 } 695 696 /* -------------------------------------------------------------------- */ 697 /* Calibrate card to determine the clock source. The source maybe a 698 * function of the ac97 codec initialization code (to be investigated). 699 */ 700 701 static void 702 ich_calibrate(void *arg) 703 { 704 struct sc_info *sc; 705 struct sc_chinfo *ch; 706 struct timeval t1, t2; 707 uint8_t ociv, nciv; 708 uint32_t wait_us, actual_48k_rate, oblkcnt; 709 710 sc = (struct sc_info *)arg; 711 ICH_LOCK(sc); 712 ch = &sc->ch[1]; 713 714 if (sc->intrhook.ich_func != NULL) { 715 config_intrhook_disestablish(&sc->intrhook); 716 sc->intrhook.ich_func = NULL; 717 } 718 719 /* 720 * Grab audio from input for fixed interval and compare how 721 * much we actually get with what we expect. Interval needs 722 * to be sufficiently short that no interrupts are 723 * generated. 724 */ 725 726 KASSERT(ch->regbase == ICH_REG_PI_BASE, ("wrong direction")); 727 728 oblkcnt = ch->blkcnt; 729 ch->blkcnt = 2; 730 sc->flags |= ICH_CALIBRATE_DONE; 731 ICH_UNLOCK(sc); 732 ichchan_setblocksize(0, ch, sndbuf_getmaxsize(ch->buffer) >> 1); 733 ICH_LOCK(sc); 734 sc->flags &= ~ICH_CALIBRATE_DONE; 735 736 /* 737 * our data format is stereo, 16 bit so each sample is 4 bytes. 738 * assuming we get 48000 samples per second, we get 192000 bytes/sec. 739 * we're going to start recording with interrupts disabled and measure 740 * the time taken for one block to complete. we know the block size, 741 * we know the time in microseconds, we calculate the sample rate: 742 * 743 * actual_rate [bps] = bytes / (time [s] * 4) 744 * actual_rate [bps] = (bytes * 1000000) / (time [us] * 4) 745 * actual_rate [Hz] = (bytes * 250000) / time [us] 746 */ 747 748 /* prepare */ 749 ociv = ich_rd(sc, ch->regbase + ICH_REG_X_CIV, 1); 750 nciv = ociv; 751 ich_wr(sc, ch->regbase + ICH_REG_X_BDBAR, (uint32_t)(ch->desc_addr), 4); 752 753 /* start */ 754 microtime(&t1); 755 ich_wr(sc, ch->regbase + ICH_REG_X_CR, ICH_X_CR_RPBM, 1); 756 757 /* wait */ 758 do { 759 microtime(&t2); 760 if (t2.tv_sec - t1.tv_sec > 1) 761 break; 762 nciv = ich_rd(sc, ch->regbase + ICH_REG_X_CIV, 1); 763 } while (nciv == ociv); 764 765 /* stop */ 766 ich_wr(sc, ch->regbase + ICH_REG_X_CR, 0, 1); 767 768 /* reset */ 769 DELAY(100); 770 ich_wr(sc, ch->regbase + ICH_REG_X_CR, ICH_X_CR_RR, 1); 771 ch->blkcnt = oblkcnt; 772 773 /* turn time delta into us */ 774 wait_us = ((t2.tv_sec - t1.tv_sec) * 1000000) + t2.tv_usec - t1.tv_usec; 775 776 if (nciv == ociv) { 777 device_printf(sc->dev, "ac97 link rate calibration timed out after %d us\n", wait_us); 778 sc->flags |= ICH_CALIBRATE_DONE; 779 ICH_UNLOCK(sc); 780 ich_setstatus(sc); 781 return; 782 } 783 784 actual_48k_rate = ((uint64_t)ch->blksz * 250000) / wait_us; 785 786 if (actual_48k_rate < 47500 || actual_48k_rate > 48500) { 787 sc->ac97rate = actual_48k_rate; 788 } else { 789 sc->ac97rate = 48000; 790 } 791 792 if (bootverbose || sc->ac97rate != 48000) { 793 device_printf(sc->dev, "measured ac97 link rate at %d Hz", actual_48k_rate); 794 if (sc->ac97rate != actual_48k_rate) 795 printf(", will use %d Hz", sc->ac97rate); 796 printf("\n"); 797 } 798 sc->flags |= ICH_CALIBRATE_DONE; 799 ICH_UNLOCK(sc); 800 801 ich_setstatus(sc); 802 803 return; 804 } 805 806 /* -------------------------------------------------------------------- */ 807 /* Probe and attach the card */ 808 809 static void 810 ich_setmap(void *arg, bus_dma_segment_t *segs, int nseg, int error) 811 { 812 struct sc_info *sc = (struct sc_info *)arg; 813 sc->desc_addr = segs->ds_addr; 814 return; 815 } 816 817 static int 818 ich_init(struct sc_info *sc) 819 { 820 uint32_t stat; 821 822 ich_wr(sc, ICH_REG_GLOB_CNT, ICH_GLOB_CTL_COLD, 4); 823 DELAY(600000); 824 stat = ich_rd(sc, ICH_REG_GLOB_STA, 4); 825 826 if ((stat & ICH_GLOB_STA_PCR) == 0) { 827 /* ICH4/ICH5 may fail when busmastering is enabled. Continue */ 828 if (sc->vendor == INTEL_VENDORID && ( 829 sc->devid == INTEL_82801DB || sc->devid == INTEL_82801EB || 830 sc->devid == INTEL_6300ESB || sc->devid == INTEL_82801FB || 831 sc->devid == INTEL_82801GB)) { 832 sc->flags |= ICH_IGNORE_PCR; 833 device_printf(sc->dev, "primary codec not ready!\n"); 834 } 835 } 836 837 #if 0 838 ich_wr(sc, ICH_REG_GLOB_CNT, ICH_GLOB_CTL_COLD | ICH_GLOB_CTL_PRES, 4); 839 #else 840 ich_wr(sc, ICH_REG_GLOB_CNT, ICH_GLOB_CTL_COLD, 4); 841 #endif 842 843 if (ich_resetchan(sc, 0) || ich_resetchan(sc, 1)) 844 return (ENXIO); 845 if (sc->hasmic && ich_resetchan(sc, 2)) 846 return (ENXIO); 847 848 return (0); 849 } 850 851 static int 852 ich_pci_probe(device_t dev) 853 { 854 int i; 855 uint16_t devid, vendor; 856 857 vendor = pci_get_vendor(dev); 858 devid = pci_get_device(dev); 859 for (i = 0; i < sizeof(ich_devs)/sizeof(ich_devs[0]); i++) { 860 if (vendor == ich_devs[i].vendor && 861 devid == ich_devs[i].devid) { 862 device_set_desc(dev, ich_devs[i].name); 863 /* allow a better driver to override us */ 864 if ((ich_devs[i].options & PROBE_LOW) != 0) 865 return (BUS_PROBE_LOW_PRIORITY); 866 return (BUS_PROBE_DEFAULT); 867 } 868 } 869 return (ENXIO); 870 } 871 872 static int 873 ich_pci_attach(device_t dev) 874 { 875 uint32_t subdev; 876 uint16_t extcaps; 877 uint16_t devid, vendor; 878 struct sc_info *sc; 879 int i; 880 881 if ((sc = malloc(sizeof(*sc), M_DEVBUF, M_NOWAIT | M_ZERO)) == NULL) { 882 device_printf(dev, "cannot allocate softc\n"); 883 return (ENXIO); 884 } 885 886 sc->ich_lock = snd_mtxcreate(device_get_nameunit(dev), "snd_ich softc"); 887 sc->dev = dev; 888 889 vendor = sc->vendor = pci_get_vendor(dev); 890 devid = sc->devid = pci_get_device(dev); 891 subdev = (pci_get_subdevice(dev) << 16) | pci_get_subvendor(dev); 892 /* 893 * The SiS 7012 register set isn't quite like the standard ich. 894 * There really should be a general "quirks" mechanism. 895 */ 896 if (vendor == SIS_VENDORID && devid == SIS_7012) { 897 sc->swap_reg = 1; 898 sc->sample_size = 1; 899 } else { 900 sc->swap_reg = 0; 901 sc->sample_size = 2; 902 } 903 904 /* 905 * Intel 440MX Errata #36 906 * - AC97 Soft Audio and Soft Modem Master Abort Errata 907 * 908 * http://www.intel.com/design/chipsets/specupdt/245051.htm 909 */ 910 if (vendor == INTEL_VENDORID && devid == INTEL_82440MX) 911 sc->flags |= ICH_DMA_NOCACHE; 912 913 /* 914 * Enable bus master. On ich4/5 this may prevent the detection of 915 * the primary codec becoming ready in ich_init(). 916 */ 917 pci_enable_busmaster(dev); 918 919 /* 920 * By default, ich4 has NAMBAR and NABMBAR i/o spaces as 921 * read-only. Need to enable "legacy support", by poking into 922 * pci config space. The driver should use MMBAR and MBBAR, 923 * but doing so will mess things up here. ich4 has enough new 924 * features it warrants it's own driver. 925 */ 926 if (vendor == INTEL_VENDORID && (devid == INTEL_82801DB || 927 devid == INTEL_82801EB || devid == INTEL_6300ESB || 928 devid == INTEL_82801FB || devid == INTEL_82801GB)) { 929 sc->nambarid = PCIR_MMBAR; 930 sc->nabmbarid = PCIR_MBBAR; 931 sc->regtype = SYS_RES_MEMORY; 932 pci_write_config(dev, PCIR_ICH_LEGACY, ICH_LEGACY_ENABLE, 1); 933 } else { 934 sc->nambarid = PCIR_NAMBAR; 935 sc->nabmbarid = PCIR_NABMBAR; 936 sc->regtype = SYS_RES_IOPORT; 937 } 938 939 sc->nambar = bus_alloc_resource_any(dev, sc->regtype, 940 &sc->nambarid, RF_ACTIVE); 941 sc->nabmbar = bus_alloc_resource_any(dev, sc->regtype, 942 &sc->nabmbarid, RF_ACTIVE); 943 944 if (!sc->nambar || !sc->nabmbar) { 945 device_printf(dev, "unable to map IO port space\n"); 946 goto bad; 947 } 948 949 sc->nambart = rman_get_bustag(sc->nambar); 950 sc->nambarh = rman_get_bushandle(sc->nambar); 951 sc->nabmbart = rman_get_bustag(sc->nabmbar); 952 sc->nabmbarh = rman_get_bushandle(sc->nabmbar); 953 954 sc->bufsz = pcm_getbuffersize(dev, 955 ICH_MIN_BUFSZ, ICH_DEFAULT_BUFSZ, ICH_MAX_BUFSZ); 956 957 if (resource_int_value(device_get_name(dev), 958 device_get_unit(dev), "blocksize", &i) == 0 && i > 0) { 959 sc->blkcnt = sc->bufsz / i; 960 i = 0; 961 while (sc->blkcnt >> i) 962 i++; 963 sc->blkcnt = 1 << (i - 1); 964 if (sc->blkcnt < ICH_MIN_BLKCNT) 965 sc->blkcnt = ICH_MIN_BLKCNT; 966 else if (sc->blkcnt > ICH_MAX_BLKCNT) 967 sc->blkcnt = ICH_MAX_BLKCNT; 968 } else 969 sc->blkcnt = ICH_DEFAULT_BLKCNT; 970 971 if (resource_int_value(device_get_name(dev), 972 device_get_unit(dev), "highlatency", &i) == 0 && i != 0) { 973 sc->flags |= ICH_HIGH_LATENCY; 974 sc->blkcnt = ICH_MIN_BLKCNT; 975 } 976 977 if (resource_int_value(device_get_name(dev), 978 device_get_unit(dev), "fixedrate", &i) == 0 && i != 0) 979 sc->flags |= ICH_FIXED_RATE; 980 981 sc->irqid = 0; 982 sc->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->irqid, 983 RF_ACTIVE | RF_SHAREABLE); 984 if (!sc->irq || snd_setup_intr(dev, sc->irq, INTR_MPSAFE, ich_intr, 985 sc, &sc->ih)) { 986 device_printf(dev, "unable to map interrupt\n"); 987 goto bad; 988 } 989 990 if (ich_init(sc)) { 991 device_printf(dev, "unable to initialize the card\n"); 992 goto bad; 993 } 994 995 sc->codec = AC97_CREATE(dev, sc, ich_ac97); 996 if (sc->codec == NULL) 997 goto bad; 998 999 /* 1000 * Turn on inverted external amplifier sense flags for few 1001 * 'special' boards. 1002 */ 1003 switch (subdev) { 1004 case 0x202f161f: /* Gateway 7326GZ */ 1005 case 0x203a161f: /* Gateway 4028GZ */ 1006 case 0x204c161f: /* Kvazar-Micro Senator 3592XT */ 1007 case 0x8144104d: /* Sony VAIO PCG-TR* */ 1008 case 0x8197104d: /* Sony S1XP */ 1009 case 0x81c0104d: /* Sony VAIO type T */ 1010 case 0x81c5104d: /* Sony VAIO VGN B1VP/B1XP */ 1011 case 0x3089103c: /* Compaq Presario B3800 */ 1012 case 0x309a103c: /* HP Compaq nx4300 */ 1013 case 0x82131033: /* NEC VersaPro VJ10F/BH */ 1014 case 0x82be1033: /* NEC VersaPro VJ12F/CH */ 1015 ac97_setflags(sc->codec, ac97_getflags(sc->codec) | AC97_F_EAPD_INV); 1016 break; 1017 default: 1018 break; 1019 } 1020 1021 mixer_init(dev, ac97_getmixerclass(), sc->codec); 1022 1023 /* check and set VRA function */ 1024 extcaps = ac97_getextcaps(sc->codec); 1025 sc->hasvra = extcaps & AC97_EXTCAP_VRA; 1026 sc->hasvrm = extcaps & AC97_EXTCAP_VRM; 1027 sc->hasmic = ac97_getcaps(sc->codec) & AC97_CAP_MICCHANNEL; 1028 ac97_setextmode(sc->codec, sc->hasvra | sc->hasvrm); 1029 1030 sc->dtbl_size = sizeof(struct ich_desc) * ICH_DTBL_LENGTH * 1031 ((sc->hasmic) ? 3 : 2); 1032 1033 /* BDL tag */ 1034 if (bus_dma_tag_create(bus_get_dma_tag(dev), 8, 0, 1035 BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, 1036 sc->dtbl_size, 1, 0x3ffff, 0, NULL, NULL, &sc->dmat) != 0) { 1037 device_printf(dev, "unable to create dma tag\n"); 1038 goto bad; 1039 } 1040 1041 /* PCM channel tag */ 1042 if (bus_dma_tag_create(bus_get_dma_tag(dev), ICH_MIN_BLKSZ, 0, 1043 BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, 1044 sc->bufsz, 1, 0x3ffff, 0, NULL, NULL, &sc->chan_dmat) != 0) { 1045 device_printf(dev, "unable to create dma tag\n"); 1046 goto bad; 1047 } 1048 1049 if (bus_dmamem_alloc(sc->dmat, (void **)&sc->dtbl, BUS_DMA_NOWAIT | 1050 ((sc->flags & ICH_DMA_NOCACHE) ? BUS_DMA_NOCACHE : 0), 1051 &sc->dtmap)) 1052 goto bad; 1053 1054 if (bus_dmamap_load(sc->dmat, sc->dtmap, sc->dtbl, sc->dtbl_size, 1055 ich_setmap, sc, 0)) 1056 goto bad; 1057 1058 if (pcm_register(dev, sc, 1, (sc->hasmic) ? 2 : 1)) 1059 goto bad; 1060 1061 pcm_addchan(dev, PCMDIR_PLAY, &ichchan_class, sc); /* play */ 1062 pcm_addchan(dev, PCMDIR_REC, &ichchan_class, sc); /* record */ 1063 if (sc->hasmic) 1064 pcm_addchan(dev, PCMDIR_REC, &ichchan_class, sc); /* record mic */ 1065 1066 if (sc->flags & ICH_FIXED_RATE) { 1067 sc->flags |= ICH_CALIBRATE_DONE; 1068 ich_setstatus(sc); 1069 } else { 1070 ich_initsys(sc); 1071 1072 sc->intrhook.ich_func = ich_calibrate; 1073 sc->intrhook.ich_arg = sc; 1074 if (cold == 0 || 1075 config_intrhook_establish(&sc->intrhook) != 0) { 1076 sc->intrhook.ich_func = NULL; 1077 ich_calibrate(sc); 1078 } 1079 } 1080 1081 return (0); 1082 1083 bad: 1084 if (sc->codec) 1085 ac97_destroy(sc->codec); 1086 if (sc->ih) 1087 bus_teardown_intr(dev, sc->irq, sc->ih); 1088 if (sc->irq) 1089 bus_release_resource(dev, SYS_RES_IRQ, sc->irqid, sc->irq); 1090 if (sc->nambar) 1091 bus_release_resource(dev, sc->regtype, 1092 sc->nambarid, sc->nambar); 1093 if (sc->nabmbar) 1094 bus_release_resource(dev, sc->regtype, 1095 sc->nabmbarid, sc->nabmbar); 1096 if (sc->dtmap) 1097 bus_dmamap_unload(sc->dmat, sc->dtmap); 1098 if (sc->dtbl) 1099 bus_dmamem_free(sc->dmat, sc->dtbl, sc->dtmap); 1100 if (sc->chan_dmat) 1101 bus_dma_tag_destroy(sc->chan_dmat); 1102 if (sc->dmat) 1103 bus_dma_tag_destroy(sc->dmat); 1104 if (sc->ich_lock) 1105 snd_mtxfree(sc->ich_lock); 1106 free(sc, M_DEVBUF); 1107 return (ENXIO); 1108 } 1109 1110 static int 1111 ich_pci_detach(device_t dev) 1112 { 1113 struct sc_info *sc; 1114 int r; 1115 1116 r = pcm_unregister(dev); 1117 if (r) 1118 return (r); 1119 sc = pcm_getdevinfo(dev); 1120 1121 bus_teardown_intr(dev, sc->irq, sc->ih); 1122 bus_release_resource(dev, SYS_RES_IRQ, sc->irqid, sc->irq); 1123 bus_release_resource(dev, sc->regtype, sc->nambarid, sc->nambar); 1124 bus_release_resource(dev, sc->regtype, sc->nabmbarid, sc->nabmbar); 1125 bus_dmamap_unload(sc->dmat, sc->dtmap); 1126 bus_dmamem_free(sc->dmat, sc->dtbl, sc->dtmap); 1127 bus_dma_tag_destroy(sc->chan_dmat); 1128 bus_dma_tag_destroy(sc->dmat); 1129 snd_mtxfree(sc->ich_lock); 1130 free(sc, M_DEVBUF); 1131 return (0); 1132 } 1133 1134 static void 1135 ich_pci_codec_reset(struct sc_info *sc) 1136 { 1137 int i; 1138 uint32_t control; 1139 1140 control = ich_rd(sc, ICH_REG_GLOB_CNT, 4); 1141 control &= ~(ICH_GLOB_CTL_SHUT); 1142 control |= (control & ICH_GLOB_CTL_COLD) ? 1143 ICH_GLOB_CTL_WARM : ICH_GLOB_CTL_COLD; 1144 ich_wr(sc, ICH_REG_GLOB_CNT, control, 4); 1145 1146 for (i = 500000; i; i--) { 1147 if (ich_rd(sc, ICH_REG_GLOB_STA, 4) & ICH_GLOB_STA_PCR) 1148 break; /* or ICH_SCR? */ 1149 DELAY(1); 1150 } 1151 1152 if (i <= 0) 1153 printf("%s: time out\n", __func__); 1154 } 1155 1156 static int 1157 ich_pci_suspend(device_t dev) 1158 { 1159 struct sc_info *sc; 1160 int i; 1161 1162 sc = pcm_getdevinfo(dev); 1163 ICH_LOCK(sc); 1164 for (i = 0 ; i < 3; i++) { 1165 sc->ch[i].run_save = sc->ch[i].run; 1166 if (sc->ch[i].run) { 1167 ICH_UNLOCK(sc); 1168 ichchan_trigger(0, &sc->ch[i], PCMTRIG_ABORT); 1169 ICH_LOCK(sc); 1170 } 1171 } 1172 ICH_UNLOCK(sc); 1173 return (0); 1174 } 1175 1176 static int 1177 ich_pci_resume(device_t dev) 1178 { 1179 struct sc_info *sc; 1180 int i; 1181 1182 sc = pcm_getdevinfo(dev); 1183 1184 if (sc->regtype == SYS_RES_IOPORT) 1185 pci_enable_io(dev, SYS_RES_IOPORT); 1186 else 1187 pci_enable_io(dev, SYS_RES_MEMORY); 1188 pci_enable_busmaster(dev); 1189 1190 ICH_LOCK(sc); 1191 /* Reinit audio device */ 1192 if (ich_init(sc) == -1) { 1193 device_printf(dev, "unable to reinitialize the card\n"); 1194 ICH_UNLOCK(sc); 1195 return (ENXIO); 1196 } 1197 /* Reinit mixer */ 1198 ich_pci_codec_reset(sc); 1199 ICH_UNLOCK(sc); 1200 ac97_setextmode(sc->codec, sc->hasvra | sc->hasvrm); 1201 if (mixer_reinit(dev) == -1) { 1202 device_printf(dev, "unable to reinitialize the mixer\n"); 1203 return (ENXIO); 1204 } 1205 /* Re-start DMA engines */ 1206 for (i = 0 ; i < 3; i++) { 1207 struct sc_chinfo *ch = &sc->ch[i]; 1208 if (sc->ch[i].run_save) { 1209 ichchan_setblocksize(0, ch, ch->blksz); 1210 ichchan_setspeed(0, ch, ch->spd); 1211 ichchan_trigger(0, ch, PCMTRIG_START); 1212 } 1213 } 1214 return (0); 1215 } 1216 1217 static device_method_t ich_methods[] = { 1218 /* Device interface */ 1219 DEVMETHOD(device_probe, ich_pci_probe), 1220 DEVMETHOD(device_attach, ich_pci_attach), 1221 DEVMETHOD(device_detach, ich_pci_detach), 1222 DEVMETHOD(device_suspend, ich_pci_suspend), 1223 DEVMETHOD(device_resume, ich_pci_resume), 1224 { 0, 0 } 1225 }; 1226 1227 static driver_t ich_driver = { 1228 "pcm", 1229 ich_methods, 1230 PCM_SOFTC_SIZE, 1231 }; 1232 1233 DRIVER_MODULE(snd_ich, pci, ich_driver, pcm_devclass, 0, 0); 1234 MODULE_DEPEND(snd_ich, sound, SOUND_MINVER, SOUND_PREFVER, SOUND_MAXVER); 1235 MODULE_VERSION(snd_ich, 1); 1236