1 /* $NetBSD: auixp.c,v 1.32 2009/11/26 15:17:08 njoly Exp $ */
4 * Copyright (c) 2004, 2005 Reinoud Zandijk <reinoud@netbsd.org>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by the NetBSD
17 * Foundation, Inc. and its contributors.
18 * 4. Neither the name of The NetBSD Foundation nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * NetBSD audio driver for ATI IXP-{150,200,...} audio driver hardware.
39 * Recording and playback has been tested OK on various sample rates and
42 * Known problems and issues :
43 * - SPDIF is untested and needs some work still (LED stays off)
44 * - 32 bit audio playback failed last time i tried but that might an AC'97
45 * codec support problem.
46 * - 32 bit recording works but can't try out playing: see above.
47 * - no suspend/resume support yet.
48 * - multiple codecs are `supported' but not tested; the implemetation needs
52 #include <sys/cdefs.h>
53 __KERNEL_RCSID(0, "$NetBSD: auixp.c,v 1.32 2009/11/26 15:17:08 njoly Exp $");
55 #include <sys/types.h>
56 #include <sys/errno.h>
58 #include <sys/param.h>
59 #include <sys/systm.h>
60 #include <sys/malloc.h>
61 #include <sys/device.h>
64 #include <sys/select.h>
65 #include <sys/audioio.h>
66 #include <sys/queue.h>
71 #include <dev/pci/pcidevs.h>
72 #include <dev/pci/pcivar.h>
74 #include <dev/audio_if.h>
75 #include <dev/mulaw.h>
76 #include <dev/auconv.h>
77 #include <dev/ic/ac97var.h>
78 #include <dev/ic/ac97reg.h>
80 #include <dev/pci/auixpreg.h>
81 #include <dev/pci/auixpvar.h>
84 /* #define DEBUG_AUIXP */
87 /* why isn't this base address register not in the headerfile? */
92 #define KERNADDR(p) ((void *)((p)->addr))
93 #define DMAADDR(p) ((p)->map->dm_segs[0].ds_addr)
96 /* the differences might be irrelevant */
105 static const struct auixp_card_type
{
106 uint16_t pci_vendor_id
;
107 uint16_t pci_product_id
;
109 } auixp_card_types
[] = {
110 { PCI_VENDOR_ATI
, PCI_PRODUCT_ATI_IXP_AUDIO_200
, IXP_200
},
111 { PCI_VENDOR_ATI
, PCI_PRODUCT_ATI_IXP_AUDIO_300
, IXP_300
},
112 { PCI_VENDOR_ATI
, PCI_PRODUCT_ATI_IXP_AUDIO_400
, IXP_400
},
117 struct audio_device auixp_device
= {
124 /* codec detection constant indicating the interrupt flags */
125 #define ALL_CODECS_NOT_READY \
126 (ATI_REG_ISR_CODEC0_NOT_READY |\
127 ATI_REG_ISR_CODEC1_NOT_READY |\
128 ATI_REG_ISR_CODEC2_NOT_READY)
129 #define CODEC_CHECK_BITS (ALL_CODECS_NOT_READY|ATI_REG_ISR_NEW_FRAME)
133 static int auixp_match(device_t
, cfdata_t
, void *);
134 static void auixp_attach(device_t
, device_t
, void *);
135 static int auixp_detach(device_t
, int);
138 /* audio(9) function prototypes */
139 static int auixp_query_encoding(void *, struct audio_encoding
*);
140 static int auixp_set_params(void *, int, int, audio_params_t
*,
142 stream_filter_list_t
*, stream_filter_list_t
*);
143 static int auixp_commit_settings(void *);
144 static int auixp_round_blocksize(void *, int, int, const audio_params_t
*);
145 static int auixp_trigger_output(void *, void *, void *, int,
147 void *, const audio_params_t
*);
148 static int auixp_trigger_input(void *, void *, void *, int,
150 void *, const audio_params_t
*);
151 static int auixp_halt_output(void *);
152 static int auixp_halt_input(void *);
153 static int auixp_set_port(void *, mixer_ctrl_t
*);
154 static int auixp_get_port(void *, mixer_ctrl_t
*);
155 static int auixp_query_devinfo(void *, mixer_devinfo_t
*);
156 static void * auixp_malloc(void *, int, size_t, struct malloc_type
*, int);
157 static void auixp_free(void *, void *, struct malloc_type
*);
158 static int auixp_getdev(void *, struct audio_device
*);
159 static size_t auixp_round_buffersize(void *, int, size_t);
160 static int auixp_get_props(void *);
161 static int auixp_intr(void *);
162 static int auixp_allocmem(struct auixp_softc
*, size_t, size_t,
164 static int auixp_freemem(struct auixp_softc
*, struct auixp_dma
*);
165 static paddr_t
auixp_mappage(void *, void *, off_t
, int);
167 /* Supporting subroutines */
168 static int auixp_init(struct auixp_softc
*);
169 static void auixp_autodetect_codecs(struct auixp_softc
*);
170 static void auixp_post_config(device_t
);
172 static void auixp_reset_aclink(struct auixp_softc
*);
173 static int auixp_attach_codec(void *, struct ac97_codec_if
*);
174 static int auixp_read_codec(void *, uint8_t, uint16_t *);
175 static int auixp_write_codec(void *, uint8_t, uint16_t);
176 static int auixp_wait_for_codecs(struct auixp_softc
*, const char *);
177 static int auixp_reset_codec(void *);
178 static enum ac97_host_flags
auixp_flags_codec(void *);
180 static void auixp_enable_dma(struct auixp_softc
*, struct auixp_dma
*);
181 static void auixp_disable_dma(struct auixp_softc
*, struct auixp_dma
*);
182 static void auixp_enable_interrupts(struct auixp_softc
*);
183 static void auixp_disable_interrupts(struct auixp_softc
*);
187 static void auixp_link_daisychain(struct auixp_softc
*,
188 struct auixp_dma
*, struct auixp_dma
*,
190 static int auixp_allocate_dma_chain(struct auixp_softc
*,
191 struct auixp_dma
**);
192 static void auixp_program_dma_chain(struct auixp_softc
*,
194 static void auixp_dma_update(struct auixp_softc
*, struct auixp_dma
*);
195 static void auixp_update_busbusy(struct auixp_softc
*);
197 static bool auixp_resume(device_t
, pmf_qual_t
);
201 static struct auixp_softc
*static_sc
;
202 static void auixp_dumpreg(void);
203 # define DPRINTF(x) printf x;
209 static const struct audio_hw_if auixp_hw_if
= {
213 auixp_query_encoding
,
215 auixp_round_blocksize
,
216 auixp_commit_settings
,
217 NULL
, /* init_output */
218 NULL
, /* init_input */
219 NULL
, /* start_output */
220 NULL
, /* start_input */
223 NULL
, /* speaker_ctl */
231 auixp_round_buffersize
,
234 auixp_trigger_output
,
236 NULL
, /* dev_ioctl */
237 NULL
, /* powerstate */
241 CFATTACH_DECL(auixp
, sizeof(struct auixp_softc
), auixp_match
, auixp_attach
,
250 auixp_query_encoding(void *hdl
, struct audio_encoding
*ae
)
252 struct auixp_codec
*co
;
253 struct auixp_softc
*sc
;
255 co
= (struct auixp_codec
*) hdl
;
257 return auconv_query_encoding(sc
->sc_encodings
, ae
);
262 auixp_set_rate(struct auixp_codec
*co
, int mode
, u_int srate
)
268 if (mode
== AUMODE_RECORD
) {
269 ret
= co
->codec_if
->vtbl
->set_rate(co
->codec_if
,
270 AC97_REG_PCM_LR_ADC_RATE
, &ratetmp
);
275 ret
= co
->codec_if
->vtbl
->set_rate(co
->codec_if
,
276 AC97_REG_PCM_FRONT_DAC_RATE
, &ratetmp
);
281 ret
= co
->codec_if
->vtbl
->set_rate(co
->codec_if
,
282 AC97_REG_PCM_SURR_DAC_RATE
, &ratetmp
);
287 ret
= co
->codec_if
->vtbl
->set_rate(co
->codec_if
,
288 AC97_REG_PCM_LFE_DAC_RATE
, &ratetmp
);
293 /* commit setting and program ATI IXP chip */
295 auixp_commit_settings(void *hdl
)
297 struct auixp_codec
*co
;
298 struct auixp_softc
*sc
;
300 bus_space_handle_t ioh
;
301 struct audio_params
*params
;
304 /* XXX would it be better to stop interrupts first? XXX */
305 co
= (struct auixp_codec
*) hdl
;
310 /* process input settings */
311 params
= &sc
->sc_play_params
;
313 /* set input interleaving (precision) */
314 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
315 value
&= ~ATI_REG_CMD_INTERLEAVE_IN
;
316 if (params
->precision
<= 16)
317 value
|= ATI_REG_CMD_INTERLEAVE_IN
;
318 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
320 /* process output settings */
321 params
= &sc
->sc_play_params
;
323 value
= bus_space_read_4(iot
, ioh
, ATI_REG_OUT_DMA_SLOT
);
324 value
&= ~ATI_REG_OUT_DMA_SLOT_MASK
;
326 /* TODO SPDIF case for 8 channels */
327 switch (params
->channels
) {
329 value
|= ATI_REG_OUT_DMA_SLOT_BIT(7) |
330 ATI_REG_OUT_DMA_SLOT_BIT(8);
333 value
|= ATI_REG_OUT_DMA_SLOT_BIT(6) |
334 ATI_REG_OUT_DMA_SLOT_BIT(9);
337 value
|= ATI_REG_OUT_DMA_SLOT_BIT(3) |
338 ATI_REG_OUT_DMA_SLOT_BIT(4);
341 /* set output threshold */
342 value
|= 0x04 << ATI_REG_OUT_DMA_THRESHOLD_SHIFT
;
343 bus_space_write_4(iot
, ioh
, ATI_REG_OUT_DMA_SLOT
, value
);
345 /* set output interleaving (precision) */
346 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
347 value
&= ~ATI_REG_CMD_INTERLEAVE_OUT
;
348 if (params
->precision
<= 16)
349 value
|= ATI_REG_CMD_INTERLEAVE_OUT
;
350 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
352 /* enable 6 channel reordering */
353 value
= bus_space_read_4(iot
, ioh
, ATI_REG_6CH_REORDER
);
354 value
&= ~ATI_REG_6CH_REORDER_EN
;
355 if (params
->channels
== 6)
356 value
|= ATI_REG_6CH_REORDER_EN
;
357 bus_space_write_4(iot
, ioh
, ATI_REG_6CH_REORDER
, value
);
360 /* set SPDIF (if present) */
361 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
362 value
&= ~ATI_REG_CMD_SPDF_CONFIG_MASK
;
363 value
|= ATI_REG_CMD_SPDF_CONFIG_34
; /* NetBSD AC'97 default */
365 /* XXX this prolly is not nessisary unless splitted XXX */
366 value
&= ~ATI_REG_CMD_INTERLEAVE_SPDF
;
367 if (params
->precision
<= 16)
368 value
|= ATI_REG_CMD_INTERLEAVE_SPDF
;
369 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
376 /* set audio properties in desired setting */
378 auixp_set_params(void *hdl
, int setmode
, int usemode
,
379 audio_params_t
*play
, audio_params_t
*rec
, stream_filter_list_t
*pfil
,
380 stream_filter_list_t
*rfil
)
382 struct auixp_codec
*co
;
383 struct auixp_softc
*sc
;
384 audio_params_t
*params
;
385 stream_filter_list_t
*fil
;
389 * In current NetBSD AC'97 implementation, SPDF is linked to channel 3
390 * and 4 i.e. stereo output.
393 co
= (struct auixp_codec
*) hdl
;
395 for (mode
= AUMODE_RECORD
; mode
!= -1;
396 mode
= (mode
== AUMODE_RECORD
) ? AUMODE_PLAY
: -1) {
397 if ((setmode
& mode
) == 0)
400 params
= (mode
== AUMODE_PLAY
) ? play
: rec
;
401 fil
= (mode
== AUMODE_PLAY
) ? pfil
: rfil
;
405 /* AD1888 settings ... don't know the IXP limits */
406 if (params
->sample_rate
< AUIXP_MINRATE
)
408 if (params
->sample_rate
> AUIXP_MAXRATE
)
411 index
= auconv_set_converter(sc
->sc_formats
, AUIXP_NFORMATS
,
412 mode
, params
, TRUE
, fil
);
418 /* not sure yet as to why i have to change params here */
419 if (fil
->req_size
> 0)
420 params
= &fil
->filters
[0].param
;
422 /* if variable speed and we can't set the desired rate, fail */
423 if ((sc
->sc_formats
[index
].frequency_type
!= 1) &&
424 auixp_set_rate(co
, mode
, params
->sample_rate
))
427 /* preserve the settings */
428 if (mode
== AUMODE_PLAY
)
429 sc
->sc_play_params
= *params
;
430 if (mode
== AUMODE_RECORD
)
431 sc
->sc_rec_params
= *params
;
438 /* called to translate a requested blocksize to a hw-possible one */
440 auixp_round_blocksize(void *hdl
, int bs
, int mode
,
441 const audio_params_t
*param
)
446 /* Be conservative; align to 32 bytes and maximise it to 64 kb */
447 /* 256 kb possible */
448 if (new_bs
> 0x10000)
449 bs
= 0x10000; /* 64 kb max */
450 new_bs
= (bs
& ~0x20); /* 32 bytes align */
457 * allocate dma capable memory and record its information for later retrieval
458 * when we program the dma chain itself. The trigger routines passes on the
459 * kernel virtual address we return here as a reference to the mapping.
462 auixp_malloc(void *hdl
, int direction
, size_t size
,
463 struct malloc_type
*type
, int flags
)
465 struct auixp_codec
*co
;
466 struct auixp_softc
*sc
;
467 struct auixp_dma
*dma
;
470 co
= (struct auixp_codec
*) hdl
;
472 /* get us a auixp_dma structure */
473 dma
= malloc(sizeof(*dma
), type
, flags
);
477 /* get us a dma buffer itself */
478 error
= auixp_allocmem(sc
, size
, 16, dma
);
481 aprint_error_dev(&sc
->sc_dev
, "auixp_malloc: not enough memory\n");
485 SLIST_INSERT_HEAD(&sc
->sc_dma_list
, dma
, dma_chain
);
487 DPRINTF(("auixp_malloc: returning kern %p, hw 0x%08x for %d bytes "
488 "in %d segs\n", KERNADDR(dma
), (uint32_t) DMAADDR(dma
), dma
->size
,
492 return KERNADDR(dma
);
497 * free and release dma capable memory we allocated before and remove its
501 auixp_free(void *hdl
, void *addr
, struct malloc_type
*type
)
503 struct auixp_codec
*co
;
504 struct auixp_softc
*sc
;
505 struct auixp_dma
*dma
;
507 co
= (struct auixp_codec
*) hdl
;
509 SLIST_FOREACH(dma
, &sc
->sc_dma_list
, dma_chain
) {
510 if (KERNADDR(dma
) == addr
) {
511 SLIST_REMOVE(&sc
->sc_dma_list
, dma
, auixp_dma
,
513 auixp_freemem(sc
, dma
);
522 auixp_getdev(void *hdl
, struct audio_device
*ret
)
530 /* pass request to AC'97 codec code */
532 auixp_set_port(void *hdl
, mixer_ctrl_t
*mc
)
534 struct auixp_codec
*co
;
536 co
= (struct auixp_codec
*) hdl
;
537 return co
->codec_if
->vtbl
->mixer_set_port(co
->codec_if
, mc
);
541 /* pass request to AC'97 codec code */
543 auixp_get_port(void *hdl
, mixer_ctrl_t
*mc
)
545 struct auixp_codec
*co
;
547 co
= (struct auixp_codec
*) hdl
;
548 return co
->codec_if
->vtbl
->mixer_get_port(co
->codec_if
, mc
);
551 /* pass request to AC'97 codec code */
553 auixp_query_devinfo(void *hdl
, mixer_devinfo_t
*di
)
555 struct auixp_codec
*co
;
557 co
= (struct auixp_codec
*) hdl
;
558 return co
->codec_if
->vtbl
->query_devinfo(co
->codec_if
, di
);
563 auixp_round_buffersize(void *hdl
, int direction
,
567 /* XXX force maximum? i.e. 256 kb? */
573 auixp_get_props(void *hdl
)
576 return AUDIO_PROP_MMAP
| AUDIO_PROP_INDEPENDENT
| AUDIO_PROP_FULLDUPLEX
;
581 * A dma descriptor has dma->nsegs segments defined in dma->segs set up when
582 * we claimed the memory.
584 * Due to our demand for one contiguous DMA area, we only have one segment. A
585 * c_dma structure is about 3 kb for the 256 entries we maximally program
586 * -arbitrary limit AFAIK- so all is most likely to be in one segment/page
589 * XXX ought to implement fragmented dma area XXX
591 * Note that _v variables depict kernel virtual addresses, _p variables depict
592 * physical addresses.
595 auixp_link_daisychain(struct auixp_softc
*sc
,
596 struct auixp_dma
*c_dma
, struct auixp_dma
*s_dma
,
597 int blksize
, int blocks
)
599 atiixp_dma_desc_t
*caddr_v
, *next_caddr_v
;
600 uint32_t caddr_p
, next_caddr_p
, saddr_p
;
603 /* just make sure we are not changing when its running */
604 auixp_disable_dma(sc
, c_dma
);
606 /* setup dma chain start addresses */
607 caddr_v
= KERNADDR(c_dma
);
608 caddr_p
= DMAADDR(c_dma
);
609 saddr_p
= DMAADDR(s_dma
);
611 /* program the requested number of blocks */
612 for (i
= 0; i
< blocks
; i
++) {
613 /* clear the block just in case */
614 memset(caddr_v
, 0, sizeof(atiixp_dma_desc_t
));
616 /* round robin the chain dma addresses for its successor */
617 next_caddr_v
= caddr_v
+ 1;
618 next_caddr_p
= caddr_p
+ sizeof(atiixp_dma_desc_t
);
621 next_caddr_v
= KERNADDR(c_dma
);
622 next_caddr_p
= DMAADDR(c_dma
);
625 /* fill in the hardware dma chain descriptor in little-endian */
626 caddr_v
->addr
= htole32(saddr_p
);
627 caddr_v
->status
= htole16(0);
628 caddr_v
->size
= htole16((blksize
>> 2)); /* in dwords (!!!) */
629 caddr_v
->next
= htole32(next_caddr_p
);
632 saddr_p
+= blksize
; /* XXX assuming contiguous XXX */
633 caddr_v
= next_caddr_v
;
634 caddr_p
= next_caddr_p
;
640 auixp_allocate_dma_chain(struct auixp_softc
*sc
, struct auixp_dma
**dmap
)
642 struct auixp_dma
*dma
;
645 /* allocate keeper of dma area */
647 dma
= malloc(sizeof(struct auixp_dma
), M_DEVBUF
, M_NOWAIT
| M_ZERO
);
651 /* allocate for daisychain of IXP hardware-dma descriptors */
652 error
= auixp_allocmem(sc
, DMA_DESC_CHAIN
* sizeof(atiixp_dma_desc_t
),
655 aprint_error_dev(&sc
->sc_dev
, "can't malloc dma descriptor chain\n");
660 /* return info and initialise structure */
669 /* program dma chain in it's link address descriptor */
671 auixp_program_dma_chain(struct auixp_softc
*sc
, struct auixp_dma
*dma
)
674 bus_space_handle_t ioh
;
679 /* get hardware start address of DMA chain and set valid-flag in it */
680 /* XXX always at start? XXX */
681 value
= DMAADDR(dma
);
682 value
= value
| ATI_REG_LINKPTR_EN
;
684 /* reset linkpointer */
685 bus_space_write_4(iot
, ioh
, dma
->linkptr
, 0);
687 /* reset this DMA engine */
688 auixp_disable_dma(sc
, dma
);
689 auixp_enable_dma(sc
, dma
);
691 /* program new DMA linkpointer */
692 bus_space_write_4(iot
, ioh
, dma
->linkptr
, value
);
696 /* called from interrupt code to signal end of one dma-slot */
698 auixp_dma_update(struct auixp_softc
*sc
, struct auixp_dma
*dma
)
701 /* be very paranoid */
703 panic("%s: update: dma = NULL", device_xname(&sc
->sc_dev
));
705 panic("%s: update: dma->intr = NULL", device_xname(&sc
->sc_dev
));
707 /* request more input from upper layer */
708 (*dma
->intr
)(dma
->intrarg
);
713 * The magic `busbusy' bit that needs to be set when dma is active; allowing
717 auixp_update_busbusy(struct auixp_softc
*sc
)
720 bus_space_handle_t ioh
;
726 /* set bus-busy flag when either recording or playing is performed */
727 value
= bus_space_read_4(iot
, ioh
, ATI_REG_IER
);
728 value
&= ~ATI_REG_IER_SET_BUS_BUSY
;
730 running
= ((sc
->sc_output_dma
->running
) || (sc
->sc_input_dma
->running
));
732 value
|= ATI_REG_IER_SET_BUS_BUSY
;
734 bus_space_write_4(iot
, ioh
, ATI_REG_IER
, value
);
740 * Called from upper audio layer to request playing audio, only called once;
741 * audio is refilled by calling the intr() function when space is available
744 /* XXX allmost literaly a copy of trigger-input; could be factorised XXX */
746 auixp_trigger_output(void *hdl
, void *start
, void *end
, int blksize
,
747 void (*intr
)(void *), void *intrarg
, const audio_params_t
*param
)
749 struct auixp_codec
*co
;
750 struct auixp_softc
*sc
;
751 struct auixp_dma
*chain_dma
;
752 struct auixp_dma
*sound_dma
;
755 co
= (struct auixp_codec
*) hdl
;
757 chain_dma
= sc
->sc_output_dma
;
758 /* add functions to call back */
759 chain_dma
->intr
= intr
;
760 chain_dma
->intrarg
= intrarg
;
763 * Program output DMA chain with blocks from [start...end] with
766 * NOTE, we can assume its in one block since we asked for it to be in
767 * one contiguous blob; XXX change this? XXX
769 blocks
= (size_t) (((char *) end
) - ((char *) start
)) / blksize
;
771 /* lookup `start' address in our list of DMA area's */
772 SLIST_FOREACH(sound_dma
, &sc
->sc_dma_list
, dma_chain
) {
773 if (KERNADDR(sound_dma
) == start
)
777 /* not ours ? then bail out */
779 printf("%s: auixp_trigger_output: bad sound addr %p\n",
780 device_xname(&sc
->sc_dev
), start
);
784 /* link round-robin daisychain and program hardware */
785 auixp_link_daisychain(sc
, chain_dma
, sound_dma
, blksize
, blocks
);
786 auixp_program_dma_chain(sc
, chain_dma
);
788 /* mark we are now able to run now */
789 chain_dma
->running
= 1;
791 /* update bus-flags; XXX programs more flags XXX */
792 auixp_update_busbusy(sc
);
794 /* callbacks happen in interrupt routine */
799 /* halt output of audio, just disable it's dma and update bus state */
801 auixp_halt_output(void *hdl
)
803 struct auixp_codec
*co
;
804 struct auixp_softc
*sc
;
805 struct auixp_dma
*dma
;
807 co
= (struct auixp_codec
*) hdl
;
809 dma
= sc
->sc_output_dma
;
810 auixp_disable_dma(sc
, dma
);
813 auixp_update_busbusy(sc
);
819 /* XXX allmost literaly a copy of trigger-output; could be factorised XXX */
821 auixp_trigger_input(void *hdl
, void *start
, void *end
, int blksize
,
822 void (*intr
)(void *), void *intrarg
, const audio_params_t
*param
)
824 struct auixp_codec
*co
;
825 struct auixp_softc
*sc
;
826 struct auixp_dma
*chain_dma
;
827 struct auixp_dma
*sound_dma
;
830 co
= (struct auixp_codec
*) hdl
;
832 chain_dma
= sc
->sc_input_dma
;
833 /* add functions to call back */
834 chain_dma
->intr
= intr
;
835 chain_dma
->intrarg
= intrarg
;
838 * Program output DMA chain with blocks from [start...end] with
841 * NOTE, we can assume its in one block since we asked for it to be in
842 * one contiguous blob; XXX change this? XXX
844 blocks
= (size_t) (((char *) end
) - ((char *) start
)) / blksize
;
846 /* lookup `start' address in our list of DMA area's */
847 SLIST_FOREACH(sound_dma
, &sc
->sc_dma_list
, dma_chain
) {
848 if (KERNADDR(sound_dma
) == start
)
852 /* not ours ? then bail out */
854 printf("%s: auixp_trigger_input: bad sound addr %p\n",
855 device_xname(&sc
->sc_dev
), start
);
859 /* link round-robin daisychain and program hardware */
860 auixp_link_daisychain(sc
, chain_dma
, sound_dma
, blksize
, blocks
);
861 auixp_program_dma_chain(sc
, chain_dma
);
863 /* mark we are now able to run now */
864 chain_dma
->running
= 1;
866 /* update bus-flags; XXX programs more flags XXX */
867 auixp_update_busbusy(sc
);
869 /* callbacks happen in interrupt routine */
874 /* halt sampling audio, just disable it's dma and update bus state */
876 auixp_halt_input(void *hdl
)
878 struct auixp_codec
*co
;
879 struct auixp_softc
*sc
;
880 struct auixp_dma
*dma
;
882 co
= (struct auixp_codec
*) hdl
;
884 dma
= sc
->sc_input_dma
;
885 auixp_disable_dma(sc
, dma
);
888 auixp_update_busbusy(sc
);
895 * IXP audio interrupt handler
897 * note that we return the number of bits handled; the return value is not
898 * documentated but i saw it implemented in other drivers. Prolly returning a
899 * value > 0 means "i've dealt with it"
903 auixp_intr(void *softc
)
905 struct auixp_softc
*sc
;
907 bus_space_handle_t ioh
;
908 uint32_t status
, enable
, detected_codecs
;
915 /* get status from the interrupt status register */
916 status
= bus_space_read_4(iot
, ioh
, ATI_REG_ISR
);
921 DPRINTF(("%s: (status = %x)\n", device_xname(&sc
->sc_dev
), status
));
923 /* check DMA UPDATE flags for input & output */
924 if (status
& ATI_REG_ISR_IN_STATUS
) {
925 ret
++; DPRINTF(("IN_STATUS\n"));
926 auixp_dma_update(sc
, sc
->sc_input_dma
);
928 if (status
& ATI_REG_ISR_OUT_STATUS
) {
929 ret
++; DPRINTF(("OUT_STATUS\n"));
930 auixp_dma_update(sc
, sc
->sc_output_dma
);
933 /* XXX XRUN flags not used/needed yet; should i implement it? XXX */
934 /* acknowledge the interrupts nevertheless */
935 if (status
& ATI_REG_ISR_IN_XRUN
) {
936 ret
++; DPRINTF(("IN_XRUN\n"));
937 /* auixp_dma_xrun(sc, sc->sc_input_dma); */
939 if (status
& ATI_REG_ISR_OUT_XRUN
) {
940 ret
++; DPRINTF(("OUT_XRUN\n"));
941 /* auixp_dma_xrun(sc, sc->sc_output_dma); */
944 /* check if we are looking for codec detection */
945 if (status
& CODEC_CHECK_BITS
) {
947 /* mark missing codecs as not ready */
948 detected_codecs
= status
& CODEC_CHECK_BITS
;
949 sc
->sc_codec_not_ready_bits
|= detected_codecs
;
951 /* disable detected interrupt sources */
952 enable
= bus_space_read_4(iot
, ioh
, ATI_REG_IER
);
953 enable
&= ~detected_codecs
;
954 bus_space_write_4(iot
, ioh
, ATI_REG_IER
, enable
);
957 /* acknowledge interrupt sources */
958 bus_space_write_4(iot
, ioh
, ATI_REG_ISR
, status
);
964 /* allocate memory for dma purposes; on failure of any of the steps, roll back */
966 auixp_allocmem(struct auixp_softc
*sc
, size_t size
,
967 size_t align
, struct auixp_dma
*dma
)
974 /* allocate DMA safe memory but in just one segment for now :( */
975 error
= bus_dmamem_alloc(sc
->sc_dmat
, dma
->size
, align
, 0,
976 dma
->segs
, sizeof(dma
->segs
) / sizeof(dma
->segs
[0]), &dma
->nsegs
,
982 * map allocated memory into kernel virtual address space and keep it
983 * coherent with the CPU.
985 error
= bus_dmamem_map(sc
->sc_dmat
, dma
->segs
, dma
->nsegs
, dma
->size
,
986 &dma
->addr
, BUS_DMA_NOWAIT
| BUS_DMA_COHERENT
);
990 /* allocate associated dma handle and initialize it. */
991 error
= bus_dmamap_create(sc
->sc_dmat
, dma
->size
, 1, dma
->size
, 0,
992 BUS_DMA_NOWAIT
, &dma
->map
);
997 * load the dma handle with mappings for a dma transfer; all pages
1000 error
= bus_dmamap_load(sc
->sc_dmat
, dma
->map
, dma
->addr
, dma
->size
, NULL
,
1008 bus_dmamap_destroy(sc
->sc_dmat
, dma
->map
);
1010 bus_dmamem_unmap(sc
->sc_dmat
, dma
->addr
, dma
->size
);
1012 bus_dmamem_free(sc
->sc_dmat
, dma
->segs
, dma
->nsegs
);
1018 /* undo dma mapping and release memory allocated */
1020 auixp_freemem(struct auixp_softc
*sc
, struct auixp_dma
*p
)
1023 bus_dmamap_unload(sc
->sc_dmat
, p
->map
);
1024 bus_dmamap_destroy(sc
->sc_dmat
, p
->map
);
1025 bus_dmamem_unmap(sc
->sc_dmat
, p
->addr
, p
->size
);
1026 bus_dmamem_free(sc
->sc_dmat
, p
->segs
, p
->nsegs
);
1032 /* memory map dma memory */
1034 auixp_mappage(void *hdl
, void *mem
, off_t off
, int prot
)
1036 struct auixp_codec
*co
;
1037 struct auixp_softc
*sc
;
1038 struct auixp_dma
*p
;
1040 co
= (struct auixp_codec
*) hdl
;
1046 /* look up allocated DMA area */
1047 SLIST_FOREACH(p
, &sc
->sc_dma_list
, dma_chain
) {
1048 if (KERNADDR(p
) == mem
)
1052 /* have we found it ? */
1056 /* return mmap'd region */
1057 return bus_dmamem_mmap(sc
->sc_dmat
, p
->segs
, p
->nsegs
,
1058 off
, prot
, BUS_DMA_WAITOK
);
1063 * Attachment section
1066 /* Is it my hardware? */
1068 auixp_match(device_t dev
, cfdata_t match
, void *aux
)
1070 struct pci_attach_args
*pa
;
1072 pa
= (struct pci_attach_args
*)aux
;
1073 switch(PCI_VENDOR(pa
->pa_id
)) {
1074 case PCI_VENDOR_ATI
:
1075 switch(PCI_PRODUCT(pa
->pa_id
)) {
1076 case PCI_PRODUCT_ATI_IXP_AUDIO_200
:
1077 case PCI_PRODUCT_ATI_IXP_AUDIO_300
:
1078 case PCI_PRODUCT_ATI_IXP_AUDIO_400
:
1087 /* it is... now hook up and set up the resources we need */
1089 auixp_attach(device_t parent
, device_t self
, void *aux
)
1091 struct auixp_softc
*sc
;
1092 struct pci_attach_args
*pa
;
1094 pci_chipset_tag_t pc
;
1095 pci_intr_handle_t ih
;
1096 const struct auixp_card_type
*card
;
1097 const char *intrstr
;
1100 int revision
, error
;
1102 sc
= device_private(self
);
1103 pa
= (struct pci_attach_args
*)aux
;
1110 /* print information confirming attachment */
1111 aprint_naive(": Audio controller\n");
1113 pci_devinfo(pa
->pa_id
, pa
->pa_class
, 0, devinfo
, sizeof(devinfo
));
1114 revision
= PCI_REVISION(pa
->pa_class
);
1115 aprint_normal(": %s (rev. 0x%02x)\n", devinfo
, revision
);
1117 /* set up details from our set of known `cards'/chips */
1118 for (card
= auixp_card_types
; card
->pci_vendor_id
; card
++)
1119 if (PCI_VENDOR(pa
->pa_id
) == card
->pci_vendor_id
&&
1120 PCI_PRODUCT(pa
->pa_id
) == card
->pci_product_id
) {
1121 sc
->type
= card
->type
;
1125 /* device only has 32 bit non prefetchable memory */
1126 /* set MEM space access and enable the card's busmastering */
1127 data
= pci_conf_read(pc
, tag
, PCI_COMMAND_STATUS_REG
);
1128 data
|= (PCI_COMMAND_MEM_ENABLE
| PCI_COMMAND_MASTER_ENABLE
);
1129 pci_conf_write(pc
, tag
, PCI_COMMAND_STATUS_REG
, data
);
1131 /* map memory; its not sized -> what is the size? max PCI slot size? */
1132 if (pci_mapreg_map(pa
, PCI_CBIO
, PCI_MAPREG_TYPE_MEM
, 0,
1133 &sc
->sc_iot
, &sc
->sc_ioh
, &sc
->sc_iob
, &sc
->sc_ios
)) {
1134 aprint_error_dev(&sc
->sc_dev
, "can't map memory space\n");
1138 /* Initialize softc */
1141 sc
->sc_dmat
= pa
->pa_dmat
;
1142 SLIST_INIT(&sc
->sc_dma_list
);
1144 /* get us the auixp_dma structures */
1145 auixp_allocate_dma_chain(sc
, &sc
->sc_output_dma
);
1146 auixp_allocate_dma_chain(sc
, &sc
->sc_input_dma
);
1148 /* when that fails we are dead in the water */
1149 if (!sc
->sc_output_dma
|| !sc
->sc_input_dma
)
1153 /* could preliminary program DMA chain */
1154 auixp_program_dma_chain(sc
, sc
->sc_output_dma
);
1155 auixp_program_dma_chain(sc
, sc
->sc_input_dma
);
1158 /* map interrupt on the pci bus */
1159 if (pci_intr_map(pa
, &ih
)) {
1160 aprint_error_dev(&sc
->sc_dev
, "can't map interrupt\n");
1164 /* where are we connected at ? */
1165 intrstr
= pci_intr_string(pc
, ih
);
1167 /* establish interrupt routine hookup at IPL_AUDIO level */
1168 sc
->sc_ih
= pci_intr_establish(pc
, ih
, IPL_AUDIO
, auixp_intr
, self
);
1169 if (sc
->sc_ih
== NULL
) {
1170 aprint_error_dev(&sc
->sc_dev
, "can't establish interrupt");
1171 if (intrstr
!= NULL
)
1172 aprint_error(" at %s", intrstr
);
1176 aprint_normal_dev(&sc
->sc_dev
, "interrupting at %s\n", intrstr
);
1179 if ((error
= pci_activate(pa
->pa_pc
, pa
->pa_tag
, self
,
1180 pci_activate_null
)) && error
!= EOPNOTSUPP
) {
1181 aprint_error_dev(&sc
->sc_dev
, "cannot activate %d\n",
1187 if (auixp_init(sc
) == -1) {
1188 aprint_error_dev(&sc
->sc_dev
, "auixp_attach: unable to initialize the card\n");
1192 if (!pmf_device_register(self
, NULL
, auixp_resume
))
1193 aprint_error_dev(self
, "couldn't establish power handler\n");
1196 * delay further configuration of codecs and audio after interrupts
1199 config_interrupts(self
, auixp_post_config
);
1203 /* called from autoconfigure system when interrupts are enabled */
1205 auixp_post_config(device_t self
)
1207 struct auixp_softc
*sc
;
1208 struct auixp_codec
*codec
;
1212 sc
= device_private(self
);
1213 /* detect the AC97 codecs */
1214 auixp_autodetect_codecs(sc
);
1216 /* setup audio translation formats : following codec0 (!) */
1217 codec
= &sc
->sc_codec
[0];
1218 if (!codec
->present
) {
1219 /* nothing??? then invalidate all formats */
1220 for (i
= 0; i
< AUIXP_NFORMATS
; i
++) {
1221 AUFMT_INVALIDATE(&sc
->sc_formats
[i
]);
1226 /* copy formats and invalidate entries not suitable for codec0 */
1227 memcpy(sc
->sc_formats
, auixp_formats
, sizeof(auixp_formats
));
1228 sc
->has_4ch
= AC97_IS_4CH(codec
->codec_if
);
1229 sc
->has_6ch
= AC97_IS_6CH(codec
->codec_if
);
1230 sc
->is_fixed
= AC97_IS_FIXED_RATE(codec
->codec_if
);
1231 sc
->has_spdif
= AC97_HAS_SPDIF(codec
->codec_if
);
1233 for (i
= 0; i
< AUIXP_NFORMATS
; i
++) {
1235 sc
->sc_formats
[i
].frequency_type
= 1;
1236 sc
->sc_formats
[i
].frequency
[0] = 48000;
1238 switch (sc
->sc_formats
[i
].channels
) {
1242 AUFMT_INVALIDATE(&sc
->sc_formats
[i
]);
1247 AUFMT_INVALIDATE(&sc
->sc_formats
[i
]);
1255 * Create all encodings (and/or -translations) based on the formats
1257 res
= auconv_create_encodings(sc
->sc_formats
, AUIXP_NFORMATS
,
1260 printf("%s: auconv_create_encodings failed; "
1261 "no attachments\n", device_xname(&sc
->sc_dev
));
1265 /* attach audio devices for all detected codecs */
1266 /* XXX wise? look at other multiple-codec able chipsets XXX */
1267 for (codec_nr
= 0; codec_nr
< ATI_IXP_CODECS
; codec_nr
++) {
1268 codec
= &sc
->sc_codec
[codec_nr
];
1270 audio_attach_mi(&auixp_hw_if
, codec
, &sc
->sc_dev
);
1273 if (sc
->has_spdif
) {
1274 aprint_normal_dev(&sc
->sc_dev
, "codec spdif support detected but disabled "
1279 /* fill in the missing details about the dma channels. */
1281 sc
->sc_output_dma
->linkptr
= ATI_REG_OUT_DMA_LINKPTR
;
1282 sc
->sc_output_dma
->dma_enable_bit
= ATI_REG_CMD_OUT_DMA_EN
|
1283 ATI_REG_CMD_SEND_EN
;
1284 /* have spdif? then this too! XXX not seeing LED yet! XXX */
1286 sc
->sc_output_dma
->dma_enable_bit
|= ATI_REG_CMD_SPDF_OUT_EN
;
1289 sc
->sc_input_dma
->linkptr
= ATI_REG_IN_DMA_LINKPTR
;
1290 sc
->sc_input_dma
->dma_enable_bit
= ATI_REG_CMD_IN_DMA_EN
|
1291 ATI_REG_CMD_RECEIVE_EN
;
1293 /* done! now enable all interrupts we can service */
1294 auixp_enable_interrupts(sc
);
1299 auixp_enable_interrupts(struct auixp_softc
*sc
)
1301 bus_space_tag_t iot
;
1302 bus_space_handle_t ioh
;
1307 /* clear all pending */
1308 bus_space_write_4(iot
, ioh
, ATI_REG_ISR
, 0xffffffff);
1310 /* enable all relevant interrupt sources we can handle */
1311 value
= bus_space_read_4(iot
, ioh
, ATI_REG_IER
);
1313 value
|= ATI_REG_IER_IO_STATUS_EN
;
1315 value
|= ATI_REG_IER_IN_XRUN_EN
;
1316 value
|= ATI_REG_IER_OUT_XRUN_EN
;
1318 value
|= ATI_REG_IER_SPDIF_XRUN_EN
;
1319 value
|= ATI_REG_IER_SPDF_STATUS_EN
;
1322 bus_space_write_4(iot
, ioh
, ATI_REG_IER
, value
);
1327 auixp_disable_interrupts(struct auixp_softc
*sc
)
1329 bus_space_tag_t iot
;
1330 bus_space_handle_t ioh
;
1334 /* disable all interrupt sources */
1335 bus_space_write_4(iot
, ioh
, ATI_REG_IER
, 0);
1337 /* clear all pending */
1338 bus_space_write_4(iot
, ioh
, ATI_REG_ISR
, 0xffffffff);
1342 /* dismantle what we've set up by undoing setup */
1344 auixp_detach(device_t self
, int flags
)
1346 struct auixp_softc
*sc
;
1348 sc
= device_private(self
);
1349 /* XXX shouldn't we just reset the chip? XXX */
1351 * should we explicitly disable interrupt generation and acknowledge
1352 * what's left on? better be safe than sorry.
1354 auixp_disable_interrupts(sc
);
1356 /* tear down .... */
1357 config_detach(&sc
->sc_dev
, flags
); /* XXX OK? XXX */
1359 if (sc
->sc_ih
!= NULL
)
1360 pci_intr_disestablish(sc
->sc_pct
, sc
->sc_ih
);
1362 bus_space_unmap(sc
->sc_iot
, sc
->sc_ioh
, sc
->sc_ios
);
1364 pmf_device_deregister(self
);
1373 * IXP audio support can have upto 3 codecs! are they chained ? or
1374 * alternative outlets with the same audio feed i.e. with different mixer
1375 * settings? XXX does NetBSD support more than one audio codec? XXX
1380 auixp_attach_codec(void *aux
, struct ac97_codec_if
*codec_if
)
1382 struct auixp_codec
*ixp_codec
;
1385 ixp_codec
->codec_if
= codec_if
;
1386 ixp_codec
->present
= 1;
1393 auixp_read_codec(void *aux
, uint8_t reg
, uint16_t *result
)
1395 struct auixp_codec
*co
;
1396 struct auixp_softc
*sc
;
1397 bus_space_tag_t iot
;
1398 bus_space_handle_t ioh
;
1406 if (auixp_wait_for_codecs(sc
, "read_codec"))
1409 /* build up command for reading codec register */
1410 data
= (reg
<< ATI_REG_PHYS_OUT_ADDR_SHIFT
) |
1411 ATI_REG_PHYS_OUT_ADDR_EN
|
1412 ATI_REG_PHYS_OUT_RW
|
1415 bus_space_write_4(iot
, ioh
, ATI_REG_PHYS_OUT_ADDR
, data
);
1417 if (auixp_wait_for_codecs(sc
, "read_codec"))
1420 /* wait until codec info is clocked in */
1421 timeout
= 500; /* 500*2 usec -> 0.001 sec */
1423 data
= bus_space_read_4(iot
, ioh
, ATI_REG_PHYS_IN_ADDR
);
1424 if (data
& ATI_REG_PHYS_IN_READ_FLAG
) {
1425 DPRINTF(("read ac'97 codec reg 0x%x = 0x%08x\n",
1426 reg
, data
>> ATI_REG_PHYS_IN_DATA_SHIFT
)
1428 *result
= data
>> ATI_REG_PHYS_IN_DATA_SHIFT
;
1433 } while (timeout
> 0);
1436 printf("%s: codec read timeout! (reg %x)\n",
1437 device_xname(&sc
->sc_dev
), reg
);
1444 auixp_write_codec(void *aux
, uint8_t reg
, uint16_t data
)
1446 struct auixp_codec
*co
;
1447 struct auixp_softc
*sc
;
1448 bus_space_tag_t iot
;
1449 bus_space_handle_t ioh
;
1452 DPRINTF(("write ac'97 codec reg 0x%x = 0x%08x\n", reg
, data
));
1457 if (auixp_wait_for_codecs(sc
, "write_codec"))
1460 /* build up command for writing codec register */
1461 value
= (((uint32_t) data
) << ATI_REG_PHYS_OUT_DATA_SHIFT
) |
1462 (((uint32_t) reg
) << ATI_REG_PHYS_OUT_ADDR_SHIFT
) |
1463 ATI_REG_PHYS_OUT_ADDR_EN
|
1466 bus_space_write_4(iot
, ioh
, ATI_REG_PHYS_OUT_ADDR
, value
);
1473 auixp_reset_codec(void *aux
)
1476 /* nothing to be done? */
1481 static enum ac97_host_flags
1482 auixp_flags_codec(void *aux
)
1484 struct auixp_codec
*ixp_codec
;
1487 return ixp_codec
->codec_flags
;
1492 auixp_wait_for_codecs(struct auixp_softc
*sc
, const char *func
)
1494 bus_space_tag_t iot
;
1495 bus_space_handle_t ioh
;
1501 /* wait until all codec transfers are done */
1502 timeout
= 500; /* 500*2 usec -> 0.001 sec */
1504 value
= bus_space_read_4(iot
, ioh
, ATI_REG_PHYS_OUT_ADDR
);
1505 if ((value
& ATI_REG_PHYS_OUT_ADDR_EN
) == 0)
1510 } while (timeout
> 0);
1512 printf("%s: %s: timed out\n", func
, device_xname(&sc
->sc_dev
));
1519 auixp_autodetect_codecs(struct auixp_softc
*sc
)
1521 bus_space_tag_t iot
;
1522 bus_space_handle_t ioh
;
1523 struct auixp_codec
*codec
;
1524 int timeout
, codec_nr
;
1528 /* ATI IXP can have upto 3 codecs; mark all codecs as not existing */
1529 sc
->sc_codec_not_ready_bits
= 0;
1530 sc
->sc_num_codecs
= 0;
1532 /* enable all codecs to interrupt as well as the new frame interrupt */
1533 bus_space_write_4(iot
, ioh
, ATI_REG_IER
, CODEC_CHECK_BITS
);
1535 /* wait for the interrupts to happen */
1536 timeout
= 100; /* 100.000 usec -> 0.1 sec */
1538 while (timeout
> 0) {
1540 if (sc
->sc_codec_not_ready_bits
)
1546 printf("%s: WARNING: timeout during codec detection; "
1547 "codecs might be present but haven't interrupted\n",
1548 device_xname(&sc
->sc_dev
));
1550 /* disable all interrupts for now */
1551 auixp_disable_interrupts(sc
);
1553 /* Attach AC97 host interfaces */
1554 for (codec_nr
= 0; codec_nr
< ATI_IXP_CODECS
; codec_nr
++) {
1555 codec
= &sc
->sc_codec
[codec_nr
];
1556 memset(codec
, 0, sizeof(struct auixp_codec
));
1559 codec
->codec_nr
= codec_nr
;
1562 codec
->host_if
.arg
= codec
;
1563 codec
->host_if
.attach
= auixp_attach_codec
;
1564 codec
->host_if
.read
= auixp_read_codec
;
1565 codec
->host_if
.write
= auixp_write_codec
;
1566 codec
->host_if
.reset
= auixp_reset_codec
;
1567 codec
->host_if
.flags
= auixp_flags_codec
;
1570 if (!(sc
->sc_codec_not_ready_bits
& ATI_REG_ISR_CODEC0_NOT_READY
)) {
1571 /* codec 0 present */
1572 DPRINTF(("auixp : YAY! codec 0 present!\n"));
1573 if (ac97_attach(&sc
->sc_codec
[0].host_if
, &sc
->sc_dev
) == 0)
1574 sc
->sc_num_codecs
++;
1577 if (!(sc
->sc_codec_not_ready_bits
& ATI_REG_ISR_CODEC1_NOT_READY
)) {
1578 /* codec 1 present */
1579 DPRINTF(("auixp : YAY! codec 1 present!\n"));
1580 if (ac97_attach(&sc
->sc_codec
[1].host_if
, &sc
->sc_dev
) == 0)
1581 sc
->sc_num_codecs
++;
1584 if (!(sc
->sc_codec_not_ready_bits
& ATI_REG_ISR_CODEC2_NOT_READY
)) {
1585 /* codec 2 present */
1586 DPRINTF(("auixp : YAY! codec 2 present!\n"));
1587 if (ac97_attach(&sc
->sc_codec
[2].host_if
, &sc
->sc_dev
) == 0)
1588 sc
->sc_num_codecs
++;
1591 if (sc
->sc_num_codecs
== 0) {
1592 printf("%s: no codecs detected or "
1593 "no codecs managed to initialise\n",
1594 device_xname(&sc
->sc_dev
));
1602 /* initialisation routines */
1605 auixp_disable_dma(struct auixp_softc
*sc
, struct auixp_dma
*dma
)
1607 bus_space_tag_t iot
;
1608 bus_space_handle_t ioh
;
1613 /* lets not stress the DMA engine more than nessisary */
1614 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1615 if (value
& dma
->dma_enable_bit
) {
1616 value
&= ~dma
->dma_enable_bit
;
1617 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1623 auixp_enable_dma(struct auixp_softc
*sc
, struct auixp_dma
*dma
)
1625 bus_space_tag_t iot
;
1626 bus_space_handle_t ioh
;
1631 /* lets not stress the DMA engine more than nessisary */
1632 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1633 if (!(value
& dma
->dma_enable_bit
)) {
1634 value
|= dma
->dma_enable_bit
;
1635 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1641 auixp_reset_aclink(struct auixp_softc
*sc
)
1643 bus_space_tag_t iot
;
1644 bus_space_handle_t ioh
;
1645 uint32_t value
, timeout
;
1650 /* if power is down, power it up */
1651 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1652 if (value
& ATI_REG_CMD_POWERDOWN
) {
1653 printf("%s: powering up\n", device_xname(&sc
->sc_dev
));
1655 /* explicitly enable power */
1656 value
&= ~ATI_REG_CMD_POWERDOWN
;
1657 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1659 /* have to wait at least 10 usec for it to initialise */
1663 printf("%s: soft resetting aclink\n", device_xname(&sc
->sc_dev
));
1665 /* perform a soft reset */
1666 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1667 value
|= ATI_REG_CMD_AC_SOFT_RESET
;
1668 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1670 /* need to read the CMD reg and wait aprox. 10 usec to init */
1671 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1674 /* clear soft reset flag again */
1675 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1676 value
&= ~ATI_REG_CMD_AC_SOFT_RESET
;
1677 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1679 /* check if the ac-link is working; reset device otherwise */
1681 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1682 while (!(value
& ATI_REG_CMD_ACLINK_ACTIVE
)) {
1683 printf("%s: not up; resetting aclink hardware\n",
1684 device_xname(&sc
->sc_dev
));
1686 /* dip aclink reset but keep the acsync */
1687 value
&= ~ATI_REG_CMD_AC_RESET
;
1688 value
|= ATI_REG_CMD_AC_SYNC
;
1689 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1691 /* need to read CMD again and wait again (clocking in issue?) */
1692 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1695 /* assert aclink reset again */
1696 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1697 value
|= ATI_REG_CMD_AC_RESET
;
1698 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1700 /* check if its active now */
1701 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1704 if (timeout
== 0) break;
1708 printf("%s: giving up aclink reset\n", device_xname(&sc
->sc_dev
));
1710 if (timeout
!= 10) {
1711 printf("%s: aclink hardware reset successful\n",
1712 device_xname(&sc
->sc_dev
));
1715 /* assert reset and sync for safety */
1716 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1717 value
|= ATI_REG_CMD_AC_SYNC
| ATI_REG_CMD_AC_RESET
;
1718 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1722 /* chip hard init */
1724 auixp_init(struct auixp_softc
*sc
)
1726 bus_space_tag_t iot
;
1727 bus_space_handle_t ioh
;
1732 /* disable all interrupts and clear all sources */
1733 auixp_disable_interrupts(sc
);
1735 /* clear all DMA enables (preserving rest of settings) */
1736 value
= bus_space_read_4(iot
, ioh
, ATI_REG_CMD
);
1737 value
&= ~( ATI_REG_CMD_IN_DMA_EN
|
1738 ATI_REG_CMD_OUT_DMA_EN
|
1739 ATI_REG_CMD_SPDF_OUT_EN
);
1740 bus_space_write_4(iot
, ioh
, ATI_REG_CMD
, value
);
1743 auixp_reset_aclink(sc
);
1746 * codecs get auto-detected later
1748 * note: we are NOT enabling interrupts yet, no codecs have been
1749 * detected yet nor is anything else set up
1756 auixp_resume(device_t dv
, pmf_qual_t qual
)
1758 struct auixp_softc
*sc
= device_private(dv
);
1760 auixp_reset_codec(sc
);
1762 (sc
->sc_codec
[0].codec_if
->vtbl
->restore_ports
)(sc
->sc_codec
[0].codec_if
);
1772 struct auixp_softc
*sc
;
1773 bus_space_tag_t iot
;
1774 bus_space_handle_t ioh
;
1780 printf("%s register dump:\n", device_xname(&sc
->sc_dev
));
1781 for (i
= 0; i
< 256; i
+=4) {
1782 printf("\t0x%02x: 0x%08x\n", i
, bus_space_read_4(iot
, ioh
, i
));