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