patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / sound / pci / au88x0 / au88x0.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or
5  *  (at your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful,
8  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *  GNU Library General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15  */
16  
17 #ifndef __SOUND_AU88X0_H
18 #define __SOUND_AU88X0_H
19
20 #ifdef __KERNEL__
21 #include <sound/driver.h>
22 #include <linux/init.h>
23 #include <linux/pci.h>
24 #include <asm/io.h>
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27 #include <sound/rawmidi.h>
28 #include <sound/mpu401.h>
29 #include <sound/hwdep.h>
30 #include <sound/ac97_codec.h>
31
32 #endif
33
34 #ifndef CHIP_AU8820
35 #include "au88x0_eq.h"
36 #include "au88x0_a3d.h"
37 #endif
38 #ifndef CHIP_AU8810
39 #include "au88x0_wt.h"
40 #endif
41
42 #define VORTEX_DMA_MASK 0xffffffff
43
44 #define hwread(x,y) readl((x)+((y)>>2))
45 #define hwwrite(x,y,z) writel((z),(x)+((y)>>2))
46
47 /* Vortex MPU401 defines. */
48 #define MIDI_CLOCK_DIV          0x61
49 /* Standart MPU401 defines. */
50 #define MPU401_RESET            0xff
51 #define MPU401_ENTER_UART       0x3f
52 #define MPU401_ACK              0xfe
53
54 // Get src register value to convert from x to y.
55 #define SRC_RATIO(x,y)          ((((x<<15)/y) + 1)/2)
56
57 /* FIFO software state constants. */
58 #define FIFO_STOP 0
59 #define FIFO_START 1
60 #define FIFO_PAUSE 2
61
62 /* IRQ flags */
63 #define IRQ_ERR_MASK    0x00ff
64 #define IRQ_FATAL       0x0001
65 #define IRQ_PARITY      0x0002
66 #define IRQ_REG         0x0004
67 #define IRQ_FIFO        0x0008
68 #define IRQ_DMA         0x0010
69 #define IRQ_PCMOUT      0x0020  /* PCM OUT page crossing */
70 #define IRQ_TIMER       0x1000
71 #define IRQ_MIDI        0x2000
72 #define IRQ_MODEM       0x4000
73
74 /* ADB Resource */
75 #define VORTEX_RESOURCE_DMA     0x00000000
76 #define VORTEX_RESOURCE_SRC     0x00000001
77 #define VORTEX_RESOURCE_MIXIN   0x00000002
78 #define VORTEX_RESOURCE_MIXOUT  0x00000003
79 #define VORTEX_RESOURCE_A3D     0x00000004
80 #define VORTEX_RESOURCE_LAST    0x00000005
81
82 /* Check for SDAC bit in "Extended audio ID" AC97 register */
83 #define VORTEX_IS_QUAD(x) ((x->codec == NULL) ?  0 : (x->codec->ext_id&0x80))
84 /* Check if chip has bug. */
85 #define IS_BAD_CHIP(x) (\
86         (x->rev == 0xfe && x->device == PCI_DEVICE_ID_AUREAL_VORTEX_2) || \
87         (x->rev == 0xfe && x->device == PCI_DEVICE_ID_AUREAL_ADVANTAGE))
88
89
90 /* PCM devices */
91 #define VORTEX_PCM_ADB          0
92 #define VORTEX_PCM_SPDIF        1
93 #define VORTEX_PCM_A3D          2
94 #define VORTEX_PCM_WT           3
95 #define VORTEX_PCM_I2S          4
96 #define VORTEX_PCM_LAST         5
97
98 #define MIX_CAPT(x) (vortex->mixcapt[x])
99 #define MIX_PLAYB(x) (vortex->mixplayb[x])
100 #define MIX_SPDIF(x) (vortex->mixspdif[x])
101
102 #define NR_WTPB 0x20            /* WT channels per eahc bank. */
103
104 /* Structs */
105 typedef struct {
106         //int this_08;          /* Still unknown */
107         int fifo_enabled;       /* this_24 */
108         int fifo_status;        /* this_1c */
109         int dma_ctrl;           /* this_78 (ADB), this_7c (WT) */
110         int dma_unknown;        /* this_74 (ADB), this_78 (WT). WDM: +8 */
111         int cfg0;
112         int cfg1;
113
114         int nr_ch;              /* Nr of PCM channels in use */
115         int type;               /* Output type (ac97, a3d, spdif, i2s, dsp) */
116         int dma;                /* Hardware DMA index. */
117         int dir;                /* Stream Direction. */
118         u32 resources[5];
119
120         /* Virtual page extender stuff */
121         int nr_periods;
122         int period_bytes;
123         snd_pcm_sgbuf_t *sgbuf; /* DMA Scatter Gather struct */
124         int period_real;
125         int period_virt;
126
127         snd_pcm_substream_t *substream;
128 } stream_t;
129
130 typedef struct snd_vortex vortex_t;
131 struct snd_vortex {
132         /* ALSA structs. */
133         snd_card_t *card;
134         snd_pcm_t *pcm[VORTEX_PCM_LAST];
135
136         snd_rawmidi_t *rmidi;   /* Legacy Midi interface. */
137         ac97_t *codec;
138
139         /* Stream structs. */
140         stream_t dma_adb[NR_ADB];
141         int spdif_sr;
142 #ifndef CHIP_AU8810
143         stream_t dma_wt[NR_WT];
144         wt_voice_t wt_voice[NR_WT];     /* WT register cache. */
145         char mixwt[(NR_WT / NR_WTPB) * 6];      /* WT mixin objects */
146 #endif
147
148         /* Global resources */
149         char mixcapt[2];
150         char mixplayb[4];
151 #ifndef CHIP_AU8820
152         char mixspdif[2];
153         char mixa3d[2];         /* mixers which collect all a3d streams. */
154         char mixxtlk[2];        /* crosstalk canceler mixer inputs. */
155 #endif
156         u32 fixed_res[5];
157
158 #ifndef CHIP_AU8820
159         /* Hardware equalizer structs */
160         eqlzr_t eq;
161         /* A3D structs */
162         a3dsrc_t a3d[NR_A3D];
163         /* Xtalk canceler */
164         int xt_mode;            /* 1: speakers, 0:headphones. */
165 #endif
166
167         /* Gameport stuff. */
168         struct gameport *gameport;
169
170         /* PCI hardware resources */
171         unsigned long io;
172         unsigned long *mmio;
173         unsigned int irq;
174         spinlock_t lock;
175
176         /* PCI device */
177         struct pci_dev *pci_dev;
178         u16 vendor;
179         u16 device;
180         u8 rev;
181 };
182
183 #define chip_t vortex_t
184
185 /* Functions. */
186
187 /* SRC */
188 static void vortex_adb_setsrc(vortex_t * vortex, int adbdma,
189                               unsigned int cvrt, int dir);
190
191 /* DMA Engines. */
192 static void vortex_adbdma_setbuffers(vortex_t * vortex, int adbdma,
193                                      snd_pcm_sgbuf_t * sgbuf, int size,
194                                      int count);
195 static void vortex_adbdma_setmode(vortex_t * vortex, int adbdma, int ie,
196                                   int dir, int fmt, int d,
197                                   unsigned long offset);
198 static void vortex_adbdma_setstartbuffer(vortex_t * vortex, int adbdma, int sb);
199 #ifndef CHIP_AU8810
200 static void vortex_wtdma_setbuffers(vortex_t * vortex, int wtdma,
201                                     snd_pcm_sgbuf_t * sgbuf, int size,
202                                     int count);
203 static void vortex_wtdma_setmode(vortex_t * vortex, int wtdma, int ie, int fmt, int d,  /*int e, */
204                                  unsigned long offset);
205 static void vortex_wtdma_setstartbuffer(vortex_t * vortex, int wtdma, int sb);
206 #endif
207
208 static void vortex_adbdma_startfifo(vortex_t * vortex, int adbdma);
209 //static void vortex_adbdma_stopfifo(vortex_t *vortex, int adbdma);
210 static void vortex_adbdma_pausefifo(vortex_t * vortex, int adbdma);
211 static void vortex_adbdma_resumefifo(vortex_t * vortex, int adbdma);
212 static int inline vortex_adbdma_getlinearpos(vortex_t * vortex, int adbdma);
213
214 #ifndef CHIP_AU8810
215 static void vortex_wtdma_startfifo(vortex_t * vortex, int wtdma);
216 static void vortex_wtdma_stopfifo(vortex_t * vortex, int wtdma);
217 static void vortex_wtdma_pausefifo(vortex_t * vortex, int wtdma);
218 static void vortex_wtdma_resumefifo(vortex_t * vortex, int wtdma);
219 static int inline vortex_wtdma_getlinearpos(vortex_t * vortex, int wtdma);
220 #endif
221
222 /* global stuff. */
223 static void vortex_codec_init(vortex_t * vortex);
224 static void vortex_codec_write(ac97_t * codec, unsigned short addr,
225                                unsigned short data);
226 static unsigned short vortex_codec_read(ac97_t * codec, unsigned short addr);
227 static void vortex_spdif_init(vortex_t * vortex, int spdif_sr, int spdif_mode);
228
229 static int vortex_core_init(vortex_t * card);
230 static int vortex_core_shutdown(vortex_t * card);
231 static void vortex_enable_int(vortex_t * card);
232 static irqreturn_t vortex_interrupt(int irq, void *dev_id,
233                                     struct pt_regs *regs);
234 static int vortex_alsafmt_aspfmt(int alsafmt);
235
236 /* Connection  stuff. */
237 static void vortex_connect_default(vortex_t * vortex, int en);
238 static int vortex_adb_allocroute(vortex_t * vortex, int dma, int nr_ch,
239                                  int dir, int type);
240 static char vortex_adb_checkinout(vortex_t * vortex, int resmap[], int out,
241                                   int restype);
242 #ifndef CHIP_AU8810
243 static int vortex_wt_allocroute(vortex_t * vortex, int dma, int nr_ch);
244 static void vortex_wt_connect(vortex_t * vortex, int en);
245 static void vortex_wt_init(vortex_t * vortex);
246 #endif
247
248 static void vortex_route(vortex_t * vortex, int en, unsigned char channel,
249                          unsigned char source, unsigned char dest);
250 #if 0
251 static void vortex_routes(vortex_t * vortex, int en, unsigned char channel,
252                           unsigned char source, unsigned char dest0,
253                           unsigned char dest1);
254 #endif
255 static void vortex_connection_mixin_mix(vortex_t * vortex, int en,
256                                         unsigned char mixin,
257                                         unsigned char mix, int a);
258 static void vortex_mix_setinputvolumebyte(vortex_t * vortex,
259                                           unsigned char mix, int mixin,
260                                           unsigned char vol);
261 static void vortex_mix_setvolumebyte(vortex_t * vortex, unsigned char mix,
262                                      unsigned char vol);
263
264 /* A3D functions. */
265 #ifndef CHIP_AU8820
266 static void vortex_Vort3D(vortex_t * v, int en);
267 static void vortex_Vort3D_connect(vortex_t * vortex, int en);
268 static void vortex_Vort3D_InitializeSource(a3dsrc_t * a, int en);
269 #endif
270
271 /* Driver stuff. */
272 static int __devinit vortex_gameport_register(vortex_t * card);
273 static int __devexit vortex_gameport_unregister(vortex_t * card);
274 #ifndef CHIP_AU8820
275 static int __devinit vortex_eq_init(vortex_t * vortex);
276 static int __devexit vortex_eq_free(vortex_t * vortex);
277 #endif
278 /* ALSA stuff. */
279 static int __devinit snd_vortex_new_pcm(vortex_t * vortex, int idx, int nr);
280 static int __devinit snd_vortex_mixer(vortex_t * vortex);
281 static int __devinit snd_vortex_midi(vortex_t * vortex);
282 #endif