auixp.c revision 1.3 1 1.3 kent /* $NetBSD: auixp.c,v 1.3 2005/01/12 15:54:34 kent Exp $ */
2 1.1 reinoud
3 1.1 reinoud /*
4 1.2 reinoud * Copyright (c) 2004, 2005 Reinoud Zandijk <reinoud (at) netbsd.org>
5 1.1 reinoud * All rights reserved.
6 1.1 reinoud *
7 1.1 reinoud * Redistribution and use in source and binary forms, with or without
8 1.1 reinoud * modification, are permitted provided that the following conditions
9 1.1 reinoud * are met:
10 1.1 reinoud * 1. Redistributions of source code must retain the above copyright
11 1.1 reinoud * notice, this list of conditions and the following disclaimer.
12 1.1 reinoud * 2. The name of the author may not be used to endorse or promote products
13 1.1 reinoud * derived from this software without specific prior written permission.
14 1.1 reinoud * 3. All advertising materials mentioning features or use of this software
15 1.1 reinoud * must display the following acknowledgement:
16 1.1 reinoud * This product includes software developed by the NetBSD
17 1.1 reinoud * Foundation, Inc. and its contributors.
18 1.1 reinoud * 4. Neither the name of The NetBSD Foundation nor the names of its
19 1.1 reinoud * contributors may be used to endorse or promote products derived
20 1.1 reinoud * from this software without specific prior written permission.
21 1.1 reinoud *
22 1.1 reinoud * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 reinoud * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 reinoud * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 reinoud * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 reinoud * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 1.1 reinoud * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 1.1 reinoud * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 1.1 reinoud * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 1.1 reinoud * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 reinoud * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 reinoud * SUCH DAMAGE.
33 1.1 reinoud */
34 1.1 reinoud
35 1.1 reinoud
36 1.1 reinoud /*
37 1.1 reinoud * NetBSD audio driver for ATI IXP-{150,200,...} audio driver hardware.
38 1.1 reinoud *
39 1.1 reinoud * Recording and playback has been tested OK on various sample rates and
40 1.1 reinoud * encodings.
41 1.1 reinoud *
42 1.1 reinoud * Known problems and issues :
43 1.1 reinoud * - SPDIF is untested and needs some work still (LED stays off)
44 1.1 reinoud * - 32 bit audio playback failed last time i tried but that might an AC'97
45 1.1 reinoud * codec support problem.
46 1.1 reinoud * - 32 bit recording works but can't try out playing: see above.
47 1.1 reinoud * - no suspend/resume support yet.
48 1.1 reinoud * - multiple codecs are `supported' but not tested; the implemetation needs
49 1.1 reinoud * some cleaning up.
50 1.1 reinoud */
51 1.1 reinoud
52 1.1 reinoud #include <sys/cdefs.h>
53 1.3 kent __KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.3 2005/01/12 15:54:34 kent Exp $");
54 1.1 reinoud
55 1.1 reinoud #include <sys/types.h>
56 1.1 reinoud #include <sys/errno.h>
57 1.1 reinoud #include <sys/null.h>
58 1.1 reinoud #include <sys/param.h>
59 1.1 reinoud #include <sys/systm.h>
60 1.1 reinoud #include <sys/malloc.h>
61 1.1 reinoud #include <sys/device.h>
62 1.1 reinoud #include <sys/conf.h>
63 1.1 reinoud #include <sys/exec.h>
64 1.1 reinoud #include <sys/select.h>
65 1.1 reinoud #include <sys/audioio.h>
66 1.1 reinoud #include <sys/queue.h>
67 1.1 reinoud
68 1.1 reinoud #include <machine/bus.h>
69 1.1 reinoud #include <machine/intr.h>
70 1.1 reinoud
71 1.1 reinoud #include <dev/pci/pcidevs.h>
72 1.1 reinoud #include <dev/pci/pcivar.h>
73 1.1 reinoud
74 1.1 reinoud #include <dev/audio_if.h>
75 1.1 reinoud #include <dev/mulaw.h>
76 1.1 reinoud #include <dev/auconv.h>
77 1.1 reinoud #include <dev/ic/ac97var.h>
78 1.1 reinoud #include <dev/ic/ac97reg.h>
79 1.1 reinoud
80 1.1 reinoud #include <dev/pci/auixpreg.h>
81 1.1 reinoud #include <dev/pci/auixpvar.h>
82 1.1 reinoud
83 1.1 reinoud
84 1.1 reinoud //#define DEBUG_AUIXP
85 1.1 reinoud
86 1.1 reinoud
87 1.1 reinoud /* why isn't this base address register not in the headerfile? */
88 1.1 reinoud #define PCI_CBIO 0x10
89 1.1 reinoud
90 1.1 reinoud
91 1.1 reinoud /* macro's used */
92 1.1 reinoud #define KERNADDR(p) ((void *)((p)->addr))
93 1.1 reinoud #define DMAADDR(p) ((p)->map->dm_segs[0].ds_addr)
94 1.1 reinoud
95 1.1 reinoud
96 1.1 reinoud /* the differences might be irrelevant */
97 1.1 reinoud enum {
98 1.1 reinoud IXP_200,
99 1.1 reinoud IXP_300,
100 1.1 reinoud IXP_400
101 1.1 reinoud };
102 1.1 reinoud
103 1.1 reinoud
104 1.1 reinoud /* our `cards' */
105 1.1 reinoud static struct auixp_card_type {
106 1.1 reinoud uint16_t pci_vendor_id;
107 1.1 reinoud uint16_t pci_product_id;
108 1.1 reinoud int type;
109 1.1 reinoud } auixp_card_types[] = {
110 1.1 reinoud { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_IXP_AUDIO_200, IXP_200 },
111 1.1 reinoud { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_IXP_AUDIO_300, IXP_300 },
112 1.1 reinoud { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_IXP_AUDIO_400, IXP_400 },
113 1.1 reinoud { 0, 0, 0 }
114 1.1 reinoud };
115 1.1 reinoud
116 1.1 reinoud
117 1.1 reinoud struct audio_device auixp_device = {
118 1.1 reinoud "ATI IXP audio",
119 1.1 reinoud "",
120 1.1 reinoud "auixp"
121 1.1 reinoud };
122 1.1 reinoud
123 1.1 reinoud
124 1.1 reinoud /* codec detection constant indicating the interrupt flags */
125 1.1 reinoud #define ALL_CODECS_NOT_READY \
126 1.1 reinoud (ATI_REG_ISR_CODEC0_NOT_READY |\
127 1.1 reinoud ATI_REG_ISR_CODEC1_NOT_READY |\
128 1.1 reinoud ATI_REG_ISR_CODEC2_NOT_READY)
129 1.1 reinoud #define CODEC_CHECK_BITS (ALL_CODECS_NOT_READY|ATI_REG_ISR_NEW_FRAME)
130 1.1 reinoud
131 1.1 reinoud
132 1.1 reinoud /* autoconfig */
133 1.1 reinoud int auixp_match( struct device *, struct cfdata *, void *);
134 1.1 reinoud void auixp_attach(struct device *, struct device *, void *);
135 1.1 reinoud int auixp_detach(struct device *, int);
136 1.1 reinoud
137 1.1 reinoud
138 1.1 reinoud /* audio(9) function prototypes */
139 1.1 reinoud int auixp_query_encoding(void *, struct audio_encoding *);
140 1.3 kent int auixp_set_params(void *, int, int, audio_params_t *, audio_params_t *,
141 1.3 kent stream_filter_list_t *, stream_filter_list_t *);
142 1.1 reinoud int auixp_commit_settings(void *);
143 1.1 reinoud int auixp_round_blocksize(void *, int, int, const audio_params_t *);
144 1.3 kent int auixp_trigger_output(void *, void *, void *, int, void (*)(void *),
145 1.3 kent void *, const audio_params_t *);
146 1.3 kent int auixp_trigger_input(void *, void *, void *, int, void (*)(void *),
147 1.3 kent void *, const audio_params_t *);
148 1.1 reinoud int auixp_halt_output(void *);
149 1.1 reinoud int auixp_halt_input(void *);
150 1.1 reinoud int auixp_set_port(void *, mixer_ctrl_t *);
151 1.1 reinoud int auixp_get_port(void *, mixer_ctrl_t *);
152 1.1 reinoud int auixp_query_devinfo(void *, mixer_devinfo_t *);
153 1.1 reinoud void * auixp_malloc(void *, int, size_t, struct malloc_type *, int);
154 1.1 reinoud void auixp_free(void *, void *, struct malloc_type *);
155 1.1 reinoud int auixp_getdev(void *, struct audio_device *);
156 1.1 reinoud size_t auixp_round_buffersize(void *, int, size_t);
157 1.1 reinoud int auixp_get_props(void *);
158 1.1 reinoud int auixp_intr(void *);
159 1.1 reinoud int auixp_allocmem(struct auixp_softc *, size_t, size_t, struct auixp_dma *);
160 1.1 reinoud int auixp_freemem(struct auixp_softc *, struct auixp_dma *);
161 1.3 kent paddr_t auixp_mappage(void *, void *, off_t, int);
162 1.1 reinoud
163 1.1 reinoud
164 1.1 reinoud /* power management (do we support that already?) */
165 1.1 reinoud int auixp_power(struct auixp_softc *, int);
166 1.1 reinoud void auixp_powerhook(int, void *);
167 1.1 reinoud int auixp_suspend(struct auixp_softc *);
168 1.1 reinoud int auixp_resume(struct auixp_softc *);
169 1.1 reinoud void auixp_config(struct auixp_softc *); /* do we use it? */
170 1.1 reinoud
171 1.1 reinoud
172 1.1 reinoud /* Supporting subroutines */
173 1.1 reinoud int auixp_init(struct auixp_softc *);
174 1.3 kent void auixp_autodetect_codecs(struct auixp_softc *);
175 1.3 kent void auixp_post_config(struct device *);
176 1.1 reinoud
177 1.3 kent void auixp_reset_aclink(struct auixp_softc *);
178 1.1 reinoud int auixp_attach_codec(void *, struct ac97_codec_if *);
179 1.3 kent int auixp_read_codec(void *, uint8_t, uint16_t *);
180 1.3 kent int auixp_write_codec(void *, uint8_t, uint16_t);
181 1.3 kent int auixp_wait_for_codecs(struct auixp_softc *, char *);
182 1.1 reinoud int auixp_reset_codec(void *);
183 1.1 reinoud enum ac97_host_flags auixp_flags_codec(void *);
184 1.1 reinoud
185 1.3 kent void auixp_enable_dma(struct auixp_softc *, struct auixp_dma *);
186 1.3 kent void auixp_disable_dma(struct auixp_softc *, struct auixp_dma *);
187 1.3 kent void auixp_enable_interrupts(struct auixp_softc *);
188 1.3 kent void auixp_disable_interrupts(struct auixp_softc *);
189 1.1 reinoud
190 1.1 reinoud
191 1.1 reinoud /* statics */
192 1.3 kent void auixp_link_daisychain(struct auixp_softc *,
193 1.3 kent struct auixp_dma *, struct auixp_dma *,
194 1.3 kent int, int);
195 1.3 kent int auixp_allocate_dma_chain(struct auixp_softc *, struct auixp_dma **);
196 1.3 kent void auixp_program_dma_chain(struct auixp_softc *, struct auixp_dma *);
197 1.3 kent void auixp_dma_update(struct auixp_softc *, struct auixp_dma *);
198 1.3 kent void auixp_update_busbusy(struct auixp_softc *);
199 1.1 reinoud
200 1.1 reinoud
201 1.1 reinoud #ifdef DEBUG_AUIXP
202 1.1 reinoud struct auixp_softc *static_sc;
203 1.1 reinoud void auixp_dumpreg(void);
204 1.1 reinoud # define DPRINTF(x) printf x;
205 1.1 reinoud #else
206 1.1 reinoud # define DPRINTF(x)
207 1.1 reinoud #endif
208 1.1 reinoud
209 1.1 reinoud
210 1.1 reinoud const struct audio_hw_if auixp_hw_if = {
211 1.3 kent NULL, /* open */
212 1.3 kent NULL, /* close */
213 1.1 reinoud NULL, /* drain */
214 1.1 reinoud auixp_query_encoding,
215 1.1 reinoud auixp_set_params,
216 1.1 reinoud auixp_round_blocksize,
217 1.1 reinoud auixp_commit_settings,
218 1.1 reinoud NULL, /* init_output */
219 1.1 reinoud NULL, /* init_input */
220 1.1 reinoud NULL, /* start_output */
221 1.1 reinoud NULL, /* start_input */
222 1.1 reinoud auixp_halt_output,
223 1.1 reinoud auixp_halt_input,
224 1.1 reinoud NULL, /* speaker_ctl */
225 1.1 reinoud auixp_getdev,
226 1.1 reinoud NULL, /* getfd */
227 1.1 reinoud auixp_set_port,
228 1.1 reinoud auixp_get_port,
229 1.1 reinoud auixp_query_devinfo,
230 1.1 reinoud auixp_malloc,
231 1.1 reinoud auixp_free,
232 1.1 reinoud auixp_round_buffersize,
233 1.1 reinoud auixp_mappage,
234 1.1 reinoud auixp_get_props,
235 1.1 reinoud auixp_trigger_output,
236 1.1 reinoud auixp_trigger_input
237 1.1 reinoud };
238 1.1 reinoud
239 1.1 reinoud
240 1.1 reinoud CFATTACH_DECL(auixp, sizeof(struct auixp_softc), auixp_match, auixp_attach,
241 1.1 reinoud auixp_detach, NULL);
242 1.1 reinoud
243 1.1 reinoud
244 1.1 reinoud /*
245 1.1 reinoud * audio(9) functions
246 1.1 reinoud */
247 1.1 reinoud
248 1.3 kent int
249 1.3 kent auixp_query_encoding(void *hdl, struct audio_encoding *ae)
250 1.3 kent {
251 1.3 kent struct auixp_codec *co;
252 1.3 kent struct auixp_softc *sc;
253 1.1 reinoud
254 1.3 kent co = (struct auixp_codec *) hdl;
255 1.3 kent sc = co->sc;
256 1.1 reinoud return auconv_query_encoding(sc->sc_encodings, ae);
257 1.1 reinoud }
258 1.1 reinoud
259 1.1 reinoud
260 1.3 kent static int
261 1.3 kent auixp_set_rate(struct auixp_codec *co, int mode, u_int srate)
262 1.3 kent {
263 1.1 reinoud int ret;
264 1.1 reinoud u_int ratetmp;
265 1.1 reinoud
266 1.1 reinoud ratetmp = srate;
267 1.1 reinoud if (mode == AUMODE_RECORD) {
268 1.3 kent ret = co->codec_if->vtbl->set_rate(co->codec_if,
269 1.3 kent AC97_REG_PCM_LR_ADC_RATE, &ratetmp);
270 1.1 reinoud return ret;
271 1.3 kent }
272 1.1 reinoud
273 1.1 reinoud /* play mode */
274 1.3 kent ret = co->codec_if->vtbl->set_rate(co->codec_if,
275 1.3 kent AC97_REG_PCM_FRONT_DAC_RATE, &ratetmp);
276 1.1 reinoud if (ret) return ret;
277 1.1 reinoud
278 1.1 reinoud ratetmp = srate;
279 1.3 kent ret = co->codec_if->vtbl->set_rate(co->codec_if,
280 1.3 kent AC97_REG_PCM_SURR_DAC_RATE, &ratetmp);
281 1.1 reinoud if (ret) return ret;
282 1.1 reinoud
283 1.1 reinoud ratetmp = srate;
284 1.3 kent ret = co->codec_if->vtbl->set_rate(co->codec_if,
285 1.3 kent AC97_REG_PCM_LFE_DAC_RATE, &ratetmp);
286 1.1 reinoud return ret;
287 1.1 reinoud }
288 1.1 reinoud
289 1.1 reinoud
290 1.1 reinoud /* commit setting and program ATI IXP chip */
291 1.3 kent int
292 1.3 kent auixp_commit_settings(void *hdl)
293 1.3 kent {
294 1.3 kent struct auixp_codec *co;
295 1.3 kent struct auixp_softc *sc;
296 1.3 kent bus_space_tag_t iot;
297 1.3 kent bus_space_handle_t ioh;
298 1.1 reinoud struct audio_params *params;
299 1.1 reinoud uint32_t value;
300 1.1 reinoud
301 1.1 reinoud /* XXX would it be better to stop interrupts first? XXX */
302 1.3 kent co = (struct auixp_codec *) hdl;
303 1.3 kent sc = co->sc;
304 1.3 kent iot = sc->sc_iot;
305 1.3 kent ioh = sc->sc_ioh;
306 1.1 reinoud
307 1.1 reinoud /* process input settings */
308 1.1 reinoud params = &sc->sc_play_params;
309 1.1 reinoud
310 1.1 reinoud /* set input interleaving (precision) */
311 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
312 1.1 reinoud value &= ~ATI_REG_CMD_INTERLEAVE_IN;
313 1.1 reinoud if (params->precision <= 16) value |= ATI_REG_CMD_INTERLEAVE_IN;
314 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_CMD, value);
315 1.1 reinoud
316 1.1 reinoud /* process output settings */
317 1.1 reinoud params = &sc->sc_play_params;
318 1.1 reinoud
319 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_OUT_DMA_SLOT);
320 1.1 reinoud value &= ~ATI_REG_OUT_DMA_SLOT_MASK;
321 1.1 reinoud
322 1.1 reinoud switch (params->channels) {
323 1.1 reinoud case 6:
324 1.1 reinoud value |= ATI_REG_OUT_DMA_SLOT_BIT(7) |
325 1.1 reinoud ATI_REG_OUT_DMA_SLOT_BIT(8);
326 1.1 reinoud /* fallthru */
327 1.1 reinoud case 4:
328 1.1 reinoud value |= ATI_REG_OUT_DMA_SLOT_BIT(6) |
329 1.1 reinoud ATI_REG_OUT_DMA_SLOT_BIT(9);
330 1.1 reinoud /* fallthru */
331 1.1 reinoud default:
332 1.1 reinoud value |= ATI_REG_OUT_DMA_SLOT_BIT(3) |
333 1.1 reinoud ATI_REG_OUT_DMA_SLOT_BIT(4);
334 1.1 reinoud break;
335 1.3 kent }
336 1.1 reinoud /* set output threshold */
337 1.1 reinoud value |= 0x04 << ATI_REG_OUT_DMA_THRESHOLD_SHIFT;
338 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_OUT_DMA_SLOT, value);
339 1.1 reinoud
340 1.1 reinoud /* set output interleaving (precision) */
341 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
342 1.1 reinoud value &= ~ATI_REG_CMD_INTERLEAVE_OUT;
343 1.1 reinoud if (params->precision <= 16) value |= ATI_REG_CMD_INTERLEAVE_OUT;
344 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_CMD, value);
345 1.1 reinoud
346 1.1 reinoud /* enable 6 channel reordering */
347 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_6CH_REORDER);
348 1.1 reinoud value &= ~ATI_REG_6CH_REORDER_EN;
349 1.1 reinoud if (params->channels == 6) value |= ATI_REG_6CH_REORDER_EN;
350 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_6CH_REORDER, value);
351 1.1 reinoud
352 1.1 reinoud if (sc->has_spdif) {
353 1.1 reinoud /* set SPDIF (if present) */
354 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
355 1.1 reinoud value &= ~ATI_REG_CMD_SPDF_CONFIG_MASK;
356 1.1 reinoud value |= ATI_REG_CMD_SPDF_CONFIG_34; /* NetBSD AC'97 default */
357 1.1 reinoud
358 1.1 reinoud /* XXX this prolly is not nessisary unless splitted XXX */
359 1.1 reinoud value &= ~ATI_REG_CMD_INTERLEAVE_SPDF;
360 1.1 reinoud if (params->precision <= 16) value |= ATI_REG_CMD_INTERLEAVE_SPDF;
361 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_CMD, value);
362 1.3 kent }
363 1.1 reinoud
364 1.1 reinoud return 0;
365 1.1 reinoud }
366 1.1 reinoud
367 1.1 reinoud
368 1.1 reinoud /* set audio properties in desired setting */
369 1.3 kent int
370 1.3 kent auixp_set_params(void *hdl, int setmode, int usemode, audio_params_t *play,
371 1.3 kent audio_params_t *rec, stream_filter_list_t *pfil,
372 1.3 kent stream_filter_list_t *rfil)
373 1.3 kent {
374 1.3 kent struct auixp_codec *co;
375 1.3 kent struct auixp_softc *sc;
376 1.1 reinoud audio_params_t *params;
377 1.1 reinoud stream_filter_list_t *fil;
378 1.1 reinoud int mode, index;
379 1.1 reinoud
380 1.1 reinoud /*
381 1.1 reinoud * In current NetBSD AC'97 implementation, SPDF is linked to channel 3
382 1.1 reinoud * and 4 i.e. stereo output.
383 1.1 reinoud */
384 1.1 reinoud
385 1.3 kent co = (struct auixp_codec *) hdl;
386 1.3 kent sc = co->sc;
387 1.1 reinoud for (mode = AUMODE_RECORD; mode != -1;
388 1.1 reinoud mode = (mode == AUMODE_RECORD) ? AUMODE_PLAY : -1) {
389 1.1 reinoud if ((setmode & mode) == 0)
390 1.1 reinoud continue;
391 1.1 reinoud
392 1.1 reinoud params = (mode == AUMODE_PLAY) ? play : rec;
393 1.1 reinoud fil = (mode == AUMODE_PLAY) ? pfil : rfil;
394 1.1 reinoud if (params == NULL) continue;
395 1.1 reinoud
396 1.1 reinoud /* AD1888 settings ... don't know the IXP limits */
397 1.1 reinoud if (params->sample_rate < AUIXP_MINRATE) return EINVAL;
398 1.1 reinoud if (params->sample_rate > AUIXP_MAXRATE) return EINVAL;
399 1.1 reinoud
400 1.3 kent index = auconv_set_converter(sc->sc_formats, AUIXP_NFORMATS,
401 1.3 kent mode, params, TRUE, fil);
402 1.1 reinoud
403 1.1 reinoud /* nothing found? */
404 1.1 reinoud if (index < 0) return EINVAL;
405 1.1 reinoud
406 1.1 reinoud /* not sure yet as to why i have to change params here */
407 1.1 reinoud if (fil->req_size > 0) params = &fil->filters[0].param;
408 1.1 reinoud
409 1.1 reinoud /* if variable speed and we can't set the desired rate, fail */
410 1.1 reinoud if ((sc->sc_formats[index].frequency_type != 1) &&
411 1.1 reinoud auixp_set_rate(co, mode, params->sample_rate)) return EINVAL;
412 1.1 reinoud
413 1.1 reinoud /* preserve the settings */
414 1.1 reinoud if (mode == AUMODE_PLAY) sc->sc_play_params = *params;
415 1.1 reinoud if (mode == AUMODE_RECORD) sc->sc_rec_params = *params;
416 1.1 reinoud }
417 1.1 reinoud
418 1.3 kent return 0;
419 1.1 reinoud }
420 1.1 reinoud
421 1.1 reinoud
422 1.1 reinoud /* called to translate a requested blocksize to a hw-possible one */
423 1.3 kent int
424 1.3 kent auixp_round_blocksize(void *hdl, int bs, int mode, const audio_params_t *param)
425 1.3 kent {
426 1.3 kent uint32_t new_bs;
427 1.1 reinoud
428 1.3 kent new_bs = bs;
429 1.1 reinoud /* Be conservative; align to 32 bytes and maximise it to 64 kb */
430 1.1 reinoud /* 256 kb possible */
431 1.1 reinoud if (new_bs > 0x10000) bs = 0x10000; /* 64 kb max */
432 1.1 reinoud new_bs = (bs & ~0x20); /* 32 bytes align */
433 1.1 reinoud
434 1.1 reinoud return new_bs;
435 1.1 reinoud }
436 1.1 reinoud
437 1.1 reinoud
438 1.1 reinoud /*
439 1.1 reinoud * allocate dma capable memory and record its information for later retrieval
440 1.1 reinoud * when we program the dma chain itself. The trigger routines passes on the
441 1.1 reinoud * kernel virtual address we return here as a reference to the mapping.
442 1.1 reinoud */
443 1.3 kent void *
444 1.3 kent auixp_malloc(void *hdl, int direction, size_t size,
445 1.3 kent struct malloc_type *type, int flags)
446 1.3 kent {
447 1.3 kent struct auixp_codec *co;
448 1.3 kent struct auixp_softc *sc;
449 1.1 reinoud struct auixp_dma *dma;
450 1.1 reinoud int error;
451 1.1 reinoud
452 1.3 kent co = (struct auixp_codec *) hdl;
453 1.3 kent sc = co->sc;
454 1.1 reinoud /* get us a auixp_dma structure */
455 1.1 reinoud dma = malloc(sizeof(*dma), type, flags);
456 1.1 reinoud if (!dma) return NULL;
457 1.1 reinoud
458 1.1 reinoud /* get us a dma buffer itself */
459 1.1 reinoud error = auixp_allocmem(sc, size, 16, dma);
460 1.1 reinoud if (error) {
461 1.1 reinoud free(dma, type);
462 1.1 reinoud printf("%s: auixp_malloc: not enough memory\n", sc->sc_dev.dv_xname);
463 1.1 reinoud
464 1.1 reinoud return NULL;
465 1.1 reinoud }
466 1.1 reinoud SLIST_INSERT_HEAD(&sc->sc_dma_list, dma, dma_chain);
467 1.1 reinoud
468 1.1 reinoud DPRINTF(("auixp_malloc: returning kern %p, hw 0x%08x for %d bytes in %d segs\n",
469 1.1 reinoud KERNADDR(dma), (uint32_t) DMAADDR(dma), dma->size, dma->nsegs)
470 1.1 reinoud );
471 1.1 reinoud
472 1.3 kent return KERNADDR(dma);
473 1.1 reinoud }
474 1.1 reinoud
475 1.1 reinoud
476 1.1 reinoud /*
477 1.1 reinoud * free and release dma capable memory we allocated before and remove its
478 1.1 reinoud * recording
479 1.1 reinoud */
480 1.3 kent void
481 1.3 kent auixp_free(void *hdl, void *addr, struct malloc_type *type)
482 1.3 kent {
483 1.3 kent struct auixp_codec *co;
484 1.3 kent struct auixp_softc *sc;
485 1.1 reinoud struct auixp_dma *dma;
486 1.1 reinoud
487 1.3 kent co = (struct auixp_codec *) hdl;
488 1.3 kent sc = co->sc;
489 1.1 reinoud SLIST_FOREACH(dma, &sc->sc_dma_list, dma_chain) {
490 1.1 reinoud if (KERNADDR(dma) == addr) {
491 1.1 reinoud SLIST_REMOVE(&sc->sc_dma_list, dma, auixp_dma, dma_chain);
492 1.1 reinoud free(dma, type);
493 1.1 reinoud return;
494 1.3 kent }
495 1.3 kent }
496 1.1 reinoud }
497 1.1 reinoud
498 1.1 reinoud
499 1.3 kent int
500 1.3 kent auixp_getdev(void *hdl, struct audio_device *ret)
501 1.3 kent {
502 1.3 kent
503 1.1 reinoud *ret = auixp_device;
504 1.3 kent return 0;
505 1.1 reinoud }
506 1.1 reinoud
507 1.1 reinoud
508 1.1 reinoud /* pass request to AC'97 codec code */
509 1.3 kent int
510 1.3 kent auixp_set_port(void *hdl, mixer_ctrl_t *mc)
511 1.3 kent {
512 1.3 kent struct auixp_codec *co;
513 1.1 reinoud
514 1.3 kent co = (struct auixp_codec *) hdl;
515 1.1 reinoud return co->codec_if->vtbl->mixer_set_port(co->codec_if, mc);
516 1.1 reinoud }
517 1.1 reinoud
518 1.1 reinoud
519 1.1 reinoud /* pass request to AC'97 codec code */
520 1.3 kent int
521 1.3 kent auixp_get_port(void *hdl, mixer_ctrl_t *mc)
522 1.3 kent {
523 1.3 kent struct auixp_codec *co;
524 1.1 reinoud
525 1.3 kent co = (struct auixp_codec *) hdl;
526 1.1 reinoud return co->codec_if->vtbl->mixer_get_port(co->codec_if, mc);
527 1.1 reinoud }
528 1.1 reinoud
529 1.1 reinoud /* pass request to AC'97 codec code */
530 1.3 kent int
531 1.3 kent auixp_query_devinfo(void *hdl, mixer_devinfo_t *di)
532 1.3 kent {
533 1.3 kent struct auixp_codec *co;
534 1.1 reinoud
535 1.3 kent co = (struct auixp_codec *) hdl;
536 1.1 reinoud return co->codec_if->vtbl->query_devinfo(co->codec_if, di);
537 1.1 reinoud }
538 1.1 reinoud
539 1.1 reinoud
540 1.3 kent size_t
541 1.3 kent auixp_round_buffersize(void *hdl, int direction, size_t bufsize)
542 1.3 kent {
543 1.1 reinoud /* XXX force maximum? i.e. 256 kb? */
544 1.1 reinoud return bufsize;
545 1.1 reinoud }
546 1.1 reinoud
547 1.1 reinoud
548 1.3 kent int
549 1.3 kent auixp_get_props(void *hdl)
550 1.3 kent {
551 1.1 reinoud return AUDIO_PROP_MMAP | AUDIO_PROP_INDEPENDENT | AUDIO_PROP_FULLDUPLEX;
552 1.1 reinoud }
553 1.1 reinoud
554 1.1 reinoud
555 1.1 reinoud /*
556 1.1 reinoud * A dma descriptor has dma->nsegs segments defined in dma->segs set up when
557 1.1 reinoud * we claimed the memory.
558 1.1 reinoud *
559 1.1 reinoud * Due to our demand for one contiguous DMA area, we only have one segment. A
560 1.1 reinoud * c_dma structure is about 3 kb for the 256 entries we maximally program
561 1.1 reinoud * -arbitrary limit AFAIK- so all is most likely to be in one segment/page
562 1.1 reinoud * anyway.
563 1.1 reinoud *
564 1.1 reinoud * XXX ought to implement fragmented dma area XXX
565 1.1 reinoud *
566 1.1 reinoud * Note that _v variables depict kernel virtual addresses, _p variables depict
567 1.1 reinoud * physical addresses.
568 1.1 reinoud */
569 1.3 kent void
570 1.3 kent auixp_link_daisychain(struct auixp_softc *sc,
571 1.1 reinoud struct auixp_dma *c_dma, struct auixp_dma *s_dma,
572 1.1 reinoud int blksize, int blocks)
573 1.1 reinoud {
574 1.1 reinoud atiixp_dma_desc_t *caddr_v, *next_caddr_v;
575 1.1 reinoud uint32_t caddr_p, next_caddr_p, saddr_p;
576 1.1 reinoud int i;
577 1.1 reinoud
578 1.1 reinoud /* just make sure we are not changing when its running */
579 1.1 reinoud auixp_disable_dma(sc, c_dma);
580 1.1 reinoud
581 1.1 reinoud /* setup dma chain start addresses */
582 1.1 reinoud caddr_v = KERNADDR(c_dma);
583 1.1 reinoud caddr_p = DMAADDR(c_dma);
584 1.1 reinoud saddr_p = DMAADDR(s_dma);
585 1.1 reinoud
586 1.1 reinoud /* program the requested number of blocks */
587 1.1 reinoud for (i = 0; i < blocks; i++) {
588 1.1 reinoud /* clear the block just in case */
589 1.1 reinoud bzero(caddr_v, sizeof(atiixp_dma_desc_t));
590 1.1 reinoud
591 1.1 reinoud /* round robin the chain dma addresses for its successor */
592 1.1 reinoud next_caddr_v = caddr_v + 1;
593 1.1 reinoud next_caddr_p = caddr_p + sizeof(atiixp_dma_desc_t);
594 1.1 reinoud
595 1.1 reinoud if (i == blocks-1) {
596 1.1 reinoud next_caddr_v = KERNADDR(c_dma);
597 1.1 reinoud next_caddr_p = DMAADDR(c_dma);
598 1.3 kent }
599 1.1 reinoud
600 1.1 reinoud /* fill in the hardware dma chain descriptor in little-endian */
601 1.1 reinoud caddr_v->addr = htole32(saddr_p);
602 1.1 reinoud caddr_v->status = htole16(0);
603 1.1 reinoud caddr_v->size = htole16((blksize >> 2)); /* in dwords (!!!) */
604 1.1 reinoud caddr_v->next = htole32(next_caddr_p);
605 1.1 reinoud
606 1.1 reinoud /* advance slot */
607 1.1 reinoud saddr_p += blksize; /* XXX assuming contiguous XXX */
608 1.1 reinoud caddr_v = next_caddr_v;
609 1.1 reinoud caddr_p = next_caddr_p;
610 1.3 kent }
611 1.1 reinoud }
612 1.1 reinoud
613 1.1 reinoud
614 1.3 kent int
615 1.3 kent auixp_allocate_dma_chain(struct auixp_softc *sc, struct auixp_dma **dmap)
616 1.3 kent {
617 1.1 reinoud struct auixp_dma *dma;
618 1.1 reinoud int error;
619 1.1 reinoud
620 1.1 reinoud /* allocate keeper of dma area */
621 1.1 reinoud *dmap = NULL;
622 1.1 reinoud dma = malloc(sizeof(struct auixp_dma), M_DEVBUF, M_NOWAIT | M_ZERO);
623 1.1 reinoud if (!dma) return ENOMEM;
624 1.1 reinoud
625 1.1 reinoud /* allocate for daisychain of IXP hardware-dma descriptors */
626 1.1 reinoud error = auixp_allocmem(sc, DMA_DESC_CHAIN * sizeof(atiixp_dma_desc_t), 16, dma);
627 1.1 reinoud if (error) {
628 1.1 reinoud printf("%s: can't malloc dma descriptor chain\n", sc->sc_dev.dv_xname);
629 1.1 reinoud return ENOMEM;
630 1.3 kent }
631 1.1 reinoud
632 1.1 reinoud /* return info and initialise structure */
633 1.1 reinoud dma->intr = NULL;
634 1.1 reinoud dma->intrarg = NULL;
635 1.1 reinoud
636 1.1 reinoud *dmap = dma;
637 1.1 reinoud return 0;
638 1.1 reinoud }
639 1.1 reinoud
640 1.1 reinoud
641 1.1 reinoud /* program dma chain in it's link address descriptor */
642 1.3 kent void
643 1.3 kent auixp_program_dma_chain(struct auixp_softc *sc, struct auixp_dma *dma)
644 1.3 kent {
645 1.3 kent bus_space_tag_t iot;
646 1.3 kent bus_space_handle_t ioh;
647 1.1 reinoud uint32_t value;
648 1.1 reinoud
649 1.3 kent iot = sc->sc_iot;
650 1.3 kent ioh = sc->sc_ioh;
651 1.1 reinoud /* get hardware start address of DMA chain and set valid-flag in it */
652 1.1 reinoud /* XXX allways at start? XXX */
653 1.1 reinoud value = DMAADDR(dma);
654 1.1 reinoud value = value | ATI_REG_LINKPTR_EN;
655 1.1 reinoud
656 1.1 reinoud /* reset linkpointer */
657 1.1 reinoud bus_space_write_4(iot, ioh, dma->linkptr, 0);
658 1.1 reinoud
659 1.1 reinoud /* reset this DMA engine */
660 1.1 reinoud auixp_disable_dma(sc, dma);
661 1.1 reinoud auixp_enable_dma(sc, dma);
662 1.1 reinoud
663 1.1 reinoud /* program new DMA linkpointer */
664 1.1 reinoud bus_space_write_4(iot, ioh, dma->linkptr, value);
665 1.1 reinoud }
666 1.1 reinoud
667 1.1 reinoud
668 1.1 reinoud /* called from interrupt code to signal end of one dma-slot */
669 1.3 kent void
670 1.3 kent auixp_dma_update(struct auixp_softc *sc, struct auixp_dma *dma)
671 1.3 kent {
672 1.1 reinoud /* be very paranoid */
673 1.1 reinoud if (!dma) panic("auixp: update: dma = NULL");
674 1.1 reinoud if (!dma->intr) panic("auixp: update: dma->intr = NULL");
675 1.1 reinoud
676 1.1 reinoud /* request more input from upper layer */
677 1.1 reinoud (*dma->intr)(dma->intrarg);
678 1.1 reinoud }
679 1.1 reinoud
680 1.1 reinoud
681 1.1 reinoud /*
682 1.1 reinoud * The magic `busbusy' bit that needs to be set when dma is active; allowing
683 1.1 reinoud * busmastering?
684 1.1 reinoud */
685 1.3 kent void
686 1.3 kent auixp_update_busbusy(struct auixp_softc *sc)
687 1.3 kent {
688 1.3 kent bus_space_tag_t iot;
689 1.3 kent bus_space_handle_t ioh;
690 1.1 reinoud uint32_t value;
691 1.1 reinoud int running;
692 1.1 reinoud
693 1.3 kent iot = sc->sc_iot;
694 1.3 kent ioh = sc->sc_ioh;
695 1.1 reinoud /* set bus-busy flag when either recording or playing is performed */
696 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_IER);
697 1.1 reinoud value &= ~ATI_REG_IER_SET_BUS_BUSY;
698 1.1 reinoud
699 1.1 reinoud running = ((sc->sc_output_dma->running) || (sc->sc_input_dma->running));
700 1.1 reinoud if (running) value |= ATI_REG_IER_SET_BUS_BUSY;
701 1.1 reinoud
702 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_IER, value);
703 1.1 reinoud
704 1.1 reinoud }
705 1.1 reinoud
706 1.1 reinoud
707 1.1 reinoud /*
708 1.1 reinoud * Called from upper audio layer to request playing audio, only called once;
709 1.1 reinoud * audio is refilled by calling the intr() function when space is available
710 1.1 reinoud * again.
711 1.1 reinoud */
712 1.1 reinoud /* XXX allmost literaly a copy of trigger-input; could be factorised XXX */
713 1.3 kent int
714 1.3 kent auixp_trigger_output(void *hdl, void *start, void *end, int blksize,
715 1.3 kent void (*intr)(void *), void *intrarg, const audio_params_t *param)
716 1.3 kent {
717 1.3 kent struct auixp_codec *co;
718 1.3 kent struct auixp_softc *sc;
719 1.3 kent struct auixp_dma *chain_dma;
720 1.1 reinoud struct auixp_dma *sound_dma;
721 1.1 reinoud uint32_t blocks;
722 1.1 reinoud
723 1.3 kent co = (struct auixp_codec *) hdl;
724 1.3 kent sc = co->sc;
725 1.3 kent chain_dma = sc->sc_output_dma;
726 1.1 reinoud /* add functions to call back */
727 1.1 reinoud chain_dma->intr = intr;
728 1.1 reinoud chain_dma->intrarg = intrarg;
729 1.1 reinoud
730 1.1 reinoud /*
731 1.1 reinoud * Program output DMA chain with blocks from [start...end] with
732 1.1 reinoud * blksize fragments.
733 1.1 reinoud *
734 1.1 reinoud * NOTE, we can assume its in one block since we asked for it to be in
735 1.1 reinoud * one contiguous blob; XXX change this? XXX
736 1.1 reinoud */
737 1.1 reinoud blocks = (size_t) (((caddr_t) end) - ((caddr_t) start)) / blksize;
738 1.1 reinoud
739 1.1 reinoud /* lookup `start' address in our list of DMA area's */
740 1.1 reinoud SLIST_FOREACH(sound_dma, &sc->sc_dma_list, dma_chain) {
741 1.1 reinoud if (KERNADDR(sound_dma) == start) break;
742 1.3 kent }
743 1.1 reinoud
744 1.1 reinoud /* not ours ? then bail out */
745 1.1 reinoud if (!sound_dma) {
746 1.1 reinoud printf("auixp_trigger_output: bad sound addr %p\n", start);
747 1.1 reinoud return EINVAL;
748 1.1 reinoud }
749 1.1 reinoud
750 1.1 reinoud /* link round-robin daisychain and program hardware */
751 1.1 reinoud auixp_link_daisychain(sc, chain_dma, sound_dma, blksize, blocks);
752 1.1 reinoud auixp_program_dma_chain(sc, chain_dma);
753 1.1 reinoud
754 1.1 reinoud /* mark we are now able to run now */
755 1.1 reinoud chain_dma->running = 1;
756 1.1 reinoud
757 1.1 reinoud /* update bus-flags; XXX programs more flags XXX */
758 1.1 reinoud auixp_update_busbusy(sc);
759 1.1 reinoud
760 1.1 reinoud /* callbacks happen in interrupt routine */
761 1.1 reinoud return 0;
762 1.1 reinoud }
763 1.1 reinoud
764 1.1 reinoud
765 1.1 reinoud /* halt output of audio, just disable it's dma and update bus state */
766 1.3 kent int
767 1.3 kent auixp_halt_output(void *hdl)
768 1.3 kent {
769 1.3 kent struct auixp_codec *co;
770 1.3 kent struct auixp_softc *sc;
771 1.3 kent struct auixp_dma *dma;
772 1.3 kent
773 1.3 kent co = (struct auixp_codec *) hdl;
774 1.3 kent sc = co->sc;
775 1.3 kent dma = sc->sc_output_dma;
776 1.1 reinoud auixp_disable_dma(sc, dma);
777 1.1 reinoud
778 1.1 reinoud dma->running = 0;
779 1.1 reinoud auixp_update_busbusy(sc);
780 1.1 reinoud
781 1.1 reinoud return 0;
782 1.1 reinoud }
783 1.1 reinoud
784 1.1 reinoud
785 1.1 reinoud /* XXX allmost literaly a copy of trigger-output; could be factorised XXX */
786 1.3 kent int
787 1.3 kent auixp_trigger_input(void *hdl, void *start, void *end, int blksize,
788 1.3 kent void (*intr)(void *), void *intrarg, const audio_params_t *param)
789 1.3 kent {
790 1.3 kent struct auixp_codec *co;
791 1.3 kent struct auixp_softc *sc;
792 1.3 kent struct auixp_dma *chain_dma;
793 1.1 reinoud struct auixp_dma *sound_dma;
794 1.1 reinoud uint32_t blocks;
795 1.1 reinoud
796 1.3 kent co = (struct auixp_codec *) hdl;
797 1.3 kent sc = co->sc;
798 1.3 kent chain_dma = sc->sc_input_dma;
799 1.1 reinoud /* add functions to call back */
800 1.1 reinoud chain_dma->intr = intr;
801 1.1 reinoud chain_dma->intrarg = intrarg;
802 1.1 reinoud
803 1.1 reinoud /*
804 1.1 reinoud * Program output DMA chain with blocks from [start...end] with
805 1.1 reinoud * blksize fragments.
806 1.1 reinoud *
807 1.1 reinoud * NOTE, we can assume its in one block since we asked for it to be in
808 1.1 reinoud * one contiguous blob; XXX change this? XXX
809 1.1 reinoud */
810 1.1 reinoud blocks = (size_t) (((caddr_t) end) - ((caddr_t) start)) / blksize;
811 1.1 reinoud
812 1.1 reinoud /* lookup `start' address in our list of DMA area's */
813 1.1 reinoud SLIST_FOREACH(sound_dma, &sc->sc_dma_list, dma_chain) {
814 1.1 reinoud if (KERNADDR(sound_dma) == start) break;
815 1.3 kent }
816 1.1 reinoud
817 1.1 reinoud /* not ours ? then bail out */
818 1.1 reinoud if (!sound_dma) {
819 1.1 reinoud printf("auixp_trigger_input: bad sound addr %p\n", start);
820 1.1 reinoud return EINVAL;
821 1.1 reinoud }
822 1.1 reinoud
823 1.1 reinoud /* link round-robin daisychain and program hardware */
824 1.1 reinoud auixp_link_daisychain(sc, chain_dma, sound_dma, blksize, blocks);
825 1.1 reinoud auixp_program_dma_chain(sc, chain_dma);
826 1.1 reinoud
827 1.1 reinoud /* mark we are now able to run now */
828 1.1 reinoud chain_dma->running = 1;
829 1.1 reinoud
830 1.1 reinoud /* update bus-flags; XXX programs more flags XXX */
831 1.1 reinoud auixp_update_busbusy(sc);
832 1.1 reinoud
833 1.1 reinoud /* callbacks happen in interrupt routine */
834 1.1 reinoud return 0;
835 1.1 reinoud }
836 1.1 reinoud
837 1.1 reinoud
838 1.1 reinoud /* halt sampling audio, just disable it's dma and update bus state */
839 1.3 kent int
840 1.3 kent auixp_halt_input(void *hdl)
841 1.3 kent {
842 1.3 kent struct auixp_codec *co;
843 1.3 kent struct auixp_softc *sc;
844 1.3 kent struct auixp_dma *dma;
845 1.3 kent
846 1.3 kent co = (struct auixp_codec *) hdl;
847 1.3 kent sc = co->sc;
848 1.3 kent dma = sc->sc_output_dma;
849 1.1 reinoud auixp_disable_dma(sc, dma);
850 1.1 reinoud
851 1.1 reinoud dma->running = 0;
852 1.1 reinoud auixp_update_busbusy(sc);
853 1.1 reinoud
854 1.1 reinoud return 0;
855 1.1 reinoud }
856 1.1 reinoud
857 1.1 reinoud
858 1.1 reinoud /*
859 1.1 reinoud * IXP audio interrupt handler
860 1.1 reinoud *
861 1.1 reinoud * note that we return the number of bits handled; the return value is not
862 1.1 reinoud * documentated but i saw it implemented in other drivers. Prolly returning a
863 1.1 reinoud * value > 0 means "i've dealt with it"
864 1.1 reinoud *
865 1.1 reinoud */
866 1.3 kent int
867 1.3 kent auixp_intr(void *softc)
868 1.3 kent {
869 1.3 kent struct auixp_softc *sc;
870 1.3 kent bus_space_tag_t iot;
871 1.3 kent bus_space_handle_t ioh;
872 1.1 reinoud uint32_t status, enable, detected_codecs;
873 1.3 kent int ret;
874 1.1 reinoud
875 1.3 kent sc = softc;
876 1.3 kent iot = sc->sc_iot;
877 1.3 kent ioh = sc->sc_ioh;
878 1.3 kent ret = 0;
879 1.1 reinoud /* get status from the interrupt status register */
880 1.1 reinoud status = bus_space_read_4(iot, ioh, ATI_REG_ISR);
881 1.1 reinoud
882 1.1 reinoud /* nothing set?? but why do you call then??? */
883 1.1 reinoud if (status == 0) {
884 1.1 reinoud printf("%s: spurious hardware interrupt? status = 0\n", sc->sc_dev.dv_xname);
885 1.1 reinoud return 1; /* be safe */
886 1.3 kent }
887 1.1 reinoud
888 1.1 reinoud DPRINTF(("auixp: (status = %x)\n", status));
889 1.1 reinoud
890 1.1 reinoud /* check DMA UPDATE flags for input & output */
891 1.1 reinoud if (status & ATI_REG_ISR_IN_STATUS) {
892 1.1 reinoud ret++; DPRINTF(("IN_STATUS\n"));
893 1.1 reinoud auixp_dma_update(sc, sc->sc_input_dma);
894 1.3 kent }
895 1.1 reinoud if (status & ATI_REG_ISR_OUT_STATUS) {
896 1.1 reinoud ret++; DPRINTF(("OUT_STATUS\n"));
897 1.1 reinoud auixp_dma_update(sc, sc->sc_output_dma);
898 1.3 kent }
899 1.1 reinoud
900 1.1 reinoud /* XXX XRUN flags not used/needed yet; should i implement it? XXX */
901 1.1 reinoud /* acknowledge the interrupts nevertheless */
902 1.1 reinoud if (status & ATI_REG_ISR_IN_XRUN) {
903 1.1 reinoud ret++; DPRINTF(("IN_XRUN\n"));
904 1.1 reinoud /* auixp_dma_xrun(sc, sc->sc_input_dma); */
905 1.3 kent }
906 1.1 reinoud if (status & ATI_REG_ISR_OUT_XRUN) {
907 1.1 reinoud ret++; DPRINTF(("OUT_XRUN\n"));
908 1.1 reinoud /* auixp_dma_xrun(sc, sc->sc_output_dma); */
909 1.3 kent }
910 1.1 reinoud
911 1.1 reinoud /* check if we are looking for codec detection */
912 1.1 reinoud if (status & CODEC_CHECK_BITS) {
913 1.1 reinoud ret++;
914 1.1 reinoud /* mark missing codecs as not ready */
915 1.1 reinoud detected_codecs = status & CODEC_CHECK_BITS;
916 1.1 reinoud sc->sc_codec_not_ready_bits |= detected_codecs;
917 1.1 reinoud
918 1.1 reinoud /* disable detected interupt sources */
919 1.1 reinoud enable = bus_space_read_4(iot, ioh, ATI_REG_IER);
920 1.1 reinoud enable &= ~detected_codecs;
921 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_IER, enable);
922 1.3 kent }
923 1.1 reinoud
924 1.1 reinoud /* acknowledge interrupt sources */
925 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_ISR, status);
926 1.3 kent
927 1.1 reinoud return ret;
928 1.1 reinoud }
929 1.1 reinoud
930 1.1 reinoud
931 1.1 reinoud /* allocate memory for dma purposes; on failure of any of the steps, roll back */
932 1.3 kent int
933 1.3 kent auixp_allocmem(struct auixp_softc *sc, size_t size,
934 1.3 kent size_t align, struct auixp_dma *dma)
935 1.3 kent {
936 1.1 reinoud int error;
937 1.1 reinoud
938 1.1 reinoud /* remember size */
939 1.1 reinoud dma->size = size;
940 1.1 reinoud
941 1.1 reinoud /* allocate DMA safe memory but in just one segment for now :( */
942 1.1 reinoud error = bus_dmamem_alloc(sc->sc_dmat, dma->size, align, 0,
943 1.1 reinoud dma->segs, sizeof(dma->segs) / sizeof(dma->segs[0]),
944 1.1 reinoud &dma->nsegs, BUS_DMA_NOWAIT);
945 1.1 reinoud if (error) return (error);
946 1.1 reinoud
947 1.1 reinoud /*
948 1.1 reinoud * map allocated memory into kernel virtual address space and keep it
949 1.1 reinoud * coherent with the CPU.
950 1.1 reinoud */
951 1.1 reinoud error = bus_dmamem_map(sc->sc_dmat, dma->segs, dma->nsegs, dma->size,
952 1.1 reinoud &dma->addr, BUS_DMA_NOWAIT | BUS_DMA_COHERENT);
953 1.1 reinoud if (error) goto free;
954 1.1 reinoud
955 1.1 reinoud /* allocate associated dma handle and initialize it. */
956 1.1 reinoud error = bus_dmamap_create(sc->sc_dmat, dma->size, 1, dma->size, 0,
957 1.1 reinoud BUS_DMA_NOWAIT, &dma->map);
958 1.1 reinoud if (error) goto unmap;
959 1.1 reinoud
960 1.1 reinoud /*
961 1.1 reinoud * load the dma handle with mappings for a dma transfer; all pages
962 1.1 reinoud * need to be wired.
963 1.1 reinoud */
964 1.1 reinoud error = bus_dmamap_load(sc->sc_dmat, dma->map, dma->addr, dma->size, NULL,
965 1.1 reinoud BUS_DMA_NOWAIT);
966 1.1 reinoud if (error) goto destroy;
967 1.1 reinoud
968 1.3 kent return 0;
969 1.1 reinoud
970 1.1 reinoud destroy:
971 1.1 reinoud bus_dmamap_destroy(sc->sc_dmat, dma->map);
972 1.1 reinoud unmap:
973 1.1 reinoud bus_dmamem_unmap(sc->sc_dmat, dma->addr, dma->size);
974 1.1 reinoud free:
975 1.1 reinoud bus_dmamem_free(sc->sc_dmat, dma->segs, dma->nsegs);
976 1.1 reinoud
977 1.3 kent return error;
978 1.1 reinoud }
979 1.1 reinoud
980 1.1 reinoud
981 1.1 reinoud /* undo dma mapping and release memory allocated */
982 1.3 kent int
983 1.3 kent auixp_freemem(struct auixp_softc *sc, struct auixp_dma *p)
984 1.3 kent {
985 1.1 reinoud
986 1.1 reinoud bus_dmamap_unload(sc->sc_dmat, p->map);
987 1.1 reinoud bus_dmamap_destroy(sc->sc_dmat, p->map);
988 1.1 reinoud bus_dmamem_unmap(sc->sc_dmat, p->addr, p->size);
989 1.1 reinoud bus_dmamem_free(sc->sc_dmat, p->segs, p->nsegs);
990 1.1 reinoud
991 1.3 kent return 0;
992 1.1 reinoud }
993 1.1 reinoud
994 1.1 reinoud
995 1.1 reinoud /* memory map dma memory */
996 1.3 kent paddr_t
997 1.3 kent auixp_mappage(void *hdl, void *mem, off_t off, int prot)
998 1.3 kent {
999 1.3 kent struct auixp_codec *co;
1000 1.3 kent struct auixp_softc *sc;
1001 1.1 reinoud struct auixp_dma *p;
1002 1.1 reinoud
1003 1.3 kent co = (struct auixp_codec *) hdl;
1004 1.3 kent sc = co->sc;
1005 1.1 reinoud /* for sanity */
1006 1.1 reinoud if (off < 0) return (-1);
1007 1.1 reinoud
1008 1.1 reinoud /* look up allocated DMA area */
1009 1.1 reinoud SLIST_FOREACH(p, &sc->sc_dma_list, dma_chain) {
1010 1.1 reinoud if (KERNADDR(p) == mem) break;
1011 1.3 kent }
1012 1.1 reinoud
1013 1.1 reinoud /* have we found it ? */
1014 1.1 reinoud if (!p) return (-1);
1015 1.1 reinoud
1016 1.1 reinoud /* return mmap'd region */
1017 1.3 kent return bus_dmamem_mmap(sc->sc_dmat, p->segs, p->nsegs,
1018 1.3 kent off, prot, BUS_DMA_WAITOK);
1019 1.1 reinoud }
1020 1.1 reinoud
1021 1.1 reinoud
1022 1.1 reinoud /*
1023 1.1 reinoud * Attachment section
1024 1.1 reinoud */
1025 1.1 reinoud
1026 1.1 reinoud /* Is it my hardware? */
1027 1.3 kent int
1028 1.3 kent auixp_match(struct device *dev, struct cfdata *match, void *aux)
1029 1.3 kent {
1030 1.3 kent struct pci_attach_args *pa;
1031 1.1 reinoud
1032 1.3 kent pa = (struct pci_attach_args *)aux;
1033 1.1 reinoud switch(PCI_VENDOR(pa->pa_id)) {
1034 1.1 reinoud case PCI_VENDOR_ATI:
1035 1.1 reinoud switch(PCI_PRODUCT(pa->pa_id)) {
1036 1.1 reinoud case PCI_PRODUCT_ATI_IXP_AUDIO_200:
1037 1.1 reinoud case PCI_PRODUCT_ATI_IXP_AUDIO_300:
1038 1.1 reinoud case PCI_PRODUCT_ATI_IXP_AUDIO_400:
1039 1.3 kent return 1;
1040 1.1 reinoud }
1041 1.1 reinoud }
1042 1.1 reinoud
1043 1.3 kent return 0;
1044 1.1 reinoud }
1045 1.1 reinoud
1046 1.1 reinoud
1047 1.1 reinoud /* it is... now hook up and set up the resources we need */
1048 1.3 kent void
1049 1.3 kent auixp_attach(struct device *parent, struct device *self, void *aux)
1050 1.3 kent {
1051 1.3 kent struct auixp_softc *sc;
1052 1.3 kent struct pci_attach_args *pa;
1053 1.3 kent pcitag_t tag;
1054 1.3 kent pci_chipset_tag_t pc;
1055 1.1 reinoud pci_intr_handle_t ih;
1056 1.1 reinoud struct auixp_card_type *card;
1057 1.1 reinoud const char *intrstr;
1058 1.1 reinoud uint32_t data;
1059 1.1 reinoud char devinfo[256];
1060 1.1 reinoud int revision, len;
1061 1.1 reinoud
1062 1.3 kent sc = (struct auixp_softc *)self;
1063 1.3 kent pa = (struct pci_attach_args *)aux;
1064 1.3 kent tag = pa->pa_tag;
1065 1.3 kent pc = pa->pa_pc;
1066 1.1 reinoud #ifdef DEBUG_AUIXP
1067 1.3 kent static_sc = sc;
1068 1.1 reinoud #endif
1069 1.1 reinoud
1070 1.1 reinoud /* print information confirming attachment */
1071 1.1 reinoud aprint_naive(": Audio controller\n");
1072 1.1 reinoud
1073 1.1 reinoud pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
1074 1.1 reinoud revision = PCI_REVISION(pa->pa_class);
1075 1.1 reinoud aprint_normal(": %s (rev. 0x%02x)\n", devinfo, revision);
1076 1.1 reinoud
1077 1.1 reinoud /* set up details from our set of known `cards'/chips */
1078 1.1 reinoud for (card = auixp_card_types; card->pci_vendor_id; card++)
1079 1.1 reinoud if (PCI_VENDOR(pa->pa_id) == card->pci_vendor_id &&
1080 1.1 reinoud PCI_PRODUCT(pa->pa_id) == card->pci_product_id) {
1081 1.1 reinoud sc->type = card->type;
1082 1.1 reinoud break;
1083 1.1 reinoud }
1084 1.1 reinoud
1085 1.1 reinoud /* device only has 32 bit non prefetchable memory */
1086 1.1 reinoud /* set MEM space access and enable the card's busmastering */
1087 1.1 reinoud data = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
1088 1.1 reinoud data |= (PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE);
1089 1.1 reinoud pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, data);
1090 1.1 reinoud
1091 1.1 reinoud /* map memory; its not sized -> what is the size? max PCI slot size? */
1092 1.1 reinoud if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_MEM, 0,
1093 1.1 reinoud &sc->sc_iot, &sc->sc_ioh, &sc->sc_iob, &sc->sc_ios)) {
1094 1.1 reinoud aprint_error("%s: can't map memory space\n", sc->sc_dev.dv_xname);
1095 1.1 reinoud return;
1096 1.1 reinoud }
1097 1.1 reinoud
1098 1.1 reinoud /* Initialize softc */
1099 1.1 reinoud sc->sc_tag = tag;
1100 1.1 reinoud sc->sc_pct = pc;
1101 1.1 reinoud sc->sc_dmat = pa->pa_dmat;
1102 1.1 reinoud SLIST_INIT(&sc->sc_dma_list);
1103 1.1 reinoud
1104 1.1 reinoud /* get us the auixp_dma structures */
1105 1.1 reinoud auixp_allocate_dma_chain(sc, &sc->sc_output_dma);
1106 1.1 reinoud auixp_allocate_dma_chain(sc, &sc->sc_input_dma);
1107 1.1 reinoud
1108 1.1 reinoud /* when that fails we are dead in the water */
1109 1.1 reinoud if (!sc->sc_output_dma || !sc->sc_input_dma) return;
1110 1.1 reinoud
1111 1.1 reinoud /* fill in the missing details about the dma channels. */
1112 1.1 reinoud
1113 1.1 reinoud /* for output */
1114 1.1 reinoud sc->sc_output_dma->linkptr = ATI_REG_OUT_DMA_LINKPTR;
1115 1.1 reinoud sc->sc_output_dma->dma_enable_bit = ATI_REG_CMD_OUT_DMA_EN |
1116 1.1 reinoud ATI_REG_CMD_SEND_EN;
1117 1.1 reinoud /* have spdif? then this too! XXX not seeing LED yet! XXX */
1118 1.1 reinoud if (sc->has_spdif)
1119 1.1 reinoud sc->sc_output_dma->dma_enable_bit |= ATI_REG_CMD_SPDF_OUT_EN;
1120 1.1 reinoud
1121 1.1 reinoud /* and for input */
1122 1.1 reinoud sc->sc_input_dma->linkptr = ATI_REG_IN_DMA_LINKPTR;
1123 1.1 reinoud sc->sc_input_dma->dma_enable_bit = ATI_REG_CMD_IN_DMA_EN |
1124 1.1 reinoud ATI_REG_CMD_RECEIVE_EN;
1125 1.1 reinoud
1126 1.1 reinoud #if 0
1127 1.1 reinoud /* could preliminary program DMA chain */
1128 1.1 reinoud auixp_program_dma_chain(sc, sc->sc_output_dma);
1129 1.1 reinoud auixp_program_dma_chain(sc, sc->sc_input_dma);
1130 1.1 reinoud #endif
1131 1.1 reinoud
1132 1.1 reinoud /* map interrupt on the pci bus */
1133 1.1 reinoud if (pci_intr_map(pa, &ih)) {
1134 1.1 reinoud aprint_error("%s: can't map interrupt\n", sc->sc_dev.dv_xname);
1135 1.1 reinoud return;
1136 1.1 reinoud }
1137 1.1 reinoud
1138 1.1 reinoud /* where are we connected at ? */
1139 1.1 reinoud intrstr = pci_intr_string(pc, ih);
1140 1.1 reinoud
1141 1.1 reinoud /* establish interrupt routine hookup at IPL_AUDIO level */
1142 1.1 reinoud sc->sc_ih = pci_intr_establish(pc, ih, IPL_AUDIO, auixp_intr, self);
1143 1.1 reinoud if (sc->sc_ih == NULL) {
1144 1.1 reinoud aprint_error("%s: can't establish interrupt",
1145 1.1 reinoud sc->sc_dev.dv_xname);
1146 1.1 reinoud if (intrstr != NULL)
1147 1.1 reinoud aprint_normal(" at %s", intrstr);
1148 1.1 reinoud aprint_normal("\n");
1149 1.1 reinoud return;
1150 1.1 reinoud }
1151 1.1 reinoud aprint_normal("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
1152 1.1 reinoud
1153 1.1 reinoud /* power up chip */
1154 1.1 reinoud auixp_power(sc, PCI_PMCSR_STATE_D0);
1155 1.1 reinoud
1156 1.1 reinoud /* init chip */
1157 1.1 reinoud if (auixp_init(sc) == -1) {
1158 1.1 reinoud aprint_error("%s: auixp_attach: unable to initialize the card\n",
1159 1.1 reinoud sc->sc_dev.dv_xname);
1160 1.1 reinoud return;
1161 1.1 reinoud }
1162 1.1 reinoud
1163 1.1 reinoud /* XXX set up power hooks; not implemented yet XXX */
1164 1.1 reinoud
1165 1.3 kent len = 1; /* shut up gcc */
1166 1.1 reinoud #ifdef notyet
1167 1.1 reinoud /* create suspend save area */
1168 1.1 reinoud len = sizeof(uint16_t) * (ESA_REV_B_CODE_MEMORY_LENGTH
1169 1.1 reinoud + ESA_REV_B_DATA_MEMORY_LENGTH + 1);
1170 1.1 reinoud sc->savemem = (uint16_t *)malloc(len, M_DEVBUF, M_NOWAIT | M_ZERO);
1171 1.1 reinoud if (sc->savemem == NULL) {
1172 1.1 reinoud aprint_error("%s: unable to allocate suspend buffer\n",
1173 1.1 reinoud sc->sc_dev.dv_xname);
1174 1.1 reinoud return;
1175 1.1 reinoud }
1176 1.1 reinoud
1177 1.1 reinoud sc->powerhook = powerhook_establish(auixp_powerhook, sc);
1178 1.1 reinoud if (sc->powerhook == NULL)
1179 1.1 reinoud aprint_error("%s: WARNING: unable to establish powerhook\n",
1180 1.1 reinoud sc->sc_dev.dv_xname);
1181 1.1 reinoud
1182 1.1 reinoud #endif
1183 1.1 reinoud
1184 1.1 reinoud /*
1185 1.1 reinoud * delay further configuration of codecs and audio after interrupts
1186 1.1 reinoud * are enabled.
1187 1.1 reinoud */
1188 1.1 reinoud config_interrupts(self, auixp_post_config);
1189 1.1 reinoud }
1190 1.1 reinoud
1191 1.1 reinoud
1192 1.1 reinoud /* called from autoconfigure system when interrupts are enabled */
1193 1.3 kent void
1194 1.3 kent auixp_post_config(struct device *self)
1195 1.3 kent {
1196 1.3 kent struct auixp_softc *sc;
1197 1.1 reinoud struct auixp_codec *codec;
1198 1.1 reinoud int codec_nr;
1199 1.1 reinoud int res, i;
1200 1.1 reinoud
1201 1.3 kent sc = (struct auixp_softc *)self;
1202 1.1 reinoud /* detect the AC97 codecs */
1203 1.1 reinoud auixp_autodetect_codecs(sc);
1204 1.1 reinoud
1205 1.1 reinoud /* setup audio translation formats : following codec0 (!) */
1206 1.1 reinoud codec = &sc->sc_codec[0];
1207 1.1 reinoud if (!codec->present) {
1208 1.1 reinoud /* nothing??? then invalidate all formats */
1209 1.1 reinoud for (i = 0; i < AUIXP_NFORMATS; i++) {
1210 1.1 reinoud AUFMT_INVALIDATE(&sc->sc_formats[i]);
1211 1.3 kent }
1212 1.1 reinoud return;
1213 1.3 kent }
1214 1.1 reinoud
1215 1.1 reinoud /* copy formats and invalidate entries not suitable for codec0 */
1216 1.1 reinoud memcpy(sc->sc_formats, auixp_formats, sizeof(auixp_formats));
1217 1.1 reinoud sc->has_4ch = AC97_IS_4CH(codec->codec_if);
1218 1.1 reinoud sc->has_6ch = AC97_IS_6CH(codec->codec_if);
1219 1.1 reinoud sc->is_fixed = AC97_IS_FIXED_RATE(codec->codec_if);
1220 1.1 reinoud sc->has_spdif = AC97_HAS_SPDIF(codec->codec_if);
1221 1.1 reinoud
1222 1.1 reinoud for (i = 0; i < AUIXP_NFORMATS; i++) {
1223 1.1 reinoud if (sc->is_fixed) {
1224 1.1 reinoud sc->sc_formats[i].frequency_type = 1;
1225 1.1 reinoud sc->sc_formats[i].frequency[0] = 48000;
1226 1.3 kent }
1227 1.1 reinoud switch (sc->sc_formats[i].channels) {
1228 1.1 reinoud case 4 :
1229 1.1 reinoud if (sc->has_4ch) break;
1230 1.1 reinoud AUFMT_INVALIDATE(&sc->sc_formats[i]);
1231 1.1 reinoud break;
1232 1.1 reinoud case 6 :
1233 1.1 reinoud if (sc->has_6ch) break;
1234 1.1 reinoud AUFMT_INVALIDATE(&sc->sc_formats[i]);
1235 1.1 reinoud break;
1236 1.1 reinoud default :
1237 1.1 reinoud break;
1238 1.3 kent }
1239 1.1 reinoud }
1240 1.1 reinoud
1241 1.1 reinoud /* create all encodings (and/or -translations) based on the formats supported */
1242 1.1 reinoud res = auconv_create_encodings(sc->sc_formats, AUIXP_NFORMATS, &sc->sc_encodings);
1243 1.1 reinoud if (res) {
1244 1.1 reinoud printf("auixp: auconv_create_encodings failed; no attachments\n");
1245 1.1 reinoud return;
1246 1.3 kent }
1247 1.1 reinoud
1248 1.1 reinoud /* attach audio devices for all detected codecs */
1249 1.1 reinoud /* XXX wise? look at other multiple-codec able chipsets XXX */
1250 1.1 reinoud for (codec_nr = 0; codec_nr < ATI_IXP_CODECS; codec_nr++) {
1251 1.1 reinoud codec = &sc->sc_codec[codec_nr];
1252 1.1 reinoud if (codec->present)
1253 1.1 reinoud audio_attach_mi(&auixp_hw_if, codec, &sc->sc_dev);
1254 1.3 kent }
1255 1.1 reinoud
1256 1.1 reinoud /* done! now enable all interrupts we can service */
1257 1.1 reinoud auixp_enable_interrupts(sc);
1258 1.3 kent }
1259 1.1 reinoud
1260 1.1 reinoud
1261 1.3 kent void
1262 1.3 kent auixp_enable_interrupts(struct auixp_softc *sc)
1263 1.3 kent {
1264 1.3 kent bus_space_tag_t iot;
1265 1.3 kent bus_space_handle_t ioh;
1266 1.1 reinoud uint32_t value;
1267 1.1 reinoud
1268 1.3 kent iot = sc->sc_iot;
1269 1.3 kent ioh = sc->sc_ioh;
1270 1.1 reinoud /* clear all pending */
1271 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_ISR, 0xffffffff);
1272 1.1 reinoud
1273 1.1 reinoud /* enable all relevant interrupt sources we can handle */
1274 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_IER);
1275 1.1 reinoud
1276 1.1 reinoud value |= ATI_REG_IER_IO_STATUS_EN;
1277 1.1 reinoud #ifdef notyet
1278 1.1 reinoud value |= ATI_REG_IER_IN_XRUN_EN;
1279 1.1 reinoud value |= ATI_REG_IER_OUT_XRUN_EN;
1280 1.1 reinoud
1281 1.1 reinoud value |= ATI_REG_IER_SPDIF_XRUN_EN;
1282 1.1 reinoud value |= ATI_REG_IER_SPDF_STATUS_EN;
1283 1.1 reinoud #endif
1284 1.1 reinoud
1285 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_IER, value);
1286 1.1 reinoud }
1287 1.1 reinoud
1288 1.1 reinoud
1289 1.3 kent void
1290 1.3 kent auixp_disable_interrupts(struct auixp_softc *sc)
1291 1.3 kent {
1292 1.3 kent bus_space_tag_t iot;
1293 1.3 kent bus_space_handle_t ioh;
1294 1.1 reinoud
1295 1.3 kent iot = sc->sc_iot;
1296 1.3 kent ioh = sc->sc_ioh;
1297 1.1 reinoud /* disable all interrupt sources */
1298 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_IER, 0);
1299 1.1 reinoud
1300 1.1 reinoud /* clear all pending */
1301 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_ISR, 0xffffffff);
1302 1.1 reinoud }
1303 1.1 reinoud
1304 1.1 reinoud
1305 1.1 reinoud /* dismantle what we've set up by undoing setup */
1306 1.3 kent int
1307 1.3 kent auixp_detach(struct device *self, int flags)
1308 1.3 kent {
1309 1.3 kent struct auixp_softc *sc;
1310 1.1 reinoud
1311 1.3 kent sc = (struct auixp_softc *)self;
1312 1.1 reinoud /* XXX shouldn't we just reset the chip? XXX */
1313 1.1 reinoud /*
1314 1.1 reinoud * should we explicitly disable interrupt generation and acknowledge
1315 1.1 reinoud * what's left on? better be safe than sorry.
1316 1.1 reinoud */
1317 1.1 reinoud auixp_disable_interrupts(sc);
1318 1.1 reinoud
1319 1.1 reinoud /* tear down .... */
1320 1.1 reinoud config_detach(&sc->sc_dev, flags); /* XXX OK? XXX */
1321 1.1 reinoud
1322 1.1 reinoud if (sc->sc_ih != NULL)
1323 1.1 reinoud pci_intr_disestablish(sc->sc_pct, sc->sc_ih);
1324 1.1 reinoud if (sc->sc_ios)
1325 1.1 reinoud bus_space_unmap(sc->sc_iot, sc->sc_ioh, sc->sc_ios);
1326 1.1 reinoud
1327 1.1 reinoud if (sc->savemem) free(sc->savemem, M_DEVBUF);
1328 1.1 reinoud
1329 1.3 kent return 0;
1330 1.1 reinoud }
1331 1.1 reinoud
1332 1.1 reinoud
1333 1.1 reinoud /*
1334 1.3 kent * codec handling
1335 1.1 reinoud *
1336 1.1 reinoud * IXP audio support can have upto 3 codecs! are they chained ? or
1337 1.1 reinoud * alternative outlets with the same audio feed i.e. with different mixer
1338 1.3 kent * settings? XXX does NetBSD support more than one audio codec? XXX
1339 1.1 reinoud */
1340 1.1 reinoud
1341 1.1 reinoud
1342 1.3 kent int
1343 1.3 kent auixp_attach_codec(void *aux, struct ac97_codec_if *codec_if)
1344 1.3 kent {
1345 1.3 kent struct auixp_codec *ixp_codec;
1346 1.1 reinoud
1347 1.3 kent ixp_codec = aux;
1348 1.1 reinoud ixp_codec->codec_if = codec_if;
1349 1.1 reinoud ixp_codec->present = 1;
1350 1.1 reinoud
1351 1.3 kent return 0;
1352 1.1 reinoud }
1353 1.1 reinoud
1354 1.1 reinoud
1355 1.3 kent int
1356 1.3 kent auixp_read_codec(void *aux, uint8_t reg, uint16_t *result)
1357 1.3 kent {
1358 1.3 kent struct auixp_codec *co;
1359 1.3 kent struct auixp_softc *sc;
1360 1.3 kent bus_space_tag_t iot;
1361 1.3 kent bus_space_handle_t ioh;
1362 1.1 reinoud uint32_t data;
1363 1.1 reinoud int timeout;
1364 1.1 reinoud
1365 1.3 kent co = aux;
1366 1.3 kent sc = co->sc;
1367 1.3 kent iot = sc->sc_iot;
1368 1.3 kent ioh = sc->sc_ioh;
1369 1.1 reinoud if (auixp_wait_for_codecs(sc, "read_codec")) return 0xffff;
1370 1.1 reinoud
1371 1.1 reinoud /* build up command for reading codec register */
1372 1.1 reinoud data = (reg << ATI_REG_PHYS_OUT_ADDR_SHIFT) |
1373 1.1 reinoud ATI_REG_PHYS_OUT_ADDR_EN |
1374 1.1 reinoud ATI_REG_PHYS_OUT_RW |
1375 1.1 reinoud co->codec_nr;
1376 1.1 reinoud
1377 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_PHYS_OUT_ADDR, data);
1378 1.1 reinoud
1379 1.1 reinoud if (auixp_wait_for_codecs(sc, "read_codec")) return 0xffff;
1380 1.1 reinoud
1381 1.1 reinoud /* wait until codec info is clocked in */
1382 1.1 reinoud timeout = 500; /* 500*2 usec -> 0.001 sec */
1383 1.1 reinoud do {
1384 1.1 reinoud data = bus_space_read_4(iot, ioh, ATI_REG_PHYS_IN_ADDR);
1385 1.1 reinoud if (data & ATI_REG_PHYS_IN_READ_FLAG) {
1386 1.1 reinoud DPRINTF(("read ac'97 codec reg 0x%x = 0x%08x\n",
1387 1.1 reinoud reg, data >> ATI_REG_PHYS_IN_DATA_SHIFT)
1388 1.1 reinoud );
1389 1.1 reinoud *result = data >> ATI_REG_PHYS_IN_DATA_SHIFT;
1390 1.1 reinoud return 0;
1391 1.3 kent }
1392 1.1 reinoud DELAY(2);
1393 1.1 reinoud timeout--;
1394 1.1 reinoud } while (timeout > 0);
1395 1.1 reinoud
1396 1.1 reinoud if (reg < 0x7c)
1397 1.1 reinoud printf("%s: codec read timeout! (reg %x)\n",sc->sc_dev.dv_xname, reg);
1398 1.1 reinoud
1399 1.1 reinoud return 0xffff;
1400 1.1 reinoud }
1401 1.1 reinoud
1402 1.1 reinoud
1403 1.3 kent int
1404 1.3 kent auixp_write_codec(void *aux, uint8_t reg, uint16_t data)
1405 1.3 kent {
1406 1.3 kent struct auixp_codec *co;
1407 1.3 kent struct auixp_softc *sc;
1408 1.3 kent bus_space_tag_t iot;
1409 1.3 kent bus_space_handle_t ioh;
1410 1.1 reinoud uint32_t value;
1411 1.1 reinoud
1412 1.1 reinoud DPRINTF(("write ac'97 codec reg 0x%x = 0x%08x\n", reg, data));
1413 1.3 kent co = aux;
1414 1.3 kent sc = co->sc;
1415 1.3 kent iot = sc->sc_iot;
1416 1.3 kent ioh = sc->sc_ioh;
1417 1.1 reinoud if (auixp_wait_for_codecs(sc, "write_codec")) return -1;
1418 1.1 reinoud
1419 1.1 reinoud /* build up command for writing codec register */
1420 1.1 reinoud value = (((uint32_t) data) << ATI_REG_PHYS_OUT_DATA_SHIFT) |
1421 1.3 kent (((uint32_t) reg) << ATI_REG_PHYS_OUT_ADDR_SHIFT) |
1422 1.1 reinoud ATI_REG_PHYS_OUT_ADDR_EN |
1423 1.1 reinoud co->codec_nr;
1424 1.1 reinoud
1425 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_PHYS_OUT_ADDR, value);
1426 1.1 reinoud
1427 1.1 reinoud return 0;
1428 1.1 reinoud }
1429 1.1 reinoud
1430 1.1 reinoud
1431 1.3 kent int
1432 1.3 kent auixp_reset_codec(void *aux)
1433 1.3 kent {
1434 1.3 kent
1435 1.1 reinoud /* nothing to be done? */
1436 1.1 reinoud return 0;
1437 1.1 reinoud }
1438 1.1 reinoud
1439 1.1 reinoud
1440 1.3 kent enum ac97_host_flags
1441 1.3 kent auixp_flags_codec(void *aux)
1442 1.3 kent {
1443 1.3 kent struct auixp_codec *ixp_codec;
1444 1.1 reinoud
1445 1.3 kent ixp_codec = aux;
1446 1.3 kent return ixp_codec->codec_flags;
1447 1.1 reinoud }
1448 1.1 reinoud
1449 1.1 reinoud
1450 1.3 kent int
1451 1.3 kent auixp_wait_for_codecs(struct auixp_softc *sc, char *func)
1452 1.3 kent {
1453 1.3 kent bus_space_tag_t iot;
1454 1.3 kent bus_space_handle_t ioh;
1455 1.1 reinoud uint32_t value;
1456 1.1 reinoud int timeout;
1457 1.1 reinoud
1458 1.3 kent iot = sc->sc_iot;
1459 1.3 kent ioh = sc->sc_ioh;
1460 1.1 reinoud /* wait until all codec transfers are done */
1461 1.1 reinoud timeout = 500; /* 500*2 usec -> 0.001 sec */
1462 1.1 reinoud do {
1463 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_PHYS_OUT_ADDR);
1464 1.1 reinoud if ((value & ATI_REG_PHYS_OUT_ADDR_EN) == 0) return 0;
1465 1.1 reinoud
1466 1.1 reinoud DELAY(2);
1467 1.1 reinoud timeout--;
1468 1.1 reinoud } while (timeout > 0);
1469 1.1 reinoud
1470 1.1 reinoud printf("%s: %s: timed out\n", func, sc->sc_dev.dv_xname);
1471 1.1 reinoud return -1;
1472 1.1 reinoud }
1473 1.1 reinoud
1474 1.1 reinoud
1475 1.1 reinoud
1476 1.3 kent void
1477 1.3 kent auixp_autodetect_codecs(struct auixp_softc *sc)
1478 1.3 kent {
1479 1.3 kent bus_space_tag_t iot;
1480 1.3 kent bus_space_handle_t ioh;
1481 1.1 reinoud struct auixp_codec *codec;
1482 1.1 reinoud int timeout, codec_nr;
1483 1.1 reinoud
1484 1.3 kent iot = sc->sc_iot;
1485 1.3 kent ioh = sc->sc_ioh;
1486 1.1 reinoud /* ATI IXP can have upto 3 codecs; mark all codecs as not existing */
1487 1.1 reinoud sc->sc_codec_not_ready_bits = 0;
1488 1.1 reinoud sc->sc_num_codecs = 0;
1489 1.1 reinoud
1490 1.1 reinoud /* enable all codecs to interrupt as well as the new frame interrupt */
1491 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_IER, CODEC_CHECK_BITS);
1492 1.1 reinoud
1493 1.1 reinoud /* wait for the interrupts to happen */
1494 1.1 reinoud timeout = 100; /* 100.000 usec -> 0.1 sec */
1495 1.1 reinoud
1496 1.1 reinoud while (timeout > 0) {
1497 1.1 reinoud DELAY(1000);
1498 1.1 reinoud if (sc->sc_codec_not_ready_bits) break;
1499 1.1 reinoud timeout--;
1500 1.3 kent }
1501 1.1 reinoud
1502 1.1 reinoud if (timeout == 0)
1503 1.1 reinoud printf( "WARNING: timeout during codec detection; "
1504 1.1 reinoud "codecs might be present but haven't interrupted\n");
1505 1.1 reinoud
1506 1.1 reinoud /* disable all interrupts for now */
1507 1.1 reinoud auixp_disable_interrupts(sc);
1508 1.1 reinoud
1509 1.1 reinoud /* Attach AC97 host interfaces */
1510 1.1 reinoud for (codec_nr = 0; codec_nr < ATI_IXP_CODECS; codec_nr++) {
1511 1.1 reinoud codec = &sc->sc_codec[codec_nr];
1512 1.1 reinoud bzero(codec, sizeof(struct auixp_codec));
1513 1.1 reinoud
1514 1.1 reinoud codec->sc = sc;
1515 1.1 reinoud codec->codec_nr = codec_nr;
1516 1.1 reinoud codec->present = 0;
1517 1.1 reinoud
1518 1.1 reinoud codec->host_if.arg = codec;
1519 1.1 reinoud codec->host_if.attach = auixp_attach_codec;
1520 1.1 reinoud codec->host_if.read = auixp_read_codec;
1521 1.1 reinoud codec->host_if.write = auixp_write_codec;
1522 1.1 reinoud codec->host_if.reset = auixp_reset_codec;
1523 1.1 reinoud codec->host_if.flags = auixp_flags_codec;
1524 1.3 kent }
1525 1.1 reinoud
1526 1.1 reinoud if (!(sc->sc_codec_not_ready_bits & ATI_REG_ISR_CODEC0_NOT_READY)) {
1527 1.1 reinoud /* codec 0 present */
1528 1.1 reinoud // printf("auixp : YAY! codec 0 present!\n");
1529 1.3 kent if (ac97_attach(&sc->sc_codec[0].host_if, &sc->sc_dev) == 0)
1530 1.3 kent sc->sc_num_codecs++;
1531 1.3 kent }
1532 1.1 reinoud
1533 1.1 reinoud if (!(sc->sc_codec_not_ready_bits & ATI_REG_ISR_CODEC1_NOT_READY)) {
1534 1.1 reinoud /* codec 1 present */
1535 1.1 reinoud printf("auixp : YAY! codec 1 present!\n");
1536 1.3 kent if (ac97_attach(&sc->sc_codec[1].host_if, &sc->sc_dev) == 0)
1537 1.3 kent sc->sc_num_codecs++;
1538 1.3 kent }
1539 1.1 reinoud
1540 1.1 reinoud if (!(sc->sc_codec_not_ready_bits & ATI_REG_ISR_CODEC2_NOT_READY)) {
1541 1.1 reinoud /* codec 2 present */
1542 1.1 reinoud printf("auixp : YAY! codec 2 present!\n");
1543 1.3 kent if (ac97_attach(&sc->sc_codec[2].host_if, &sc->sc_dev) == 0)
1544 1.3 kent sc->sc_num_codecs++;
1545 1.3 kent }
1546 1.1 reinoud
1547 1.1 reinoud if (sc->sc_num_codecs == 0) {
1548 1.1 reinoud printf("auixp : BUMMER, no codecs detected or "
1549 1.1 reinoud "no codecs managed to initialise\n");
1550 1.1 reinoud return;
1551 1.3 kent }
1552 1.1 reinoud
1553 1.3 kent }
1554 1.1 reinoud
1555 1.1 reinoud
1556 1.1 reinoud
1557 1.1 reinoud /* initialisation routines */
1558 1.1 reinoud
1559 1.3 kent void
1560 1.3 kent auixp_disable_dma(struct auixp_softc *sc, struct auixp_dma *dma)
1561 1.3 kent {
1562 1.3 kent bus_space_tag_t iot;
1563 1.3 kent bus_space_handle_t ioh;
1564 1.1 reinoud uint32_t value;
1565 1.1 reinoud
1566 1.3 kent iot = sc->sc_iot;
1567 1.3 kent ioh = sc->sc_ioh;
1568 1.1 reinoud /* lets not stress the DMA engine more than nessisary */
1569 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
1570 1.1 reinoud if (value & dma->dma_enable_bit) {
1571 1.1 reinoud value &= ~dma->dma_enable_bit;
1572 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_CMD, value);
1573 1.3 kent }
1574 1.1 reinoud }
1575 1.1 reinoud
1576 1.1 reinoud
1577 1.3 kent void
1578 1.3 kent auixp_enable_dma(struct auixp_softc *sc, struct auixp_dma *dma)
1579 1.3 kent {
1580 1.3 kent bus_space_tag_t iot;
1581 1.3 kent bus_space_handle_t ioh;
1582 1.1 reinoud uint32_t value;
1583 1.1 reinoud
1584 1.3 kent iot = sc->sc_iot;
1585 1.3 kent ioh = sc->sc_ioh;
1586 1.1 reinoud /* lets not stress the DMA engine more than nessisary */
1587 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
1588 1.1 reinoud if (!(value & dma->dma_enable_bit)) {
1589 1.1 reinoud value |= dma->dma_enable_bit;
1590 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_CMD, value);
1591 1.3 kent }
1592 1.1 reinoud }
1593 1.1 reinoud
1594 1.1 reinoud
1595 1.3 kent void
1596 1.3 kent auixp_reset_aclink(struct auixp_softc *sc)
1597 1.3 kent {
1598 1.3 kent
1599 1.1 reinoud /* XXX fix me! XXX */
1600 1.1 reinoud printf("auixp : could reset aclink\n");
1601 1.1 reinoud }
1602 1.1 reinoud
1603 1.1 reinoud
1604 1.1 reinoud /* XXX setup saved configuration XXX */
1605 1.3 kent void
1606 1.3 kent auixp_config(struct auixp_softc *sc)
1607 1.3 kent {
1608 1.3 kent
1609 1.1 reinoud /* XXX fix me XXX */
1610 1.1 reinoud return;
1611 1.1 reinoud }
1612 1.1 reinoud
1613 1.1 reinoud
1614 1.1 reinoud /* chip hard init */
1615 1.3 kent int
1616 1.3 kent auixp_init(struct auixp_softc *sc)
1617 1.3 kent {
1618 1.3 kent bus_space_tag_t iot;
1619 1.3 kent bus_space_handle_t ioh;
1620 1.1 reinoud uint32_t value;
1621 1.1 reinoud
1622 1.3 kent iot = sc->sc_iot;
1623 1.3 kent ioh = sc->sc_ioh;
1624 1.1 reinoud /* disable all interrupts and clear all sources */
1625 1.1 reinoud auixp_disable_interrupts(sc);
1626 1.1 reinoud
1627 1.1 reinoud /* clear all DMA enables (preserving rest of settings) */
1628 1.1 reinoud value = bus_space_read_4(iot, ioh, ATI_REG_CMD);
1629 1.1 reinoud value &= ~( ATI_REG_CMD_IN_DMA_EN |
1630 1.1 reinoud ATI_REG_CMD_OUT_DMA_EN |
1631 1.1 reinoud ATI_REG_CMD_SPDF_OUT_EN );
1632 1.1 reinoud bus_space_write_4(iot, ioh, ATI_REG_CMD, value);
1633 1.1 reinoud
1634 1.1 reinoud /* Reset AC-link */
1635 1.1 reinoud auixp_reset_aclink(sc);
1636 1.1 reinoud
1637 1.1 reinoud /*
1638 1.1 reinoud * codecs get auto-detected later
1639 1.1 reinoud *
1640 1.1 reinoud * note: we are NOT enabling interrupts yet, no codecs have been
1641 1.1 reinoud * detected yet nor is anything else set up
1642 1.1 reinoud */
1643 1.1 reinoud
1644 1.1 reinoud return 0;
1645 1.1 reinoud }
1646 1.1 reinoud
1647 1.1 reinoud
1648 1.1 reinoud /*
1649 1.1 reinoud * TODO power saving and suspend / resume support
1650 1.1 reinoud *
1651 1.1 reinoud */
1652 1.1 reinoud
1653 1.3 kent int
1654 1.3 kent auixp_power(struct auixp_softc *sc, int state)
1655 1.3 kent {
1656 1.3 kent pcitag_t tag;
1657 1.3 kent pci_chipset_tag_t pc;
1658 1.1 reinoud pcireg_t data;
1659 1.1 reinoud int pmcapreg;
1660 1.1 reinoud
1661 1.3 kent tag = sc->sc_tag;
1662 1.3 kent pc = sc->sc_pct;
1663 1.1 reinoud if (pci_get_capability(pc, tag, PCI_CAP_PWRMGMT, &pmcapreg, 0)) {
1664 1.1 reinoud data = pci_conf_read(pc, tag, pmcapreg + PCI_PMCSR);
1665 1.1 reinoud if ((data & PCI_PMCSR_STATE_MASK) != state)
1666 1.1 reinoud pci_conf_write(pc, tag, pmcapreg + PCI_PMCSR, state);
1667 1.1 reinoud }
1668 1.3 kent
1669 1.3 kent return 0;
1670 1.1 reinoud }
1671 1.1 reinoud
1672 1.1 reinoud
1673 1.3 kent void
1674 1.3 kent auixp_powerhook(int why, void *hdl)
1675 1.3 kent {
1676 1.3 kent struct auixp_softc *sc;
1677 1.1 reinoud
1678 1.3 kent sc = (struct auixp_softc *)hdl;
1679 1.1 reinoud switch (why) {
1680 1.1 reinoud case PWR_SUSPEND:
1681 1.1 reinoud case PWR_STANDBY:
1682 1.1 reinoud auixp_suspend(sc);
1683 1.1 reinoud break;
1684 1.1 reinoud case PWR_RESUME:
1685 1.1 reinoud auixp_resume(sc);
1686 1.1 reinoud /* XXX fix me XXX */
1687 1.1 reinoud // (sc->codec_if->vtbl->restore_ports)(sc->codec_if);
1688 1.1 reinoud break;
1689 1.1 reinoud }
1690 1.1 reinoud }
1691 1.1 reinoud
1692 1.1 reinoud
1693 1.3 kent int
1694 1.3 kent auixp_suspend(struct auixp_softc *sc)
1695 1.3 kent {
1696 1.1 reinoud /* XXX no power functions yet XXX */
1697 1.3 kent return 0;
1698 1.1 reinoud }
1699 1.1 reinoud
1700 1.1 reinoud
1701 1.3 kent int
1702 1.3 kent auixp_resume(struct auixp_softc *sc)
1703 1.3 kent {
1704 1.1 reinoud /* XXX no power functions yet XXX */
1705 1.3 kent return 0;
1706 1.1 reinoud }
1707 1.1 reinoud
1708 1.1 reinoud
1709 1.1 reinoud #ifdef DEBUG_AUIXP
1710 1.1 reinoud
1711 1.3 kent void
1712 1.3 kent auixp_dumpreg(void)
1713 1.3 kent {
1714 1.3 kent struct auixp_softc *sc;
1715 1.3 kent bus_space_tag_t iot;
1716 1.3 kent bus_space_handle_t ioh;
1717 1.1 reinoud int i;
1718 1.1 reinoud
1719 1.3 kent sc = static_sc;
1720 1.3 kent iot = sc->sc_iot;
1721 1.3 kent ioh = sc->sc_ioh;
1722 1.1 reinoud printf("auixp register dump:\n");
1723 1.1 reinoud for (i = 0; i < 256; i+=4) {
1724 1.1 reinoud printf("\t0x%02x: 0x%08x\n", i, bus_space_read_4(iot, ioh, i));
1725 1.3 kent }
1726 1.1 reinoud printf("\n");
1727 1.1 reinoud }
1728 1.1 reinoud #endif
1729 1.1 reinoud
1730 1.1 reinoud /* end of auixp.c */
1731 1.1 reinoud
1732