xref: /netbsd-src/sys/dev/pci/auich.c (revision c71562d660be5e4ad22016bce45e96f08af190cc)
1 /*	$NetBSD: auich.c,v 1.106 2006/04/16 23:07:16 jmcneill Exp $	*/
2 
3 /*-
4  * Copyright (c) 2000, 2004, 2005 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Jason R. Thorpe and by Charles M. Hannum.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the NetBSD
21  *	Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 
39 /*
40  * Copyright (c) 2000 Michael Shalayeff
41  * All rights reserved.
42  *
43  * Redistribution and use in source and binary forms, with or without
44  * modification, are permitted provided that the following conditions
45  * are met:
46  * 1. Redistributions of source code must retain the above copyright
47  *    notice, this list of conditions and the following disclaimer.
48  * 2. Redistributions in binary form must reproduce the above copyright
49  *    notice, this list of conditions and the following disclaimer in the
50  *    documentation and/or other materials provided with the distribution.
51  * 3. The name of the author may not be used to endorse or promote products
52  *    derived from this software without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
55  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
56  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
57  * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
58  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
59  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
60  * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
62  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
63  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
64  * THE POSSIBILITY OF SUCH DAMAGE.
65  *
66  *	from OpenBSD: ich.c,v 1.3 2000/08/11 06:17:18 mickey Exp
67  */
68 
69 /*
70  * Copyright (c) 2000 Katsurajima Naoto <raven@katsurajima.seya.yokohama.jp>
71  * Copyright (c) 2001 Cameron Grant <cg@freebsd.org>
72  * All rights reserved.
73  *
74  * Redistribution and use in source and binary forms, with or without
75  * modification, are permitted provided that the following conditions
76  * are met:
77  * 1. Redistributions of source code must retain the above copyright
78  *    notice, this list of conditions and the following disclaimer.
79  * 2. Redistributions in binary form must reproduce the above copyright
80  *    notice, this list of conditions and the following disclaimer in the
81  *    documentation and/or other materials provided with the distribution.
82  *
83  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
84  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
85  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
86  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
87  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
88  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
89  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
90  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHERIN CONTRACT, STRICT
91  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
92  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF
93  * SUCH DAMAGE.
94  *
95  * auich_calibrate() was from FreeBSD: ich.c,v 1.22 2002/06/27 22:36:01 scottl Exp
96  */
97 
98 
99 /* #define	AUICH_DEBUG */
100 /*
101  * AC'97 audio found on Intel 810/820/440MX chipsets.
102  *	http://developer.intel.com/design/chipsets/datashts/290655.htm
103  *	http://developer.intel.com/design/chipsets/manuals/298028.htm
104  * ICH3:http://www.intel.com/design/chipsets/datashts/290716.htm
105  * ICH4:http://www.intel.com/design/chipsets/datashts/290744.htm
106  * ICH5:http://www.intel.com/design/chipsets/datashts/252516.htm
107  * AMD8111:
108  *	http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/24674.pdf
109  *	http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25720.pdf
110  *
111  * TODO:
112  *	- Add support for the dedicated microphone input.
113  *
114  * NOTE:
115  *      - The 440MX B-stepping at running 100MHz has a hardware erratum.
116  *        It causes PCI master abort and hangups until cold reboot.
117  *        http://www.intel.com/design/chipsets/specupdt/245051.htm
118  */
119 
120 #include <sys/cdefs.h>
121 __KERNEL_RCSID(0, "$NetBSD: auich.c,v 1.106 2006/04/16 23:07:16 jmcneill Exp $");
122 
123 #include <sys/param.h>
124 #include <sys/systm.h>
125 #include <sys/kernel.h>
126 #include <sys/malloc.h>
127 #include <sys/device.h>
128 #include <sys/fcntl.h>
129 #include <sys/proc.h>
130 #include <sys/sysctl.h>
131 
132 #include <uvm/uvm_extern.h>	/* for PAGE_SIZE */
133 
134 #include <dev/pci/pcidevs.h>
135 #include <dev/pci/pcivar.h>
136 #include <dev/pci/auichreg.h>
137 
138 #include <sys/audioio.h>
139 #include <dev/audio_if.h>
140 #include <dev/mulaw.h>
141 #include <dev/auconv.h>
142 
143 #include <machine/bus.h>
144 
145 #include <dev/ic/ac97reg.h>
146 #include <dev/ic/ac97var.h>
147 
148 struct auich_dma {
149 	bus_dmamap_t map;
150 	caddr_t addr;
151 	bus_dma_segment_t segs[1];
152 	int nsegs;
153 	size_t size;
154 	struct auich_dma *next;
155 };
156 
157 #define	DMAADDR(p)	((p)->map->dm_segs[0].ds_addr)
158 #define	KERNADDR(p)	((void *)((p)->addr))
159 
160 struct auich_cdata {
161 	struct auich_dmalist ic_dmalist_pcmo[ICH_DMALIST_MAX];
162 	struct auich_dmalist ic_dmalist_pcmi[ICH_DMALIST_MAX];
163 	struct auich_dmalist ic_dmalist_mici[ICH_DMALIST_MAX];
164 };
165 
166 #define	ICH_CDOFF(x)		offsetof(struct auich_cdata, x)
167 #define	ICH_PCMO_OFF(x)		ICH_CDOFF(ic_dmalist_pcmo[(x)])
168 #define	ICH_PCMI_OFF(x)		ICH_CDOFF(ic_dmalist_pcmi[(x)])
169 #define	ICH_MICI_OFF(x)		ICH_CDOFF(ic_dmalist_mici[(x)])
170 
171 struct auich_softc {
172 	struct device sc_dev;
173 	void *sc_ih;
174 
175 	struct device *sc_audiodev;
176 	audio_device_t sc_audev;
177 
178 	pci_chipset_tag_t sc_pc;
179 	pcitag_t sc_pt;
180 	bus_space_tag_t iot;
181 	bus_space_handle_t mix_ioh;
182 	bus_size_t mix_size;
183 	bus_space_handle_t aud_ioh;
184 	bus_size_t aud_size;
185 	bus_dma_tag_t dmat;
186 	pci_intr_handle_t intrh;
187 
188 	struct ac97_codec_if *codec_if;
189 	struct ac97_host_if host_if;
190 	int sc_codecnum;
191 	int sc_codectype;
192 	enum ac97_host_flags sc_codecflags;
193 
194 	/* DMA scatter-gather lists. */
195 	bus_dmamap_t sc_cddmamap;
196 #define	sc_cddma	sc_cddmamap->dm_segs[0].ds_addr
197 
198 	struct auich_cdata *sc_cdata;
199 
200 	struct auich_ring {
201 		int qptr;
202 		struct auich_dmalist *dmalist;
203 
204 		uint32_t start, p, end;
205 		int blksize;
206 
207 		void (*intr)(void *);
208 		void *arg;
209 	} pcmo, pcmi, mici;
210 
211 	struct auich_dma *sc_dmas;
212 
213 	/* SiS 7012 hack */
214 	int  sc_sample_shift;
215 	int  sc_sts_reg;
216 	/* 440MX workaround */
217 	int  sc_dmamap_flags;
218 
219 	/* Power Management */
220 	void *sc_powerhook;
221 	int sc_suspend;
222 	int sc_powerstate;
223 	struct pci_conf_state sc_pciconf;
224 
225 	/* sysctl */
226 	struct sysctllog *sc_log;
227 	uint32_t sc_ac97_clock;
228 	int sc_ac97_clock_mib;
229 
230 	int	sc_modem_offset;
231 
232 #define AUICH_AUDIO_NFORMATS	3
233 #define AUICH_MODEM_NFORMATS	1
234 	struct audio_format sc_audio_formats[AUICH_AUDIO_NFORMATS];
235 	struct audio_format sc_modem_formats[AUICH_MODEM_NFORMATS];
236 	struct audio_encoding_set *sc_encodings;
237 };
238 
239 /* Debug */
240 #ifdef AUICH_DEBUG
241 #define	DPRINTF(l,x)	do { if (auich_debug & (l)) printf x; } while(0)
242 int auich_debug = 0xfffe;
243 #define	ICH_DEBUG_CODECIO	0x0001
244 #define	ICH_DEBUG_DMA		0x0002
245 #define	ICH_DEBUG_INTR		0x0004
246 #else
247 #define	DPRINTF(x,y)	/* nothing */
248 #endif
249 
250 static int	auich_match(struct device *, struct cfdata *, void *);
251 static void	auich_attach(struct device *, struct device *, void *);
252 static int	auich_detach(struct device *, int);
253 static int	auich_activate(struct device *, enum devact);
254 static int	auich_intr(void *);
255 
256 CFATTACH_DECL(auich, sizeof(struct auich_softc),
257     auich_match, auich_attach, auich_detach, auich_activate);
258 
259 static int	auich_query_encoding(void *, struct audio_encoding *);
260 static int	auich_set_params(void *, int, int, audio_params_t *,
261 		    audio_params_t *, stream_filter_list_t *,
262 		    stream_filter_list_t *);
263 static int	auich_round_blocksize(void *, int, int, const audio_params_t *);
264 static void	auich_halt_pipe(struct auich_softc *, int);
265 static int	auich_halt_output(void *);
266 static int	auich_halt_input(void *);
267 static int	auich_getdev(void *, struct audio_device *);
268 static int	auich_set_port(void *, mixer_ctrl_t *);
269 static int	auich_get_port(void *, mixer_ctrl_t *);
270 static int	auich_query_devinfo(void *, mixer_devinfo_t *);
271 static void	*auich_allocm(void *, int, size_t, struct malloc_type *, int);
272 static void	auich_freem(void *, void *, struct malloc_type *);
273 static size_t	auich_round_buffersize(void *, int, size_t);
274 static paddr_t	auich_mappage(void *, void *, off_t, int);
275 static int	auich_get_props(void *);
276 static void	auich_trigger_pipe(struct auich_softc *, int, struct auich_ring *);
277 static void	auich_intr_pipe(struct auich_softc *, int, struct auich_ring *);
278 static int	auich_trigger_output(void *, void *, void *, int,
279 		    void (*)(void *), void *, const audio_params_t *);
280 static int	auich_trigger_input(void *, void *, void *, int,
281 		    void (*)(void *), void *, const audio_params_t *);
282 static int	auich_powerstate(void *, int);
283 
284 static int	auich_alloc_cdata(struct auich_softc *);
285 
286 static int	auich_allocmem(struct auich_softc *, size_t, size_t,
287 		    struct auich_dma *);
288 static int	auich_freemem(struct auich_softc *, struct auich_dma *);
289 
290 static void	auich_powerhook(int, void *);
291 static int	auich_set_rate(struct auich_softc *, int, u_long);
292 static int	auich_sysctl_verify(SYSCTLFN_ARGS);
293 static void	auich_finish_attach(struct device *);
294 static void	auich_calibrate(struct auich_softc *);
295 static void	auich_clear_cas(struct auich_softc *);
296 
297 static int	auich_attach_codec(void *, struct ac97_codec_if *);
298 static int	auich_read_codec(void *, uint8_t, uint16_t *);
299 static int	auich_write_codec(void *, uint8_t, uint16_t);
300 static int	auich_reset_codec(void *);
301 static enum ac97_host_flags	auich_flags_codec(void *);
302 
303 static const struct audio_hw_if auich_hw_if = {
304 	NULL,		/* open */
305 	NULL,		/* close */
306 	NULL,			/* drain */
307 	auich_query_encoding,
308 	auich_set_params,
309 	auich_round_blocksize,
310 	NULL,			/* commit_setting */
311 	NULL,			/* init_output */
312 	NULL,			/* init_input */
313 	NULL,			/* start_output */
314 	NULL,			/* start_input */
315 	auich_halt_output,
316 	auich_halt_input,
317 	NULL,			/* speaker_ctl */
318 	auich_getdev,
319 	NULL,			/* getfd */
320 	auich_set_port,
321 	auich_get_port,
322 	auich_query_devinfo,
323 	auich_allocm,
324 	auich_freem,
325 	auich_round_buffersize,
326 	auich_mappage,
327 	auich_get_props,
328 	auich_trigger_output,
329 	auich_trigger_input,
330 	NULL,			/* dev_ioctl */
331 	auich_powerstate,
332 };
333 
334 #define AUICH_FORMATS_1CH	0
335 #define AUICH_FORMATS_4CH	1
336 #define AUICH_FORMATS_6CH	2
337 static const struct audio_format auich_audio_formats[AUICH_AUDIO_NFORMATS] = {
338 	{NULL, AUMODE_PLAY | AUMODE_RECORD, AUDIO_ENCODING_SLINEAR_LE, 16, 16,
339 	 2, AUFMT_STEREO, 0, {8000, 48000}},
340 	{NULL, AUMODE_PLAY, AUDIO_ENCODING_SLINEAR_LE, 16, 16,
341 	 4, AUFMT_SURROUND4, 0, {8000, 48000}},
342 	{NULL, AUMODE_PLAY, AUDIO_ENCODING_SLINEAR_LE, 16, 16,
343 	 6, AUFMT_DOLBY_5_1, 0, {8000, 48000}},
344 };
345 
346 static const struct audio_format auich_modem_formats[AUICH_MODEM_NFORMATS] = {
347 	{NULL, AUMODE_PLAY | AUMODE_RECORD, AUDIO_ENCODING_SLINEAR_LE, 16, 16,
348 	 1, AUFMT_MONAURAL, 0, {8000, 16000}},
349 };
350 
351 #define PCI_ID_CODE0(v, p)	PCI_ID_CODE(PCI_VENDOR_##v, PCI_PRODUCT_##v##_##p)
352 #define PCIID_ICH		PCI_ID_CODE0(INTEL, 82801AA_ACA)
353 #define PCIID_ICH0		PCI_ID_CODE0(INTEL, 82801AB_ACA)
354 #define PCIID_ICH2		PCI_ID_CODE0(INTEL, 82801BA_ACA)
355 #define PCIID_440MX		PCI_ID_CODE0(INTEL, 82440MX_ACA)
356 #define PCIID_ICH3		PCI_ID_CODE0(INTEL, 82801CA_AC)
357 #define PCIID_ICH4		PCI_ID_CODE0(INTEL, 82801DB_AC)
358 #define PCIID_ICH5		PCI_ID_CODE0(INTEL, 82801EB_AC)
359 #define PCIID_ICH6		PCI_ID_CODE0(INTEL, 82801FB_AC)
360 #define PCIID_ICH7		PCI_ID_CODE0(INTEL, 82801G_ACA)
361 #define PCIID_I6300ESB		PCI_ID_CODE0(INTEL, 6300ESB_ACA)
362 #define PCIID_SIS7012		PCI_ID_CODE0(SIS, 7012_AC)
363 #define PCIID_NFORCE		PCI_ID_CODE0(NVIDIA, NFORCE_MCP_AC)
364 #define PCIID_NFORCE2		PCI_ID_CODE0(NVIDIA, NFORCE2_MCPT_AC)
365 #define PCIID_NFORCE2_400	PCI_ID_CODE0(NVIDIA, NFORCE2_400_MCPT_AC)
366 #define PCIID_NFORCE3		PCI_ID_CODE0(NVIDIA, NFORCE3_MCPT_AC)
367 #define PCIID_NFORCE3_250	PCI_ID_CODE0(NVIDIA, NFORCE3_250_MCPT_AC)
368 #define PCIID_NFORCE4		PCI_ID_CODE0(NVIDIA, NFORCE4_AC)
369 #define PCIID_AMD768		PCI_ID_CODE0(AMD, PBC768_AC)
370 #define PCIID_AMD8111		PCI_ID_CODE0(AMD, PBC8111_AC)
371 
372 #define	PCIID_ICH3MODEM		PCI_ID_CODE0(INTEL, 82801CA_MOD)
373 #define PCIID_ICH4MODEM		PCI_ID_CODE0(INTEL, 82801DB_MOD)
374 
375 struct auich_devtype {
376 	pcireg_t	id;
377 	const char	*name;
378 	const char	*shortname;	/* must be less than 11 characters */
379 };
380 
381 static const struct auich_devtype auich_audio_devices[] = {
382 	{ PCIID_ICH,	"i82801AA (ICH) AC-97 Audio",	"ICH" },
383 	{ PCIID_ICH0,	"i82801AB (ICH0) AC-97 Audio",	"ICH0" },
384 	{ PCIID_ICH2,	"i82801BA (ICH2) AC-97 Audio",	"ICH2" },
385 	{ PCIID_440MX,	"i82440MX AC-97 Audio",		"440MX" },
386 	{ PCIID_ICH3,	"i82801CA (ICH3) AC-97 Audio",	"ICH3" },
387 	{ PCIID_ICH4,	"i82801DB/DBM (ICH4/ICH4M) AC-97 Audio", "ICH4" },
388 	{ PCIID_ICH5,	"i82801EB (ICH5) AC-97 Audio",	"ICH5" },
389 	{ PCIID_ICH6,	"i82801FB (ICH6) AC-97 Audio",	"ICH6" },
390 	{ PCIID_ICH7,	"i82801GB/GR (ICH7) AC-97 Audio",	"ICH7" },
391 	{ PCIID_I6300ESB,	"Intel 6300ESB AC-97 Audio",	"I6300ESB" },
392 	{ PCIID_SIS7012, "SiS 7012 AC-97 Audio",	"SiS7012" },
393 	{ PCIID_NFORCE,	"nForce MCP AC-97 Audio",	"nForce" },
394 	{ PCIID_NFORCE2, "nForce2 MCP-T AC-97 Audio",	"nForce2" },
395 	{ PCIID_NFORCE2_400, "nForce2 400 MCP-T AC-97 Audio",	"nForce2" },
396 	{ PCIID_NFORCE3, "nForce3 MCP-T AC-97 Audio",	"nForce3" },
397 	{ PCIID_NFORCE3_250, "nForce3 250 MCP-T AC-97 Audio", "nForce3" },
398 	{ PCIID_NFORCE4, "nForce4 AC-97 Audio",		"nForce4" },
399 	{ PCIID_AMD768,	"AMD768 AC-97 Audio",		"AMD768" },
400 	{ PCIID_AMD8111,"AMD8111 AC-97 Audio",		"AMD8111" },
401 	{ 0,		NULL,				NULL },
402 };
403 
404 static const struct auich_devtype auich_modem_devices[] = {
405 #ifdef AUICH_ATTACH_MODEM
406 	{ PCIID_ICH3MODEM, "i82801CA (ICH3) AC-97 Modem", "ICH3MODEM" },
407 	{ PCIID_ICH4MODEM, "i82801DB (ICH4) AC-97 Modem", "ICH4MODEM" },
408 #endif
409 	{ 0,		NULL,				NULL },
410 };
411 
412 static const struct auich_devtype *
413 auich_lookup(struct pci_attach_args *pa, const struct auich_devtype *auich_devices)
414 {
415 	const struct auich_devtype *d;
416 
417 	for (d = auich_devices; d->name != NULL; d++) {
418 		if (pa->pa_id == d->id)
419 			return d;
420 	}
421 
422 	return NULL;
423 }
424 
425 static int
426 auich_match(struct device *parent, struct cfdata *match, void *aux)
427 {
428 	struct pci_attach_args *pa;
429 
430 	pa = aux;
431 	if (auich_lookup(pa, auich_audio_devices) != NULL)
432 		return 1;
433 	if (auich_lookup(pa, auich_modem_devices) != NULL)
434 		return 1;
435 
436 	return 0;
437 }
438 
439 static void
440 auich_attach(struct device *parent, struct device *self, void *aux)
441 {
442 	struct auich_softc *sc;
443 	struct pci_attach_args *pa;
444 	pcireg_t v, subdev;
445 	const char *intrstr;
446 	const struct auich_devtype *d;
447 	const struct sysctlnode *node, *node_ac97clock;
448 	int err, node_mib, i;
449 
450 	sc = (struct auich_softc *)self;
451 	pa = aux;
452 
453 	if ((d = auich_lookup(pa, auich_modem_devices)) != NULL) {
454 		sc->sc_modem_offset = 0x10;
455 		sc->sc_codectype = AC97_CODEC_TYPE_MODEM;
456 	} else if ((d = auich_lookup(pa, auich_audio_devices)) != NULL) {
457 		sc->sc_modem_offset = 0;
458 		sc->sc_codectype = AC97_CODEC_TYPE_AUDIO;
459 	} else
460 		panic("auich_attach: impossible");
461 
462 	if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO)
463 		aprint_naive(": Audio controller\n");
464 	else
465 		aprint_naive(": Modem controller\n");
466 
467 	sc->sc_pc = pa->pa_pc;
468 	sc->sc_pt = pa->pa_tag;
469 
470 	aprint_normal(": %s\n", d->name);
471 
472 	if (d->id == PCIID_ICH4 || d->id == PCIID_ICH5 || d->id == PCIID_ICH6
473 	    || d->id == PCIID_ICH7 || d->id == PCIID_I6300ESB
474 	    || d->id == PCIID_ICH4MODEM) {
475 		/*
476 		 * Use native mode for Intel 6300ESB and ICH4/ICH5/ICH6/ICH7
477 		 */
478 		if (pci_mapreg_map(pa, ICH_MMBAR, PCI_MAPREG_TYPE_MEM, 0,
479 				   &sc->iot, &sc->mix_ioh, NULL, &sc->mix_size)) {
480 			v = pci_conf_read(pa->pa_pc, pa->pa_tag, ICH_CFG);
481 			pci_conf_write(pa->pa_pc, pa->pa_tag, ICH_CFG,
482 				       v | ICH_CFG_IOSE);
483 			if (pci_mapreg_map(pa, ICH_NAMBAR, PCI_MAPREG_TYPE_IO,
484 					   0, &sc->iot, &sc->mix_ioh, NULL,
485 					   &sc->mix_size)) {
486 				aprint_error("%s: can't map codec i/o space\n",
487 					     sc->sc_dev.dv_xname);
488 				return;
489 			}
490 		}
491 		if (pci_mapreg_map(pa, ICH_MBBAR, PCI_MAPREG_TYPE_MEM, 0,
492 				   &sc->iot, &sc->aud_ioh, NULL, &sc->aud_size)) {
493 			v = pci_conf_read(pa->pa_pc, pa->pa_tag, ICH_CFG);
494 			pci_conf_write(pa->pa_pc, pa->pa_tag, ICH_CFG,
495 				       v | ICH_CFG_IOSE);
496 			if (pci_mapreg_map(pa, ICH_NABMBAR, PCI_MAPREG_TYPE_IO,
497 					   0, &sc->iot, &sc->aud_ioh, NULL,
498 					   &sc->aud_size)) {
499 				aprint_error("%s: can't map device i/o space\n",
500 					     sc->sc_dev.dv_xname);
501 				return;
502 			}
503 		}
504 	} else {
505 		if (pci_mapreg_map(pa, ICH_NAMBAR, PCI_MAPREG_TYPE_IO, 0,
506 				   &sc->iot, &sc->mix_ioh, NULL, &sc->mix_size)) {
507 			aprint_error("%s: can't map codec i/o space\n",
508 				     sc->sc_dev.dv_xname);
509 			return;
510 		}
511 		if (pci_mapreg_map(pa, ICH_NABMBAR, PCI_MAPREG_TYPE_IO, 0,
512 				   &sc->iot, &sc->aud_ioh, NULL, &sc->aud_size)) {
513 			aprint_error("%s: can't map device i/o space\n",
514 				     sc->sc_dev.dv_xname);
515 			return;
516 		}
517 	}
518 	sc->dmat = pa->pa_dmat;
519 
520 	/* enable bus mastering */
521 	v = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
522 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
523 	    v | PCI_COMMAND_MASTER_ENABLE | PCI_COMMAND_BACKTOBACK_ENABLE);
524 
525 	/* Map and establish the interrupt. */
526 	if (pci_intr_map(pa, &sc->intrh)) {
527 		aprint_error("%s: can't map interrupt\n", sc->sc_dev.dv_xname);
528 		return;
529 	}
530 	intrstr = pci_intr_string(pa->pa_pc, sc->intrh);
531 	sc->sc_ih = pci_intr_establish(pa->pa_pc, sc->intrh, IPL_AUDIO,
532 	    auich_intr, sc);
533 	if (sc->sc_ih == NULL) {
534 		aprint_error("%s: can't establish interrupt",
535 		    sc->sc_dev.dv_xname);
536 		if (intrstr != NULL)
537 			aprint_normal(" at %s", intrstr);
538 		aprint_normal("\n");
539 		return;
540 	}
541 	aprint_normal("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
542 
543 	snprintf(sc->sc_audev.name, MAX_AUDIO_DEV_LEN, "%s AC97", d->shortname);
544 	snprintf(sc->sc_audev.version, MAX_AUDIO_DEV_LEN,
545 		 "0x%02x", PCI_REVISION(pa->pa_class));
546 	strlcpy(sc->sc_audev.config, sc->sc_dev.dv_xname, MAX_AUDIO_DEV_LEN);
547 
548 	/* SiS 7012 needs special handling */
549 	if (d->id == PCIID_SIS7012) {
550 		sc->sc_sts_reg = ICH_PICB;
551 		sc->sc_sample_shift = 0;
552 		/* Un-mute output. From Linux. */
553 		bus_space_write_4(sc->iot, sc->aud_ioh, ICH_SIS_NV_CTL,
554 		    bus_space_read_4(sc->iot, sc->aud_ioh, ICH_SIS_NV_CTL) |
555 		    ICH_SIS_CTL_UNMUTE);
556 	} else {
557 		sc->sc_sts_reg = ICH_STS;
558 		sc->sc_sample_shift = 1;
559 	}
560 
561 	/* Workaround for a 440MX B-stepping erratum */
562 	sc->sc_dmamap_flags = BUS_DMA_COHERENT;
563 	if (d->id == PCIID_440MX) {
564 		sc->sc_dmamap_flags |= BUS_DMA_NOCACHE;
565 		printf("%s: DMA bug workaround enabled\n", sc->sc_dev.dv_xname);
566 	}
567 
568 	/* Set up DMA lists. */
569 	sc->pcmo.qptr = sc->pcmi.qptr = sc->mici.qptr = 0;
570 	auich_alloc_cdata(sc);
571 
572 	DPRINTF(ICH_DEBUG_DMA, ("auich_attach: lists %p %p %p\n",
573 	    sc->pcmo.dmalist, sc->pcmi.dmalist, sc->mici.dmalist));
574 
575 	/* Modem codecs are always the secondary codec on ICH */
576 	sc->sc_codecnum = sc->sc_codectype == AC97_CODEC_TYPE_MODEM ? 1 : 0;
577 
578 	sc->host_if.arg = sc;
579 	sc->host_if.attach = auich_attach_codec;
580 	sc->host_if.read = auich_read_codec;
581 	sc->host_if.write = auich_write_codec;
582 	sc->host_if.reset = auich_reset_codec;
583 	sc->host_if.flags = auich_flags_codec;
584 
585 	subdev = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG);
586 	switch (subdev) {
587 	case 0x202f161f:	/* Gateway 7326GZ */
588 	case 0x203a161f:	/* Gateway 4028GZ */
589 	case 0x204c161f:	/* Kvazar-Micro Senator 3592XT */
590 	case 0x8144104d:	/* Sony VAIO PCG-TR* */
591 	case 0x8197104d:	/* Sony S1XP */
592 	case 0x81c0104d:	/* Sony VAIO type T */
593 	case 0x81c5104d:	/* Sony VAIO VGN-B1XP */
594 		sc->sc_codecflags = AC97_HOST_INVERTED_EAMP;
595 		break;
596 	default:
597 		sc->sc_codecflags = 0;
598 		break;
599 	}
600 
601 	if (ac97_attach_type(&sc->host_if, self, sc->sc_codectype) != 0)
602 		return;
603 
604 	/* setup audio_format */
605 	if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO) {
606 		memcpy(sc->sc_audio_formats, auich_audio_formats, sizeof(auich_audio_formats));
607 		if (!AC97_IS_4CH(sc->codec_if))
608 			AUFMT_INVALIDATE(&sc->sc_audio_formats[AUICH_FORMATS_4CH]);
609 		if (!AC97_IS_6CH(sc->codec_if))
610 			AUFMT_INVALIDATE(&sc->sc_audio_formats[AUICH_FORMATS_6CH]);
611 		if (AC97_IS_FIXED_RATE(sc->codec_if)) {
612 			for (i = 0; i < AUICH_AUDIO_NFORMATS; i++) {
613 				sc->sc_audio_formats[i].frequency_type = 1;
614 				sc->sc_audio_formats[i].frequency[0] = 48000;
615 			}
616 		}
617 		if (0 != auconv_create_encodings(sc->sc_audio_formats, AUICH_AUDIO_NFORMATS,
618 						 &sc->sc_encodings))
619 			return;
620 	} else {
621 		memcpy(sc->sc_modem_formats, auich_modem_formats, sizeof(auich_modem_formats));
622 		if (0 != auconv_create_encodings(sc->sc_modem_formats, AUICH_MODEM_NFORMATS,
623 						 &sc->sc_encodings))
624 			return;
625 	}
626 
627 
628 	/* Watch for power change */
629 	sc->sc_suspend = PWR_RESUME;
630 	sc->sc_powerhook = powerhook_establish(auich_powerhook, sc);
631 
632 	config_interrupts(self, auich_finish_attach);
633 
634 	/* sysctl setup */
635 	if (AC97_IS_FIXED_RATE(sc->codec_if) &&
636 	    sc->sc_codectype == AC97_CODEC_TYPE_AUDIO)
637 		return;
638 
639 	err = sysctl_createv(&sc->sc_log, 0, NULL, NULL, 0,
640 			     CTLTYPE_NODE, "hw", NULL, NULL, 0, NULL, 0,
641 			     CTL_HW, CTL_EOL);
642 	if (err != 0)
643 		goto sysctl_err;
644 	err = sysctl_createv(&sc->sc_log, 0, NULL, &node, 0,
645 			     CTLTYPE_NODE, sc->sc_dev.dv_xname, NULL, NULL, 0,
646 			     NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
647 	if (err != 0)
648 		goto sysctl_err;
649 	node_mib = node->sysctl_num;
650 
651 	if (!AC97_IS_FIXED_RATE(sc->codec_if)) {
652 		/* passing the sc address instead of &sc->sc_ac97_clock */
653 		err = sysctl_createv(&sc->sc_log, 0, NULL, &node_ac97clock,
654 				     CTLFLAG_READWRITE,
655 				     CTLTYPE_INT, "ac97rate",
656 				     SYSCTL_DESCR("AC'97 codec link rate"),
657 				     auich_sysctl_verify, 0, sc, 0,
658 				     CTL_HW, node_mib, CTL_CREATE, CTL_EOL);
659 		if (err != 0)
660 			goto sysctl_err;
661 		sc->sc_ac97_clock_mib = node_ac97clock->sysctl_num;
662 	}
663 
664 	return;
665 
666  sysctl_err:
667 	printf("%s: failed to add sysctl nodes. (%d)\n",
668 	       sc->sc_dev.dv_xname, err);
669 	return;			/* failure of sysctl is not fatal. */
670 }
671 
672 static int
673 auich_activate(struct device *self, enum devact act)
674 {
675 	struct auich_softc *sc;
676 	int ret;
677 
678 	sc = (struct auich_softc *)self;
679 	ret = 0;
680 	switch (act) {
681 	case DVACT_ACTIVATE:
682 		return EOPNOTSUPP;
683 	case DVACT_DEACTIVATE:
684 		if (sc->sc_audiodev != NULL)
685 			ret = config_deactivate(sc->sc_audiodev);
686 		return ret;
687 	}
688 	return EOPNOTSUPP;
689 }
690 
691 static int
692 auich_detach(struct device *self, int flags)
693 {
694 	struct auich_softc *sc;
695 
696 	sc = (struct auich_softc *)self;
697 
698 	/* audio */
699 	if (sc->sc_audiodev != NULL)
700 		config_detach(sc->sc_audiodev, flags);
701 
702 	/* sysctl */
703 	sysctl_teardown(&sc->sc_log);
704 
705 	/* audio_encoding_set */
706 	auconv_delete_encodings(sc->sc_encodings);
707 
708 	/* ac97 */
709 	if (sc->codec_if != NULL)
710 		sc->codec_if->vtbl->detach(sc->codec_if);
711 
712 	/* PCI */
713 	if (sc->sc_ih != NULL)
714 		pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
715 	if (sc->mix_size != 0)
716 		bus_space_unmap(sc->iot, sc->mix_ioh, sc->mix_size);
717 	if (sc->aud_size != 0)
718 		bus_space_unmap(sc->iot, sc->aud_ioh, sc->aud_size);
719 	return 0;
720 }
721 
722 static int
723 auich_sysctl_verify(SYSCTLFN_ARGS)
724 {
725 	int error, tmp;
726 	struct sysctlnode node;
727 	struct auich_softc *sc;
728 
729 	node = *rnode;
730 	sc = rnode->sysctl_data;
731 	if (node.sysctl_num == sc->sc_ac97_clock_mib) {
732 		tmp = sc->sc_ac97_clock;
733 		node.sysctl_data = &tmp;
734 		error = sysctl_lookup(SYSCTLFN_CALL(&node));
735 		if (error || newp == NULL)
736 			return error;
737 
738 		if (tmp < 48000 || tmp > 96000)
739 			return EINVAL;
740 		sc->sc_ac97_clock = tmp;
741 	}
742 
743 	return 0;
744 }
745 
746 static void
747 auich_finish_attach(struct device *self)
748 {
749 	struct auich_softc *sc;
750 
751 	sc = (void *)self;
752 	if (!AC97_IS_FIXED_RATE(sc->codec_if))
753 		auich_calibrate(sc);
754 
755 	sc->sc_audiodev = audio_attach_mi(&auich_hw_if, sc, &sc->sc_dev);
756 
757 	auich_powerhook(PWR_SUSPEND, sc);
758 
759 	return;
760 }
761 
762 #define ICH_CODECIO_INTERVAL	10
763 static int
764 auich_read_codec(void *v, uint8_t reg, uint16_t *val)
765 {
766 	struct auich_softc *sc;
767 	int i;
768 	uint32_t status;
769 
770 	sc = v;
771 	/* wait for an access semaphore */
772 	for (i = ICH_SEMATIMO / ICH_CODECIO_INTERVAL; i-- &&
773 	    bus_space_read_1(sc->iot, sc->aud_ioh,
774 		ICH_CAS + sc->sc_modem_offset) & 1;
775 	    DELAY(ICH_CODECIO_INTERVAL));
776 
777 	if (i > 0) {
778 		*val = bus_space_read_2(sc->iot, sc->mix_ioh,
779 		    reg + (sc->sc_codecnum * ICH_CODEC_OFFSET));
780 		DPRINTF(ICH_DEBUG_CODECIO,
781 		    ("auich_read_codec(%x, %x)\n", reg, *val));
782 		status = bus_space_read_4(sc->iot, sc->aud_ioh,
783 		    ICH_GSTS + sc->sc_modem_offset);
784 		if (status & ICH_RCS) {
785 			bus_space_write_4(sc->iot, sc->aud_ioh,
786 					  ICH_GSTS + sc->sc_modem_offset,
787 					  status & ~(ICH_SRI|ICH_PRI|ICH_GSCI));
788 			*val = 0xffff;
789 			DPRINTF(ICH_DEBUG_CODECIO,
790 			    ("%s: read_codec error\n", sc->sc_dev.dv_xname));
791 			if (reg == AC97_REG_GPIO_STATUS)
792 				auich_clear_cas(sc);
793 			return -1;
794 		}
795 		if (reg == AC97_REG_GPIO_STATUS)
796 			auich_clear_cas(sc);
797 		return 0;
798 	} else {
799 		aprint_normal("%s: read_codec timeout\n", sc->sc_dev.dv_xname);
800 		if (reg == AC97_REG_GPIO_STATUS)
801 			auich_clear_cas(sc);
802 		return -1;
803 	}
804 }
805 
806 static int
807 auich_write_codec(void *v, uint8_t reg, uint16_t val)
808 {
809 	struct auich_softc *sc;
810 	int i;
811 
812 	DPRINTF(ICH_DEBUG_CODECIO, ("auich_write_codec(%x, %x)\n", reg, val));
813 	sc = v;
814 	/* wait for an access semaphore */
815 	for (i = ICH_SEMATIMO / ICH_CODECIO_INTERVAL; i-- &&
816 	    bus_space_read_1(sc->iot, sc->aud_ioh,
817 		ICH_CAS + sc->sc_modem_offset) & 1;
818 	    DELAY(ICH_CODECIO_INTERVAL));
819 
820 	if (i > 0) {
821 		bus_space_write_2(sc->iot, sc->mix_ioh,
822 		    reg + (sc->sc_codecnum * ICH_CODEC_OFFSET), val);
823 		return 0;
824 	} else {
825 		aprint_normal("%s: write_codec timeout\n", sc->sc_dev.dv_xname);
826 		return -1;
827 	}
828 }
829 
830 static int
831 auich_attach_codec(void *v, struct ac97_codec_if *cif)
832 {
833 	struct auich_softc *sc;
834 
835 	sc = v;
836 	sc->codec_if = cif;
837 
838 	return 0;
839 }
840 
841 static int
842 auich_reset_codec(void *v)
843 {
844 	struct auich_softc *sc;
845 	int i;
846 	uint32_t control, status;
847 
848 	sc = v;
849 	control = bus_space_read_4(sc->iot, sc->aud_ioh,
850 	    ICH_GCTRL + sc->sc_modem_offset);
851 	if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO) {
852 		control &= ~(ICH_ACLSO | ICH_PCM246_MASK);
853 	} else {
854 		control &= ~ICH_ACLSO;
855 		control |= ICH_GIE;
856 	}
857 	control |= (control & ICH_CRESET) ? ICH_WRESET : ICH_CRESET;
858 	bus_space_write_4(sc->iot, sc->aud_ioh,
859 	    ICH_GCTRL + sc->sc_modem_offset, control);
860 
861 	for (i = 500000; i >= 0; i--) {
862 		status = bus_space_read_4(sc->iot, sc->aud_ioh,
863 		    ICH_GSTS + sc->sc_modem_offset);
864 		if (status & (ICH_PCR | ICH_SCR | ICH_S2CR))
865 			break;
866 		DELAY(1);
867 	}
868 	if (i <= 0) {
869 		printf("%s: auich_reset_codec: time out\n", sc->sc_dev.dv_xname);
870 		return ETIMEDOUT;
871 	}
872 #ifdef AUICH_DEBUG
873 	if (status & ICH_SCR)
874 		printf("%s: The 2nd codec is ready.\n",
875 		       sc->sc_dev.dv_xname);
876 	if (status & ICH_S2CR)
877 		printf("%s: The 3rd codec is ready.\n",
878 		       sc->sc_dev.dv_xname);
879 #endif
880 	return 0;
881 }
882 
883 static enum ac97_host_flags
884 auich_flags_codec(void *v)
885 {
886 	struct auich_softc *sc = v;
887 	return sc->sc_codecflags;
888 }
889 
890 static int
891 auich_query_encoding(void *v, struct audio_encoding *aep)
892 {
893 	struct auich_softc *sc;
894 
895 	sc = (struct auich_softc *)v;
896 	return auconv_query_encoding(sc->sc_encodings, aep);
897 }
898 
899 static int
900 auich_set_rate(struct auich_softc *sc, int mode, u_long srate)
901 {
902 	int ret;
903 	u_int ratetmp;
904 
905 	sc->codec_if->vtbl->set_clock(sc->codec_if, sc->sc_ac97_clock);
906 	ratetmp = srate;
907 	if (mode == AUMODE_RECORD)
908 		return sc->codec_if->vtbl->set_rate(sc->codec_if,
909 		    AC97_REG_PCM_LR_ADC_RATE, &ratetmp);
910 	ret = sc->codec_if->vtbl->set_rate(sc->codec_if,
911 	    AC97_REG_PCM_FRONT_DAC_RATE, &ratetmp);
912 	if (ret)
913 		return ret;
914 	ratetmp = srate;
915 	ret = sc->codec_if->vtbl->set_rate(sc->codec_if,
916 	    AC97_REG_PCM_SURR_DAC_RATE, &ratetmp);
917 	if (ret)
918 		return ret;
919 	ratetmp = srate;
920 	ret = sc->codec_if->vtbl->set_rate(sc->codec_if,
921 	    AC97_REG_PCM_LFE_DAC_RATE, &ratetmp);
922 	return ret;
923 }
924 
925 static int
926 auich_set_params(void *v, int setmode, int usemode, audio_params_t *play,
927     audio_params_t *rec, stream_filter_list_t *pfil, stream_filter_list_t *rfil)
928 {
929 	struct auich_softc *sc;
930 	audio_params_t *p;
931 	stream_filter_list_t *fil;
932 	int mode, index;
933 	uint32_t control;
934 
935 	sc = v;
936 	for (mode = AUMODE_RECORD; mode != -1;
937 	     mode = mode == AUMODE_RECORD ? AUMODE_PLAY : -1) {
938 		if ((setmode & mode) == 0)
939 			continue;
940 
941 		p = mode == AUMODE_PLAY ? play : rec;
942 		fil = mode == AUMODE_PLAY ? pfil : rfil;
943 		if (p == NULL)
944 			continue;
945 
946 		if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO) {
947 			if (p->sample_rate <  8000 ||
948 			    p->sample_rate > 48000)
949 				return EINVAL;
950 
951 			index = auconv_set_converter(sc->sc_audio_formats, AUICH_AUDIO_NFORMATS,
952 						     mode, p, TRUE, fil);
953 		} else {
954 			if (p->sample_rate != 8000 && p->sample_rate != 16000)
955 				return EINVAL;
956 			index = auconv_set_converter(sc->sc_modem_formats, AUICH_MODEM_NFORMATS,
957 						     mode, p, TRUE, fil);
958 		}
959 		if (index < 0)
960 			return EINVAL;
961 		if (fil->req_size > 0)
962 			p = &fil->filters[0].param;
963 		/* p represents HW encoding */
964 		if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO) {
965 			if (sc->sc_audio_formats[index].frequency_type != 1
966 			    && auich_set_rate(sc, mode, p->sample_rate))
967 				return EINVAL;
968 		} else {
969 			if (sc->sc_modem_formats[index].frequency_type != 1
970 			    && auich_set_rate(sc, mode, p->sample_rate))
971 				return EINVAL;
972 			auich_write_codec(sc, AC97_REG_LINE1_RATE,
973 					  p->sample_rate);
974 			auich_write_codec(sc, AC97_REG_LINE1_LEVEL, 0);
975 		}
976 		if (mode == AUMODE_PLAY &&
977 		    sc->sc_codectype == AC97_CODEC_TYPE_AUDIO) {
978 			control = bus_space_read_4(sc->iot, sc->aud_ioh,
979 			    ICH_GCTRL + sc->sc_modem_offset);
980 				control &= ~ICH_PCM246_MASK;
981 			if (p->channels == 4) {
982 				control |= ICH_PCM4;
983 			} else if (p->channels == 6) {
984 				control |= ICH_PCM6;
985 			}
986 			bus_space_write_4(sc->iot, sc->aud_ioh,
987 			    ICH_GCTRL + sc->sc_modem_offset, control);
988 		}
989 	}
990 
991 	return 0;
992 }
993 
994 static int
995 auich_round_blocksize(void *v, int blk, int mode, const audio_params_t *param)
996 {
997 
998 	return blk & ~0x3f;		/* keep good alignment */
999 }
1000 
1001 static void
1002 auich_halt_pipe(struct auich_softc *sc, int pipe)
1003 {
1004 	int i;
1005 	uint32_t status;
1006 
1007 	bus_space_write_1(sc->iot, sc->aud_ioh, pipe + ICH_CTRL, 0);
1008 	for (i = 0; i < 100; i++) {
1009 		status = bus_space_read_4(sc->iot, sc->aud_ioh, pipe + ICH_STS);
1010 		if (status & ICH_DCH)
1011 			break;
1012 		DELAY(1);
1013 	}
1014 	bus_space_write_1(sc->iot, sc->aud_ioh, pipe + ICH_CTRL, ICH_RR);
1015 
1016 #if AUICH_DEBUG
1017 	if (i > 0)
1018 		printf("auich_halt_pipe: halt took %d cycles\n", i);
1019 #endif
1020 }
1021 
1022 static int
1023 auich_halt_output(void *v)
1024 {
1025 	struct auich_softc *sc;
1026 
1027 	sc = v;
1028 	DPRINTF(ICH_DEBUG_DMA, ("%s: halt_output\n", sc->sc_dev.dv_xname));
1029 
1030 	auich_halt_pipe(sc, ICH_PCMO);
1031 	sc->pcmo.intr = NULL;
1032 
1033 	return 0;
1034 }
1035 
1036 static int
1037 auich_halt_input(void *v)
1038 {
1039 	struct auich_softc *sc;
1040 
1041 	sc = v;
1042 	DPRINTF(ICH_DEBUG_DMA, ("%s: halt_input\n", sc->sc_dev.dv_xname));
1043 
1044 	auich_halt_pipe(sc, ICH_PCMI);
1045 	sc->pcmi.intr = NULL;
1046 
1047 	return 0;
1048 }
1049 
1050 static int
1051 auich_getdev(void *v, struct audio_device *adp)
1052 {
1053 	struct auich_softc *sc;
1054 
1055 	sc = v;
1056 	*adp = sc->sc_audev;
1057 	return 0;
1058 }
1059 
1060 static int
1061 auich_set_port(void *v, mixer_ctrl_t *cp)
1062 {
1063 	struct auich_softc *sc;
1064 
1065 	sc = v;
1066 	return sc->codec_if->vtbl->mixer_set_port(sc->codec_if, cp);
1067 }
1068 
1069 static int
1070 auich_get_port(void *v, mixer_ctrl_t *cp)
1071 {
1072 	struct auich_softc *sc;
1073 
1074 	sc = v;
1075 	return sc->codec_if->vtbl->mixer_get_port(sc->codec_if, cp);
1076 }
1077 
1078 static int
1079 auich_query_devinfo(void *v, mixer_devinfo_t *dp)
1080 {
1081 	struct auich_softc *sc;
1082 
1083 	sc = v;
1084 	return sc->codec_if->vtbl->query_devinfo(sc->codec_if, dp);
1085 }
1086 
1087 static void *
1088 auich_allocm(void *v, int direction, size_t size, struct malloc_type *pool,
1089     int flags)
1090 {
1091 	struct auich_softc *sc;
1092 	struct auich_dma *p;
1093 	int error;
1094 
1095 	if (size > (ICH_DMALIST_MAX * ICH_DMASEG_MAX))
1096 		return NULL;
1097 
1098 	p = malloc(sizeof(*p), pool, flags|M_ZERO);
1099 	if (p == NULL)
1100 		return NULL;
1101 
1102 	sc = v;
1103 	error = auich_allocmem(sc, size, 0, p);
1104 	if (error) {
1105 		free(p, pool);
1106 		return NULL;
1107 	}
1108 
1109 	p->next = sc->sc_dmas;
1110 	sc->sc_dmas = p;
1111 
1112 	return KERNADDR(p);
1113 }
1114 
1115 static void
1116 auich_freem(void *v, void *ptr, struct malloc_type *pool)
1117 {
1118 	struct auich_softc *sc;
1119 	struct auich_dma *p, **pp;
1120 
1121 	sc = v;
1122 	for (pp = &sc->sc_dmas; (p = *pp) != NULL; pp = &p->next) {
1123 		if (KERNADDR(p) == ptr) {
1124 			auich_freemem(sc, p);
1125 			*pp = p->next;
1126 			free(p, pool);
1127 			return;
1128 		}
1129 	}
1130 }
1131 
1132 static size_t
1133 auich_round_buffersize(void *v, int direction, size_t size)
1134 {
1135 
1136 	if (size > (ICH_DMALIST_MAX * ICH_DMASEG_MAX))
1137 		size = ICH_DMALIST_MAX * ICH_DMASEG_MAX;
1138 
1139 	return size;
1140 }
1141 
1142 static paddr_t
1143 auich_mappage(void *v, void *mem, off_t off, int prot)
1144 {
1145 	struct auich_softc *sc;
1146 	struct auich_dma *p;
1147 
1148 	if (off < 0)
1149 		return -1;
1150 	sc = v;
1151 	for (p = sc->sc_dmas; p && KERNADDR(p) != mem; p = p->next)
1152 		continue;
1153 	if (!p)
1154 		return -1;
1155 	return bus_dmamem_mmap(sc->dmat, p->segs, p->nsegs,
1156 	    off, prot, BUS_DMA_WAITOK);
1157 }
1158 
1159 static int
1160 auich_get_props(void *v)
1161 {
1162 	struct auich_softc *sc;
1163 	int props;
1164 
1165 	props = AUDIO_PROP_INDEPENDENT | AUDIO_PROP_FULLDUPLEX;
1166 	sc = v;
1167 	/*
1168 	 * Even if the codec is fixed-rate, set_param() succeeds for any sample
1169 	 * rate because of aurateconv.  Applications can't know what rate the
1170 	 * device can process in the case of mmap().
1171 	 */
1172 	if (!AC97_IS_FIXED_RATE(sc->codec_if) ||
1173 	    sc->sc_codectype == AC97_CODEC_TYPE_MODEM)
1174 		props |= AUDIO_PROP_MMAP;
1175 	return props;
1176 }
1177 
1178 static int
1179 auich_intr(void *v)
1180 {
1181 	struct auich_softc *sc;
1182 	int ret, gsts;
1183 #ifdef DIAGNOSTIC
1184 	int csts;
1185 #endif
1186 
1187 	sc = v;
1188 	ret = 0;
1189 #ifdef DIAGNOSTIC
1190 	csts = pci_conf_read(sc->sc_pc, sc->sc_pt, PCI_COMMAND_STATUS_REG);
1191 	if (csts & PCI_STATUS_MASTER_ABORT) {
1192 		printf("auich_intr: PCI master abort\n");
1193 	}
1194 #endif
1195 
1196 	gsts = bus_space_read_4(sc->iot, sc->aud_ioh,
1197 	    ICH_GSTS + sc->sc_modem_offset);
1198 	DPRINTF(ICH_DEBUG_INTR, ("auich_intr: gsts=0x%x\n", gsts));
1199 
1200 	if ((sc->sc_codectype == AC97_CODEC_TYPE_AUDIO && gsts & ICH_POINT) ||
1201 	    (sc->sc_codectype == AC97_CODEC_TYPE_MODEM && gsts & ICH_MOINT)) {
1202 		int sts;
1203 
1204 		sts = bus_space_read_2(sc->iot, sc->aud_ioh,
1205 		    ICH_PCMO + sc->sc_sts_reg);
1206 		DPRINTF(ICH_DEBUG_INTR,
1207 		    ("auich_intr: osts=0x%x\n", sts));
1208 
1209 		if (sts & ICH_FIFOE)
1210 			printf("%s: fifo underrun\n", sc->sc_dev.dv_xname);
1211 
1212 		if (sts & ICH_BCIS)
1213 			auich_intr_pipe(sc, ICH_PCMO, &sc->pcmo);
1214 
1215 		/* int ack */
1216 		bus_space_write_2(sc->iot, sc->aud_ioh, ICH_PCMO +
1217 		    sc->sc_sts_reg, sts & (ICH_BCIS | ICH_FIFOE));
1218 		if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO)
1219 			bus_space_write_4(sc->iot, sc->aud_ioh,
1220 			    ICH_GSTS + sc->sc_modem_offset, ICH_POINT);
1221 		else
1222 			bus_space_write_4(sc->iot, sc->aud_ioh,
1223 			    ICH_GSTS + sc->sc_modem_offset, ICH_MOINT);
1224 		ret++;
1225 	}
1226 
1227 	if ((sc->sc_codectype == AC97_CODEC_TYPE_AUDIO && gsts & ICH_PIINT) ||
1228 	    (sc->sc_codectype == AC97_CODEC_TYPE_MODEM && gsts & ICH_MIINT)) {
1229 		int sts;
1230 
1231 		sts = bus_space_read_2(sc->iot, sc->aud_ioh,
1232 		    ICH_PCMI + sc->sc_sts_reg);
1233 		DPRINTF(ICH_DEBUG_INTR,
1234 		    ("auich_intr: ists=0x%x\n", sts));
1235 
1236 		if (sts & ICH_FIFOE)
1237 			printf("%s: fifo overrun\n", sc->sc_dev.dv_xname);
1238 
1239 		if (sts & ICH_BCIS)
1240 			auich_intr_pipe(sc, ICH_PCMI, &sc->pcmi);
1241 
1242 		/* int ack */
1243 		bus_space_write_2(sc->iot, sc->aud_ioh, ICH_PCMI +
1244 		    sc->sc_sts_reg, sts & (ICH_BCIS | ICH_FIFOE));
1245 		if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO)
1246 			bus_space_write_4(sc->iot, sc->aud_ioh,
1247 			    ICH_GSTS + sc->sc_modem_offset, ICH_PIINT);
1248 		else
1249 			bus_space_write_4(sc->iot, sc->aud_ioh,
1250 			    ICH_GSTS + sc->sc_modem_offset, ICH_MIINT);
1251 		ret++;
1252 	}
1253 
1254 	if (sc->sc_codectype == AC97_CODEC_TYPE_AUDIO && gsts & ICH_MINT) {
1255 		int sts;
1256 
1257 		sts = bus_space_read_2(sc->iot, sc->aud_ioh,
1258 		    ICH_MICI + sc->sc_sts_reg);
1259 		DPRINTF(ICH_DEBUG_INTR,
1260 		    ("auich_intr: ists=0x%x\n", sts));
1261 
1262 		if (sts & ICH_FIFOE)
1263 			printf("%s: fifo overrun\n", sc->sc_dev.dv_xname);
1264 
1265 		if (sts & ICH_BCIS)
1266 			auich_intr_pipe(sc, ICH_MICI, &sc->mici);
1267 
1268 		/* int ack */
1269 		bus_space_write_2(sc->iot, sc->aud_ioh, ICH_MICI +
1270 		    sc->sc_sts_reg, sts & (ICH_BCIS | ICH_FIFOE));
1271 		bus_space_write_4(sc->iot, sc->aud_ioh,
1272 		    ICH_GSTS + sc->sc_modem_offset, ICH_MINT);
1273 		ret++;
1274 	}
1275 
1276 #ifdef AUICH_MODEM_DEBUG
1277 	if (sc->sc_codectype == AC97_CODEC_TYPE_MODEM && gsts & ICH_GSCI) {
1278 		printf("%s: gsts=0x%x\n", sc->sc_dev.dv_xname, gsts);
1279 		/* int ack */
1280 		bus_space_write_4(sc->iot, sc->aud_ioh,
1281 		    ICH_GSTS + sc->sc_modem_offset, ICH_GSCI);
1282 		ret++;
1283 	}
1284 #endif
1285 
1286 	return ret;
1287 }
1288 
1289 static void
1290 auich_trigger_pipe(struct auich_softc *sc, int pipe, struct auich_ring *ring)
1291 {
1292 	int blksize, qptr;
1293 	struct auich_dmalist *q;
1294 
1295 	blksize = ring->blksize;
1296 
1297 	for (qptr = 0; qptr < ICH_DMALIST_MAX; qptr++) {
1298 		q = &ring->dmalist[qptr];
1299 		q->base = ring->p;
1300 		q->len = (blksize >> sc->sc_sample_shift) | ICH_DMAF_IOC;
1301 
1302 		ring->p += blksize;
1303 		if (ring->p >= ring->end)
1304 			ring->p = ring->start;
1305 	}
1306 	ring->qptr = 0;
1307 
1308 	bus_space_write_1(sc->iot, sc->aud_ioh, pipe + ICH_LVI,
1309 	    (qptr - 1) & ICH_LVI_MASK);
1310 	bus_space_write_1(sc->iot, sc->aud_ioh, pipe + ICH_CTRL,
1311 	    ICH_IOCE | ICH_FEIE | ICH_RPBM);
1312 }
1313 
1314 static void
1315 auich_intr_pipe(struct auich_softc *sc, int pipe, struct auich_ring *ring)
1316 {
1317 	int blksize, qptr, nqptr;
1318 	struct auich_dmalist *q;
1319 
1320 	blksize = ring->blksize;
1321 	qptr = ring->qptr;
1322 	nqptr = bus_space_read_1(sc->iot, sc->aud_ioh, pipe + ICH_CIV);
1323 
1324 	while (qptr != nqptr) {
1325 		q = &ring->dmalist[qptr];
1326 		q->base = ring->p;
1327 		q->len = (blksize >> sc->sc_sample_shift) | ICH_DMAF_IOC;
1328 
1329 		DPRINTF(ICH_DEBUG_INTR,
1330 		    ("auich_intr: %p, %p = %x @ 0x%x\n",
1331 		    &ring->dmalist[qptr], q, q->len, q->base));
1332 
1333 		ring->p += blksize;
1334 		if (ring->p >= ring->end)
1335 			ring->p = ring->start;
1336 
1337 		qptr = (qptr + 1) & ICH_LVI_MASK;
1338 		if (ring->intr)
1339 			ring->intr(ring->arg);
1340 	}
1341 	ring->qptr = qptr;
1342 
1343 	bus_space_write_1(sc->iot, sc->aud_ioh, pipe + ICH_LVI,
1344 	    (qptr - 1) & ICH_LVI_MASK);
1345 }
1346 
1347 static int
1348 auich_trigger_output(void *v, void *start, void *end, int blksize,
1349     void (*intr)(void *), void *arg, const audio_params_t *param)
1350 {
1351 	struct auich_softc *sc;
1352 	struct auich_dma *p;
1353 	size_t size;
1354 
1355 	DPRINTF(ICH_DEBUG_DMA,
1356 	    ("auich_trigger_output(%p, %p, %d, %p, %p, %p)\n",
1357 	    start, end, blksize, intr, arg, param));
1358 	sc = v;
1359 
1360 	for (p = sc->sc_dmas; p && KERNADDR(p) != start; p = p->next)
1361 		continue;
1362 	if (!p) {
1363 		printf("auich_trigger_output: bad addr %p\n", start);
1364 		return EINVAL;
1365 	}
1366 
1367 	size = (size_t)((caddr_t)end - (caddr_t)start);
1368 
1369 	sc->pcmo.intr = intr;
1370 	sc->pcmo.arg = arg;
1371 	sc->pcmo.start = DMAADDR(p);
1372 	sc->pcmo.p = sc->pcmo.start;
1373 	sc->pcmo.end = sc->pcmo.start + size;
1374 	sc->pcmo.blksize = blksize;
1375 
1376 	bus_space_write_4(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_BDBAR,
1377 	    sc->sc_cddma + ICH_PCMO_OFF(0));
1378 	auich_trigger_pipe(sc, ICH_PCMO, &sc->pcmo);
1379 
1380 	return 0;
1381 }
1382 
1383 static int
1384 auich_trigger_input(void *v, void *start, void *end, int blksize,
1385     void (*intr)(void *), void *arg, const audio_params_t *param)
1386 {
1387 	struct auich_softc *sc;
1388 	struct auich_dma *p;
1389 	size_t size;
1390 
1391 	DPRINTF(ICH_DEBUG_DMA,
1392 	    ("auich_trigger_input(%p, %p, %d, %p, %p, %p)\n",
1393 	    start, end, blksize, intr, arg, param));
1394 	sc = v;
1395 
1396 	for (p = sc->sc_dmas; p && KERNADDR(p) != start; p = p->next)
1397 		continue;
1398 	if (!p) {
1399 		printf("auich_trigger_input: bad addr %p\n", start);
1400 		return EINVAL;
1401 	}
1402 
1403 	size = (size_t)((caddr_t)end - (caddr_t)start);
1404 
1405 	sc->pcmi.intr = intr;
1406 	sc->pcmi.arg = arg;
1407 	sc->pcmi.start = DMAADDR(p);
1408 	sc->pcmi.p = sc->pcmi.start;
1409 	sc->pcmi.end = sc->pcmi.start + size;
1410 	sc->pcmi.blksize = blksize;
1411 
1412 	bus_space_write_4(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_BDBAR,
1413 	    sc->sc_cddma + ICH_PCMI_OFF(0));
1414 	auich_trigger_pipe(sc, ICH_PCMI, &sc->pcmi);
1415 
1416 	return 0;
1417 }
1418 
1419 static int
1420 auich_powerstate(void *v, int state)
1421 {
1422 	struct auich_softc *sc;
1423 	int rv;
1424 
1425 	sc = (struct auich_softc *)v;
1426 	rv = 0;
1427 
1428 	switch (state) {
1429 	case AUDIOPOWER_OFF:
1430 		auich_powerhook(PWR_SUSPEND, sc);
1431 		break;
1432 	case AUDIOPOWER_ON:
1433 		auich_powerhook(PWR_RESUME, sc);
1434 		break;
1435 	default:
1436 		aprint_error("%s: unknown power state %d\n",
1437 		    sc->sc_dev.dv_xname, state);
1438 		rv = 1;
1439 		break;
1440 	}
1441 
1442 	return rv;
1443 }
1444 
1445 static int
1446 auich_allocmem(struct auich_softc *sc, size_t size, size_t align,
1447     struct auich_dma *p)
1448 {
1449 	int error;
1450 
1451 	p->size = size;
1452 	error = bus_dmamem_alloc(sc->dmat, p->size, align, 0,
1453 				 p->segs, sizeof(p->segs)/sizeof(p->segs[0]),
1454 				 &p->nsegs, BUS_DMA_NOWAIT);
1455 	if (error)
1456 		return error;
1457 
1458 	error = bus_dmamem_map(sc->dmat, p->segs, p->nsegs, p->size,
1459 			       &p->addr, BUS_DMA_NOWAIT|sc->sc_dmamap_flags);
1460 	if (error)
1461 		goto free;
1462 
1463 	error = bus_dmamap_create(sc->dmat, p->size, 1, p->size,
1464 				  0, BUS_DMA_NOWAIT, &p->map);
1465 	if (error)
1466 		goto unmap;
1467 
1468 	error = bus_dmamap_load(sc->dmat, p->map, p->addr, p->size, NULL,
1469 				BUS_DMA_NOWAIT);
1470 	if (error)
1471 		goto destroy;
1472 	return 0;
1473 
1474  destroy:
1475 	bus_dmamap_destroy(sc->dmat, p->map);
1476  unmap:
1477 	bus_dmamem_unmap(sc->dmat, p->addr, p->size);
1478  free:
1479 	bus_dmamem_free(sc->dmat, p->segs, p->nsegs);
1480 	return error;
1481 }
1482 
1483 static int
1484 auich_freemem(struct auich_softc *sc, struct auich_dma *p)
1485 {
1486 
1487 	bus_dmamap_unload(sc->dmat, p->map);
1488 	bus_dmamap_destroy(sc->dmat, p->map);
1489 	bus_dmamem_unmap(sc->dmat, p->addr, p->size);
1490 	bus_dmamem_free(sc->dmat, p->segs, p->nsegs);
1491 	return 0;
1492 }
1493 
1494 static int
1495 auich_alloc_cdata(struct auich_softc *sc)
1496 {
1497 	bus_dma_segment_t seg;
1498 	int error, rseg;
1499 
1500 	/*
1501 	 * Allocate the control data structure, and create and load the
1502 	 * DMA map for it.
1503 	 */
1504 	if ((error = bus_dmamem_alloc(sc->dmat,
1505 				      sizeof(struct auich_cdata),
1506 				      PAGE_SIZE, 0, &seg, 1, &rseg, 0)) != 0) {
1507 		printf("%s: unable to allocate control data, error = %d\n",
1508 		    sc->sc_dev.dv_xname, error);
1509 		goto fail_0;
1510 	}
1511 
1512 	if ((error = bus_dmamem_map(sc->dmat, &seg, rseg,
1513 				    sizeof(struct auich_cdata),
1514 				    (caddr_t *) &sc->sc_cdata,
1515 				    sc->sc_dmamap_flags)) != 0) {
1516 		printf("%s: unable to map control data, error = %d\n",
1517 		    sc->sc_dev.dv_xname, error);
1518 		goto fail_1;
1519 	}
1520 
1521 	if ((error = bus_dmamap_create(sc->dmat, sizeof(struct auich_cdata), 1,
1522 				       sizeof(struct auich_cdata), 0, 0,
1523 				       &sc->sc_cddmamap)) != 0) {
1524 		printf("%s: unable to create control data DMA map, "
1525 		    "error = %d\n", sc->sc_dev.dv_xname, error);
1526 		goto fail_2;
1527 	}
1528 
1529 	if ((error = bus_dmamap_load(sc->dmat, sc->sc_cddmamap,
1530 				     sc->sc_cdata, sizeof(struct auich_cdata),
1531 				     NULL, 0)) != 0) {
1532 		printf("%s: unable tp load control data DMA map, "
1533 		    "error = %d\n", sc->sc_dev.dv_xname, error);
1534 		goto fail_3;
1535 	}
1536 
1537 	sc->pcmo.dmalist = sc->sc_cdata->ic_dmalist_pcmo;
1538 	sc->pcmi.dmalist = sc->sc_cdata->ic_dmalist_pcmi;
1539 	sc->mici.dmalist = sc->sc_cdata->ic_dmalist_mici;
1540 
1541 	return 0;
1542 
1543  fail_3:
1544 	bus_dmamap_destroy(sc->dmat, sc->sc_cddmamap);
1545  fail_2:
1546 	bus_dmamem_unmap(sc->dmat, (caddr_t) sc->sc_cdata,
1547 	    sizeof(struct auich_cdata));
1548  fail_1:
1549 	bus_dmamem_free(sc->dmat, &seg, rseg);
1550  fail_0:
1551 	return error;
1552 }
1553 
1554 static void
1555 auich_powerhook(int why, void *addr)
1556 {
1557 	struct auich_softc *sc;
1558 	const int d0 = PCI_PWR_D0;
1559 	const int d3 = PCI_PWR_D3;
1560 	int rv;
1561 
1562 	sc = (struct auich_softc *)addr;
1563 	switch (why) {
1564 	case PWR_SUSPEND:
1565 	case PWR_STANDBY:
1566 		/* Power down */
1567 		DPRINTF(1, ("%s: power down\n", sc->sc_dev.dv_xname));
1568 
1569 		/* if we're already asleep, don't try to sleep again */
1570 		if (sc->sc_suspend == PWR_SUSPEND ||
1571 		    sc->sc_suspend == PWR_STANDBY)
1572 			break;
1573 		sc->sc_suspend = why;
1574 
1575 		DELAY(1000);
1576 		pci_conf_capture(sc->sc_pc, sc->sc_pt, &sc->sc_pciconf);
1577 
1578 		if (sc->sc_ih != NULL)
1579 			pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
1580 
1581 		rv = pci_powerstate(sc->sc_pc, sc->sc_pt, &d3, &sc->sc_powerstate);
1582 		if (rv)
1583 			aprint_error("%s: unable to set power state (err=%d)\n",
1584 			    sc->sc_dev.dv_xname, rv);
1585 
1586 		break;
1587 
1588 	case PWR_RESUME:
1589 		/* Wake up */
1590 		DPRINTF(1, ("%s: power resume\n", sc->sc_dev.dv_xname));
1591 		if (sc->sc_suspend == PWR_RESUME) {
1592 			printf("%s: resume without suspend.\n",
1593 			    sc->sc_dev.dv_xname);
1594 			sc->sc_suspend = why;
1595 			return;
1596 		}
1597 
1598 		rv = pci_powerstate(sc->sc_pc, sc->sc_pt, &d0, &sc->sc_powerstate);
1599 		if (rv)
1600 			aprint_error("%s: unable to set power state (err=%d)\n",
1601 			    sc->sc_dev.dv_xname, rv);
1602 
1603 		sc->sc_ih = pci_intr_establish(sc->sc_pc, sc->intrh, IPL_AUDIO,
1604 		    auich_intr, sc);
1605 		if (sc->sc_ih == NULL) {
1606 			aprint_error("%s: can't establish interrupt",
1607 			    sc->sc_dev.dv_xname);
1608 			/* XXX jmcneill what should we do here? */
1609 			return;
1610 		}
1611 		pci_conf_restore(sc->sc_pc, sc->sc_pt, &sc->sc_pciconf);
1612 		sc->sc_suspend = why;
1613 		auich_reset_codec(sc);
1614 		DELAY(1000);
1615 		(sc->codec_if->vtbl->restore_ports)(sc->codec_if);
1616 		break;
1617 
1618 	case PWR_SOFTSUSPEND:
1619 	case PWR_SOFTSTANDBY:
1620 	case PWR_SOFTRESUME:
1621 		break;
1622 	}
1623 }
1624 
1625 /*
1626  * Calibrate card (some boards are overclocked and need scaling)
1627  */
1628 static void
1629 auich_calibrate(struct auich_softc *sc)
1630 {
1631 	struct timeval t1, t2;
1632 	uint8_t ociv, nciv;
1633 	uint64_t wait_us;
1634 	uint32_t actual_48k_rate, bytes, ac97rate;
1635 	void *temp_buffer;
1636 	struct auich_dma *p;
1637 	u_int rate;
1638 
1639 	/*
1640 	 * Grab audio from input for fixed interval and compare how
1641 	 * much we actually get with what we expect.  Interval needs
1642 	 * to be sufficiently short that no interrupts are
1643 	 * generated.
1644 	 */
1645 
1646 	/* Force the codec to a known state first. */
1647 	sc->codec_if->vtbl->set_clock(sc->codec_if, 48000);
1648 	rate = sc->sc_ac97_clock = 48000;
1649 	sc->codec_if->vtbl->set_rate(sc->codec_if, AC97_REG_PCM_LR_ADC_RATE,
1650 	    &rate);
1651 
1652 	/* Setup a buffer */
1653 	bytes = 64000;
1654 	temp_buffer = auich_allocm(sc, AUMODE_RECORD, bytes, M_DEVBUF, M_WAITOK);
1655 
1656 	for (p = sc->sc_dmas; p && KERNADDR(p) != temp_buffer; p = p->next)
1657 		continue;
1658 	if (p == NULL) {
1659 		printf("auich_calibrate: bad address %p\n", temp_buffer);
1660 		return;
1661 	}
1662 	sc->pcmi.dmalist[0].base = DMAADDR(p);
1663 	sc->pcmi.dmalist[0].len = (bytes >> sc->sc_sample_shift);
1664 
1665 	/*
1666 	 * our data format is stereo, 16 bit so each sample is 4 bytes.
1667 	 * assuming we get 48000 samples per second, we get 192000 bytes/sec.
1668 	 * we're going to start recording with interrupts disabled and measure
1669 	 * the time taken for one block to complete.  we know the block size,
1670 	 * we know the time in microseconds, we calculate the sample rate:
1671 	 *
1672 	 * actual_rate [bps] = bytes / (time [s] * 4)
1673 	 * actual_rate [bps] = (bytes * 1000000) / (time [us] * 4)
1674 	 * actual_rate [Hz] = (bytes * 250000) / time [us]
1675 	 */
1676 
1677 	/* prepare */
1678 	ociv = bus_space_read_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CIV);
1679 	bus_space_write_4(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_BDBAR,
1680 			  sc->sc_cddma + ICH_PCMI_OFF(0));
1681 	bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_LVI,
1682 			  (0 - 1) & ICH_LVI_MASK);
1683 
1684 	/* start */
1685 	microtime(&t1);
1686 	bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL, ICH_RPBM);
1687 
1688 	/* wait */
1689 	nciv = ociv;
1690 	do {
1691 		microtime(&t2);
1692 		if (t2.tv_sec - t1.tv_sec > 1)
1693 			break;
1694 		nciv = bus_space_read_1(sc->iot, sc->aud_ioh,
1695 					ICH_PCMI + ICH_CIV);
1696 	} while (nciv == ociv);
1697 	microtime(&t2);
1698 
1699 	/* stop */
1700 	bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL, 0);
1701 
1702 	/* reset */
1703 	DELAY(100);
1704 	bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL, ICH_RR);
1705 
1706 	/* turn time delta into us */
1707 	wait_us = ((t2.tv_sec - t1.tv_sec) * 1000000) + t2.tv_usec - t1.tv_usec;
1708 
1709 	auich_freem(sc, temp_buffer, M_DEVBUF);
1710 
1711 	if (nciv == ociv) {
1712 		printf("%s: ac97 link rate calibration timed out after %"
1713 		       PRIu64 " us\n", sc->sc_dev.dv_xname, wait_us);
1714 		return;
1715 	}
1716 
1717 	actual_48k_rate = (bytes * UINT64_C(250000)) / wait_us;
1718 
1719 	if (actual_48k_rate < 50000)
1720 		ac97rate = 48000;
1721 	else
1722 		ac97rate = ((actual_48k_rate + 500) / 1000) * 1000;
1723 
1724 	printf("%s: measured ac97 link rate at %d Hz",
1725 	       sc->sc_dev.dv_xname, actual_48k_rate);
1726 	if (ac97rate != actual_48k_rate)
1727 		printf(", will use %d Hz", ac97rate);
1728 	printf("\n");
1729 
1730 	sc->sc_ac97_clock = ac97rate;
1731 }
1732 
1733 static void
1734 auich_clear_cas(struct auich_softc *sc)
1735 {
1736 	/* Clear the codec access semaphore */
1737 	(void)bus_space_read_2(sc->iot, sc->mix_ioh,
1738 	    AC97_REG_RESET * (sc->sc_codecnum * ICH_CODEC_OFFSET));
1739 
1740 	return;
1741 }
1742