Blame view

sound/pci/sonicvibes.c 51.8 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  /*
   *  Driver for S3 SonicVibes soundcard
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
3
   *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
   *
   *  BUGS:
   *    It looks like 86c617 rev 3 doesn't supports DDMA buffers above 16MB?
   *    Driver sometimes hangs... Nobody knows why at this moment...
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   *
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
27
28
29
  #include <linux/delay.h>
  #include <linux/init.h>
  #include <linux/interrupt.h>
  #include <linux/pci.h>
  #include <linux/slab.h>
  #include <linux/gameport.h>
65a772172   Paul Gortmaker   sound: fix driver...
30
  #include <linux/module.h>
910638ae7   Matthias Gehre   [PATCH] Replace 0...
31
  #include <linux/dma-mapping.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
35
36
37
38
39
40
41
  
  #include <sound/core.h>
  #include <sound/pcm.h>
  #include <sound/info.h>
  #include <sound/control.h>
  #include <sound/mpu401.h>
  #include <sound/opl3.h>
  #include <sound/initval.h>
  
  #include <asm/io.h>
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
42
  MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43
44
45
46
47
48
49
  MODULE_DESCRIPTION("S3 SonicVibes PCI");
  MODULE_LICENSE("GPL");
  MODULE_SUPPORTED_DEVICE("{{S3,SonicVibes PCI}}");
  
  #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
  #define SUPPORT_JOYSTICK 1
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
  static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
  static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
a67ff6a54   Rusty Russell   ALSA: module_para...
52
53
54
  static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;	/* Enable this card */
  static bool reverb[SNDRV_CARDS];
  static bool mge[SNDRV_CARDS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
  static unsigned int dmaio = 0x7a00;	/* DDMA i/o address */
  
  module_param_array(index, int, NULL, 0444);
  MODULE_PARM_DESC(index, "Index value for S3 SonicVibes soundcard.");
  module_param_array(id, charp, NULL, 0444);
  MODULE_PARM_DESC(id, "ID string for S3 SonicVibes soundcard.");
  module_param_array(enable, bool, NULL, 0444);
  MODULE_PARM_DESC(enable, "Enable S3 SonicVibes soundcard.");
  module_param_array(reverb, bool, NULL, 0444);
  MODULE_PARM_DESC(reverb, "Enable reverb (SRAM is present) for S3 SonicVibes soundcard.");
  module_param_array(mge, bool, NULL, 0444);
  MODULE_PARM_DESC(mge, "MIC Gain Enable for S3 SonicVibes soundcard.");
  module_param(dmaio, uint, 0444);
  MODULE_PARM_DESC(dmaio, "DDMA i/o base address for S3 SonicVibes soundcard.");
  
  /*
   * Enhanced port direct registers
   */
  
  #define SV_REG(sonic, x) ((sonic)->enh_port + SV_REG_##x)
  
  #define SV_REG_CONTROL	0x00	/* R/W: CODEC/Mixer control register */
  #define   SV_ENHANCED	  0x01	/* audio mode select - enhanced mode */
  #define   SV_TEST	  0x02	/* test bit */
  #define   SV_REVERB	  0x04	/* reverb enable */
  #define   SV_WAVETABLE	  0x08	/* wavetable active / FM active if not set */
  #define   SV_INTA	  0x20	/* INTA driving - should be always 1 */
  #define   SV_RESET	  0x80	/* reset chip */
  #define SV_REG_IRQMASK	0x01	/* R/W: CODEC/Mixer interrupt mask register */
  #define   SV_DMAA_MASK	  0x01	/* mask DMA-A interrupt */
  #define   SV_DMAC_MASK	  0x04	/* mask DMA-C interrupt */
  #define   SV_SPEC_MASK	  0x08	/* special interrupt mask - should be always masked */
  #define   SV_UD_MASK	  0x40	/* Up/Down button interrupt mask */
  #define   SV_MIDI_MASK	  0x80	/* mask MIDI interrupt */
  #define SV_REG_STATUS	0x02	/* R/O: CODEC/Mixer status register */
  #define   SV_DMAA_IRQ	  0x01	/* DMA-A interrupt */
  #define   SV_DMAC_IRQ	  0x04	/* DMA-C interrupt */
  #define   SV_SPEC_IRQ	  0x08	/* special interrupt */
  #define   SV_UD_IRQ	  0x40	/* Up/Down interrupt */
  #define   SV_MIDI_IRQ	  0x80	/* MIDI interrupt */
  #define SV_REG_INDEX	0x04	/* R/W: CODEC/Mixer index address register */
  #define   SV_MCE          0x40	/* mode change enable */
  #define   SV_TRD	  0x80	/* DMA transfer request disabled */
  #define SV_REG_DATA	0x05	/* R/W: CODEC/Mixer index data register */
  
  /*
   * Enhanced port indirect registers
   */
  
  #define SV_IREG_LEFT_ADC	0x00	/* Left ADC Input Control */
  #define SV_IREG_RIGHT_ADC	0x01	/* Right ADC Input Control */
  #define SV_IREG_LEFT_AUX1	0x02	/* Left AUX1 Input Control */
  #define SV_IREG_RIGHT_AUX1	0x03	/* Right AUX1 Input Control */
  #define SV_IREG_LEFT_CD		0x04	/* Left CD Input Control */
  #define SV_IREG_RIGHT_CD	0x05	/* Right CD Input Control */
  #define SV_IREG_LEFT_LINE	0x06	/* Left Line Input Control */
  #define SV_IREG_RIGHT_LINE	0x07	/* Right Line Input Control */
  #define SV_IREG_MIC		0x08	/* MIC Input Control */
  #define SV_IREG_GAME_PORT	0x09	/* Game Port Control */
  #define SV_IREG_LEFT_SYNTH	0x0a	/* Left Synth Input Control */
  #define SV_IREG_RIGHT_SYNTH	0x0b	/* Right Synth Input Control */
  #define SV_IREG_LEFT_AUX2	0x0c	/* Left AUX2 Input Control */
  #define SV_IREG_RIGHT_AUX2	0x0d	/* Right AUX2 Input Control */
  #define SV_IREG_LEFT_ANALOG	0x0e	/* Left Analog Mixer Output Control */
  #define SV_IREG_RIGHT_ANALOG	0x0f	/* Right Analog Mixer Output Control */
  #define SV_IREG_LEFT_PCM	0x10	/* Left PCM Input Control */
  #define SV_IREG_RIGHT_PCM	0x11	/* Right PCM Input Control */
  #define SV_IREG_DMA_DATA_FMT	0x12	/* DMA Data Format */
  #define SV_IREG_PC_ENABLE	0x13	/* Playback/Capture Enable Register */
  #define SV_IREG_UD_BUTTON	0x14	/* Up/Down Button Register */
  #define SV_IREG_REVISION	0x15	/* Revision */
  #define SV_IREG_ADC_OUTPUT_CTRL	0x16	/* ADC Output Control */
  #define SV_IREG_DMA_A_UPPER	0x18	/* DMA A Upper Base Count */
  #define SV_IREG_DMA_A_LOWER	0x19	/* DMA A Lower Base Count */
  #define SV_IREG_DMA_C_UPPER	0x1c	/* DMA C Upper Base Count */
  #define SV_IREG_DMA_C_LOWER	0x1d	/* DMA C Lower Base Count */
  #define SV_IREG_PCM_RATE_LOW	0x1e	/* PCM Sampling Rate Low Byte */
  #define SV_IREG_PCM_RATE_HIGH	0x1f	/* PCM Sampling Rate High Byte */
  #define SV_IREG_SYNTH_RATE_LOW	0x20	/* Synthesizer Sampling Rate Low Byte */
  #define SV_IREG_SYNTH_RATE_HIGH 0x21	/* Synthesizer Sampling Rate High Byte */
  #define SV_IREG_ADC_CLOCK	0x22	/* ADC Clock Source Selection */
  #define SV_IREG_ADC_ALT_RATE	0x23	/* ADC Alternative Sampling Rate Selection */
  #define SV_IREG_ADC_PLL_M	0x24	/* ADC PLL M Register */
  #define SV_IREG_ADC_PLL_N	0x25	/* ADC PLL N Register */
  #define SV_IREG_SYNTH_PLL_M	0x26	/* Synthesizer PLL M Register */
  #define SV_IREG_SYNTH_PLL_N	0x27	/* Synthesizer PLL N Register */
  #define SV_IREG_MPU401		0x2a	/* MPU-401 UART Operation */
  #define SV_IREG_DRIVE_CTRL	0x2b	/* Drive Control */
  #define SV_IREG_SRS_SPACE	0x2c	/* SRS Space Control */
  #define SV_IREG_SRS_CENTER	0x2d	/* SRS Center Control */
  #define SV_IREG_WAVE_SOURCE	0x2e	/* Wavetable Sample Source Select */
  #define SV_IREG_ANALOG_POWER	0x30	/* Analog Power Down Control */
  #define SV_IREG_DIGITAL_POWER	0x31	/* Digital Power Down Control */
  
  #define SV_IREG_ADC_PLL		SV_IREG_ADC_PLL_M
  #define SV_IREG_SYNTH_PLL	SV_IREG_SYNTH_PLL_M
  
  /*
   *  DMA registers
   */
  
  #define SV_DMA_ADDR0		0x00
  #define SV_DMA_ADDR1		0x01
  #define SV_DMA_ADDR2		0x02
  #define SV_DMA_ADDR3		0x03
  #define SV_DMA_COUNT0		0x04
  #define SV_DMA_COUNT1		0x05
  #define SV_DMA_COUNT2		0x06
  #define SV_DMA_MODE		0x0b
  #define SV_DMA_RESET		0x0d
  #define SV_DMA_MASK		0x0f
  
  /*
   *  Record sources
   */
  
  #define SV_RECSRC_RESERVED	(0x00<<5)
  #define SV_RECSRC_CD		(0x01<<5)
  #define SV_RECSRC_DAC		(0x02<<5)
  #define SV_RECSRC_AUX2		(0x03<<5)
  #define SV_RECSRC_LINE		(0x04<<5)
  #define SV_RECSRC_AUX1		(0x05<<5)
  #define SV_RECSRC_MIC		(0x06<<5)
  #define SV_RECSRC_OUT		(0x07<<5)
  
  /*
   *  constants
   */
  
  #define SV_FULLRATE		48000
  #define SV_REFFREQUENCY		24576000
  #define SV_ADCMULT		512
  
  #define SV_MODE_PLAY		1
  #define SV_MODE_CAPTURE		2
  
  /*
  
   */
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
194
  struct sonicvibes {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
  	unsigned long dma1size;
  	unsigned long dma2size;
  	int irq;
  
  	unsigned long sb_port;
  	unsigned long enh_port;
  	unsigned long synth_port;
  	unsigned long midi_port;
  	unsigned long game_port;
  	unsigned int dmaa_port;
  	struct resource *res_dmaa;
  	unsigned int dmac_port;
  	struct resource *res_dmac;
  
  	unsigned char enable;
  	unsigned char irqmask;
  	unsigned char revision;
  	unsigned char format;
  	unsigned char srs_space;
  	unsigned char srs_center;
  	unsigned char mpu_switch;
  	unsigned char wave_source;
  
  	unsigned int mode;
  
  	struct pci_dev *pci;
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
221
222
223
224
225
226
  	struct snd_card *card;
  	struct snd_pcm *pcm;
  	struct snd_pcm_substream *playback_substream;
  	struct snd_pcm_substream *capture_substream;
  	struct snd_rawmidi *rmidi;
  	struct snd_hwdep *fmsynth;	/* S3FM */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
228
229
230
231
  
  	spinlock_t reg_lock;
  
  	unsigned int p_dma_size;
  	unsigned int c_dma_size;
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
232
233
  	struct snd_kcontrol *master_mute;
  	struct snd_kcontrol *master_volume;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
234
235
236
237
238
  
  #ifdef SUPPORT_JOYSTICK
  	struct gameport *gameport;
  #endif
  };
cebe41d4b   Alexey Dobriyan   sound: use DEFINE...
239
  static DEFINE_PCI_DEVICE_TABLE(snd_sonic_ids) = {
28d27aae9   Joe Perches   sound: Use PCI_VD...
240
  	{ PCI_VDEVICE(S3, 0xca00), 0, },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
241
242
243
244
          { 0, }
  };
  
  MODULE_DEVICE_TABLE(pci, snd_sonic_ids);
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
245
  static struct snd_ratden sonicvibes_adc_clock = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
246
247
248
249
250
  	.num_min = 4000 * 65536,
  	.num_max = 48000UL * 65536,
  	.num_step = 1,
  	.den = 65536,
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
251
  static struct snd_pcm_hw_constraint_ratdens snd_sonicvibes_hw_constraints_adc_clock = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
253
254
255
256
257
258
  	.nrats = 1,
  	.rats = &sonicvibes_adc_clock,
  };
  
  /*
   *  common I/O routines
   */
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
259
  static inline void snd_sonicvibes_setdmaa(struct sonicvibes * sonic,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
260
261
262
263
264
265
266
267
  					  unsigned int addr,
  					  unsigned int count)
  {
  	count--;
  	outl(addr, sonic->dmaa_port + SV_DMA_ADDR0);
  	outl(count, sonic->dmaa_port + SV_DMA_COUNT0);
  	outb(0x18, sonic->dmaa_port + SV_DMA_MODE);
  #if 0
ee419653a   Takashi Iwai   ALSA: Fix missing...
268
269
270
  	printk(KERN_DEBUG "program dmaa: addr = 0x%x, paddr = 0x%x
  ",
  	       addr, inl(sonic->dmaa_port + SV_DMA_ADDR0));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
272
  #endif
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
273
  static inline void snd_sonicvibes_setdmac(struct sonicvibes * sonic,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
274
275
276
277
278
279
280
281
282
283
  					  unsigned int addr,
  					  unsigned int count)
  {
  	/* note: dmac is working in word mode!!! */
  	count >>= 1;
  	count--;
  	outl(addr, sonic->dmac_port + SV_DMA_ADDR0);
  	outl(count, sonic->dmac_port + SV_DMA_COUNT0);
  	outb(0x14, sonic->dmac_port + SV_DMA_MODE);
  #if 0
ee419653a   Takashi Iwai   ALSA: Fix missing...
284
285
286
  	printk(KERN_DEBUG "program dmac: addr = 0x%x, paddr = 0x%x
  ",
  	       addr, inl(sonic->dmac_port + SV_DMA_ADDR0));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
287
288
  #endif
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
289
  static inline unsigned int snd_sonicvibes_getdmaa(struct sonicvibes * sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
290
291
292
  {
  	return (inl(sonic->dmaa_port + SV_DMA_COUNT0) & 0xffffff) + 1;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
293
  static inline unsigned int snd_sonicvibes_getdmac(struct sonicvibes * sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
294
295
296
297
  {
  	/* note: dmac is working in word mode!!! */
  	return ((inl(sonic->dmac_port + SV_DMA_COUNT0) & 0xffffff) + 1) << 1;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
298
  static void snd_sonicvibes_out1(struct sonicvibes * sonic,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
299
300
301
302
303
304
305
306
  				unsigned char reg,
  				unsigned char value)
  {
  	outb(reg, SV_REG(sonic, INDEX));
  	udelay(10);
  	outb(value, SV_REG(sonic, DATA));
  	udelay(10);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
307
  static void snd_sonicvibes_out(struct sonicvibes * sonic,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
309
310
311
312
313
314
315
316
317
318
319
  			       unsigned char reg,
  			       unsigned char value)
  {
  	unsigned long flags;
  
  	spin_lock_irqsave(&sonic->reg_lock, flags);
  	outb(reg, SV_REG(sonic, INDEX));
  	udelay(10);
  	outb(value, SV_REG(sonic, DATA));
  	udelay(10);
  	spin_unlock_irqrestore(&sonic->reg_lock, flags);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
320
  static unsigned char snd_sonicvibes_in1(struct sonicvibes * sonic, unsigned char reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
321
322
323
324
325
326
327
328
329
  {
  	unsigned char value;
  
  	outb(reg, SV_REG(sonic, INDEX));
  	udelay(10);
  	value = inb(SV_REG(sonic, DATA));
  	udelay(10);
  	return value;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
330
  static unsigned char snd_sonicvibes_in(struct sonicvibes * sonic, unsigned char reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
331
332
333
334
335
336
337
338
339
340
341
342
343
344
  {
  	unsigned long flags;
  	unsigned char value;
  
  	spin_lock_irqsave(&sonic->reg_lock, flags);
  	outb(reg, SV_REG(sonic, INDEX));
  	udelay(10);
  	value = inb(SV_REG(sonic, DATA));
  	udelay(10);
  	spin_unlock_irqrestore(&sonic->reg_lock, flags);
  	return value;
  }
  
  #if 0
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
345
  static void snd_sonicvibes_debug(struct sonicvibes * sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
346
  {
ee419653a   Takashi Iwai   ALSA: Fix missing...
347
348
  	printk(KERN_DEBUG
  	       "SV REGS:          INDEX = 0x%02x  ", inb(SV_REG(sonic, INDEX)));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
349
350
  	printk("                 STATUS = 0x%02x
  ", inb(SV_REG(sonic, STATUS)));
ee419653a   Takashi Iwai   ALSA: Fix missing...
351
352
  	printk(KERN_DEBUG
  	       "  0x00: left input      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x00));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
353
354
  	printk("  0x20: synth rate low  = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x20));
ee419653a   Takashi Iwai   ALSA: Fix missing...
355
356
  	printk(KERN_DEBUG
  	       "  0x01: right input     = 0x%02x  ", snd_sonicvibes_in(sonic, 0x01));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
357
358
  	printk("  0x21: synth rate high = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x21));
ee419653a   Takashi Iwai   ALSA: Fix missing...
359
360
  	printk(KERN_DEBUG
  	       "  0x02: left AUX1       = 0x%02x  ", snd_sonicvibes_in(sonic, 0x02));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
361
362
  	printk("  0x22: ADC clock       = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x22));
ee419653a   Takashi Iwai   ALSA: Fix missing...
363
364
  	printk(KERN_DEBUG
  	       "  0x03: right AUX1      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x03));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
365
366
  	printk("  0x23: ADC alt rate    = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x23));
ee419653a   Takashi Iwai   ALSA: Fix missing...
367
368
  	printk(KERN_DEBUG
  	       "  0x04: left CD         = 0x%02x  ", snd_sonicvibes_in(sonic, 0x04));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
369
370
  	printk("  0x24: ADC pll M       = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x24));
ee419653a   Takashi Iwai   ALSA: Fix missing...
371
372
  	printk(KERN_DEBUG
  	       "  0x05: right CD        = 0x%02x  ", snd_sonicvibes_in(sonic, 0x05));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
373
374
  	printk("  0x25: ADC pll N       = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x25));
ee419653a   Takashi Iwai   ALSA: Fix missing...
375
376
  	printk(KERN_DEBUG
  	       "  0x06: left line       = 0x%02x  ", snd_sonicvibes_in(sonic, 0x06));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
377
378
  	printk("  0x26: Synth pll M     = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x26));
ee419653a   Takashi Iwai   ALSA: Fix missing...
379
380
  	printk(KERN_DEBUG
  	       "  0x07: right line      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x07));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
381
382
  	printk("  0x27: Synth pll N     = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x27));
ee419653a   Takashi Iwai   ALSA: Fix missing...
383
384
  	printk(KERN_DEBUG
  	       "  0x08: MIC             = 0x%02x  ", snd_sonicvibes_in(sonic, 0x08));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
385
386
  	printk("  0x28: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x28));
ee419653a   Takashi Iwai   ALSA: Fix missing...
387
388
  	printk(KERN_DEBUG
  	       "  0x09: Game port       = 0x%02x  ", snd_sonicvibes_in(sonic, 0x09));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
389
390
  	printk("  0x29: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x29));
ee419653a   Takashi Iwai   ALSA: Fix missing...
391
392
  	printk(KERN_DEBUG
  	       "  0x0a: left synth      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x0a));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
393
394
  	printk("  0x2a: MPU401          = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x2a));
ee419653a   Takashi Iwai   ALSA: Fix missing...
395
396
  	printk(KERN_DEBUG
  	       "  0x0b: right synth     = 0x%02x  ", snd_sonicvibes_in(sonic, 0x0b));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
398
  	printk("  0x2b: drive ctrl      = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x2b));
ee419653a   Takashi Iwai   ALSA: Fix missing...
399
400
  	printk(KERN_DEBUG
  	       "  0x0c: left AUX2       = 0x%02x  ", snd_sonicvibes_in(sonic, 0x0c));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
401
402
  	printk("  0x2c: SRS space       = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x2c));
ee419653a   Takashi Iwai   ALSA: Fix missing...
403
404
  	printk(KERN_DEBUG
  	       "  0x0d: right AUX2      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x0d));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
406
  	printk("  0x2d: SRS center      = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x2d));
ee419653a   Takashi Iwai   ALSA: Fix missing...
407
408
  	printk(KERN_DEBUG
  	       "  0x0e: left analog     = 0x%02x  ", snd_sonicvibes_in(sonic, 0x0e));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
409
410
  	printk("  0x2e: wave source     = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x2e));
ee419653a   Takashi Iwai   ALSA: Fix missing...
411
412
  	printk(KERN_DEBUG
  	       "  0x0f: right analog    = 0x%02x  ", snd_sonicvibes_in(sonic, 0x0f));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
413
414
  	printk("  0x2f: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x2f));
ee419653a   Takashi Iwai   ALSA: Fix missing...
415
416
  	printk(KERN_DEBUG
  	       "  0x10: left PCM        = 0x%02x  ", snd_sonicvibes_in(sonic, 0x10));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
417
418
  	printk("  0x30: analog power    = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x30));
ee419653a   Takashi Iwai   ALSA: Fix missing...
419
420
  	printk(KERN_DEBUG
  	       "  0x11: right PCM       = 0x%02x  ", snd_sonicvibes_in(sonic, 0x11));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
421
422
  	printk("  0x31: analog power    = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x31));
ee419653a   Takashi Iwai   ALSA: Fix missing...
423
424
  	printk(KERN_DEBUG
  	       "  0x12: DMA data format = 0x%02x  ", snd_sonicvibes_in(sonic, 0x12));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
425
426
  	printk("  0x32: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x32));
ee419653a   Takashi Iwai   ALSA: Fix missing...
427
428
  	printk(KERN_DEBUG
  	       "  0x13: P/C enable      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x13));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
429
430
  	printk("  0x33: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x33));
ee419653a   Takashi Iwai   ALSA: Fix missing...
431
432
  	printk(KERN_DEBUG
  	       "  0x14: U/D button      = 0x%02x  ", snd_sonicvibes_in(sonic, 0x14));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
433
434
  	printk("  0x34: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x34));
ee419653a   Takashi Iwai   ALSA: Fix missing...
435
436
  	printk(KERN_DEBUG
  	       "  0x15: revision        = 0x%02x  ", snd_sonicvibes_in(sonic, 0x15));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
437
438
  	printk("  0x35: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x35));
ee419653a   Takashi Iwai   ALSA: Fix missing...
439
440
  	printk(KERN_DEBUG
  	       "  0x16: ADC output ctrl = 0x%02x  ", snd_sonicvibes_in(sonic, 0x16));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
441
442
  	printk("  0x36: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x36));
ee419653a   Takashi Iwai   ALSA: Fix missing...
443
444
  	printk(KERN_DEBUG
  	       "  0x17: ---             = 0x%02x  ", snd_sonicvibes_in(sonic, 0x17));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
445
446
  	printk("  0x37: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x37));
ee419653a   Takashi Iwai   ALSA: Fix missing...
447
448
  	printk(KERN_DEBUG
  	       "  0x18: DMA A upper cnt = 0x%02x  ", snd_sonicvibes_in(sonic, 0x18));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
449
450
  	printk("  0x38: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x38));
ee419653a   Takashi Iwai   ALSA: Fix missing...
451
452
  	printk(KERN_DEBUG
  	       "  0x19: DMA A lower cnt = 0x%02x  ", snd_sonicvibes_in(sonic, 0x19));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
453
454
  	printk("  0x39: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x39));
ee419653a   Takashi Iwai   ALSA: Fix missing...
455
456
  	printk(KERN_DEBUG
  	       "  0x1a: ---             = 0x%02x  ", snd_sonicvibes_in(sonic, 0x1a));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
457
458
  	printk("  0x3a: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x3a));
ee419653a   Takashi Iwai   ALSA: Fix missing...
459
460
  	printk(KERN_DEBUG
  	       "  0x1b: ---             = 0x%02x  ", snd_sonicvibes_in(sonic, 0x1b));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
461
462
  	printk("  0x3b: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x3b));
ee419653a   Takashi Iwai   ALSA: Fix missing...
463
464
  	printk(KERN_DEBUG
  	       "  0x1c: DMA C upper cnt = 0x%02x  ", snd_sonicvibes_in(sonic, 0x1c));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
465
466
  	printk("  0x3c: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x3c));
ee419653a   Takashi Iwai   ALSA: Fix missing...
467
468
  	printk(KERN_DEBUG
  	       "  0x1d: DMA C upper cnt = 0x%02x  ", snd_sonicvibes_in(sonic, 0x1d));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
469
470
  	printk("  0x3d: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x3d));
ee419653a   Takashi Iwai   ALSA: Fix missing...
471
472
  	printk(KERN_DEBUG
  	       "  0x1e: PCM rate low    = 0x%02x  ", snd_sonicvibes_in(sonic, 0x1e));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
473
474
  	printk("  0x3e: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x3e));
ee419653a   Takashi Iwai   ALSA: Fix missing...
475
476
  	printk(KERN_DEBUG
  	       "  0x1f: PCM rate high   = 0x%02x  ", snd_sonicvibes_in(sonic, 0x1f));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
477
478
479
480
481
  	printk("  0x3f: ---             = 0x%02x
  ", snd_sonicvibes_in(sonic, 0x3f));
  }
  
  #endif
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
482
  static void snd_sonicvibes_setfmt(struct sonicvibes * sonic,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
                                    unsigned char mask,
                                    unsigned char value)
  {
  	unsigned long flags;
  
  	spin_lock_irqsave(&sonic->reg_lock, flags);
  	outb(SV_MCE | SV_IREG_DMA_DATA_FMT, SV_REG(sonic, INDEX));
  	if (mask) {
  		sonic->format = inb(SV_REG(sonic, DATA));
  		udelay(10);
  	}
  	sonic->format = (sonic->format & mask) | value;
  	outb(sonic->format, SV_REG(sonic, DATA));
  	udelay(10);
  	outb(0, SV_REG(sonic, INDEX));
  	udelay(10);
  	spin_unlock_irqrestore(&sonic->reg_lock, flags);
  }
  
  static void snd_sonicvibes_pll(unsigned int rate,
  			       unsigned int *res_r,
  			       unsigned int *res_m,
  			       unsigned int *res_n)
  {
  	unsigned int r, m = 0, n = 0;
  	unsigned int xm, xn, xr, xd, metric = ~0U;
  
  	if (rate < 625000 / SV_ADCMULT)
  		rate = 625000 / SV_ADCMULT;
  	if (rate > 150000000 / SV_ADCMULT)
  		rate = 150000000 / SV_ADCMULT;
  	/* slight violation of specs, needed for continuous sampling rates */
  	for (r = 0; rate < 75000000 / SV_ADCMULT; r += 0x20, rate <<= 1);
  	for (xn = 3; xn < 33; xn++)	/* 35 */
  		for (xm = 3; xm < 257; xm++) {
  			xr = ((SV_REFFREQUENCY / SV_ADCMULT) * xm) / xn;
  			if (xr >= rate)
  				xd = xr - rate;
  			else
  				xd = rate - xr;
  			if (xd < metric) {
  				metric = xd;
  				m = xm - 2;
  				n = xn - 2;
  			}
  		}
  	*res_r = r;
  	*res_m = m;
  	*res_n = n;
  #if 0
ee419653a   Takashi Iwai   ALSA: Fix missing...
533
534
535
536
  	printk(KERN_DEBUG "metric = %i, xm = %i, xn = %i
  ", metric, xm, xn);
  	printk(KERN_DEBUG "pll: m = 0x%x, r = 0x%x, n = 0x%x
  ", reg, m, r, n);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
537
538
  #endif
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
539
  static void snd_sonicvibes_setpll(struct sonicvibes * sonic,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
540
541
542
543
544
545
546
547
548
549
550
551
552
553
                                    unsigned char reg,
                                    unsigned int rate)
  {
  	unsigned long flags;
  	unsigned int r, m, n;
  
  	snd_sonicvibes_pll(rate, &r, &m, &n);
  	if (sonic != NULL) {
  		spin_lock_irqsave(&sonic->reg_lock, flags);
  		snd_sonicvibes_out1(sonic, reg, m);
  		snd_sonicvibes_out1(sonic, reg + 1, r | n);
  		spin_unlock_irqrestore(&sonic->reg_lock, flags);
  	}
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
554
  static void snd_sonicvibes_set_adc_rate(struct sonicvibes * sonic, unsigned int rate)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
  {
  	unsigned long flags;
  	unsigned int div;
  	unsigned char clock;
  
  	div = 48000 / rate;
  	if (div > 8)
  		div = 8;
  	if ((48000 / div) == rate) {	/* use the alternate clock */
  		clock = 0x10;
  	} else {			/* use the PLL source */
  		clock = 0x00;
  		snd_sonicvibes_setpll(sonic, SV_IREG_ADC_PLL, rate);
  	}
  	spin_lock_irqsave(&sonic->reg_lock, flags);
  	snd_sonicvibes_out1(sonic, SV_IREG_ADC_ALT_RATE, (div - 1) << 4);
  	snd_sonicvibes_out1(sonic, SV_IREG_ADC_CLOCK, clock);
  	spin_unlock_irqrestore(&sonic->reg_lock, flags);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
574
575
  static int snd_sonicvibes_hw_constraint_dac_rate(struct snd_pcm_hw_params *params,
  						 struct snd_pcm_hw_rule *rule)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
576
577
578
579
580
581
582
583
584
585
586
587
588
589
  {
  	unsigned int rate, div, r, m, n;
  
  	if (hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min == 
  	    hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max) {
  		rate = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min;
  		div = 48000 / rate;
  		if (div > 8)
  			div = 8;
  		if ((48000 / div) == rate) {
  			params->rate_num = rate;
  			params->rate_den = 1;
  		} else {
  			snd_sonicvibes_pll(rate, &r, &m, &n);
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
590
591
  			snd_BUG_ON(SV_REFFREQUENCY % 16);
  			snd_BUG_ON(SV_ADCMULT % 512);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
592
593
594
595
596
597
  			params->rate_num = (SV_REFFREQUENCY/16) * (n+2) * r;
  			params->rate_den = (SV_ADCMULT/512) * (m+2);
  		}
  	}
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
598
  static void snd_sonicvibes_set_dac_rate(struct sonicvibes * sonic, unsigned int rate)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
599
600
601
602
603
604
605
606
607
608
609
610
  {
  	unsigned int div;
  	unsigned long flags;
  
  	div = (rate * 65536 + SV_FULLRATE / 2) / SV_FULLRATE;
  	if (div > 65535)
  		div = 65535;
  	spin_lock_irqsave(&sonic->reg_lock, flags);
  	snd_sonicvibes_out1(sonic, SV_IREG_PCM_RATE_HIGH, div >> 8);
  	snd_sonicvibes_out1(sonic, SV_IREG_PCM_RATE_LOW, div);
  	spin_unlock_irqrestore(&sonic->reg_lock, flags);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
611
  static int snd_sonicvibes_trigger(struct sonicvibes * sonic, int what, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
  {
  	int result = 0;
  
  	spin_lock(&sonic->reg_lock);
  	if (cmd == SNDRV_PCM_TRIGGER_START) {
  		if (!(sonic->enable & what)) {
  			sonic->enable |= what;
  			snd_sonicvibes_out1(sonic, SV_IREG_PC_ENABLE, sonic->enable);
  		}
  	} else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
  		if (sonic->enable & what) {
  			sonic->enable &= ~what;
  			snd_sonicvibes_out1(sonic, SV_IREG_PC_ENABLE, sonic->enable);
  		}
  	} else {
  		result = -EINVAL;
  	}
  	spin_unlock(&sonic->reg_lock);
  	return result;
  }
7d12e780e   David Howells   IRQ: Maintain reg...
632
  static irqreturn_t snd_sonicvibes_interrupt(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
633
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
634
  	struct sonicvibes *sonic = dev_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
635
636
637
638
639
640
641
  	unsigned char status;
  
  	status = inb(SV_REG(sonic, STATUS));
  	if (!(status & (SV_DMAA_IRQ | SV_DMAC_IRQ | SV_MIDI_IRQ)))
  		return IRQ_NONE;
  	if (status == 0xff) {	/* failure */
  		outb(sonic->irqmask = ~0, SV_REG(sonic, IRQMASK));
99b359ba1   Takashi Iwai   [ALSA] Add missin...
642
643
  		snd_printk(KERN_ERR "IRQ failure - interrupts disabled!!
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
644
645
646
647
648
649
650
651
652
653
  		return IRQ_HANDLED;
  	}
  	if (sonic->pcm) {
  		if (status & SV_DMAA_IRQ)
  			snd_pcm_period_elapsed(sonic->playback_substream);
  		if (status & SV_DMAC_IRQ)
  			snd_pcm_period_elapsed(sonic->capture_substream);
  	}
  	if (sonic->rmidi) {
  		if (status & SV_MIDI_IRQ)
7d12e780e   David Howells   IRQ: Maintain reg...
654
  			snd_mpu401_uart_interrupt(irq, sonic->rmidi->private_data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
  	}
  	if (status & SV_UD_IRQ) {
  		unsigned char udreg;
  		int vol, oleft, oright, mleft, mright;
  
  		spin_lock(&sonic->reg_lock);
  		udreg = snd_sonicvibes_in1(sonic, SV_IREG_UD_BUTTON);
  		vol = udreg & 0x3f;
  		if (!(udreg & 0x40))
  			vol = -vol;
  		oleft = mleft = snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ANALOG);
  		oright = mright = snd_sonicvibes_in1(sonic, SV_IREG_RIGHT_ANALOG);
  		oleft &= 0x1f;
  		oright &= 0x1f;
  		oleft += vol;
  		if (oleft < 0)
  			oleft = 0;
  		if (oleft > 0x1f)
  			oleft = 0x1f;
  		oright += vol;
  		if (oright < 0)
  			oright = 0;
  		if (oright > 0x1f)
  			oright = 0x1f;
  		if (udreg & 0x80) {
  			mleft ^= 0x80;
  			mright ^= 0x80;
  		}
  		oleft |= mleft & 0x80;
  		oright |= mright & 0x80;
  		snd_sonicvibes_out1(sonic, SV_IREG_LEFT_ANALOG, oleft);
  		snd_sonicvibes_out1(sonic, SV_IREG_RIGHT_ANALOG, oright);
  		spin_unlock(&sonic->reg_lock);
  		snd_ctl_notify(sonic->card, SNDRV_CTL_EVENT_MASK_VALUE, &sonic->master_mute->id);
  		snd_ctl_notify(sonic->card, SNDRV_CTL_EVENT_MASK_VALUE, &sonic->master_volume->id);
  	}
  	return IRQ_HANDLED;
  }
  
  /*
   *  PCM part
   */
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
697
  static int snd_sonicvibes_playback_trigger(struct snd_pcm_substream *substream,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
698
699
  					   int cmd)
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
700
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
701
702
  	return snd_sonicvibes_trigger(sonic, 1, cmd);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
703
  static int snd_sonicvibes_capture_trigger(struct snd_pcm_substream *substream,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
704
705
  					  int cmd)
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
706
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
707
708
  	return snd_sonicvibes_trigger(sonic, 2, cmd);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
709
710
  static int snd_sonicvibes_hw_params(struct snd_pcm_substream *substream,
  				    struct snd_pcm_hw_params *hw_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
711
712
713
  {
  	return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
714
  static int snd_sonicvibes_hw_free(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
715
716
717
  {
  	return snd_pcm_lib_free_pages(substream);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
718
  static int snd_sonicvibes_playback_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
719
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
720
721
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
  	unsigned char fmt = 0;
  	unsigned int size = snd_pcm_lib_buffer_bytes(substream);
  	unsigned int count = snd_pcm_lib_period_bytes(substream);
  
  	sonic->p_dma_size = size;
  	count--;
  	if (runtime->channels > 1)
  		fmt |= 1;
  	if (snd_pcm_format_width(runtime->format) == 16)
  		fmt |= 2;
  	snd_sonicvibes_setfmt(sonic, ~3, fmt);
  	snd_sonicvibes_set_dac_rate(sonic, runtime->rate);
  	spin_lock_irq(&sonic->reg_lock);
  	snd_sonicvibes_setdmaa(sonic, runtime->dma_addr, size);
  	snd_sonicvibes_out1(sonic, SV_IREG_DMA_A_UPPER, count >> 8);
  	snd_sonicvibes_out1(sonic, SV_IREG_DMA_A_LOWER, count);
  	spin_unlock_irq(&sonic->reg_lock);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
741
  static int snd_sonicvibes_capture_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
742
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
743
744
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
  	unsigned char fmt = 0;
  	unsigned int size = snd_pcm_lib_buffer_bytes(substream);
  	unsigned int count = snd_pcm_lib_period_bytes(substream);
  
  	sonic->c_dma_size = size;
  	count >>= 1;
  	count--;
  	if (runtime->channels > 1)
  		fmt |= 0x10;
  	if (snd_pcm_format_width(runtime->format) == 16)
  		fmt |= 0x20;
  	snd_sonicvibes_setfmt(sonic, ~0x30, fmt);
  	snd_sonicvibes_set_adc_rate(sonic, runtime->rate);
  	spin_lock_irq(&sonic->reg_lock);
  	snd_sonicvibes_setdmac(sonic, runtime->dma_addr, size);
  	snd_sonicvibes_out1(sonic, SV_IREG_DMA_C_UPPER, count >> 8);
  	snd_sonicvibes_out1(sonic, SV_IREG_DMA_C_LOWER, count);
  	spin_unlock_irq(&sonic->reg_lock);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
765
  static snd_pcm_uframes_t snd_sonicvibes_playback_pointer(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
766
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
767
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
768
769
770
771
772
773
774
  	size_t ptr;
  
  	if (!(sonic->enable & 1))
  		return 0;
  	ptr = sonic->p_dma_size - snd_sonicvibes_getdmaa(sonic);
  	return bytes_to_frames(substream->runtime, ptr);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
775
  static snd_pcm_uframes_t snd_sonicvibes_capture_pointer(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
776
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
777
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
778
779
780
781
782
783
  	size_t ptr;
  	if (!(sonic->enable & 2))
  		return 0;
  	ptr = sonic->c_dma_size - snd_sonicvibes_getdmac(sonic);
  	return bytes_to_frames(substream->runtime, ptr);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
784
  static struct snd_pcm_hardware snd_sonicvibes_playback =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
  {
  	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
  				 SNDRV_PCM_INFO_MMAP_VALID),
  	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
  	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
  	.rate_min =		4000,
  	.rate_max =		48000,
  	.channels_min =		1,
  	.channels_max =		2,
  	.buffer_bytes_max =	(128*1024),
  	.period_bytes_min =	32,
  	.period_bytes_max =	(128*1024),
  	.periods_min =		1,
  	.periods_max =		1024,
  	.fifo_size =		0,
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
802
  static struct snd_pcm_hardware snd_sonicvibes_capture =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
  {
  	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
  				 SNDRV_PCM_INFO_MMAP_VALID),
  	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
  	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
  	.rate_min =		4000,
  	.rate_max =		48000,
  	.channels_min =		1,
  	.channels_max =		2,
  	.buffer_bytes_max =	(128*1024),
  	.period_bytes_min =	32,
  	.period_bytes_max =	(128*1024),
  	.periods_min =		1,
  	.periods_max =		1024,
  	.fifo_size =		0,
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
820
  static int snd_sonicvibes_playback_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
821
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
822
823
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
824
825
826
827
828
829
830
  
  	sonic->mode |= SV_MODE_PLAY;
  	sonic->playback_substream = substream;
  	runtime->hw = snd_sonicvibes_playback;
  	snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, snd_sonicvibes_hw_constraint_dac_rate, NULL, SNDRV_PCM_HW_PARAM_RATE, -1);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
831
  static int snd_sonicvibes_capture_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
832
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
833
834
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
835
836
837
838
839
840
841
842
  
  	sonic->mode |= SV_MODE_CAPTURE;
  	sonic->capture_substream = substream;
  	runtime->hw = snd_sonicvibes_capture;
  	snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
  				      &snd_sonicvibes_hw_constraints_adc_clock);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
843
  static int snd_sonicvibes_playback_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
844
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
845
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
846
847
848
849
850
  
  	sonic->playback_substream = NULL;
  	sonic->mode &= ~SV_MODE_PLAY;
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
851
  static int snd_sonicvibes_capture_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
852
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
853
  	struct sonicvibes *sonic = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
854
855
856
857
858
  
  	sonic->capture_substream = NULL;
  	sonic->mode &= ~SV_MODE_CAPTURE;
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
859
  static struct snd_pcm_ops snd_sonicvibes_playback_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
860
861
862
863
864
865
866
867
868
  	.open =		snd_sonicvibes_playback_open,
  	.close =	snd_sonicvibes_playback_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.hw_params =	snd_sonicvibes_hw_params,
  	.hw_free =	snd_sonicvibes_hw_free,
  	.prepare =	snd_sonicvibes_playback_prepare,
  	.trigger =	snd_sonicvibes_playback_trigger,
  	.pointer =	snd_sonicvibes_playback_pointer,
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
869
  static struct snd_pcm_ops snd_sonicvibes_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
870
871
872
873
874
875
876
877
878
  	.open =		snd_sonicvibes_capture_open,
  	.close =	snd_sonicvibes_capture_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.hw_params =	snd_sonicvibes_hw_params,
  	.hw_free =	snd_sonicvibes_hw_free,
  	.prepare =	snd_sonicvibes_capture_prepare,
  	.trigger =	snd_sonicvibes_capture_trigger,
  	.pointer =	snd_sonicvibes_capture_pointer,
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
879
  static int __devinit snd_sonicvibes_pcm(struct sonicvibes * sonic, int device, struct snd_pcm ** rpcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
880
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
881
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
882
883
884
885
  	int err;
  
  	if ((err = snd_pcm_new(sonic->card, "s3_86c617", device, 1, 1, &pcm)) < 0)
  		return err;
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
886
887
  	if (snd_BUG_ON(!pcm))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
888
889
890
891
892
  
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_sonicvibes_playback_ops);
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_sonicvibes_capture_ops);
  
  	pcm->private_data = sonic;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
  	pcm->info_flags = 0;
  	strcpy(pcm->name, "S3 SonicVibes");
  	sonic->pcm = pcm;
  
  	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
  					      snd_dma_pci_data(sonic->pci), 64*1024, 128*1024);
  
  	if (rpcm)
  		*rpcm = pcm;
  	return 0;
  }
  
  /*
   *  Mixer part
   */
  
  #define SONICVIBES_MUX(xname, xindex) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
    .info = snd_sonicvibes_info_mux, \
    .get = snd_sonicvibes_get_mux, .put = snd_sonicvibes_put_mux }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
913
  static int snd_sonicvibes_info_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
914
915
916
917
918
919
920
921
922
923
924
925
926
  {
  	static char *texts[7] = {
  		"CD", "PCM", "Aux1", "Line", "Aux0", "Mic", "Mix"
  	};
  
  	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  	uinfo->count = 2;
  	uinfo->value.enumerated.items = 7;
  	if (uinfo->value.enumerated.item >= 7)
  		uinfo->value.enumerated.item = 6;
  	strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
927
  static int snd_sonicvibes_get_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
928
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
929
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
930
931
932
933
934
935
936
  	
  	spin_lock_irq(&sonic->reg_lock);
  	ucontrol->value.enumerated.item[0] = ((snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ADC) & SV_RECSRC_OUT) >> 5) - 1;
  	ucontrol->value.enumerated.item[1] = ((snd_sonicvibes_in1(sonic, SV_IREG_RIGHT_ADC) & SV_RECSRC_OUT) >> 5) - 1;
  	spin_unlock_irq(&sonic->reg_lock);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
937
  static int snd_sonicvibes_put_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
938
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
939
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
  	unsigned short left, right, oval1, oval2;
  	int change;
  	
  	if (ucontrol->value.enumerated.item[0] >= 7 ||
  	    ucontrol->value.enumerated.item[1] >= 7)
  		return -EINVAL;
  	left = (ucontrol->value.enumerated.item[0] + 1) << 5;
  	right = (ucontrol->value.enumerated.item[1] + 1) << 5;
  	spin_lock_irq(&sonic->reg_lock);
  	oval1 = snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ADC);
  	oval2 = snd_sonicvibes_in1(sonic, SV_IREG_RIGHT_ADC);
  	left = (oval1 & ~SV_RECSRC_OUT) | left;
  	right = (oval2 & ~SV_RECSRC_OUT) | right;
  	change = left != oval1 || right != oval2;
  	snd_sonicvibes_out1(sonic, SV_IREG_LEFT_ADC, left);
  	snd_sonicvibes_out1(sonic, SV_IREG_RIGHT_ADC, right);
  	spin_unlock_irq(&sonic->reg_lock);
  	return change;
  }
  
  #define SONICVIBES_SINGLE(xname, xindex, reg, shift, mask, invert) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
    .info = snd_sonicvibes_info_single, \
    .get = snd_sonicvibes_get_single, .put = snd_sonicvibes_put_single, \
    .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
965
  static int snd_sonicvibes_info_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
966
967
968
969
970
971
972
973
974
  {
  	int mask = (kcontrol->private_value >> 16) & 0xff;
  
  	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
  	uinfo->count = 1;
  	uinfo->value.integer.min = 0;
  	uinfo->value.integer.max = mask;
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
975
  static int snd_sonicvibes_get_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
976
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
977
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
978
979
980
981
982
983
984
985
986
987
988
989
  	int reg = kcontrol->private_value & 0xff;
  	int shift = (kcontrol->private_value >> 8) & 0xff;
  	int mask = (kcontrol->private_value >> 16) & 0xff;
  	int invert = (kcontrol->private_value >> 24) & 0xff;
  	
  	spin_lock_irq(&sonic->reg_lock);
  	ucontrol->value.integer.value[0] = (snd_sonicvibes_in1(sonic, reg)>> shift) & mask;
  	spin_unlock_irq(&sonic->reg_lock);
  	if (invert)
  		ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
990
  static int snd_sonicvibes_put_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
991
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
992
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
  	int reg = kcontrol->private_value & 0xff;
  	int shift = (kcontrol->private_value >> 8) & 0xff;
  	int mask = (kcontrol->private_value >> 16) & 0xff;
  	int invert = (kcontrol->private_value >> 24) & 0xff;
  	int change;
  	unsigned short val, oval;
  	
  	val = (ucontrol->value.integer.value[0] & mask);
  	if (invert)
  		val = mask - val;
  	val <<= shift;
  	spin_lock_irq(&sonic->reg_lock);
  	oval = snd_sonicvibes_in1(sonic, reg);
  	val = (oval & ~(mask << shift)) | val;
  	change = val != oval;
  	snd_sonicvibes_out1(sonic, reg, val);
  	spin_unlock_irq(&sonic->reg_lock);
  	return change;
  }
  
  #define SONICVIBES_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
    .info = snd_sonicvibes_info_double, \
    .get = snd_sonicvibes_get_double, .put = snd_sonicvibes_put_double, \
    .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1018
  static int snd_sonicvibes_info_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1019
1020
1021
1022
1023
1024
1025
1026
1027
  {
  	int mask = (kcontrol->private_value >> 24) & 0xff;
  
  	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
  	uinfo->count = 2;
  	uinfo->value.integer.min = 0;
  	uinfo->value.integer.max = mask;
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1028
  static int snd_sonicvibes_get_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1029
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1030
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
  	int left_reg = kcontrol->private_value & 0xff;
  	int right_reg = (kcontrol->private_value >> 8) & 0xff;
  	int shift_left = (kcontrol->private_value >> 16) & 0x07;
  	int shift_right = (kcontrol->private_value >> 19) & 0x07;
  	int mask = (kcontrol->private_value >> 24) & 0xff;
  	int invert = (kcontrol->private_value >> 22) & 1;
  	
  	spin_lock_irq(&sonic->reg_lock);
  	ucontrol->value.integer.value[0] = (snd_sonicvibes_in1(sonic, left_reg) >> shift_left) & mask;
  	ucontrol->value.integer.value[1] = (snd_sonicvibes_in1(sonic, right_reg) >> shift_right) & mask;
  	spin_unlock_irq(&sonic->reg_lock);
  	if (invert) {
  		ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
  		ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
  	}
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1048
  static int snd_sonicvibes_put_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1049
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1050
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
  	int left_reg = kcontrol->private_value & 0xff;
  	int right_reg = (kcontrol->private_value >> 8) & 0xff;
  	int shift_left = (kcontrol->private_value >> 16) & 0x07;
  	int shift_right = (kcontrol->private_value >> 19) & 0x07;
  	int mask = (kcontrol->private_value >> 24) & 0xff;
  	int invert = (kcontrol->private_value >> 22) & 1;
  	int change;
  	unsigned short val1, val2, oval1, oval2;
  	
  	val1 = ucontrol->value.integer.value[0] & mask;
  	val2 = ucontrol->value.integer.value[1] & mask;
  	if (invert) {
  		val1 = mask - val1;
  		val2 = mask - val2;
  	}
  	val1 <<= shift_left;
  	val2 <<= shift_right;
  	spin_lock_irq(&sonic->reg_lock);
  	oval1 = snd_sonicvibes_in1(sonic, left_reg);
  	oval2 = snd_sonicvibes_in1(sonic, right_reg);
  	val1 = (oval1 & ~(mask << shift_left)) | val1;
  	val2 = (oval2 & ~(mask << shift_right)) | val2;
  	change = val1 != oval1 || val2 != oval2;
  	snd_sonicvibes_out1(sonic, left_reg, val1);
  	snd_sonicvibes_out1(sonic, right_reg, val2);
  	spin_unlock_irq(&sonic->reg_lock);
  	return change;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1079
  static struct snd_kcontrol_new snd_sonicvibes_controls[] __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
  SONICVIBES_DOUBLE("Capture Volume", 0, SV_IREG_LEFT_ADC, SV_IREG_RIGHT_ADC, 0, 0, 15, 0),
  SONICVIBES_DOUBLE("Aux Playback Switch", 0, SV_IREG_LEFT_AUX1, SV_IREG_RIGHT_AUX1, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("Aux Playback Volume", 0, SV_IREG_LEFT_AUX1, SV_IREG_RIGHT_AUX1, 0, 0, 31, 1),
  SONICVIBES_DOUBLE("CD Playback Switch", 0, SV_IREG_LEFT_CD, SV_IREG_RIGHT_CD, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("CD Playback Volume", 0, SV_IREG_LEFT_CD, SV_IREG_RIGHT_CD, 0, 0, 31, 1),
  SONICVIBES_DOUBLE("Line Playback Switch", 0, SV_IREG_LEFT_LINE, SV_IREG_RIGHT_LINE, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("Line Playback Volume", 0, SV_IREG_LEFT_LINE, SV_IREG_RIGHT_LINE, 0, 0, 31, 1),
  SONICVIBES_SINGLE("Mic Playback Switch", 0, SV_IREG_MIC, 7, 1, 1),
  SONICVIBES_SINGLE("Mic Playback Volume", 0, SV_IREG_MIC, 0, 15, 1),
  SONICVIBES_SINGLE("Mic Boost", 0, SV_IREG_LEFT_ADC, 4, 1, 0),
  SONICVIBES_DOUBLE("Synth Playback Switch", 0, SV_IREG_LEFT_SYNTH, SV_IREG_RIGHT_SYNTH, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("Synth Playback Volume", 0, SV_IREG_LEFT_SYNTH, SV_IREG_RIGHT_SYNTH, 0, 0, 31, 1),
  SONICVIBES_DOUBLE("Aux Playback Switch", 1, SV_IREG_LEFT_AUX2, SV_IREG_RIGHT_AUX2, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("Aux Playback Volume", 1, SV_IREG_LEFT_AUX2, SV_IREG_RIGHT_AUX2, 0, 0, 31, 1),
  SONICVIBES_DOUBLE("Master Playback Switch", 0, SV_IREG_LEFT_ANALOG, SV_IREG_RIGHT_ANALOG, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("Master Playback Volume", 0, SV_IREG_LEFT_ANALOG, SV_IREG_RIGHT_ANALOG, 0, 0, 31, 1),
  SONICVIBES_DOUBLE("PCM Playback Switch", 0, SV_IREG_LEFT_PCM, SV_IREG_RIGHT_PCM, 7, 7, 1, 1),
  SONICVIBES_DOUBLE("PCM Playback Volume", 0, SV_IREG_LEFT_PCM, SV_IREG_RIGHT_PCM, 0, 0, 63, 1),
  SONICVIBES_SINGLE("Loopback Capture Switch", 0, SV_IREG_ADC_OUTPUT_CTRL, 0, 1, 0),
  SONICVIBES_SINGLE("Loopback Capture Volume", 0, SV_IREG_ADC_OUTPUT_CTRL, 2, 63, 1),
  SONICVIBES_MUX("Capture Source", 0)
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1102
  static void snd_sonicvibes_master_free(struct snd_kcontrol *kcontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1103
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1104
  	struct sonicvibes *sonic = snd_kcontrol_chip(kcontrol);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1105
1106
1107
  	sonic->master_mute = NULL;
  	sonic->master_volume = NULL;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1108
  static int __devinit snd_sonicvibes_mixer(struct sonicvibes * sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1109
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1110
1111
  	struct snd_card *card;
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1112
1113
  	unsigned int idx;
  	int err;
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
1114
1115
  	if (snd_BUG_ON(!sonic || !sonic->card))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
  	card = sonic->card;
  	strcpy(card->mixername, "S3 SonicVibes");
  
  	for (idx = 0; idx < ARRAY_SIZE(snd_sonicvibes_controls); idx++) {
  		if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_sonicvibes_controls[idx], sonic))) < 0)
  			return err;
  		switch (idx) {
  		case 0:
  		case 1: kctl->private_free = snd_sonicvibes_master_free; break;
  		}
  	}
  	return 0;
  }
  
  /*
  
   */
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1133
1134
  static void snd_sonicvibes_proc_read(struct snd_info_entry *entry, 
  				     struct snd_info_buffer *buffer)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1135
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1136
  	struct sonicvibes *sonic = entry->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
  	unsigned char tmp;
  
  	tmp = sonic->srs_space & 0x0f;
  	snd_iprintf(buffer, "SRS 3D           : %s
  ",
  		    sonic->srs_space & 0x80 ? "off" : "on");
  	snd_iprintf(buffer, "SRS Space        : %s
  ",
  		    tmp == 0x00 ? "100%" :
  		    tmp == 0x01 ? "75%" :
  		    tmp == 0x02 ? "50%" :
  		    tmp == 0x03 ? "25%" : "0%");
  	tmp = sonic->srs_center & 0x0f;
  	snd_iprintf(buffer, "SRS Center       : %s
  ",
  		    tmp == 0x00 ? "100%" :
  		    tmp == 0x01 ? "75%" :
  		    tmp == 0x02 ? "50%" :
  		    tmp == 0x03 ? "25%" : "0%");
  	tmp = sonic->wave_source & 0x03;
  	snd_iprintf(buffer, "WaveTable Source : %s
  ",
  		    tmp == 0x00 ? "on-board ROM" :
  		    tmp == 0x01 ? "PCI bus" : "on-board ROM + PCI bus");
  	tmp = sonic->mpu_switch;
  	snd_iprintf(buffer, "Onboard synth    : %s
  ", tmp & 0x01 ? "on" : "off");
  	snd_iprintf(buffer, "Ext. Rx to synth : %s
  ", tmp & 0x02 ? "on" : "off");
  	snd_iprintf(buffer, "MIDI to ext. Tx  : %s
  ", tmp & 0x04 ? "on" : "off");
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1169
  static void __devinit snd_sonicvibes_proc_init(struct sonicvibes * sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1170
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1171
  	struct snd_info_entry *entry;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1172
1173
  
  	if (! snd_card_proc_new(sonic->card, "sonicvibes", &entry))
bf850204a   Takashi Iwai   [ALSA] Remove unn...
1174
  		snd_info_set_text_ops(entry, sonic, snd_sonicvibes_proc_read);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1175
1176
1177
1178
1179
1180
1181
  }
  
  /*
  
   */
  
  #ifdef SUPPORT_JOYSTICK
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1182
  static struct snd_kcontrol_new snd_sonicvibes_game_control __devinitdata =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1183
  SONICVIBES_SINGLE("Joystick Speed", 0, SV_IREG_GAME_PORT, 1, 15, 0);
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1184
  static int __devinit snd_sonicvibes_create_gameport(struct sonicvibes *sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
  {
  	struct gameport *gp;
  
  	sonic->gameport = gp = gameport_allocate_port();
  	if (!gp) {
  		printk(KERN_ERR "sonicvibes: cannot allocate memory for gameport
  ");
  		return -ENOMEM;
  	}
  
  	gameport_set_name(gp, "SonicVibes Gameport");
  	gameport_set_phys(gp, "pci%s/gameport0", pci_name(sonic->pci));
  	gameport_set_dev_parent(gp, &sonic->pci->dev);
  	gp->io = sonic->game_port;
  
  	gameport_register_port(gp);
  
  	snd_ctl_add(sonic->card, snd_ctl_new1(&snd_sonicvibes_game_control, sonic));
  
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1206
  static void snd_sonicvibes_free_gameport(struct sonicvibes *sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1207
1208
1209
1210
1211
1212
1213
  {
  	if (sonic->gameport) {
  		gameport_unregister_port(sonic->gameport);
  		sonic->gameport = NULL;
  	}
  }
  #else
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1214
1215
  static inline int snd_sonicvibes_create_gameport(struct sonicvibes *sonic) { return -ENOSYS; }
  static inline void snd_sonicvibes_free_gameport(struct sonicvibes *sonic) { }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1216
  #endif
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1217
  static int snd_sonicvibes_free(struct sonicvibes *sonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1218
1219
1220
1221
1222
  {
  	snd_sonicvibes_free_gameport(sonic);
  	pci_write_config_dword(sonic->pci, 0x40, sonic->dmaa_port);
  	pci_write_config_dword(sonic->pci, 0x48, sonic->dmac_port);
  	if (sonic->irq >= 0)
437a5a460   Takashi Iwai   [ALSA] Remove IRQ...
1223
  		free_irq(sonic->irq, sonic);
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
1224
1225
  	release_and_free_resource(sonic->res_dmaa);
  	release_and_free_resource(sonic->res_dmac);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1226
1227
1228
1229
1230
  	pci_release_regions(sonic->pci);
  	pci_disable_device(sonic->pci);
  	kfree(sonic);
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1231
  static int snd_sonicvibes_dev_free(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1232
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1233
  	struct sonicvibes *sonic = device->device_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1234
1235
  	return snd_sonicvibes_free(sonic);
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1236
  static int __devinit snd_sonicvibes_create(struct snd_card *card,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1237
1238
1239
  					struct pci_dev *pci,
  					int reverb,
  					int mge,
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1240
  					struct sonicvibes ** rsonic)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1241
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1242
  	struct sonicvibes *sonic;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1243
1244
  	unsigned int dmaa, dmac;
  	int err;
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1245
  	static struct snd_device_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1246
1247
1248
1249
1250
1251
1252
1253
  		.dev_free =	snd_sonicvibes_dev_free,
  	};
  
  	*rsonic = NULL;
  	/* enable PCI device */
  	if ((err = pci_enable_device(pci)) < 0)
  		return err;
  	/* check, if we can restrict PCI DMA transfers to 24 bits */
2f4f27d42   Yang Hongyang   dma-mapping: repl...
1254
1255
          if (pci_set_dma_mask(pci, DMA_BIT_MASK(24)) < 0 ||
  	    pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(24)) < 0) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1256
1257
  		snd_printk(KERN_ERR "architecture does not support 24bit PCI busmaster DMA
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1258
1259
1260
  		pci_disable_device(pci);
                  return -ENXIO;
          }
e560d8d83   Takashi Iwai   [ALSA] Replace wi...
1261
  	sonic = kzalloc(sizeof(*sonic), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
  	if (sonic == NULL) {
  		pci_disable_device(pci);
  		return -ENOMEM;
  	}
  	spin_lock_init(&sonic->reg_lock);
  	sonic->card = card;
  	sonic->pci = pci;
  	sonic->irq = -1;
  
  	if ((err = pci_request_regions(pci, "S3 SonicVibes")) < 0) {
  		kfree(sonic);
  		pci_disable_device(pci);
  		return err;
  	}
  
  	sonic->sb_port = pci_resource_start(pci, 0);
  	sonic->enh_port = pci_resource_start(pci, 1);
  	sonic->synth_port = pci_resource_start(pci, 2);
  	sonic->midi_port = pci_resource_start(pci, 3);
  	sonic->game_port = pci_resource_start(pci, 4);
437a5a460   Takashi Iwai   [ALSA] Remove IRQ...
1282
  	if (request_irq(pci->irq, snd_sonicvibes_interrupt, IRQF_SHARED,
934c2b6d0   Takashi Iwai   ALSA: use KBUILD_...
1283
  			KBUILD_MODNAME, sonic)) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1284
1285
  		snd_printk(KERN_ERR "unable to grab IRQ %d
  ", pci->irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
  		snd_sonicvibes_free(sonic);
  		return -EBUSY;
  	}
  	sonic->irq = pci->irq;
  
  	pci_read_config_dword(pci, 0x40, &dmaa);
  	pci_read_config_dword(pci, 0x48, &dmac);
  	dmaio &= ~0x0f;
  	dmaa &= ~0x0f;
  	dmac &= ~0x0f;
  	if (!dmaa) {
  		dmaa = dmaio;
  		dmaio += 0x10;
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1299
1300
  		snd_printk(KERN_INFO "BIOS did not allocate DDMA channel A i/o, allocated at 0x%x
  ", dmaa);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1301
1302
1303
1304
  	}
  	if (!dmac) {
  		dmac = dmaio;
  		dmaio += 0x10;
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1305
1306
  		snd_printk(KERN_INFO "BIOS did not allocate DDMA channel C i/o, allocated at 0x%x
  ", dmac);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1307
1308
1309
1310
1311
1312
  	}
  	pci_write_config_dword(pci, 0x40, dmaa);
  	pci_write_config_dword(pci, 0x48, dmac);
  
  	if ((sonic->res_dmaa = request_region(dmaa, 0x10, "S3 SonicVibes DDMA-A")) == NULL) {
  		snd_sonicvibes_free(sonic);
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1313
1314
  		snd_printk(KERN_ERR "unable to grab DDMA-A port at 0x%x-0x%x
  ", dmaa, dmaa + 0x10 - 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1315
1316
1317
1318
  		return -EBUSY;
  	}
  	if ((sonic->res_dmac = request_region(dmac, 0x10, "S3 SonicVibes DDMA-C")) == NULL) {
  		snd_sonicvibes_free(sonic);
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1319
1320
  		snd_printk(KERN_ERR "unable to grab DDMA-C port at 0x%x-0x%x
  ", dmac, dmac + 0x10 - 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
  		return -EBUSY;
  	}
  
  	pci_read_config_dword(pci, 0x40, &sonic->dmaa_port);
  	pci_read_config_dword(pci, 0x48, &sonic->dmac_port);
  	sonic->dmaa_port &= ~0x0f;
  	sonic->dmac_port &= ~0x0f;
  	pci_write_config_dword(pci, 0x40, sonic->dmaa_port | 9);	/* enable + enhanced */
  	pci_write_config_dword(pci, 0x48, sonic->dmac_port | 9);	/* enable */
  	/* ok.. initialize S3 SonicVibes chip */
  	outb(SV_RESET, SV_REG(sonic, CONTROL));		/* reset chip */
  	udelay(100);
  	outb(0, SV_REG(sonic, CONTROL));	/* release reset */
  	udelay(100);
  	outb(SV_ENHANCED | SV_INTA | (reverb ? SV_REVERB : 0), SV_REG(sonic, CONTROL));
  	inb(SV_REG(sonic, STATUS));	/* clear IRQs */
  #if 1
  	snd_sonicvibes_out(sonic, SV_IREG_DRIVE_CTRL, 0);	/* drive current 16mA */
  #else
  	snd_sonicvibes_out(sonic, SV_IREG_DRIVE_CTRL, 0x40);	/* drive current 8mA */
  #endif
  	snd_sonicvibes_out(sonic, SV_IREG_PC_ENABLE, sonic->enable = 0);	/* disable playback & capture */
  	outb(sonic->irqmask = ~(SV_DMAA_MASK | SV_DMAC_MASK | SV_UD_MASK), SV_REG(sonic, IRQMASK));
  	inb(SV_REG(sonic, STATUS));	/* clear IRQs */
  	snd_sonicvibes_out(sonic, SV_IREG_ADC_CLOCK, 0);	/* use PLL as clock source */
  	snd_sonicvibes_out(sonic, SV_IREG_ANALOG_POWER, 0);	/* power up analog parts */
  	snd_sonicvibes_out(sonic, SV_IREG_DIGITAL_POWER, 0);	/* power up digital parts */
  	snd_sonicvibes_setpll(sonic, SV_IREG_ADC_PLL, 8000);
  	snd_sonicvibes_out(sonic, SV_IREG_SRS_SPACE, sonic->srs_space = 0x80);	/* SRS space off */
  	snd_sonicvibes_out(sonic, SV_IREG_SRS_CENTER, sonic->srs_center = 0x00);/* SRS center off */
  	snd_sonicvibes_out(sonic, SV_IREG_MPU401, sonic->mpu_switch = 0x05);	/* MPU-401 switch */
  	snd_sonicvibes_out(sonic, SV_IREG_WAVE_SOURCE, sonic->wave_source = 0x00);	/* onboard ROM */
  	snd_sonicvibes_out(sonic, SV_IREG_PCM_RATE_LOW, (8000 * 65536 / SV_FULLRATE) & 0xff);
  	snd_sonicvibes_out(sonic, SV_IREG_PCM_RATE_HIGH, ((8000 * 65536 / SV_FULLRATE) >> 8) & 0xff);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_ADC, mge ? 0xd0 : 0xc0);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_ADC, 0xc0);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_AUX1, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_AUX1, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_CD, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_CD, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_LINE, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_LINE, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_MIC, 0x8f);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_SYNTH, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_SYNTH, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_AUX2, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_AUX2, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_ANALOG, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_ANALOG, 0x9f);
  	snd_sonicvibes_out(sonic, SV_IREG_LEFT_PCM, 0xbf);
  	snd_sonicvibes_out(sonic, SV_IREG_RIGHT_PCM, 0xbf);
  	snd_sonicvibes_out(sonic, SV_IREG_ADC_OUTPUT_CTRL, 0xfc);
  #if 0
  	snd_sonicvibes_debug(sonic);
  #endif
  	sonic->revision = snd_sonicvibes_in(sonic, SV_IREG_REVISION);
  
  	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, sonic, &ops)) < 0) {
  		snd_sonicvibes_free(sonic);
  		return err;
  	}
  
  	snd_sonicvibes_proc_init(sonic);
  
  	snd_card_set_dev(card, &pci->dev);
  
  	*rsonic = sonic;
  	return 0;
  }
  
  /*
   *  MIDI section
   */
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1394
  static struct snd_kcontrol_new snd_sonicvibes_midi_controls[] __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1395
1396
1397
1398
1399
1400
  SONICVIBES_SINGLE("SonicVibes Wave Source RAM", 0, SV_IREG_WAVE_SOURCE, 0, 1, 0),
  SONICVIBES_SINGLE("SonicVibes Wave Source RAM+ROM", 0, SV_IREG_WAVE_SOURCE, 1, 1, 0),
  SONICVIBES_SINGLE("SonicVibes Onboard Synth", 0, SV_IREG_MPU401, 0, 1, 0),
  SONICVIBES_SINGLE("SonicVibes External Rx to Synth", 0, SV_IREG_MPU401, 1, 1, 0),
  SONICVIBES_SINGLE("SonicVibes External Tx", 0, SV_IREG_MPU401, 2, 1, 0)
  };
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1401
  static int snd_sonicvibes_midi_input_open(struct snd_mpu401 * mpu)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1402
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1403
  	struct sonicvibes *sonic = mpu->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1404
1405
1406
  	outb(sonic->irqmask &= ~SV_MIDI_MASK, SV_REG(sonic, IRQMASK));
  	return 0;
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1407
  static void snd_sonicvibes_midi_input_close(struct snd_mpu401 * mpu)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1408
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1409
  	struct sonicvibes *sonic = mpu->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1410
1411
  	outb(sonic->irqmask |= SV_MIDI_MASK, SV_REG(sonic, IRQMASK));
  }
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1412
1413
  static int __devinit snd_sonicvibes_midi(struct sonicvibes * sonic,
  					 struct snd_rawmidi *rmidi)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1414
  {
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1415
1416
1417
  	struct snd_mpu401 * mpu = rmidi->private_data;
  	struct snd_card *card = sonic->card;
  	struct snd_rawmidi_str *dir;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
  	unsigned int idx;
  	int err;
  
  	mpu->private_data = sonic;
  	mpu->open_input = snd_sonicvibes_midi_input_open;
  	mpu->close_input = snd_sonicvibes_midi_input_close;
  	dir = &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT];
  	for (idx = 0; idx < ARRAY_SIZE(snd_sonicvibes_midi_controls); idx++)
  		if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_sonicvibes_midi_controls[idx], sonic))) < 0)
  			return err;
  	return 0;
  }
  
  static int __devinit snd_sonic_probe(struct pci_dev *pci,
  				     const struct pci_device_id *pci_id)
  {
  	static int dev;
016e401c2   Takashi Iwai   [ALSA] Remove xxx...
1435
1436
1437
1438
  	struct snd_card *card;
  	struct sonicvibes *sonic;
  	struct snd_rawmidi *midi_uart;
  	struct snd_opl3 *opl3;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1439
1440
1441
1442
1443
1444
1445
1446
1447
  	int idx, err;
  
  	if (dev >= SNDRV_CARDS)
  		return -ENODEV;
  	if (!enable[dev]) {
  		dev++;
  		return -ENOENT;
  	}
   
e58de7baf   Takashi Iwai   ALSA: Convert to ...
1448
1449
1450
  	err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
  	if (err < 0)
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
  	for (idx = 0; idx < 5; idx++) {
  		if (pci_resource_start(pci, idx) == 0 ||
  		    !(pci_resource_flags(pci, idx) & IORESOURCE_IO)) {
  			snd_card_free(card);
  			return -ENODEV;
  		}
  	}
  	if ((err = snd_sonicvibes_create(card, pci,
  					 reverb[dev] ? 1 : 0,
  					 mge[dev] ? 1 : 0,
  					 &sonic)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  
  	strcpy(card->driver, "SonicVibes");
  	strcpy(card->shortname, "S3 SonicVibes");
aa0a2ddc5   Greg Kroah-Hartman   [PATCH] 64bit res...
1468
  	sprintf(card->longname, "%s rev %i at 0x%llx, irq %i",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1469
1470
  		card->shortname,
  		sonic->revision,
aa0a2ddc5   Greg Kroah-Hartman   [PATCH] 64bit res...
1471
  		(unsigned long long)pci_resource_start(pci, 1),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
  		sonic->irq);
  
  	if ((err = snd_sonicvibes_pcm(sonic, 0, NULL)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  	if ((err = snd_sonicvibes_mixer(sonic)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  	if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_SONICVIBES,
dba8b4699   Clemens Ladisch   ALSA: mpu401: cle...
1483
1484
1485
1486
  				       sonic->midi_port,
  				       MPU401_INFO_INTEGRATED |
  				       MPU401_INFO_IRQ_HOOK,
  				       -1, &midi_uart)) < 0) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
  		snd_card_free(card);
  		return err;
  	}
  	snd_sonicvibes_midi(sonic, midi_uart);
  	if ((err = snd_opl3_create(card, sonic->synth_port,
  				   sonic->synth_port + 2,
  				   OPL3_HW_OPL3_SV, 1, &opl3)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  	if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  
  	snd_sonicvibes_create_gameport(sonic);
  
  	if ((err = snd_card_register(card)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  	
  	pci_set_drvdata(pci, card);
  	dev++;
  	return 0;
  }
  
  static void __devexit snd_sonic_remove(struct pci_dev *pci)
  {
  	snd_card_free(pci_get_drvdata(pci));
  	pci_set_drvdata(pci, NULL);
  }
  
  static struct pci_driver driver = {
3733e424c   Takashi Iwai   ALSA: Use KBUILD_...
1521
  	.name = KBUILD_MODNAME,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1522
1523
1524
1525
1526
1527
1528
  	.id_table = snd_sonic_ids,
  	.probe = snd_sonic_probe,
  	.remove = __devexit_p(snd_sonic_remove),
  };
  
  static int __init alsa_card_sonicvibes_init(void)
  {
01d25d460   Takashi Iwai   [ALSA] Replace pc...
1529
  	return pci_register_driver(&driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1530
1531
1532
1533
1534
1535
1536
1537
1538
  }
  
  static void __exit alsa_card_sonicvibes_exit(void)
  {
  	pci_unregister_driver(&driver);
  }
  
  module_init(alsa_card_sonicvibes_init)
  module_exit(alsa_card_sonicvibes_exit)