1 /* $NetBSD: cs428x.h,v 1.13 2007/06/15 13:26:57 joerg Exp $ */
4 * Copyright (c) 2000 Tatoku Ogaito. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Tatoku Ogaito
17 * for the NetBSD Project.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 /* Common functions and variables for CS4280 and CS4281 */
38 #define PCI_BA0 (0x10)
39 #define PCI_BA1 (0x14)
41 #define CS428X_SAVE_REG_MAX (0x10)
42 #define TYPE_CS4280 (0x4280)
43 #define TYPE_CS4281 (0x4281)
45 #define BA0READ4(sc, r) bus_space_read_4((sc)->ba0t, (sc)->ba0h, (r))
46 #define BA0WRITE4(sc, r, x) bus_space_write_4((sc)->ba0t, (sc)->ba0h, (r), (x))
51 void *addr
; /* real DMA buffer */
52 void *dum
; /* dummy buffer for audio driver */
53 bus_dma_segment_t segs
[1];
56 struct cs428x_dma
*next
;
58 #define DMAADDR(p) ((p)->map->dm_segs[0].ds_addr)
59 #define KERNADDR(p) ((void *)((p)->addr)) /* buffer for real DMA */
60 #define BUFADDR(p) ((void *)((p)->dum)) /* buffer for audio driver */
63 * Flags (currently used only for CS4280)
66 CS428X_FLAG_NONE
= 0x0,
67 CS428X_FLAG_INVAC97EAMP
= 0x1, /* inverted AC97 external amp */
68 CS428X_FLAG_CLKRUNHACK
= 0x2 /* needs CLKRUN hack */
77 pci_chipset_tag_t sc_pc
;
79 pci_intr_handle_t
* sc_ih
;
80 pci_intr_handle_t intrh
;
84 bus_space_handle_t ba0h
;
88 bus_space_handle_t ba1h
;
91 bus_dma_tag_t sc_dmatag
;
92 struct cs428x_dma
*sc_dmas
;
100 void (*sc_pintr
)(void *); /* DMA completion intr handler */
101 void *sc_parg
; /* arg for sc_intr() */
102 char *sc_ps
, *sc_pe
, *sc_pn
;
105 struct cs428x_dma
*sc_pdma
;
107 int (*halt_output
)(void *);
108 char sc_prun
; /* playback status */
109 int sc_prate
; /* playback sample rate */
112 void (*sc_rintr
)(void *); /* DMA completion intr handler */
113 void *sc_rarg
; /* arg for sc_intr() */
114 char *sc_rs
, *sc_re
, *sc_rn
;
117 struct cs428x_dma
*sc_rdma
;
119 int sc_rparam
; /* record format */
120 int (*halt_input
)(void *);
121 char sc_rrun
; /* recording status */
122 int sc_rrate
; /* recording sample rate */
124 /* Although cs4281 does not support midi (yet),
125 * don't remove these definition.
127 void (*sc_iintr
)(void *, int); /* midi input ready handler */
128 void (*sc_ointr
)(void *); /* midi output ready handler */
133 * Actually these 3 variables are needed only for CS4280.
135 enum cs428x_flags sc_flags
;
140 struct ac97_codec_if
*codec_if
;
141 struct ac97_host_if host_if
;
143 /* Power Management */
166 /* CLKRUN hack (CS428X_FLAG_CLKRUN), only for CS4280 */
168 bus_space_tag_t sc_pm_iot
;
169 bus_space_handle_t sc_pm_ioh
;
173 int cs428x_round_blocksize(void *, int, int, const audio_params_t
*);
174 int cs428x_get_props(void *);
175 int cs428x_attach_codec(void *, struct ac97_codec_if
*);
176 int cs428x_read_codec(void *, u_int8_t
, u_int16_t
*);
177 int cs428x_write_codec(void *, u_int8_t
, u_int16_t
);
179 int cs428x_mixer_set_port(void *, mixer_ctrl_t
*);
180 int cs428x_mixer_get_port(void *, mixer_ctrl_t
*);
181 int cs428x_query_devinfo(void *, mixer_devinfo_t
*);
182 void *cs428x_malloc(void *, int, size_t, struct malloc_type
*, int);
183 size_t cs428x_round_buffersize(void *, int, size_t);
184 void cs428x_free(void *, void *, struct malloc_type
*);
185 paddr_t
cs428x_mappage(void *, void *, off_t
, int);
187 /* internal functions */
188 int cs428x_allocmem(struct cs428x_softc
*, size_t, struct malloc_type
*,
189 int, struct cs428x_dma
*);
190 int cs428x_src_wait(struct cs428x_softc
*);
194 /* #define CS4280_DEBUG */
195 /* #define CS4281_DEBUG */
197 #if defined(CS4280_DEBUG) || defined(CS4281_DEBUG)
198 #define DPRINTF(x) if (cs428x_debug) printf x
199 #define DPRINTFN(n,x) if (cs428x_debug>(n)) printf x
200 extern int cs428x_debug
;
201 #if CS4280_DEBUG + 0 == 0
203 #define CS4280_DEBUG 0
207 #define DPRINTFN(n,x)
210 #endif /* _CS428X_H_ */