1 /*- 2 * Copyright (c) 2005 Ariff Abdullah <ariff@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHERIN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 /* 28 * FreeBSD pcm driver for ATI IXP 150/200/250/300 AC97 controllers 29 * 30 * Features 31 * * 16bit playback / recording 32 * * 32bit native playback - yay! 33 * * 32bit native recording (seems broken on few hardwares) 34 * 35 * Issues / TODO: 36 * * SPDIF 37 * * Support for more than 2 channels. 38 * * VRA ? VRM ? DRA ? 39 * * 32bit native recording seems broken on few hardwares, most 40 * probably because of incomplete VRA/DRA cleanup. 41 * 42 * 43 * Thanks goes to: 44 * 45 * Shaharil @ SCAN Associates whom relentlessly providing me the 46 * mind blowing Acer Ferrari 4002 WLMi with this ATI IXP hardware. 47 * 48 * Reinoud Zandijk <reinoud@NetBSD.org> (auixp), which this driver is 49 * largely based upon although large part of it has been reworked. His 50 * driver is the primary reference and pretty much well documented. 51 * 52 * Takashi Iwai (ALSA snd-atiixp), for register definitions and some 53 * random ninja hackery. 54 */ 55 56 #include <dev/sound/pcm/sound.h> 57 #include <dev/sound/pcm/ac97.h> 58 59 #include <dev/pci/pcireg.h> 60 #include <dev/pci/pcivar.h> 61 #include <sys/sysctl.h> 62 #include <sys/endian.h> 63 64 #include <dev/sound/pci/atiixp.h> 65 66 SND_DECLARE_FILE("$FreeBSD$"); 67 68 #define ATI_IXP_DMA_RETRY_MAX 100 69 70 #define ATI_IXP_BUFSZ_MIN 4096 71 #define ATI_IXP_BUFSZ_MAX 65536 72 #define ATI_IXP_BUFSZ_DEFAULT 16384 73 74 #define ATI_IXP_BLK_MIN 32 75 #define ATI_IXP_BLK_ALIGN (~(ATI_IXP_BLK_MIN - 1)) 76 77 struct atiixp_dma_op { 78 volatile uint32_t addr; 79 volatile uint16_t status; 80 volatile uint16_t size; 81 volatile uint32_t next; 82 }; 83 84 struct atiixp_info; 85 86 struct atiixp_chinfo { 87 struct snd_dbuf *buffer; 88 struct pcm_channel *channel; 89 struct atiixp_info *parent; 90 struct atiixp_dma_op *sgd_table; 91 bus_addr_t sgd_addr; 92 uint32_t enable_bit, flush_bit, linkptr_bit, dt_cur_bit; 93 uint32_t blksz, blkcnt; 94 uint32_t ptr, prevptr; 95 uint32_t fmt; 96 int caps_32bit, dir, active; 97 }; 98 99 struct atiixp_info { 100 device_t dev; 101 102 bus_space_tag_t st; 103 bus_space_handle_t sh; 104 bus_dma_tag_t parent_dmat; 105 bus_dma_tag_t sgd_dmat; 106 bus_dmamap_t sgd_dmamap; 107 bus_addr_t sgd_addr; 108 109 struct resource *reg, *irq; 110 int regtype, regid, irqid; 111 void *ih; 112 struct ac97_info *codec; 113 114 struct atiixp_chinfo pch; 115 struct atiixp_chinfo rch; 116 struct atiixp_dma_op *sgd_table; 117 struct intr_config_hook delayed_attach; 118 119 uint32_t bufsz; 120 uint32_t codec_not_ready_bits, codec_idx, codec_found; 121 uint32_t blkcnt; 122 int registered_channels; 123 124 struct mtx *lock; 125 struct callout poll_timer; 126 int poll_ticks, polling; 127 }; 128 129 #define atiixp_rd(_sc, _reg) \ 130 bus_space_read_4((_sc)->st, (_sc)->sh, _reg) 131 #define atiixp_wr(_sc, _reg, _val) \ 132 bus_space_write_4((_sc)->st, (_sc)->sh, _reg, _val) 133 134 #define atiixp_lock(_sc) snd_mtxlock((_sc)->lock) 135 #define atiixp_unlock(_sc) snd_mtxunlock((_sc)->lock) 136 #define atiixp_assert(_sc) snd_mtxassert((_sc)->lock) 137 138 static uint32_t atiixp_fmt_32bit[] = { 139 AFMT_STEREO | AFMT_S16_LE, 140 AFMT_STEREO | AFMT_S32_LE, 141 0 142 }; 143 144 static uint32_t atiixp_fmt[] = { 145 AFMT_STEREO | AFMT_S16_LE, 146 0 147 }; 148 149 static struct pcmchan_caps atiixp_caps_32bit = { 150 ATI_IXP_BASE_RATE, 151 ATI_IXP_BASE_RATE, 152 atiixp_fmt_32bit, 0 153 }; 154 155 static struct pcmchan_caps atiixp_caps = { 156 ATI_IXP_BASE_RATE, 157 ATI_IXP_BASE_RATE, 158 atiixp_fmt, 0 159 }; 160 161 static const struct { 162 uint16_t vendor; 163 uint16_t devid; 164 char *desc; 165 } atiixp_hw[] = { 166 { ATI_VENDOR_ID, ATI_IXP_200_ID, "ATI IXP 200" }, 167 { ATI_VENDOR_ID, ATI_IXP_300_ID, "ATI IXP 300" }, 168 { ATI_VENDOR_ID, ATI_IXP_400_ID, "ATI IXP 400" }, 169 }; 170 171 static void atiixp_enable_interrupts(struct atiixp_info *); 172 static void atiixp_disable_interrupts(struct atiixp_info *); 173 static void atiixp_reset_aclink(struct atiixp_info *); 174 static void atiixp_flush_dma(struct atiixp_chinfo *); 175 static void atiixp_enable_dma(struct atiixp_chinfo *); 176 static void atiixp_disable_dma(struct atiixp_chinfo *); 177 178 static int atiixp_waitready_codec(struct atiixp_info *); 179 static int atiixp_rdcd(kobj_t, void *, int); 180 static int atiixp_wrcd(kobj_t, void *, int, uint32_t); 181 182 static void *atiixp_chan_init(kobj_t, void *, struct snd_dbuf *, 183 struct pcm_channel *, int); 184 static int atiixp_chan_setformat(kobj_t, void *, uint32_t); 185 static int atiixp_chan_setspeed(kobj_t, void *, uint32_t); 186 static int atiixp_chan_setfragments(kobj_t, void *, uint32_t, uint32_t); 187 static int atiixp_chan_setblocksize(kobj_t, void *, uint32_t); 188 static void atiixp_buildsgdt(struct atiixp_chinfo *); 189 static int atiixp_chan_trigger(kobj_t, void *, int); 190 static __inline uint32_t atiixp_dmapos(struct atiixp_chinfo *); 191 static int atiixp_chan_getptr(kobj_t, void *); 192 static struct pcmchan_caps *atiixp_chan_getcaps(kobj_t, void *); 193 194 static void atiixp_intr(void *); 195 static void atiixp_dma_cb(void *, bus_dma_segment_t *, int, int); 196 static void atiixp_chip_pre_init(struct atiixp_info *); 197 static void atiixp_chip_post_init(void *); 198 static void atiixp_release_resource(struct atiixp_info *); 199 static int atiixp_pci_probe(device_t); 200 static int atiixp_pci_attach(device_t); 201 static int atiixp_pci_detach(device_t); 202 static int atiixp_pci_suspend(device_t); 203 static int atiixp_pci_resume(device_t); 204 205 /* 206 * ATI IXP helper functions 207 */ 208 static void 209 atiixp_enable_interrupts(struct atiixp_info *sc) 210 { 211 uint32_t value; 212 213 /* clear all pending */ 214 atiixp_wr(sc, ATI_REG_ISR, 0xffffffff); 215 216 /* enable all relevant interrupt sources we can handle */ 217 value = atiixp_rd(sc, ATI_REG_IER); 218 219 value |= ATI_REG_IER_IO_STATUS_EN; 220 221 /* 222 * Disable / ignore internal xrun/spdf interrupt flags 223 * since it doesn't interest us (for now). 224 */ 225 #if 1 226 value &= ~(ATI_REG_IER_IN_XRUN_EN | ATI_REG_IER_OUT_XRUN_EN | 227 ATI_REG_IER_SPDF_XRUN_EN | ATI_REG_IER_SPDF_STATUS_EN); 228 #else 229 value |= ATI_REG_IER_IN_XRUN_EN; 230 value |= ATI_REG_IER_OUT_XRUN_EN; 231 232 value |= ATI_REG_IER_SPDF_XRUN_EN; 233 value |= ATI_REG_IER_SPDF_STATUS_EN; 234 #endif 235 236 atiixp_wr(sc, ATI_REG_IER, value); 237 } 238 239 static void 240 atiixp_disable_interrupts(struct atiixp_info *sc) 241 { 242 /* disable all interrupt sources */ 243 atiixp_wr(sc, ATI_REG_IER, 0); 244 245 /* clear all pending */ 246 atiixp_wr(sc, ATI_REG_ISR, 0xffffffff); 247 } 248 249 static void 250 atiixp_reset_aclink(struct atiixp_info *sc) 251 { 252 uint32_t value, timeout; 253 254 /* if power is down, power it up */ 255 value = atiixp_rd(sc, ATI_REG_CMD); 256 if (value & ATI_REG_CMD_POWERDOWN) { 257 /* explicitly enable power */ 258 value &= ~ATI_REG_CMD_POWERDOWN; 259 atiixp_wr(sc, ATI_REG_CMD, value); 260 261 /* have to wait at least 10 usec for it to initialise */ 262 DELAY(20); 263 } 264 265 /* perform a soft reset */ 266 value = atiixp_rd(sc, ATI_REG_CMD); 267 value |= ATI_REG_CMD_AC_SOFT_RESET; 268 atiixp_wr(sc, ATI_REG_CMD, value); 269 270 /* need to read the CMD reg and wait aprox. 10 usec to init */ 271 value = atiixp_rd(sc, ATI_REG_CMD); 272 DELAY(20); 273 274 /* clear soft reset flag again */ 275 value = atiixp_rd(sc, ATI_REG_CMD); 276 value &= ~ATI_REG_CMD_AC_SOFT_RESET; 277 atiixp_wr(sc, ATI_REG_CMD, value); 278 279 /* check if the ac-link is working; reset device otherwise */ 280 timeout = 10; 281 value = atiixp_rd(sc, ATI_REG_CMD); 282 while (!(value & ATI_REG_CMD_ACLINK_ACTIVE) && --timeout) { 283 #if 0 284 device_printf(sc->dev, "not up; resetting aclink hardware\n"); 285 #endif 286 287 /* dip aclink reset but keep the acsync */ 288 value &= ~ATI_REG_CMD_AC_RESET; 289 value |= ATI_REG_CMD_AC_SYNC; 290 atiixp_wr(sc, ATI_REG_CMD, value); 291 292 /* need to read CMD again and wait again (clocking in issue?) */ 293 value = atiixp_rd(sc, ATI_REG_CMD); 294 DELAY(20); 295 296 /* assert aclink reset again */ 297 value = atiixp_rd(sc, ATI_REG_CMD); 298 value |= ATI_REG_CMD_AC_RESET; 299 atiixp_wr(sc, ATI_REG_CMD, value); 300 301 /* check if its active now */ 302 value = atiixp_rd(sc, ATI_REG_CMD); 303 } 304 305 if (timeout == 0) 306 device_printf(sc->dev, "giving up aclink reset\n"); 307 #if 0 308 if (timeout != 10) 309 device_printf(sc->dev, "aclink hardware reset successful\n"); 310 #endif 311 312 /* assert reset and sync for safety */ 313 value = atiixp_rd(sc, ATI_REG_CMD); 314 value |= ATI_REG_CMD_AC_SYNC | ATI_REG_CMD_AC_RESET; 315 atiixp_wr(sc, ATI_REG_CMD, value); 316 } 317 318 static void 319 atiixp_flush_dma(struct atiixp_chinfo *ch) 320 { 321 atiixp_wr(ch->parent, ATI_REG_FIFO_FLUSH, ch->flush_bit); 322 } 323 324 static void 325 atiixp_enable_dma(struct atiixp_chinfo *ch) 326 { 327 uint32_t value; 328 329 value = atiixp_rd(ch->parent, ATI_REG_CMD); 330 if (!(value & ch->enable_bit)) { 331 value |= ch->enable_bit; 332 atiixp_wr(ch->parent, ATI_REG_CMD, value); 333 } 334 } 335 336 static void 337 atiixp_disable_dma(struct atiixp_chinfo *ch) 338 { 339 uint32_t value; 340 341 value = atiixp_rd(ch->parent, ATI_REG_CMD); 342 if (value & ch->enable_bit) { 343 value &= ~ch->enable_bit; 344 atiixp_wr(ch->parent, ATI_REG_CMD, value); 345 } 346 } 347 348 /* 349 * AC97 interface 350 */ 351 static int 352 atiixp_waitready_codec(struct atiixp_info *sc) 353 { 354 int timeout = 500; 355 356 do { 357 if ((atiixp_rd(sc, ATI_REG_PHYS_OUT_ADDR) & 358 ATI_REG_PHYS_OUT_ADDR_EN) == 0) 359 return (0); 360 DELAY(1); 361 } while (--timeout); 362 363 return (-1); 364 } 365 366 static int 367 atiixp_rdcd(kobj_t obj, void *devinfo, int reg) 368 { 369 struct atiixp_info *sc = devinfo; 370 uint32_t data; 371 int timeout; 372 373 if (atiixp_waitready_codec(sc)) 374 return (-1); 375 376 data = (reg << ATI_REG_PHYS_OUT_ADDR_SHIFT) | 377 ATI_REG_PHYS_OUT_ADDR_EN | ATI_REG_PHYS_OUT_RW | sc->codec_idx; 378 379 atiixp_wr(sc, ATI_REG_PHYS_OUT_ADDR, data); 380 381 if (atiixp_waitready_codec(sc)) 382 return (-1); 383 384 timeout = 500; 385 do { 386 data = atiixp_rd(sc, ATI_REG_PHYS_IN_ADDR); 387 if (data & ATI_REG_PHYS_IN_READ_FLAG) 388 return (data >> ATI_REG_PHYS_IN_DATA_SHIFT); 389 DELAY(1); 390 } while (--timeout); 391 392 if (reg < 0x7c) 393 device_printf(sc->dev, "codec read timeout! (reg 0x%x)\n", reg); 394 395 return (-1); 396 } 397 398 static int 399 atiixp_wrcd(kobj_t obj, void *devinfo, int reg, uint32_t data) 400 { 401 struct atiixp_info *sc = devinfo; 402 403 if (atiixp_waitready_codec(sc)) 404 return (-1); 405 406 data = (data << ATI_REG_PHYS_OUT_DATA_SHIFT) | 407 (((uint32_t)reg) << ATI_REG_PHYS_OUT_ADDR_SHIFT) | 408 ATI_REG_PHYS_OUT_ADDR_EN | sc->codec_idx; 409 410 atiixp_wr(sc, ATI_REG_PHYS_OUT_ADDR, data); 411 412 return (0); 413 } 414 415 static kobj_method_t atiixp_ac97_methods[] = { 416 KOBJMETHOD(ac97_read, atiixp_rdcd), 417 KOBJMETHOD(ac97_write, atiixp_wrcd), 418 { 0, 0 } 419 }; 420 AC97_DECLARE(atiixp_ac97); 421 422 /* 423 * Playback / Record channel interface 424 */ 425 static void * 426 atiixp_chan_init(kobj_t obj, void *devinfo, struct snd_dbuf *b, 427 struct pcm_channel *c, int dir) 428 { 429 struct atiixp_info *sc = devinfo; 430 struct atiixp_chinfo *ch; 431 int num; 432 433 atiixp_lock(sc); 434 435 if (dir == PCMDIR_PLAY) { 436 ch = &sc->pch; 437 ch->linkptr_bit = ATI_REG_OUT_DMA_LINKPTR; 438 ch->enable_bit = ATI_REG_CMD_OUT_DMA_EN | ATI_REG_CMD_SEND_EN; 439 ch->flush_bit = ATI_REG_FIFO_OUT_FLUSH; 440 ch->dt_cur_bit = ATI_REG_OUT_DMA_DT_CUR; 441 /* Native 32bit playback working properly */ 442 ch->caps_32bit = 1; 443 } else { 444 ch = &sc->rch; 445 ch->linkptr_bit = ATI_REG_IN_DMA_LINKPTR; 446 ch->enable_bit = ATI_REG_CMD_IN_DMA_EN | ATI_REG_CMD_RECEIVE_EN; 447 ch->flush_bit = ATI_REG_FIFO_IN_FLUSH; 448 ch->dt_cur_bit = ATI_REG_IN_DMA_DT_CUR; 449 /* XXX Native 32bit recording appear to be broken */ 450 ch->caps_32bit = 1; 451 } 452 453 ch->buffer = b; 454 ch->parent = sc; 455 ch->channel = c; 456 ch->dir = dir; 457 ch->blkcnt = sc->blkcnt; 458 ch->blksz = sc->bufsz / ch->blkcnt; 459 460 atiixp_unlock(sc); 461 462 if (sndbuf_alloc(ch->buffer, sc->parent_dmat, sc->bufsz) == -1) 463 return (NULL); 464 465 atiixp_lock(sc); 466 num = sc->registered_channels++; 467 ch->sgd_table = &sc->sgd_table[num * ATI_IXP_DMA_CHSEGS_MAX]; 468 ch->sgd_addr = sc->sgd_addr + (num * ATI_IXP_DMA_CHSEGS_MAX * 469 sizeof(struct atiixp_dma_op)); 470 atiixp_disable_dma(ch); 471 atiixp_unlock(sc); 472 473 return (ch); 474 } 475 476 static int 477 atiixp_chan_setformat(kobj_t obj, void *data, uint32_t format) 478 { 479 struct atiixp_chinfo *ch = data; 480 struct atiixp_info *sc = ch->parent; 481 uint32_t value; 482 483 atiixp_lock(sc); 484 if (ch->dir == PCMDIR_REC) { 485 value = atiixp_rd(sc, ATI_REG_CMD); 486 value &= ~ATI_REG_CMD_INTERLEAVE_IN; 487 if ((format & AFMT_32BIT) == 0) 488 value |= ATI_REG_CMD_INTERLEAVE_IN; 489 atiixp_wr(sc, ATI_REG_CMD, value); 490 } else { 491 value = atiixp_rd(sc, ATI_REG_OUT_DMA_SLOT); 492 value &= ~ATI_REG_OUT_DMA_SLOT_MASK; 493 /* We do not have support for more than 2 channels, _yet_. */ 494 value |= ATI_REG_OUT_DMA_SLOT_BIT(3) | 495 ATI_REG_OUT_DMA_SLOT_BIT(4); 496 value |= 0x04 << ATI_REG_OUT_DMA_THRESHOLD_SHIFT; 497 atiixp_wr(sc, ATI_REG_OUT_DMA_SLOT, value); 498 value = atiixp_rd(sc, ATI_REG_CMD); 499 value &= ~ATI_REG_CMD_INTERLEAVE_OUT; 500 if ((format & AFMT_32BIT) == 0) 501 value |= ATI_REG_CMD_INTERLEAVE_OUT; 502 atiixp_wr(sc, ATI_REG_CMD, value); 503 value = atiixp_rd(sc, ATI_REG_6CH_REORDER); 504 value &= ~ATI_REG_6CH_REORDER_EN; 505 atiixp_wr(sc, ATI_REG_6CH_REORDER, value); 506 } 507 ch->fmt = format; 508 atiixp_unlock(sc); 509 510 return (0); 511 } 512 513 static int 514 atiixp_chan_setspeed(kobj_t obj, void *data, uint32_t spd) 515 { 516 /* XXX We're supposed to do VRA/DRA processing right here */ 517 return (ATI_IXP_BASE_RATE); 518 } 519 520 static int 521 atiixp_chan_setfragments(kobj_t obj, void *data, 522 uint32_t blksz, uint32_t blkcnt) 523 { 524 struct atiixp_chinfo *ch = data; 525 struct atiixp_info *sc = ch->parent; 526 527 blksz &= ATI_IXP_BLK_ALIGN; 528 529 if (blksz > (sndbuf_getmaxsize(ch->buffer) / ATI_IXP_DMA_CHSEGS_MIN)) 530 blksz = sndbuf_getmaxsize(ch->buffer) / ATI_IXP_DMA_CHSEGS_MIN; 531 if (blksz < ATI_IXP_BLK_MIN) 532 blksz = ATI_IXP_BLK_MIN; 533 if (blkcnt > ATI_IXP_DMA_CHSEGS_MAX) 534 blkcnt = ATI_IXP_DMA_CHSEGS_MAX; 535 if (blkcnt < ATI_IXP_DMA_CHSEGS_MIN) 536 blkcnt = ATI_IXP_DMA_CHSEGS_MIN; 537 538 while ((blksz * blkcnt) > sndbuf_getmaxsize(ch->buffer)) { 539 if ((blkcnt >> 1) >= ATI_IXP_DMA_CHSEGS_MIN) 540 blkcnt >>= 1; 541 else if ((blksz >> 1) >= ATI_IXP_BLK_MIN) 542 blksz >>= 1; 543 else 544 break; 545 } 546 547 if ((sndbuf_getblksz(ch->buffer) != blksz || 548 sndbuf_getblkcnt(ch->buffer) != blkcnt) && 549 sndbuf_resize(ch->buffer, blkcnt, blksz) != 0) 550 device_printf(sc->dev, "%s: failed blksz=%u blkcnt=%u\n", 551 __func__, blksz, blkcnt); 552 553 ch->blksz = sndbuf_getblksz(ch->buffer); 554 ch->blkcnt = sndbuf_getblkcnt(ch->buffer); 555 556 return (1); 557 } 558 559 static int 560 atiixp_chan_setblocksize(kobj_t obj, void *data, uint32_t blksz) 561 { 562 struct atiixp_chinfo *ch = data; 563 struct atiixp_info *sc = ch->parent; 564 565 atiixp_chan_setfragments(obj, data, blksz, sc->blkcnt); 566 567 return (ch->blksz); 568 } 569 570 static void 571 atiixp_buildsgdt(struct atiixp_chinfo *ch) 572 { 573 struct atiixp_info *sc = ch->parent; 574 uint32_t addr, blksz, blkcnt; 575 int i; 576 577 addr = sndbuf_getbufaddr(ch->buffer); 578 579 if (sc->polling != 0) { 580 blksz = ch->blksz * ch->blkcnt; 581 blkcnt = 1; 582 } else { 583 blksz = ch->blksz; 584 blkcnt = ch->blkcnt; 585 } 586 587 for (i = 0; i < blkcnt; i++) { 588 ch->sgd_table[i].addr = htole32(addr + (i * blksz)); 589 ch->sgd_table[i].status = htole16(0); 590 ch->sgd_table[i].size = htole16(blksz >> 2); 591 ch->sgd_table[i].next = htole32((uint32_t)ch->sgd_addr + 592 (((i + 1) % blkcnt) * sizeof(struct atiixp_dma_op))); 593 } 594 } 595 596 static __inline uint32_t 597 atiixp_dmapos(struct atiixp_chinfo *ch) 598 { 599 struct atiixp_info *sc = ch->parent; 600 uint32_t reg, addr, sz, retry; 601 volatile uint32_t ptr; 602 603 reg = ch->dt_cur_bit; 604 addr = sndbuf_getbufaddr(ch->buffer); 605 sz = ch->blkcnt * ch->blksz; 606 retry = ATI_IXP_DMA_RETRY_MAX; 607 608 do { 609 ptr = atiixp_rd(sc, reg); 610 if (ptr < addr) 611 continue; 612 ptr -= addr; 613 if (ptr < sz) { 614 #if 0 615 #ifdef ATI_IXP_DEBUG 616 if ((ptr & ~(ch->blksz - 1)) != ch->ptr) { 617 uint32_t delta; 618 619 delta = (sz + ptr - ch->prevptr) % sz; 620 #ifndef ATI_IXP_DEBUG_VERBOSE 621 if (delta < ch->blksz) 622 #endif 623 device_printf(sc->dev, 624 "PCMDIR_%s: incoherent DMA " 625 "prevptr=%u ptr=%u " 626 "ptr=%u blkcnt=%u " 627 "[delta=%u != blksz=%u] " 628 "(%s)\n", 629 (ch->dir == PCMDIR_PLAY) ? 630 "PLAY" : "REC", 631 ch->prevptr, ptr, 632 ch->ptr, ch->blkcnt, 633 delta, ch->blksz, 634 (delta < ch->blksz) ? 635 "OVERLAPPED!" : "Ok"); 636 ch->ptr = ptr & ~(ch->blksz - 1); 637 } 638 ch->prevptr = ptr; 639 #endif 640 #endif 641 return (ptr); 642 } 643 } while (--retry); 644 645 device_printf(sc->dev, "PCMDIR_%s: invalid DMA pointer ptr=%u\n", 646 (ch->dir == PCMDIR_PLAY) ? "PLAY" : "REC", ptr); 647 648 return (0); 649 } 650 651 static __inline int 652 atiixp_poll_channel(struct atiixp_chinfo *ch) 653 { 654 uint32_t sz, delta; 655 volatile uint32_t ptr; 656 657 if (ch->active == 0) 658 return (0); 659 660 sz = ch->blksz * ch->blkcnt; 661 ptr = atiixp_dmapos(ch); 662 ch->ptr = ptr; 663 ptr %= sz; 664 ptr &= ~(ch->blksz - 1); 665 delta = (sz + ptr - ch->prevptr) % sz; 666 667 if (delta < ch->blksz) 668 return (0); 669 670 ch->prevptr = ptr; 671 672 return (1); 673 } 674 675 #define atiixp_chan_active(sc) ((sc)->pch.active + (sc)->rch.active) 676 677 static void 678 atiixp_poll_callback(void *arg) 679 { 680 struct atiixp_info *sc = arg; 681 uint32_t trigger = 0; 682 683 if (sc == NULL) 684 return; 685 686 atiixp_lock(sc); 687 if (sc->polling == 0 || atiixp_chan_active(sc) == 0) { 688 atiixp_unlock(sc); 689 return; 690 } 691 692 trigger |= (atiixp_poll_channel(&sc->pch) != 0) ? 1 : 0; 693 trigger |= (atiixp_poll_channel(&sc->rch) != 0) ? 2 : 0; 694 695 /* XXX */ 696 callout_reset(&sc->poll_timer, 1/*sc->poll_ticks*/, 697 atiixp_poll_callback, sc); 698 699 atiixp_unlock(sc); 700 701 if (trigger & 1) 702 chn_intr(sc->pch.channel); 703 if (trigger & 2) 704 chn_intr(sc->rch.channel); 705 } 706 707 static int 708 atiixp_chan_trigger(kobj_t obj, void *data, int go) 709 { 710 struct atiixp_chinfo *ch = data; 711 struct atiixp_info *sc = ch->parent; 712 uint32_t value; 713 int pollticks; 714 715 atiixp_lock(sc); 716 717 switch (go) { 718 case PCMTRIG_START: 719 atiixp_flush_dma(ch); 720 atiixp_buildsgdt(ch); 721 atiixp_wr(sc, ch->linkptr_bit, 0); 722 atiixp_enable_dma(ch); 723 atiixp_wr(sc, ch->linkptr_bit, 724 (uint32_t)ch->sgd_addr | ATI_REG_LINKPTR_EN); 725 if (sc->polling != 0) { 726 ch->ptr = 0; 727 ch->prevptr = 0; 728 pollticks = ((uint64_t)hz * ch->blksz) / 729 ((uint64_t)sndbuf_getbps(ch->buffer) * 730 sndbuf_getspd(ch->buffer)); 731 pollticks >>= 2; 732 if (pollticks > hz) 733 pollticks = hz; 734 if (pollticks < 1) 735 pollticks = 1; 736 if (atiixp_chan_active(sc) == 0 || 737 pollticks < sc->poll_ticks) { 738 if (bootverbose) { 739 if (atiixp_chan_active(sc) == 0) 740 device_printf(sc->dev, 741 "%s: pollticks=%d\n", 742 __func__, pollticks); 743 else 744 device_printf(sc->dev, 745 "%s: pollticks %d -> %d\n", 746 __func__, sc->poll_ticks, 747 pollticks); 748 } 749 sc->poll_ticks = pollticks; 750 callout_reset(&sc->poll_timer, 1, 751 atiixp_poll_callback, sc); 752 } 753 } 754 ch->active = 1; 755 break; 756 case PCMTRIG_STOP: 757 case PCMTRIG_ABORT: 758 atiixp_disable_dma(ch); 759 atiixp_flush_dma(ch); 760 ch->active = 0; 761 if (sc->polling != 0) { 762 if (atiixp_chan_active(sc) == 0) { 763 callout_stop(&sc->poll_timer); 764 sc->poll_ticks = 1; 765 } else { 766 if (sc->pch.active != 0) 767 ch = &sc->pch; 768 else 769 ch = &sc->rch; 770 pollticks = ((uint64_t)hz * ch->blksz) / 771 ((uint64_t)sndbuf_getbps(ch->buffer) * 772 sndbuf_getspd(ch->buffer)); 773 pollticks >>= 2; 774 if (pollticks > hz) 775 pollticks = hz; 776 if (pollticks < 1) 777 pollticks = 1; 778 if (pollticks > sc->poll_ticks) { 779 if (bootverbose) 780 device_printf(sc->dev, 781 "%s: pollticks %d -> %d\n", 782 __func__, sc->poll_ticks, 783 pollticks); 784 sc->poll_ticks = pollticks; 785 callout_reset(&sc->poll_timer, 786 1, atiixp_poll_callback, 787 sc); 788 } 789 } 790 } 791 break; 792 default: 793 atiixp_unlock(sc); 794 return (0); 795 break; 796 } 797 798 /* Update bus busy status */ 799 value = atiixp_rd(sc, ATI_REG_IER); 800 if (atiixp_rd(sc, ATI_REG_CMD) & (ATI_REG_CMD_SEND_EN | 801 ATI_REG_CMD_RECEIVE_EN | ATI_REG_CMD_SPDF_OUT_EN)) 802 value |= ATI_REG_IER_SET_BUS_BUSY; 803 else 804 value &= ~ATI_REG_IER_SET_BUS_BUSY; 805 atiixp_wr(sc, ATI_REG_IER, value); 806 807 atiixp_unlock(sc); 808 809 return (0); 810 } 811 812 static int 813 atiixp_chan_getptr(kobj_t obj, void *data) 814 { 815 struct atiixp_chinfo *ch = data; 816 struct atiixp_info *sc = ch->parent; 817 uint32_t ptr; 818 819 atiixp_lock(sc); 820 if (sc->polling != 0) 821 ptr = ch->ptr; 822 else 823 ptr = atiixp_dmapos(ch); 824 atiixp_unlock(sc); 825 826 return (ptr); 827 } 828 829 static struct pcmchan_caps * 830 atiixp_chan_getcaps(kobj_t obj, void *data) 831 { 832 struct atiixp_chinfo *ch = data; 833 834 if (ch->caps_32bit) 835 return (&atiixp_caps_32bit); 836 return (&atiixp_caps); 837 } 838 839 static kobj_method_t atiixp_chan_methods[] = { 840 KOBJMETHOD(channel_init, atiixp_chan_init), 841 KOBJMETHOD(channel_setformat, atiixp_chan_setformat), 842 KOBJMETHOD(channel_setspeed, atiixp_chan_setspeed), 843 KOBJMETHOD(channel_setblocksize, atiixp_chan_setblocksize), 844 KOBJMETHOD(channel_setfragments, atiixp_chan_setfragments), 845 KOBJMETHOD(channel_trigger, atiixp_chan_trigger), 846 KOBJMETHOD(channel_getptr, atiixp_chan_getptr), 847 KOBJMETHOD(channel_getcaps, atiixp_chan_getcaps), 848 { 0, 0 } 849 }; 850 CHANNEL_DECLARE(atiixp_chan); 851 852 /* 853 * PCI driver interface 854 */ 855 static void 856 atiixp_intr(void *p) 857 { 858 struct atiixp_info *sc = p; 859 uint32_t status, enable, detected_codecs; 860 uint32_t trigger = 0; 861 862 atiixp_lock(sc); 863 if (sc->polling != 0) { 864 atiixp_unlock(sc); 865 return; 866 } 867 status = atiixp_rd(sc, ATI_REG_ISR); 868 869 if (status == 0) { 870 atiixp_unlock(sc); 871 return; 872 } 873 874 if ((status & ATI_REG_ISR_OUT_STATUS) && sc->pch.active != 0) 875 trigger |= 1; 876 if ((status & ATI_REG_ISR_IN_STATUS) && sc->rch.active != 0) 877 trigger |= 2; 878 879 #if 0 880 if (status & ATI_REG_ISR_IN_XRUN) { 881 device_printf(sc->dev, 882 "Recieve IN XRUN interrupt\n"); 883 } 884 if (status & ATI_REG_ISR_OUT_XRUN) { 885 device_printf(sc->dev, 886 "Recieve OUT XRUN interrupt\n"); 887 } 888 #endif 889 890 if (status & CODEC_CHECK_BITS) { 891 /* mark missing codecs as not ready */ 892 detected_codecs = status & CODEC_CHECK_BITS; 893 sc->codec_not_ready_bits |= detected_codecs; 894 895 /* disable detected interupt sources */ 896 enable = atiixp_rd(sc, ATI_REG_IER); 897 enable &= ~detected_codecs; 898 atiixp_wr(sc, ATI_REG_IER, enable); 899 } 900 901 /* acknowledge */ 902 atiixp_wr(sc, ATI_REG_ISR, status); 903 atiixp_unlock(sc); 904 905 if (trigger & 1) 906 chn_intr(sc->pch.channel); 907 if (trigger & 2) 908 chn_intr(sc->rch.channel); 909 } 910 911 static void 912 atiixp_dma_cb(void *p, bus_dma_segment_t *bds, int a, int b) 913 { 914 struct atiixp_info *sc = (struct atiixp_info *)p; 915 sc->sgd_addr = bds->ds_addr; 916 } 917 918 static void 919 atiixp_chip_pre_init(struct atiixp_info *sc) 920 { 921 uint32_t value; 922 923 atiixp_lock(sc); 924 925 /* disable interrupts */ 926 atiixp_disable_interrupts(sc); 927 928 /* clear all DMA enables (preserving rest of settings) */ 929 value = atiixp_rd(sc, ATI_REG_CMD); 930 value &= ~(ATI_REG_CMD_IN_DMA_EN | ATI_REG_CMD_OUT_DMA_EN | 931 ATI_REG_CMD_SPDF_OUT_EN ); 932 atiixp_wr(sc, ATI_REG_CMD, value); 933 934 /* reset aclink */ 935 atiixp_reset_aclink(sc); 936 937 sc->codec_not_ready_bits = 0; 938 939 /* enable all codecs to interrupt as well as the new frame interrupt */ 940 atiixp_wr(sc, ATI_REG_IER, CODEC_CHECK_BITS); 941 942 atiixp_unlock(sc); 943 } 944 945 #ifdef SND_DYNSYSCTL 946 static int 947 sysctl_atiixp_polling(SYSCTL_HANDLER_ARGS) 948 { 949 struct atiixp_info *sc; 950 device_t dev; 951 int err, val; 952 953 dev = oidp->oid_arg1; 954 sc = pcm_getdevinfo(dev); 955 if (sc == NULL) 956 return (EINVAL); 957 atiixp_lock(sc); 958 val = sc->polling; 959 atiixp_unlock(sc); 960 err = sysctl_handle_int(oidp, &val, sizeof(val), req); 961 962 if (err || req->newptr == NULL) 963 return (err); 964 if (val < 0 || val > 1) 965 return (EINVAL); 966 967 atiixp_lock(sc); 968 if (val != sc->polling) { 969 if (atiixp_chan_active(sc) != 0) 970 err = EBUSY; 971 else if (val == 0) { 972 atiixp_enable_interrupts(sc); 973 sc->polling = 0; 974 DELAY(1000); 975 } else { 976 atiixp_disable_interrupts(sc); 977 sc->polling = 1; 978 DELAY(1000); 979 } 980 } 981 atiixp_unlock(sc); 982 983 return (err); 984 } 985 #endif 986 987 static void 988 atiixp_chip_post_init(void *arg) 989 { 990 struct atiixp_info *sc = (struct atiixp_info *)arg; 991 uint32_t subdev; 992 int i, timeout, found, polling; 993 char status[SND_STATUSLEN]; 994 995 atiixp_lock(sc); 996 997 if (sc->delayed_attach.ich_func) { 998 config_intrhook_disestablish(&sc->delayed_attach); 999 sc->delayed_attach.ich_func = NULL; 1000 } 1001 1002 polling = sc->polling; 1003 sc->polling = 0; 1004 1005 /* wait for the interrupts to happen */ 1006 timeout = 100; 1007 do { 1008 msleep(sc, sc->lock, PWAIT, "ixpslp", 1); 1009 if (sc->codec_not_ready_bits) 1010 break; 1011 } while (--timeout); 1012 1013 sc->polling = polling; 1014 atiixp_disable_interrupts(sc); 1015 1016 if (timeout == 0) { 1017 device_printf(sc->dev, 1018 "WARNING: timeout during codec detection; " 1019 "codecs might be present but haven't interrupted\n"); 1020 atiixp_unlock(sc); 1021 goto postinitbad; 1022 } 1023 1024 found = 0; 1025 1026 /* 1027 * ATI IXP can have upto 3 codecs, but single codec should be 1028 * suffice for now. 1029 */ 1030 if (!(sc->codec_not_ready_bits & ATI_REG_ISR_CODEC0_NOT_READY)) { 1031 /* codec 0 present */ 1032 sc->codec_found++; 1033 sc->codec_idx = 0; 1034 found++; 1035 } 1036 1037 if (!(sc->codec_not_ready_bits & ATI_REG_ISR_CODEC1_NOT_READY)) { 1038 /* codec 1 present */ 1039 sc->codec_found++; 1040 } 1041 1042 if (!(sc->codec_not_ready_bits & ATI_REG_ISR_CODEC2_NOT_READY)) { 1043 /* codec 2 present */ 1044 sc->codec_found++; 1045 } 1046 1047 atiixp_unlock(sc); 1048 1049 if (found == 0) 1050 goto postinitbad; 1051 1052 /* create/init mixer */ 1053 sc->codec = AC97_CREATE(sc->dev, sc, atiixp_ac97); 1054 if (sc->codec == NULL) 1055 goto postinitbad; 1056 1057 subdev = (pci_get_subdevice(sc->dev) << 16) | 1058 pci_get_subvendor(sc->dev); 1059 switch (subdev) { 1060 case 0x11831043: /* ASUS A6R */ 1061 case 0x2043161f: /* Maxselect x710s - http://maxselect.ru/ */ 1062 ac97_setflags(sc->codec, ac97_getflags(sc->codec) | 1063 AC97_F_EAPD_INV); 1064 break; 1065 default: 1066 break; 1067 } 1068 1069 mixer_init(sc->dev, ac97_getmixerclass(), sc->codec); 1070 1071 if (pcm_register(sc->dev, sc, ATI_IXP_NPCHAN, ATI_IXP_NRCHAN)) 1072 goto postinitbad; 1073 1074 for (i = 0; i < ATI_IXP_NPCHAN; i++) 1075 pcm_addchan(sc->dev, PCMDIR_PLAY, &atiixp_chan_class, sc); 1076 for (i = 0; i < ATI_IXP_NRCHAN; i++) 1077 pcm_addchan(sc->dev, PCMDIR_REC, &atiixp_chan_class, sc); 1078 1079 #ifdef SND_DYNSYSCTL 1080 SYSCTL_ADD_PROC(device_get_sysctl_ctx(sc->dev), 1081 SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev)), OID_AUTO, 1082 "polling", CTLTYPE_INT | CTLFLAG_RW, sc->dev, sizeof(sc->dev), 1083 sysctl_atiixp_polling, "I", "Enable polling mode"); 1084 #endif 1085 1086 snprintf(status, SND_STATUSLEN, "at memory 0x%lx irq %ld %s", 1087 rman_get_start(sc->reg), rman_get_start(sc->irq), 1088 PCM_KLDSTRING(snd_atiixp)); 1089 1090 pcm_setstatus(sc->dev, status); 1091 1092 atiixp_lock(sc); 1093 if (sc->polling == 0) 1094 atiixp_enable_interrupts(sc); 1095 atiixp_unlock(sc); 1096 1097 return; 1098 1099 postinitbad: 1100 atiixp_release_resource(sc); 1101 } 1102 1103 static void 1104 atiixp_release_resource(struct atiixp_info *sc) 1105 { 1106 if (sc == NULL) 1107 return; 1108 if (sc->codec) { 1109 ac97_destroy(sc->codec); 1110 sc->codec = NULL; 1111 } 1112 if (sc->ih) { 1113 bus_teardown_intr(sc->dev, sc->irq, sc->ih); 1114 sc->ih = NULL; 1115 } 1116 if (sc->reg) { 1117 bus_release_resource(sc->dev, sc->regtype, sc->regid, sc->reg); 1118 sc->reg = NULL; 1119 } 1120 if (sc->irq) { 1121 bus_release_resource(sc->dev, SYS_RES_IRQ, sc->irqid, sc->irq); 1122 sc->irq = NULL; 1123 } 1124 if (sc->parent_dmat) { 1125 bus_dma_tag_destroy(sc->parent_dmat); 1126 sc->parent_dmat = NULL; 1127 } 1128 if (sc->sgd_dmamap) 1129 bus_dmamap_unload(sc->sgd_dmat, sc->sgd_dmamap); 1130 if (sc->sgd_table) { 1131 bus_dmamem_free(sc->sgd_dmat, sc->sgd_table, sc->sgd_dmamap); 1132 sc->sgd_table = NULL; 1133 } 1134 sc->sgd_dmamap = NULL; 1135 if (sc->sgd_dmat) { 1136 bus_dma_tag_destroy(sc->sgd_dmat); 1137 sc->sgd_dmat = NULL; 1138 } 1139 if (sc->lock) { 1140 snd_mtxfree(sc->lock); 1141 sc->lock = NULL; 1142 } 1143 } 1144 1145 static int 1146 atiixp_pci_probe(device_t dev) 1147 { 1148 int i; 1149 uint16_t devid, vendor; 1150 1151 vendor = pci_get_vendor(dev); 1152 devid = pci_get_device(dev); 1153 for (i = 0; i < sizeof(atiixp_hw) / sizeof(atiixp_hw[0]); i++) { 1154 if (vendor == atiixp_hw[i].vendor && 1155 devid == atiixp_hw[i].devid) { 1156 device_set_desc(dev, atiixp_hw[i].desc); 1157 return (BUS_PROBE_DEFAULT); 1158 } 1159 } 1160 1161 return (ENXIO); 1162 } 1163 1164 static int 1165 atiixp_pci_attach(device_t dev) 1166 { 1167 struct atiixp_info *sc; 1168 int i; 1169 1170 if ((sc = malloc(sizeof(*sc), M_DEVBUF, M_NOWAIT | M_ZERO)) == NULL) { 1171 device_printf(dev, "cannot allocate softc\n"); 1172 return (ENXIO); 1173 } 1174 1175 sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_atiixp softc"); 1176 sc->dev = dev; 1177 1178 callout_init(&sc->poll_timer, CALLOUT_MPSAFE); 1179 sc->poll_ticks = 1; 1180 1181 if (resource_int_value(device_get_name(sc->dev), 1182 device_get_unit(sc->dev), "polling", &i) == 0 && i != 0) 1183 sc->polling = 1; 1184 else 1185 sc->polling = 0; 1186 1187 pci_set_powerstate(dev, PCI_POWERSTATE_D0); 1188 pci_enable_busmaster(dev); 1189 1190 sc->regid = PCIR_BAR(0); 1191 sc->regtype = SYS_RES_MEMORY; 1192 sc->reg = bus_alloc_resource_any(dev, sc->regtype, 1193 &sc->regid, RF_ACTIVE); 1194 1195 if (!sc->reg) { 1196 device_printf(dev, "unable to allocate register space\n"); 1197 goto bad; 1198 } 1199 1200 sc->st = rman_get_bustag(sc->reg); 1201 sc->sh = rman_get_bushandle(sc->reg); 1202 1203 sc->bufsz = pcm_getbuffersize(dev, ATI_IXP_BUFSZ_MIN, 1204 ATI_IXP_BUFSZ_DEFAULT, ATI_IXP_BUFSZ_MAX); 1205 1206 sc->irqid = 0; 1207 sc->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->irqid, 1208 RF_ACTIVE | RF_SHAREABLE); 1209 if (!sc->irq || snd_setup_intr(dev, sc->irq, INTR_MPSAFE, 1210 atiixp_intr, sc, &sc->ih)) { 1211 device_printf(dev, "unable to map interrupt\n"); 1212 goto bad; 1213 } 1214 1215 /* 1216 * Let the user choose the best DMA segments. 1217 */ 1218 if (resource_int_value(device_get_name(dev), 1219 device_get_unit(dev), "blocksize", &i) == 0 && i > 0) { 1220 i &= ATI_IXP_BLK_ALIGN; 1221 if (i < ATI_IXP_BLK_MIN) 1222 i = ATI_IXP_BLK_MIN; 1223 sc->blkcnt = sc->bufsz / i; 1224 i = 0; 1225 while (sc->blkcnt >> i) 1226 i++; 1227 sc->blkcnt = 1 << (i - 1); 1228 if (sc->blkcnt < ATI_IXP_DMA_CHSEGS_MIN) 1229 sc->blkcnt = ATI_IXP_DMA_CHSEGS_MIN; 1230 else if (sc->blkcnt > ATI_IXP_DMA_CHSEGS_MAX) 1231 sc->blkcnt = ATI_IXP_DMA_CHSEGS_MAX; 1232 1233 } else 1234 sc->blkcnt = ATI_IXP_DMA_CHSEGS; 1235 1236 /* 1237 * DMA tag for scatter-gather buffers and link pointers 1238 */ 1239 if (bus_dma_tag_create(/*parent*/bus_get_dma_tag(dev), /*alignment*/2, 1240 /*boundary*/0, 1241 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, 1242 /*highaddr*/BUS_SPACE_MAXADDR, 1243 /*filter*/NULL, /*filterarg*/NULL, 1244 /*maxsize*/sc->bufsz, /*nsegments*/1, /*maxsegz*/0x3ffff, 1245 /*flags*/0, /*lockfunc*/NULL, 1246 /*lockarg*/NULL, &sc->parent_dmat) != 0) { 1247 device_printf(dev, "unable to create dma tag\n"); 1248 goto bad; 1249 } 1250 1251 if (bus_dma_tag_create(/*parent*/bus_get_dma_tag(dev), /*alignment*/2, 1252 /*boundary*/0, 1253 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, 1254 /*highaddr*/BUS_SPACE_MAXADDR, 1255 /*filter*/NULL, /*filterarg*/NULL, 1256 /*maxsize*/ATI_IXP_DMA_CHSEGS_MAX * ATI_IXP_NCHANS * 1257 sizeof(struct atiixp_dma_op), 1258 /*nsegments*/1, /*maxsegz*/0x3ffff, 1259 /*flags*/0, /*lockfunc*/NULL, 1260 /*lockarg*/NULL, &sc->sgd_dmat) != 0) { 1261 device_printf(dev, "unable to create dma tag\n"); 1262 goto bad; 1263 } 1264 1265 if (bus_dmamem_alloc(sc->sgd_dmat, (void **)&sc->sgd_table, 1266 BUS_DMA_NOWAIT, &sc->sgd_dmamap) == -1) 1267 goto bad; 1268 1269 if (bus_dmamap_load(sc->sgd_dmat, sc->sgd_dmamap, sc->sgd_table, 1270 ATI_IXP_DMA_CHSEGS_MAX * ATI_IXP_NCHANS * 1271 sizeof(struct atiixp_dma_op), atiixp_dma_cb, sc, 0)) 1272 goto bad; 1273 1274 1275 atiixp_chip_pre_init(sc); 1276 1277 sc->delayed_attach.ich_func = atiixp_chip_post_init; 1278 sc->delayed_attach.ich_arg = sc; 1279 if (cold == 0 || 1280 config_intrhook_establish(&sc->delayed_attach) != 0) { 1281 sc->delayed_attach.ich_func = NULL; 1282 atiixp_chip_post_init(sc); 1283 } 1284 1285 return (0); 1286 1287 bad: 1288 atiixp_release_resource(sc); 1289 return (ENXIO); 1290 } 1291 1292 static int 1293 atiixp_pci_detach(device_t dev) 1294 { 1295 int r; 1296 struct atiixp_info *sc; 1297 1298 sc = pcm_getdevinfo(dev); 1299 if (sc != NULL) { 1300 if (sc->codec != NULL) { 1301 r = pcm_unregister(dev); 1302 if (r) 1303 return (r); 1304 } 1305 sc->codec = NULL; 1306 if (sc->st != 0 && sc->sh != 0) 1307 atiixp_disable_interrupts(sc); 1308 atiixp_release_resource(sc); 1309 free(sc, M_DEVBUF); 1310 } 1311 return (0); 1312 } 1313 1314 static int 1315 atiixp_pci_suspend(device_t dev) 1316 { 1317 struct atiixp_info *sc = pcm_getdevinfo(dev); 1318 uint32_t value; 1319 1320 /* quickly disable interrupts and save channels active state */ 1321 atiixp_lock(sc); 1322 atiixp_disable_interrupts(sc); 1323 atiixp_unlock(sc); 1324 1325 /* stop everything */ 1326 if (sc->pch.active != 0) 1327 atiixp_chan_trigger(NULL, &sc->pch, PCMTRIG_STOP); 1328 if (sc->rch.active != 0) 1329 atiixp_chan_trigger(NULL, &sc->rch, PCMTRIG_STOP); 1330 1331 /* power down aclink and pci bus */ 1332 atiixp_lock(sc); 1333 value = atiixp_rd(sc, ATI_REG_CMD); 1334 value |= ATI_REG_CMD_POWERDOWN | ATI_REG_CMD_AC_RESET; 1335 atiixp_wr(sc, ATI_REG_CMD, ATI_REG_CMD_POWERDOWN); 1336 pci_set_powerstate(dev, PCI_POWERSTATE_D3); 1337 atiixp_unlock(sc); 1338 1339 return (0); 1340 } 1341 1342 static int 1343 atiixp_pci_resume(device_t dev) 1344 { 1345 struct atiixp_info *sc = pcm_getdevinfo(dev); 1346 1347 atiixp_lock(sc); 1348 /* power up pci bus */ 1349 pci_set_powerstate(dev, PCI_POWERSTATE_D0); 1350 pci_enable_io(dev, SYS_RES_MEMORY); 1351 pci_enable_busmaster(dev); 1352 /* reset / power up aclink */ 1353 atiixp_reset_aclink(sc); 1354 atiixp_unlock(sc); 1355 1356 if (mixer_reinit(dev) == -1) { 1357 device_printf(dev, "unable to reinitialize the mixer\n"); 1358 return (ENXIO); 1359 } 1360 1361 /* 1362 * Resume channel activities. Reset channel format regardless 1363 * of its previous state. 1364 */ 1365 if (sc->pch.channel != NULL) { 1366 if (sc->pch.fmt != 0) 1367 atiixp_chan_setformat(NULL, &sc->pch, sc->pch.fmt); 1368 if (sc->pch.active != 0) 1369 atiixp_chan_trigger(NULL, &sc->pch, PCMTRIG_START); 1370 } 1371 if (sc->rch.channel != NULL) { 1372 if (sc->rch.fmt != 0) 1373 atiixp_chan_setformat(NULL, &sc->rch, sc->rch.fmt); 1374 if (sc->rch.active != 0) 1375 atiixp_chan_trigger(NULL, &sc->rch, PCMTRIG_START); 1376 } 1377 1378 /* enable interrupts */ 1379 atiixp_lock(sc); 1380 if (sc->polling == 0) 1381 atiixp_enable_interrupts(sc); 1382 atiixp_unlock(sc); 1383 1384 return (0); 1385 } 1386 1387 static device_method_t atiixp_methods[] = { 1388 DEVMETHOD(device_probe, atiixp_pci_probe), 1389 DEVMETHOD(device_attach, atiixp_pci_attach), 1390 DEVMETHOD(device_detach, atiixp_pci_detach), 1391 DEVMETHOD(device_suspend, atiixp_pci_suspend), 1392 DEVMETHOD(device_resume, atiixp_pci_resume), 1393 { 0, 0 } 1394 }; 1395 1396 static driver_t atiixp_driver = { 1397 "pcm", 1398 atiixp_methods, 1399 PCM_SOFTC_SIZE, 1400 }; 1401 1402 DRIVER_MODULE(snd_atiixp, pci, atiixp_driver, pcm_devclass, 0, 0); 1403 MODULE_DEPEND(snd_atiixp, sound, SOUND_MINVER, SOUND_PREFVER, SOUND_MAXVER); 1404 MODULE_VERSION(snd_atiixp, 1); 1405