ALSA: ca0106 - Add IEC958 PCM Stream controls
[deliverable/linux.git] / sound / pci / ca0106 / ca0106_main.c
1 /*
2 * Copyright (c) 2004 James Courtier-Dutton <James@superbug.demon.co.uk>
3 * Driver CA0106 chips. e.g. Sound Blaster Audigy LS and Live 24bit
4 * Version: 0.0.25
5 *
6 * FEATURES currently supported:
7 * Front, Rear and Center/LFE.
8 * Surround40 and Surround51.
9 * Capture from MIC an LINE IN input.
10 * SPDIF digital playback of PCM stereo and AC3/DTS works.
11 * (One can use a standard mono mini-jack to one RCA plugs cable.
12 * or one can use a standard stereo mini-jack to two RCA plugs cable.
13 * Plug one of the RCA plugs into the Coax input of the external decoder/receiver.)
14 * ( In theory one could output 3 different AC3 streams at once, to 3 different SPDIF outputs. )
15 * Notes on how to capture sound:
16 * The AC97 is used in the PLAYBACK direction.
17 * The output from the AC97 chip, instead of reaching the speakers, is fed into the Philips 1361T ADC.
18 * So, to record from the MIC, set the MIC Playback volume to max,
19 * unmute the MIC and turn up the MASTER Playback volume.
20 * So, to prevent feedback when capturing, minimise the "Capture feedback into Playback" volume.
21 *
22 * The only playback controls that currently do anything are: -
23 * Analog Front
24 * Analog Rear
25 * Analog Center/LFE
26 * SPDIF Front
27 * SPDIF Rear
28 * SPDIF Center/LFE
29 *
30 * For capture from Mic in or Line in.
31 * Digital/Analog ( switch must be in Analog mode for CAPTURE. )
32 *
33 * CAPTURE feedback into PLAYBACK
34 *
35 * Changelog:
36 * Support interrupts per period.
37 * Removed noise from Center/LFE channel when in Analog mode.
38 * Rename and remove mixer controls.
39 * 0.0.6
40 * Use separate card based DMA buffer for periods table list.
41 * 0.0.7
42 * Change remove and rename ctrls into lists.
43 * 0.0.8
44 * Try to fix capture sources.
45 * 0.0.9
46 * Fix AC3 output.
47 * Enable S32_LE format support.
48 * 0.0.10
49 * Enable playback 48000 and 96000 rates. (Rates other that these do not work, even with "plug:front".)
50 * 0.0.11
51 * Add Model name recognition.
52 * 0.0.12
53 * Correct interrupt timing. interrupt at end of period, instead of in the middle of a playback period.
54 * Remove redundent "voice" handling.
55 * 0.0.13
56 * Single trigger call for multi channels.
57 * 0.0.14
58 * Set limits based on what the sound card hardware can do.
59 * playback periods_min=2, periods_max=8
60 * capture hw constraints require period_size = n * 64 bytes.
61 * playback hw constraints require period_size = n * 64 bytes.
62 * 0.0.15
63 * Minor updates.
64 * 0.0.16
65 * Implement 192000 sample rate.
66 * 0.0.17
67 * Add support for SB0410 and SB0413.
68 * 0.0.18
69 * Modified Copyright message.
70 * 0.0.19
71 * Finally fix support for SB Live 24 bit. SB0410 and SB0413.
72 * The output codec needs resetting, otherwise all output is muted.
73 * 0.0.20
74 * Merge "pci_disable_device(pci);" fixes.
75 * 0.0.21
76 * Add 4 capture channels. (SPDIF only comes in on channel 0. )
77 * Add SPDIF capture using optional digital I/O module for SB Live 24bit. (Analog capture does not yet work.)
78 * 0.0.22
79 * Add support for MSI K8N Diamond Motherboard with onboard SB Live 24bit without AC97. From kiksen, bug #901
80 * 0.0.23
81 * Implement support for Line-in capture on SB Live 24bit.
82 * 0.0.24
83 * Add support for mute control on SB Live 24bit (cards w/ SPI DAC)
84 * 0.0.25
85 * Powerdown SPI DAC channels when not in use
86 *
87 * BUGS:
88 * Some stability problems when unloading the snd-ca0106 kernel module.
89 * --
90 *
91 * TODO:
92 * 4 Capture channels, only one implemented so far.
93 * Other capture rates apart from 48khz not implemented.
94 * MIDI
95 * --
96 * GENERAL INFO:
97 * Model: SB0310
98 * P17 Chip: CA0106-DAT
99 * AC97 Codec: STAC 9721
100 * ADC: Philips 1361T (Stereo 24bit)
101 * DAC: WM8746EDS (6-channel, 24bit, 192Khz)
102 *
103 * GENERAL INFO:
104 * Model: SB0410
105 * P17 Chip: CA0106-DAT
106 * AC97 Codec: None
107 * ADC: WM8775EDS (4 Channel)
108 * DAC: CS4382 (114 dB, 24-Bit, 192 kHz, 8-Channel D/A Converter with DSD Support)
109 * SPDIF Out control switches between Mic in and SPDIF out.
110 * No sound out or mic input working yet.
111 *
112 * GENERAL INFO:
113 * Model: SB0413
114 * P17 Chip: CA0106-DAT
115 * AC97 Codec: None.
116 * ADC: Unknown
117 * DAC: Unknown
118 * Trying to handle it like the SB0410.
119 *
120 * This code was initally based on code from ALSA's emu10k1x.c which is:
121 * Copyright (c) by Francisco Moraes <fmoraes@nc.rr.com>
122 *
123 * This program is free software; you can redistribute it and/or modify
124 * it under the terms of the GNU General Public License as published by
125 * the Free Software Foundation; either version 2 of the License, or
126 * (at your option) any later version.
127 *
128 * This program is distributed in the hope that it will be useful,
129 * but WITHOUT ANY WARRANTY; without even the implied warranty of
130 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
131 * GNU General Public License for more details.
132 *
133 * You should have received a copy of the GNU General Public License
134 * along with this program; if not, write to the Free Software
135 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
136 *
137 */
138 #include <linux/delay.h>
139 #include <linux/init.h>
140 #include <linux/interrupt.h>
141 #include <linux/pci.h>
142 #include <linux/slab.h>
143 #include <linux/moduleparam.h>
144 #include <linux/dma-mapping.h>
145 #include <sound/core.h>
146 #include <sound/initval.h>
147 #include <sound/pcm.h>
148 #include <sound/ac97_codec.h>
149 #include <sound/info.h>
150
151 MODULE_AUTHOR("James Courtier-Dutton <James@superbug.demon.co.uk>");
152 MODULE_DESCRIPTION("CA0106");
153 MODULE_LICENSE("GPL");
154 MODULE_SUPPORTED_DEVICE("{{Creative,SB CA0106 chip}}");
155
156 // module parameters (see "Module Parameters")
157 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
158 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
159 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
160 static uint subsystem[SNDRV_CARDS]; /* Force card subsystem model */
161
162 module_param_array(index, int, NULL, 0444);
163 MODULE_PARM_DESC(index, "Index value for the CA0106 soundcard.");
164 module_param_array(id, charp, NULL, 0444);
165 MODULE_PARM_DESC(id, "ID string for the CA0106 soundcard.");
166 module_param_array(enable, bool, NULL, 0444);
167 MODULE_PARM_DESC(enable, "Enable the CA0106 soundcard.");
168 module_param_array(subsystem, uint, NULL, 0444);
169 MODULE_PARM_DESC(subsystem, "Force card subsystem model.");
170
171 #include "ca0106.h"
172
173 static struct snd_ca0106_details ca0106_chip_details[] = {
174 /* Sound Blaster X-Fi Extreme Audio. This does not have an AC97. 53SB079000000 */
175 /* It is really just a normal SB Live 24bit. */
176 /* Tested:
177 * See ALSA bug#3251
178 */
179 { .serial = 0x10131102,
180 .name = "X-Fi Extreme Audio [SBxxxx]",
181 .gpio_type = 1,
182 .i2c_adc = 1 } ,
183 /* Sound Blaster X-Fi Extreme Audio. This does not have an AC97. 53SB079000000 */
184 /* It is really just a normal SB Live 24bit. */
185 /*
186 * CTRL:CA0111-WTLF
187 * ADC: WM8775SEDS
188 * DAC: CS4382-KQZ
189 */
190 /* Tested:
191 * Playback on front, rear, center/lfe speakers
192 * Capture from Mic in.
193 * Not-Tested:
194 * Capture from Line in.
195 * Playback to digital out.
196 */
197 { .serial = 0x10121102,
198 .name = "X-Fi Extreme Audio [SB0790]",
199 .gpio_type = 1,
200 .i2c_adc = 1 } ,
201 /* New Dell Sound Blaster Live! 7.1 24bit. This does not have an AC97. */
202 /* AudigyLS[SB0310] */
203 { .serial = 0x10021102,
204 .name = "AudigyLS [SB0310]",
205 .ac97 = 1 } ,
206 /* Unknown AudigyLS that also says SB0310 on it */
207 { .serial = 0x10051102,
208 .name = "AudigyLS [SB0310b]",
209 .ac97 = 1 } ,
210 /* New Sound Blaster Live! 7.1 24bit. This does not have an AC97. 53SB041000001 */
211 { .serial = 0x10061102,
212 .name = "Live! 7.1 24bit [SB0410]",
213 .gpio_type = 1,
214 .i2c_adc = 1 } ,
215 /* New Dell Sound Blaster Live! 7.1 24bit. This does not have an AC97. */
216 { .serial = 0x10071102,
217 .name = "Live! 7.1 24bit [SB0413]",
218 .gpio_type = 1,
219 .i2c_adc = 1 } ,
220 /* New Audigy SE. Has a different DAC. */
221 /* SB0570:
222 * CTRL:CA0106-DAT
223 * ADC: WM8775EDS
224 * DAC: WM8768GEDS
225 */
226 { .serial = 0x100a1102,
227 .name = "Audigy SE [SB0570]",
228 .gpio_type = 1,
229 .i2c_adc = 1,
230 .spi_dac = 1 } ,
231 /* New Audigy LS. Has a different DAC. */
232 /* SB0570:
233 * CTRL:CA0106-DAT
234 * ADC: WM8775EDS
235 * DAC: WM8768GEDS
236 */
237 { .serial = 0x10111102,
238 .name = "Audigy SE OEM [SB0570a]",
239 .gpio_type = 1,
240 .i2c_adc = 1,
241 .spi_dac = 1 } ,
242 /* MSI K8N Diamond Motherboard with onboard SB Live 24bit without AC97 */
243 /* SB0438
244 * CTRL:CA0106-DAT
245 * ADC: WM8775SEDS
246 * DAC: CS4382-KQZ
247 */
248 { .serial = 0x10091462,
249 .name = "MSI K8N Diamond MB [SB0438]",
250 .gpio_type = 2,
251 .i2c_adc = 1 } ,
252 /* MSI K8N Diamond PLUS MB */
253 { .serial = 0x10091102,
254 .name = "MSI K8N Diamond MB",
255 .gpio_type = 2,
256 .i2c_adc = 1,
257 .spi_dac = 2 } ,
258 /* Shuttle XPC SD31P which has an onboard Creative Labs
259 * Sound Blaster Live! 24-bit EAX
260 * high-definition 7.1 audio processor".
261 * Added using info from andrewvegan in alsa bug #1298
262 */
263 { .serial = 0x30381297,
264 .name = "Shuttle XPC SD31P [SD31P]",
265 .gpio_type = 1,
266 .i2c_adc = 1 } ,
267 /* Shuttle XPC SD11G5 which has an onboard Creative Labs
268 * Sound Blaster Live! 24-bit EAX
269 * high-definition 7.1 audio processor".
270 * Fixes ALSA bug#1600
271 */
272 { .serial = 0x30411297,
273 .name = "Shuttle XPC SD11G5 [SD11G5]",
274 .gpio_type = 1,
275 .i2c_adc = 1 } ,
276 { .serial = 0,
277 .name = "AudigyLS [Unknown]" }
278 };
279
280 /* hardware definition */
281 static struct snd_pcm_hardware snd_ca0106_playback_hw = {
282 .info = SNDRV_PCM_INFO_MMAP |
283 SNDRV_PCM_INFO_INTERLEAVED |
284 SNDRV_PCM_INFO_BLOCK_TRANSFER |
285 SNDRV_PCM_INFO_MMAP_VALID |
286 SNDRV_PCM_INFO_SYNC_START,
287 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE,
288 .rates = (SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000 |
289 SNDRV_PCM_RATE_192000),
290 .rate_min = 48000,
291 .rate_max = 192000,
292 .channels_min = 2, //1,
293 .channels_max = 2, //6,
294 .buffer_bytes_max = ((65536 - 64) * 8),
295 .period_bytes_min = 64,
296 .period_bytes_max = (65536 - 64),
297 .periods_min = 2,
298 .periods_max = 8,
299 .fifo_size = 0,
300 };
301
302 static struct snd_pcm_hardware snd_ca0106_capture_hw = {
303 .info = (SNDRV_PCM_INFO_MMAP |
304 SNDRV_PCM_INFO_INTERLEAVED |
305 SNDRV_PCM_INFO_BLOCK_TRANSFER |
306 SNDRV_PCM_INFO_MMAP_VALID),
307 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE,
308 .rates = (SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
309 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000),
310 .rate_min = 44100,
311 .rate_max = 192000,
312 .channels_min = 2,
313 .channels_max = 2,
314 .buffer_bytes_max = ((65536 - 64) * 8),
315 .period_bytes_min = 64,
316 .period_bytes_max = (65536 - 64),
317 .periods_min = 2,
318 .periods_max = 2,
319 .fifo_size = 0,
320 };
321
322 unsigned int snd_ca0106_ptr_read(struct snd_ca0106 * emu,
323 unsigned int reg,
324 unsigned int chn)
325 {
326 unsigned long flags;
327 unsigned int regptr, val;
328
329 regptr = (reg << 16) | chn;
330
331 spin_lock_irqsave(&emu->emu_lock, flags);
332 outl(regptr, emu->port + PTR);
333 val = inl(emu->port + DATA);
334 spin_unlock_irqrestore(&emu->emu_lock, flags);
335 return val;
336 }
337
338 void snd_ca0106_ptr_write(struct snd_ca0106 *emu,
339 unsigned int reg,
340 unsigned int chn,
341 unsigned int data)
342 {
343 unsigned int regptr;
344 unsigned long flags;
345
346 regptr = (reg << 16) | chn;
347
348 spin_lock_irqsave(&emu->emu_lock, flags);
349 outl(regptr, emu->port + PTR);
350 outl(data, emu->port + DATA);
351 spin_unlock_irqrestore(&emu->emu_lock, flags);
352 }
353
354 int snd_ca0106_spi_write(struct snd_ca0106 * emu,
355 unsigned int data)
356 {
357 unsigned int reset, set;
358 unsigned int reg, tmp;
359 int n, result;
360 reg = SPI;
361 if (data > 0xffff) /* Only 16bit values allowed */
362 return 1;
363 tmp = snd_ca0106_ptr_read(emu, reg, 0);
364 reset = (tmp & ~0x3ffff) | 0x20000; /* Set xxx20000 */
365 set = reset | 0x10000; /* Set xxx1xxxx */
366 snd_ca0106_ptr_write(emu, reg, 0, reset | data);
367 tmp = snd_ca0106_ptr_read(emu, reg, 0); /* write post */
368 snd_ca0106_ptr_write(emu, reg, 0, set | data);
369 result = 1;
370 /* Wait for status bit to return to 0 */
371 for (n = 0; n < 100; n++) {
372 udelay(10);
373 tmp = snd_ca0106_ptr_read(emu, reg, 0);
374 if (!(tmp & 0x10000)) {
375 result = 0;
376 break;
377 }
378 }
379 if (result) /* Timed out */
380 return 1;
381 snd_ca0106_ptr_write(emu, reg, 0, reset | data);
382 tmp = snd_ca0106_ptr_read(emu, reg, 0); /* Write post */
383 return 0;
384 }
385
386 /* The ADC does not support i2c read, so only write is implemented */
387 int snd_ca0106_i2c_write(struct snd_ca0106 *emu,
388 u32 reg,
389 u32 value)
390 {
391 u32 tmp;
392 int timeout = 0;
393 int status;
394 int retry;
395 if ((reg > 0x7f) || (value > 0x1ff)) {
396 snd_printk(KERN_ERR "i2c_write: invalid values.\n");
397 return -EINVAL;
398 }
399
400 tmp = reg << 25 | value << 16;
401 // snd_printk("I2C-write:reg=0x%x, value=0x%x\n", reg, value);
402 /* Not sure what this I2C channel controls. */
403 /* snd_ca0106_ptr_write(emu, I2C_D0, 0, tmp); */
404
405 /* This controls the I2C connected to the WM8775 ADC Codec */
406 snd_ca0106_ptr_write(emu, I2C_D1, 0, tmp);
407
408 for (retry = 0; retry < 10; retry++) {
409 /* Send the data to i2c */
410 //tmp = snd_ca0106_ptr_read(emu, I2C_A, 0);
411 //tmp = tmp & ~(I2C_A_ADC_READ|I2C_A_ADC_LAST|I2C_A_ADC_START|I2C_A_ADC_ADD_MASK);
412 tmp = 0;
413 tmp = tmp | (I2C_A_ADC_LAST|I2C_A_ADC_START|I2C_A_ADC_ADD);
414 snd_ca0106_ptr_write(emu, I2C_A, 0, tmp);
415
416 /* Wait till the transaction ends */
417 while (1) {
418 status = snd_ca0106_ptr_read(emu, I2C_A, 0);
419 //snd_printk("I2C:status=0x%x\n", status);
420 timeout++;
421 if ((status & I2C_A_ADC_START) == 0)
422 break;
423
424 if (timeout > 1000)
425 break;
426 }
427 //Read back and see if the transaction is successful
428 if ((status & I2C_A_ADC_ABORT) == 0)
429 break;
430 }
431
432 if (retry == 10) {
433 snd_printk(KERN_ERR "Writing to ADC failed!\n");
434 return -EINVAL;
435 }
436
437 return 0;
438 }
439
440
441 static void snd_ca0106_intr_enable(struct snd_ca0106 *emu, unsigned int intrenb)
442 {
443 unsigned long flags;
444 unsigned int intr_enable;
445
446 spin_lock_irqsave(&emu->emu_lock, flags);
447 intr_enable = inl(emu->port + INTE) | intrenb;
448 outl(intr_enable, emu->port + INTE);
449 spin_unlock_irqrestore(&emu->emu_lock, flags);
450 }
451
452 static void snd_ca0106_intr_disable(struct snd_ca0106 *emu, unsigned int intrenb)
453 {
454 unsigned long flags;
455 unsigned int intr_enable;
456
457 spin_lock_irqsave(&emu->emu_lock, flags);
458 intr_enable = inl(emu->port + INTE) & ~intrenb;
459 outl(intr_enable, emu->port + INTE);
460 spin_unlock_irqrestore(&emu->emu_lock, flags);
461 }
462
463
464 static void snd_ca0106_pcm_free_substream(struct snd_pcm_runtime *runtime)
465 {
466 kfree(runtime->private_data);
467 }
468
469 static const int spi_dacd_reg[] = {
470 [PCM_FRONT_CHANNEL] = SPI_DACD4_REG,
471 [PCM_REAR_CHANNEL] = SPI_DACD0_REG,
472 [PCM_CENTER_LFE_CHANNEL]= SPI_DACD2_REG,
473 [PCM_UNKNOWN_CHANNEL] = SPI_DACD1_REG,
474 };
475 static const int spi_dacd_bit[] = {
476 [PCM_FRONT_CHANNEL] = SPI_DACD4_BIT,
477 [PCM_REAR_CHANNEL] = SPI_DACD0_BIT,
478 [PCM_CENTER_LFE_CHANNEL]= SPI_DACD2_BIT,
479 [PCM_UNKNOWN_CHANNEL] = SPI_DACD1_BIT,
480 };
481
482 static void restore_spdif_bits(struct snd_ca0106 *chip, int idx)
483 {
484 if (chip->spdif_str_bits[idx] != chip->spdif_bits[idx]) {
485 chip->spdif_str_bits[idx] = chip->spdif_bits[idx];
486 snd_ca0106_ptr_write(chip, SPCS0 + idx, 0,
487 chip->spdif_str_bits[idx]);
488 }
489 }
490
491 /* open_playback callback */
492 static int snd_ca0106_pcm_open_playback_channel(struct snd_pcm_substream *substream,
493 int channel_id)
494 {
495 struct snd_ca0106 *chip = snd_pcm_substream_chip(substream);
496 struct snd_ca0106_channel *channel = &(chip->playback_channels[channel_id]);
497 struct snd_ca0106_pcm *epcm;
498 struct snd_pcm_runtime *runtime = substream->runtime;
499 int err;
500
501 epcm = kzalloc(sizeof(*epcm), GFP_KERNEL);
502
503 if (epcm == NULL)
504 return -ENOMEM;
505 epcm->emu = chip;
506 epcm->substream = substream;
507 epcm->channel_id=channel_id;
508
509 runtime->private_data = epcm;
510 runtime->private_free = snd_ca0106_pcm_free_substream;
511
512 runtime->hw = snd_ca0106_playback_hw;
513
514 channel->emu = chip;
515 channel->number = channel_id;
516
517 channel->use = 1;
518 //printk("open:channel_id=%d, chip=%p, channel=%p\n",channel_id, chip, channel);
519 //channel->interrupt = snd_ca0106_pcm_channel_interrupt;
520 channel->epcm = epcm;
521 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
522 return err;
523 if ((err = snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 64)) < 0)
524 return err;
525 snd_pcm_set_sync(substream);
526
527 if (chip->details->spi_dac && channel_id != PCM_FRONT_CHANNEL) {
528 const int reg = spi_dacd_reg[channel_id];
529
530 /* Power up dac */
531 chip->spi_dac_reg[reg] &= ~spi_dacd_bit[channel_id];
532 err = snd_ca0106_spi_write(chip, chip->spi_dac_reg[reg]);
533 if (err < 0)
534 return err;
535 }
536
537 restore_spdif_bits(chip, channel_id);
538
539 return 0;
540 }
541
542 /* close callback */
543 static int snd_ca0106_pcm_close_playback(struct snd_pcm_substream *substream)
544 {
545 struct snd_ca0106 *chip = snd_pcm_substream_chip(substream);
546 struct snd_pcm_runtime *runtime = substream->runtime;
547 struct snd_ca0106_pcm *epcm = runtime->private_data;
548 chip->playback_channels[epcm->channel_id].use = 0;
549
550 restore_spdif_bits(chip, epcm->channel_id);
551
552 if (chip->details->spi_dac && epcm->channel_id != PCM_FRONT_CHANNEL) {
553 const int reg = spi_dacd_reg[epcm->channel_id];
554
555 /* Power down DAC */
556 chip->spi_dac_reg[reg] |= spi_dacd_bit[epcm->channel_id];
557 snd_ca0106_spi_write(chip, chip->spi_dac_reg[reg]);
558 }
559 /* FIXME: maybe zero others */
560 return 0;
561 }
562
563 static int snd_ca0106_pcm_open_playback_front(struct snd_pcm_substream *substream)
564 {
565 return snd_ca0106_pcm_open_playback_channel(substream, PCM_FRONT_CHANNEL);
566 }
567
568 static int snd_ca0106_pcm_open_playback_center_lfe(struct snd_pcm_substream *substream)
569 {
570 return snd_ca0106_pcm_open_playback_channel(substream, PCM_CENTER_LFE_CHANNEL);
571 }
572
573 static int snd_ca0106_pcm_open_playback_unknown(struct snd_pcm_substream *substream)
574 {
575 return snd_ca0106_pcm_open_playback_channel(substream, PCM_UNKNOWN_CHANNEL);
576 }
577
578 static int snd_ca0106_pcm_open_playback_rear(struct snd_pcm_substream *substream)
579 {
580 return snd_ca0106_pcm_open_playback_channel(substream, PCM_REAR_CHANNEL);
581 }
582
583 /* open_capture callback */
584 static int snd_ca0106_pcm_open_capture_channel(struct snd_pcm_substream *substream,
585 int channel_id)
586 {
587 struct snd_ca0106 *chip = snd_pcm_substream_chip(substream);
588 struct snd_ca0106_channel *channel = &(chip->capture_channels[channel_id]);
589 struct snd_ca0106_pcm *epcm;
590 struct snd_pcm_runtime *runtime = substream->runtime;
591 int err;
592
593 epcm = kzalloc(sizeof(*epcm), GFP_KERNEL);
594 if (epcm == NULL) {
595 snd_printk(KERN_ERR "open_capture_channel: failed epcm alloc\n");
596 return -ENOMEM;
597 }
598 epcm->emu = chip;
599 epcm->substream = substream;
600 epcm->channel_id=channel_id;
601
602 runtime->private_data = epcm;
603 runtime->private_free = snd_ca0106_pcm_free_substream;
604
605 runtime->hw = snd_ca0106_capture_hw;
606
607 channel->emu = chip;
608 channel->number = channel_id;
609
610 channel->use = 1;
611 //printk("open:channel_id=%d, chip=%p, channel=%p\n",channel_id, chip, channel);
612 //channel->interrupt = snd_ca0106_pcm_channel_interrupt;
613 channel->epcm = epcm;
614 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
615 return err;
616 //snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, &hw_constraints_capture_period_sizes);
617 if ((err = snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 64)) < 0)
618 return err;
619 return 0;
620 }
621
622 /* close callback */
623 static int snd_ca0106_pcm_close_capture(struct snd_pcm_substream *substream)
624 {
625 struct snd_ca0106 *chip = snd_pcm_substream_chip(substream);
626 struct snd_pcm_runtime *runtime = substream->runtime;
627 struct snd_ca0106_pcm *epcm = runtime->private_data;
628 chip->capture_channels[epcm->channel_id].use = 0;
629 /* FIXME: maybe zero others */
630 return 0;
631 }
632
633 static int snd_ca0106_pcm_open_0_capture(struct snd_pcm_substream *substream)
634 {
635 return snd_ca0106_pcm_open_capture_channel(substream, 0);
636 }
637
638 static int snd_ca0106_pcm_open_1_capture(struct snd_pcm_substream *substream)
639 {
640 return snd_ca0106_pcm_open_capture_channel(substream, 1);
641 }
642
643 static int snd_ca0106_pcm_open_2_capture(struct snd_pcm_substream *substream)
644 {
645 return snd_ca0106_pcm_open_capture_channel(substream, 2);
646 }
647
648 static int snd_ca0106_pcm_open_3_capture(struct snd_pcm_substream *substream)
649 {
650 return snd_ca0106_pcm_open_capture_channel(substream, 3);
651 }
652
653 /* hw_params callback */
654 static int snd_ca0106_pcm_hw_params_playback(struct snd_pcm_substream *substream,
655 struct snd_pcm_hw_params *hw_params)
656 {
657 return snd_pcm_lib_malloc_pages(substream,
658 params_buffer_bytes(hw_params));
659 }
660
661 /* hw_free callback */
662 static int snd_ca0106_pcm_hw_free_playback(struct snd_pcm_substream *substream)
663 {
664 return snd_pcm_lib_free_pages(substream);
665 }
666
667 /* hw_params callback */
668 static int snd_ca0106_pcm_hw_params_capture(struct snd_pcm_substream *substream,
669 struct snd_pcm_hw_params *hw_params)
670 {
671 return snd_pcm_lib_malloc_pages(substream,
672 params_buffer_bytes(hw_params));
673 }
674
675 /* hw_free callback */
676 static int snd_ca0106_pcm_hw_free_capture(struct snd_pcm_substream *substream)
677 {
678 return snd_pcm_lib_free_pages(substream);
679 }
680
681 /* prepare playback callback */
682 static int snd_ca0106_pcm_prepare_playback(struct snd_pcm_substream *substream)
683 {
684 struct snd_ca0106 *emu = snd_pcm_substream_chip(substream);
685 struct snd_pcm_runtime *runtime = substream->runtime;
686 struct snd_ca0106_pcm *epcm = runtime->private_data;
687 int channel = epcm->channel_id;
688 u32 *table_base = (u32 *)(emu->buffer.area+(8*16*channel));
689 u32 period_size_bytes = frames_to_bytes(runtime, runtime->period_size);
690 u32 hcfg_mask = HCFG_PLAYBACK_S32_LE;
691 u32 hcfg_set = 0x00000000;
692 u32 hcfg;
693 u32 reg40_mask = 0x30000 << (channel<<1);
694 u32 reg40_set = 0;
695 u32 reg40;
696 /* FIXME: Depending on mixer selection of SPDIF out or not, select the spdif rate or the DAC rate. */
697 u32 reg71_mask = 0x03030000 ; /* Global. Set SPDIF rate. We only support 44100 to spdif, not to DAC. */
698 u32 reg71_set = 0;
699 u32 reg71;
700 int i;
701
702 //snd_printk("prepare:channel_number=%d, rate=%d, format=0x%x, channels=%d, buffer_size=%ld, period_size=%ld, periods=%u, frames_to_bytes=%d\n",channel, runtime->rate, runtime->format, runtime->channels, runtime->buffer_size, runtime->period_size, runtime->periods, frames_to_bytes(runtime, 1));
703 //snd_printk("dma_addr=%x, dma_area=%p, table_base=%p\n",runtime->dma_addr, runtime->dma_area, table_base);
704 //snd_printk("dma_addr=%x, dma_area=%p, dma_bytes(size)=%x\n",emu->buffer.addr, emu->buffer.area, emu->buffer.bytes);
705 /* Rate can be set per channel. */
706 /* reg40 control host to fifo */
707 /* reg71 controls DAC rate. */
708 switch (runtime->rate) {
709 case 44100:
710 reg40_set = 0x10000 << (channel<<1);
711 reg71_set = 0x01010000;
712 break;
713 case 48000:
714 reg40_set = 0;
715 reg71_set = 0;
716 break;
717 case 96000:
718 reg40_set = 0x20000 << (channel<<1);
719 reg71_set = 0x02020000;
720 break;
721 case 192000:
722 reg40_set = 0x30000 << (channel<<1);
723 reg71_set = 0x03030000;
724 break;
725 default:
726 reg40_set = 0;
727 reg71_set = 0;
728 break;
729 }
730 /* Format is a global setting */
731 /* FIXME: Only let the first channel accessed set this. */
732 switch (runtime->format) {
733 case SNDRV_PCM_FORMAT_S16_LE:
734 hcfg_set = 0;
735 break;
736 case SNDRV_PCM_FORMAT_S32_LE:
737 hcfg_set = HCFG_PLAYBACK_S32_LE;
738 break;
739 default:
740 hcfg_set = 0;
741 break;
742 }
743 hcfg = inl(emu->port + HCFG) ;
744 hcfg = (hcfg & ~hcfg_mask) | hcfg_set;
745 outl(hcfg, emu->port + HCFG);
746 reg40 = snd_ca0106_ptr_read(emu, 0x40, 0);
747 reg40 = (reg40 & ~reg40_mask) | reg40_set;
748 snd_ca0106_ptr_write(emu, 0x40, 0, reg40);
749 reg71 = snd_ca0106_ptr_read(emu, 0x71, 0);
750 reg71 = (reg71 & ~reg71_mask) | reg71_set;
751 snd_ca0106_ptr_write(emu, 0x71, 0, reg71);
752
753 /* FIXME: Check emu->buffer.size before actually writing to it. */
754 for(i=0; i < runtime->periods; i++) {
755 table_base[i*2] = runtime->dma_addr + (i * period_size_bytes);
756 table_base[i*2+1] = period_size_bytes << 16;
757 }
758
759 snd_ca0106_ptr_write(emu, PLAYBACK_LIST_ADDR, channel, emu->buffer.addr+(8*16*channel));
760 snd_ca0106_ptr_write(emu, PLAYBACK_LIST_SIZE, channel, (runtime->periods - 1) << 19);
761 snd_ca0106_ptr_write(emu, PLAYBACK_LIST_PTR, channel, 0);
762 snd_ca0106_ptr_write(emu, PLAYBACK_DMA_ADDR, channel, runtime->dma_addr);
763 snd_ca0106_ptr_write(emu, PLAYBACK_PERIOD_SIZE, channel, frames_to_bytes(runtime, runtime->period_size)<<16); // buffer size in bytes
764 /* FIXME test what 0 bytes does. */
765 snd_ca0106_ptr_write(emu, PLAYBACK_PERIOD_SIZE, channel, 0); // buffer size in bytes
766 snd_ca0106_ptr_write(emu, PLAYBACK_POINTER, channel, 0);
767 snd_ca0106_ptr_write(emu, 0x07, channel, 0x0);
768 snd_ca0106_ptr_write(emu, 0x08, channel, 0);
769 snd_ca0106_ptr_write(emu, PLAYBACK_MUTE, 0x0, 0x0); /* Unmute output */
770 #if 0
771 snd_ca0106_ptr_write(emu, SPCS0, 0,
772 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 |
773 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC |
774 SPCS_GENERATIONSTATUS | 0x00001200 |
775 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT );
776 #endif
777
778 return 0;
779 }
780
781 /* prepare capture callback */
782 static int snd_ca0106_pcm_prepare_capture(struct snd_pcm_substream *substream)
783 {
784 struct snd_ca0106 *emu = snd_pcm_substream_chip(substream);
785 struct snd_pcm_runtime *runtime = substream->runtime;
786 struct snd_ca0106_pcm *epcm = runtime->private_data;
787 int channel = epcm->channel_id;
788 u32 hcfg_mask = HCFG_CAPTURE_S32_LE;
789 u32 hcfg_set = 0x00000000;
790 u32 hcfg;
791 u32 over_sampling=0x2;
792 u32 reg71_mask = 0x0000c000 ; /* Global. Set ADC rate. */
793 u32 reg71_set = 0;
794 u32 reg71;
795
796 //snd_printk("prepare:channel_number=%d, rate=%d, format=0x%x, channels=%d, buffer_size=%ld, period_size=%ld, periods=%u, frames_to_bytes=%d\n",channel, runtime->rate, runtime->format, runtime->channels, runtime->buffer_size, runtime->period_size, runtime->periods, frames_to_bytes(runtime, 1));
797 //snd_printk("dma_addr=%x, dma_area=%p, table_base=%p\n",runtime->dma_addr, runtime->dma_area, table_base);
798 //snd_printk("dma_addr=%x, dma_area=%p, dma_bytes(size)=%x\n",emu->buffer.addr, emu->buffer.area, emu->buffer.bytes);
799 /* reg71 controls ADC rate. */
800 switch (runtime->rate) {
801 case 44100:
802 reg71_set = 0x00004000;
803 break;
804 case 48000:
805 reg71_set = 0;
806 break;
807 case 96000:
808 reg71_set = 0x00008000;
809 over_sampling=0xa;
810 break;
811 case 192000:
812 reg71_set = 0x0000c000;
813 over_sampling=0xa;
814 break;
815 default:
816 reg71_set = 0;
817 break;
818 }
819 /* Format is a global setting */
820 /* FIXME: Only let the first channel accessed set this. */
821 switch (runtime->format) {
822 case SNDRV_PCM_FORMAT_S16_LE:
823 hcfg_set = 0;
824 break;
825 case SNDRV_PCM_FORMAT_S32_LE:
826 hcfg_set = HCFG_CAPTURE_S32_LE;
827 break;
828 default:
829 hcfg_set = 0;
830 break;
831 }
832 hcfg = inl(emu->port + HCFG) ;
833 hcfg = (hcfg & ~hcfg_mask) | hcfg_set;
834 outl(hcfg, emu->port + HCFG);
835 reg71 = snd_ca0106_ptr_read(emu, 0x71, 0);
836 reg71 = (reg71 & ~reg71_mask) | reg71_set;
837 snd_ca0106_ptr_write(emu, 0x71, 0, reg71);
838 if (emu->details->i2c_adc == 1) { /* The SB0410 and SB0413 use I2C to control ADC. */
839 snd_ca0106_i2c_write(emu, ADC_MASTER, over_sampling); /* Adjust the over sampler to better suit the capture rate. */
840 }
841
842
843 //printk("prepare:channel_number=%d, rate=%d, format=0x%x, channels=%d, buffer_size=%ld, period_size=%ld, frames_to_bytes=%d\n",channel, runtime->rate, runtime->format, runtime->channels, runtime->buffer_size, runtime->period_size, frames_to_bytes(runtime, 1));
844 snd_ca0106_ptr_write(emu, 0x13, channel, 0);
845 snd_ca0106_ptr_write(emu, CAPTURE_DMA_ADDR, channel, runtime->dma_addr);
846 snd_ca0106_ptr_write(emu, CAPTURE_BUFFER_SIZE, channel, frames_to_bytes(runtime, runtime->buffer_size)<<16); // buffer size in bytes
847 snd_ca0106_ptr_write(emu, CAPTURE_POINTER, channel, 0);
848
849 return 0;
850 }
851
852 /* trigger_playback callback */
853 static int snd_ca0106_pcm_trigger_playback(struct snd_pcm_substream *substream,
854 int cmd)
855 {
856 struct snd_ca0106 *emu = snd_pcm_substream_chip(substream);
857 struct snd_pcm_runtime *runtime;
858 struct snd_ca0106_pcm *epcm;
859 int channel;
860 int result = 0;
861 struct snd_pcm_substream *s;
862 u32 basic = 0;
863 u32 extended = 0;
864 u32 bits;
865 int running = 0;
866
867 switch (cmd) {
868 case SNDRV_PCM_TRIGGER_START:
869 case SNDRV_PCM_TRIGGER_RESUME:
870 running = 1;
871 break;
872 case SNDRV_PCM_TRIGGER_STOP:
873 case SNDRV_PCM_TRIGGER_SUSPEND:
874 default:
875 running = 0;
876 break;
877 }
878 snd_pcm_group_for_each_entry(s, substream) {
879 if (snd_pcm_substream_chip(s) != emu ||
880 s->stream != SNDRV_PCM_STREAM_PLAYBACK)
881 continue;
882 runtime = s->runtime;
883 epcm = runtime->private_data;
884 channel = epcm->channel_id;
885 /* snd_printk("channel=%d\n",channel); */
886 epcm->running = running;
887 basic |= (0x1 << channel);
888 extended |= (0x10 << channel);
889 snd_pcm_trigger_done(s, substream);
890 }
891 /* snd_printk("basic=0x%x, extended=0x%x\n",basic, extended); */
892
893 switch (cmd) {
894 case SNDRV_PCM_TRIGGER_START:
895 case SNDRV_PCM_TRIGGER_RESUME:
896 bits = snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0);
897 bits |= extended;
898 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, bits);
899 bits = snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0);
900 bits |= basic;
901 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, bits);
902 break;
903 case SNDRV_PCM_TRIGGER_STOP:
904 case SNDRV_PCM_TRIGGER_SUSPEND:
905 bits = snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0);
906 bits &= ~basic;
907 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, bits);
908 bits = snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0);
909 bits &= ~extended;
910 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, bits);
911 break;
912 default:
913 result = -EINVAL;
914 break;
915 }
916 return result;
917 }
918
919 /* trigger_capture callback */
920 static int snd_ca0106_pcm_trigger_capture(struct snd_pcm_substream *substream,
921 int cmd)
922 {
923 struct snd_ca0106 *emu = snd_pcm_substream_chip(substream);
924 struct snd_pcm_runtime *runtime = substream->runtime;
925 struct snd_ca0106_pcm *epcm = runtime->private_data;
926 int channel = epcm->channel_id;
927 int result = 0;
928
929 switch (cmd) {
930 case SNDRV_PCM_TRIGGER_START:
931 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0) | (0x110000<<channel));
932 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0)|(0x100<<channel));
933 epcm->running = 1;
934 break;
935 case SNDRV_PCM_TRIGGER_STOP:
936 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0) & ~(0x100<<channel));
937 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0) & ~(0x110000<<channel));
938 epcm->running = 0;
939 break;
940 default:
941 result = -EINVAL;
942 break;
943 }
944 return result;
945 }
946
947 /* pointer_playback callback */
948 static snd_pcm_uframes_t
949 snd_ca0106_pcm_pointer_playback(struct snd_pcm_substream *substream)
950 {
951 struct snd_ca0106 *emu = snd_pcm_substream_chip(substream);
952 struct snd_pcm_runtime *runtime = substream->runtime;
953 struct snd_ca0106_pcm *epcm = runtime->private_data;
954 snd_pcm_uframes_t ptr, ptr1, ptr2,ptr3,ptr4 = 0;
955 int channel = epcm->channel_id;
956
957 if (!epcm->running)
958 return 0;
959
960 ptr3 = snd_ca0106_ptr_read(emu, PLAYBACK_LIST_PTR, channel);
961 ptr1 = snd_ca0106_ptr_read(emu, PLAYBACK_POINTER, channel);
962 ptr4 = snd_ca0106_ptr_read(emu, PLAYBACK_LIST_PTR, channel);
963 if (ptr3 != ptr4) ptr1 = snd_ca0106_ptr_read(emu, PLAYBACK_POINTER, channel);
964 ptr2 = bytes_to_frames(runtime, ptr1);
965 ptr2+= (ptr4 >> 3) * runtime->period_size;
966 ptr=ptr2;
967 if (ptr >= runtime->buffer_size)
968 ptr -= runtime->buffer_size;
969 //printk("ptr1 = 0x%lx, ptr2=0x%lx, ptr=0x%lx, buffer_size = 0x%x, period_size = 0x%x, bits=%d, rate=%d\n", ptr1, ptr2, ptr, (int)runtime->buffer_size, (int)runtime->period_size, (int)runtime->frame_bits, (int)runtime->rate);
970
971 return ptr;
972 }
973
974 /* pointer_capture callback */
975 static snd_pcm_uframes_t
976 snd_ca0106_pcm_pointer_capture(struct snd_pcm_substream *substream)
977 {
978 struct snd_ca0106 *emu = snd_pcm_substream_chip(substream);
979 struct snd_pcm_runtime *runtime = substream->runtime;
980 struct snd_ca0106_pcm *epcm = runtime->private_data;
981 snd_pcm_uframes_t ptr, ptr1, ptr2 = 0;
982 int channel = channel=epcm->channel_id;
983
984 if (!epcm->running)
985 return 0;
986
987 ptr1 = snd_ca0106_ptr_read(emu, CAPTURE_POINTER, channel);
988 ptr2 = bytes_to_frames(runtime, ptr1);
989 ptr=ptr2;
990 if (ptr >= runtime->buffer_size)
991 ptr -= runtime->buffer_size;
992 //printk("ptr1 = 0x%lx, ptr2=0x%lx, ptr=0x%lx, buffer_size = 0x%x, period_size = 0x%x, bits=%d, rate=%d\n", ptr1, ptr2, ptr, (int)runtime->buffer_size, (int)runtime->period_size, (int)runtime->frame_bits, (int)runtime->rate);
993
994 return ptr;
995 }
996
997 /* operators */
998 static struct snd_pcm_ops snd_ca0106_playback_front_ops = {
999 .open = snd_ca0106_pcm_open_playback_front,
1000 .close = snd_ca0106_pcm_close_playback,
1001 .ioctl = snd_pcm_lib_ioctl,
1002 .hw_params = snd_ca0106_pcm_hw_params_playback,
1003 .hw_free = snd_ca0106_pcm_hw_free_playback,
1004 .prepare = snd_ca0106_pcm_prepare_playback,
1005 .trigger = snd_ca0106_pcm_trigger_playback,
1006 .pointer = snd_ca0106_pcm_pointer_playback,
1007 };
1008
1009 static struct snd_pcm_ops snd_ca0106_capture_0_ops = {
1010 .open = snd_ca0106_pcm_open_0_capture,
1011 .close = snd_ca0106_pcm_close_capture,
1012 .ioctl = snd_pcm_lib_ioctl,
1013 .hw_params = snd_ca0106_pcm_hw_params_capture,
1014 .hw_free = snd_ca0106_pcm_hw_free_capture,
1015 .prepare = snd_ca0106_pcm_prepare_capture,
1016 .trigger = snd_ca0106_pcm_trigger_capture,
1017 .pointer = snd_ca0106_pcm_pointer_capture,
1018 };
1019
1020 static struct snd_pcm_ops snd_ca0106_capture_1_ops = {
1021 .open = snd_ca0106_pcm_open_1_capture,
1022 .close = snd_ca0106_pcm_close_capture,
1023 .ioctl = snd_pcm_lib_ioctl,
1024 .hw_params = snd_ca0106_pcm_hw_params_capture,
1025 .hw_free = snd_ca0106_pcm_hw_free_capture,
1026 .prepare = snd_ca0106_pcm_prepare_capture,
1027 .trigger = snd_ca0106_pcm_trigger_capture,
1028 .pointer = snd_ca0106_pcm_pointer_capture,
1029 };
1030
1031 static struct snd_pcm_ops snd_ca0106_capture_2_ops = {
1032 .open = snd_ca0106_pcm_open_2_capture,
1033 .close = snd_ca0106_pcm_close_capture,
1034 .ioctl = snd_pcm_lib_ioctl,
1035 .hw_params = snd_ca0106_pcm_hw_params_capture,
1036 .hw_free = snd_ca0106_pcm_hw_free_capture,
1037 .prepare = snd_ca0106_pcm_prepare_capture,
1038 .trigger = snd_ca0106_pcm_trigger_capture,
1039 .pointer = snd_ca0106_pcm_pointer_capture,
1040 };
1041
1042 static struct snd_pcm_ops snd_ca0106_capture_3_ops = {
1043 .open = snd_ca0106_pcm_open_3_capture,
1044 .close = snd_ca0106_pcm_close_capture,
1045 .ioctl = snd_pcm_lib_ioctl,
1046 .hw_params = snd_ca0106_pcm_hw_params_capture,
1047 .hw_free = snd_ca0106_pcm_hw_free_capture,
1048 .prepare = snd_ca0106_pcm_prepare_capture,
1049 .trigger = snd_ca0106_pcm_trigger_capture,
1050 .pointer = snd_ca0106_pcm_pointer_capture,
1051 };
1052
1053 static struct snd_pcm_ops snd_ca0106_playback_center_lfe_ops = {
1054 .open = snd_ca0106_pcm_open_playback_center_lfe,
1055 .close = snd_ca0106_pcm_close_playback,
1056 .ioctl = snd_pcm_lib_ioctl,
1057 .hw_params = snd_ca0106_pcm_hw_params_playback,
1058 .hw_free = snd_ca0106_pcm_hw_free_playback,
1059 .prepare = snd_ca0106_pcm_prepare_playback,
1060 .trigger = snd_ca0106_pcm_trigger_playback,
1061 .pointer = snd_ca0106_pcm_pointer_playback,
1062 };
1063
1064 static struct snd_pcm_ops snd_ca0106_playback_unknown_ops = {
1065 .open = snd_ca0106_pcm_open_playback_unknown,
1066 .close = snd_ca0106_pcm_close_playback,
1067 .ioctl = snd_pcm_lib_ioctl,
1068 .hw_params = snd_ca0106_pcm_hw_params_playback,
1069 .hw_free = snd_ca0106_pcm_hw_free_playback,
1070 .prepare = snd_ca0106_pcm_prepare_playback,
1071 .trigger = snd_ca0106_pcm_trigger_playback,
1072 .pointer = snd_ca0106_pcm_pointer_playback,
1073 };
1074
1075 static struct snd_pcm_ops snd_ca0106_playback_rear_ops = {
1076 .open = snd_ca0106_pcm_open_playback_rear,
1077 .close = snd_ca0106_pcm_close_playback,
1078 .ioctl = snd_pcm_lib_ioctl,
1079 .hw_params = snd_ca0106_pcm_hw_params_playback,
1080 .hw_free = snd_ca0106_pcm_hw_free_playback,
1081 .prepare = snd_ca0106_pcm_prepare_playback,
1082 .trigger = snd_ca0106_pcm_trigger_playback,
1083 .pointer = snd_ca0106_pcm_pointer_playback,
1084 };
1085
1086
1087 static unsigned short snd_ca0106_ac97_read(struct snd_ac97 *ac97,
1088 unsigned short reg)
1089 {
1090 struct snd_ca0106 *emu = ac97->private_data;
1091 unsigned long flags;
1092 unsigned short val;
1093
1094 spin_lock_irqsave(&emu->emu_lock, flags);
1095 outb(reg, emu->port + AC97ADDRESS);
1096 val = inw(emu->port + AC97DATA);
1097 spin_unlock_irqrestore(&emu->emu_lock, flags);
1098 return val;
1099 }
1100
1101 static void snd_ca0106_ac97_write(struct snd_ac97 *ac97,
1102 unsigned short reg, unsigned short val)
1103 {
1104 struct snd_ca0106 *emu = ac97->private_data;
1105 unsigned long flags;
1106
1107 spin_lock_irqsave(&emu->emu_lock, flags);
1108 outb(reg, emu->port + AC97ADDRESS);
1109 outw(val, emu->port + AC97DATA);
1110 spin_unlock_irqrestore(&emu->emu_lock, flags);
1111 }
1112
1113 static int snd_ca0106_ac97(struct snd_ca0106 *chip)
1114 {
1115 struct snd_ac97_bus *pbus;
1116 struct snd_ac97_template ac97;
1117 int err;
1118 static struct snd_ac97_bus_ops ops = {
1119 .write = snd_ca0106_ac97_write,
1120 .read = snd_ca0106_ac97_read,
1121 };
1122
1123 if ((err = snd_ac97_bus(chip->card, 0, &ops, NULL, &pbus)) < 0)
1124 return err;
1125 pbus->no_vra = 1; /* we don't need VRA */
1126
1127 memset(&ac97, 0, sizeof(ac97));
1128 ac97.private_data = chip;
1129 ac97.scaps = AC97_SCAP_NO_SPDIF;
1130 return snd_ac97_mixer(pbus, &ac97, &chip->ac97);
1131 }
1132
1133 static void ca0106_stop_chip(struct snd_ca0106 *chip);
1134
1135 static int snd_ca0106_free(struct snd_ca0106 *chip)
1136 {
1137 if (chip->res_port != NULL) {
1138 /* avoid access to already used hardware */
1139 ca0106_stop_chip(chip);
1140 }
1141 if (chip->irq >= 0)
1142 free_irq(chip->irq, chip);
1143 // release the data
1144 #if 1
1145 if (chip->buffer.area)
1146 snd_dma_free_pages(&chip->buffer);
1147 #endif
1148
1149 // release the i/o port
1150 release_and_free_resource(chip->res_port);
1151
1152 pci_disable_device(chip->pci);
1153 kfree(chip);
1154 return 0;
1155 }
1156
1157 static int snd_ca0106_dev_free(struct snd_device *device)
1158 {
1159 struct snd_ca0106 *chip = device->device_data;
1160 return snd_ca0106_free(chip);
1161 }
1162
1163 static irqreturn_t snd_ca0106_interrupt(int irq, void *dev_id)
1164 {
1165 unsigned int status;
1166
1167 struct snd_ca0106 *chip = dev_id;
1168 int i;
1169 int mask;
1170 unsigned int stat76;
1171 struct snd_ca0106_channel *pchannel;
1172
1173 status = inl(chip->port + IPR);
1174 if (! status)
1175 return IRQ_NONE;
1176
1177 stat76 = snd_ca0106_ptr_read(chip, EXTENDED_INT, 0);
1178 //snd_printk("interrupt status = 0x%08x, stat76=0x%08x\n", status, stat76);
1179 //snd_printk("ptr=0x%08x\n",snd_ca0106_ptr_read(chip, PLAYBACK_POINTER, 0));
1180 mask = 0x11; /* 0x1 for one half, 0x10 for the other half period. */
1181 for(i = 0; i < 4; i++) {
1182 pchannel = &(chip->playback_channels[i]);
1183 if (stat76 & mask) {
1184 /* FIXME: Select the correct substream for period elapsed */
1185 if(pchannel->use) {
1186 snd_pcm_period_elapsed(pchannel->epcm->substream);
1187 //printk(KERN_INFO "interrupt [%d] used\n", i);
1188 }
1189 }
1190 //printk(KERN_INFO "channel=%p\n",pchannel);
1191 //printk(KERN_INFO "interrupt stat76[%d] = %08x, use=%d, channel=%d\n", i, stat76, pchannel->use, pchannel->number);
1192 mask <<= 1;
1193 }
1194 mask = 0x110000; /* 0x1 for one half, 0x10 for the other half period. */
1195 for(i = 0; i < 4; i++) {
1196 pchannel = &(chip->capture_channels[i]);
1197 if (stat76 & mask) {
1198 /* FIXME: Select the correct substream for period elapsed */
1199 if(pchannel->use) {
1200 snd_pcm_period_elapsed(pchannel->epcm->substream);
1201 //printk(KERN_INFO "interrupt [%d] used\n", i);
1202 }
1203 }
1204 //printk(KERN_INFO "channel=%p\n",pchannel);
1205 //printk(KERN_INFO "interrupt stat76[%d] = %08x, use=%d, channel=%d\n", i, stat76, pchannel->use, pchannel->number);
1206 mask <<= 1;
1207 }
1208
1209 snd_ca0106_ptr_write(chip, EXTENDED_INT, 0, stat76);
1210
1211 if (chip->midi.dev_id &&
1212 (status & (chip->midi.ipr_tx|chip->midi.ipr_rx))) {
1213 if (chip->midi.interrupt)
1214 chip->midi.interrupt(&chip->midi, status);
1215 else
1216 chip->midi.interrupt_disable(&chip->midi, chip->midi.tx_enable | chip->midi.rx_enable);
1217 }
1218
1219 // acknowledge the interrupt if necessary
1220 outl(status, chip->port+IPR);
1221
1222 return IRQ_HANDLED;
1223 }
1224
1225 static int __devinit snd_ca0106_pcm(struct snd_ca0106 *emu, int device)
1226 {
1227 struct snd_pcm *pcm;
1228 struct snd_pcm_substream *substream;
1229 int err;
1230
1231 err = snd_pcm_new(emu->card, "ca0106", device, 1, 1, &pcm);
1232 if (err < 0)
1233 return err;
1234
1235 pcm->private_data = emu;
1236
1237 switch (device) {
1238 case 0:
1239 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ca0106_playback_front_ops);
1240 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ca0106_capture_0_ops);
1241 break;
1242 case 1:
1243 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ca0106_playback_rear_ops);
1244 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ca0106_capture_1_ops);
1245 break;
1246 case 2:
1247 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ca0106_playback_center_lfe_ops);
1248 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ca0106_capture_2_ops);
1249 break;
1250 case 3:
1251 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ca0106_playback_unknown_ops);
1252 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ca0106_capture_3_ops);
1253 break;
1254 }
1255
1256 pcm->info_flags = 0;
1257 pcm->dev_subclass = SNDRV_PCM_SUBCLASS_GENERIC_MIX;
1258 strcpy(pcm->name, "CA0106");
1259
1260 for(substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
1261 substream;
1262 substream = substream->next) {
1263 if ((err = snd_pcm_lib_preallocate_pages(substream,
1264 SNDRV_DMA_TYPE_DEV,
1265 snd_dma_pci_data(emu->pci),
1266 64*1024, 64*1024)) < 0) /* FIXME: 32*1024 for sound buffer, between 32and64 for Periods table. */
1267 return err;
1268 }
1269
1270 for (substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
1271 substream;
1272 substream = substream->next) {
1273 if ((err = snd_pcm_lib_preallocate_pages(substream,
1274 SNDRV_DMA_TYPE_DEV,
1275 snd_dma_pci_data(emu->pci),
1276 64*1024, 64*1024)) < 0)
1277 return err;
1278 }
1279
1280 emu->pcm[device] = pcm;
1281
1282 return 0;
1283 }
1284
1285 #define SPI_REG(reg, value) (((reg) << SPI_REG_SHIFT) | (value))
1286 static unsigned int spi_dac_init[] = {
1287 SPI_REG(SPI_LDA1_REG, SPI_DA_BIT_0dB), /* 0dB dig. attenuation */
1288 SPI_REG(SPI_RDA1_REG, SPI_DA_BIT_0dB),
1289 SPI_REG(SPI_PL_REG, SPI_PL_BIT_L_L | SPI_PL_BIT_R_R | SPI_IZD_BIT),
1290 SPI_REG(SPI_FMT_REG, SPI_FMT_BIT_I2S | SPI_IWL_BIT_24),
1291 SPI_REG(SPI_LDA2_REG, SPI_DA_BIT_0dB),
1292 SPI_REG(SPI_RDA2_REG, SPI_DA_BIT_0dB),
1293 SPI_REG(SPI_LDA3_REG, SPI_DA_BIT_0dB),
1294 SPI_REG(SPI_RDA3_REG, SPI_DA_BIT_0dB),
1295 SPI_REG(SPI_MASTDA_REG, SPI_DA_BIT_0dB),
1296 SPI_REG(9, 0x00),
1297 SPI_REG(SPI_MS_REG, SPI_DACD0_BIT | SPI_DACD1_BIT | SPI_DACD2_BIT),
1298 SPI_REG(12, 0x00),
1299 SPI_REG(SPI_LDA4_REG, SPI_DA_BIT_0dB),
1300 SPI_REG(SPI_RDA4_REG, SPI_DA_BIT_0dB | SPI_DA_BIT_UPDATE),
1301 SPI_REG(SPI_DACD4_REG, 0x00),
1302 };
1303
1304 static unsigned int i2c_adc_init[][2] = {
1305 { 0x17, 0x00 }, /* Reset */
1306 { 0x07, 0x00 }, /* Timeout */
1307 { 0x0b, 0x22 }, /* Interface control */
1308 { 0x0c, 0x22 }, /* Master mode control */
1309 { 0x0d, 0x08 }, /* Powerdown control */
1310 { 0x0e, 0xcf }, /* Attenuation Left 0x01 = -103dB, 0xff = 24dB */
1311 { 0x0f, 0xcf }, /* Attenuation Right 0.5dB steps */
1312 { 0x10, 0x7b }, /* ALC Control 1 */
1313 { 0x11, 0x00 }, /* ALC Control 2 */
1314 { 0x12, 0x32 }, /* ALC Control 3 */
1315 { 0x13, 0x00 }, /* Noise gate control */
1316 { 0x14, 0xa6 }, /* Limiter control */
1317 { 0x15, ADC_MUX_LINEIN }, /* ADC Mixer control */
1318 };
1319
1320 static void ca0106_init_chip(struct snd_ca0106 *chip, int resume)
1321 {
1322 int ch;
1323 unsigned int def_bits;
1324
1325 outl(0, chip->port + INTE);
1326
1327 /*
1328 * Init to 0x02109204 :
1329 * Clock accuracy = 0 (1000ppm)
1330 * Sample Rate = 2 (48kHz)
1331 * Audio Channel = 1 (Left of 2)
1332 * Source Number = 0 (Unspecified)
1333 * Generation Status = 1 (Original for Cat Code 12)
1334 * Cat Code = 12 (Digital Signal Mixer)
1335 * Mode = 0 (Mode 0)
1336 * Emphasis = 0 (None)
1337 * CP = 1 (Copyright unasserted)
1338 * AN = 0 (Audio data)
1339 * P = 0 (Consumer)
1340 */
1341 def_bits =
1342 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 |
1343 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC |
1344 SPCS_GENERATIONSTATUS | 0x00001200 |
1345 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT;
1346 if (!resume) {
1347 chip->spdif_str_bits[0] = chip->spdif_bits[0] = def_bits;
1348 chip->spdif_str_bits[1] = chip->spdif_bits[1] = def_bits;
1349 chip->spdif_str_bits[2] = chip->spdif_bits[2] = def_bits;
1350 chip->spdif_str_bits[3] = chip->spdif_bits[3] = def_bits;
1351 }
1352 /* Only SPCS1 has been tested */
1353 snd_ca0106_ptr_write(chip, SPCS1, 0, chip->spdif_str_bits[1]);
1354 snd_ca0106_ptr_write(chip, SPCS0, 0, chip->spdif_str_bits[0]);
1355 snd_ca0106_ptr_write(chip, SPCS2, 0, chip->spdif_str_bits[2]);
1356 snd_ca0106_ptr_write(chip, SPCS3, 0, chip->spdif_str_bits[3]);
1357
1358 snd_ca0106_ptr_write(chip, PLAYBACK_MUTE, 0, 0x00fc0000);
1359 snd_ca0106_ptr_write(chip, CAPTURE_MUTE, 0, 0x00fc0000);
1360
1361 /* Write 0x8000 to AC97_REC_GAIN to mute it. */
1362 outb(AC97_REC_GAIN, chip->port + AC97ADDRESS);
1363 outw(0x8000, chip->port + AC97DATA);
1364 #if 0 /* FIXME: what are these? */
1365 snd_ca0106_ptr_write(chip, SPCS0, 0, 0x2108006);
1366 snd_ca0106_ptr_write(chip, 0x42, 0, 0x2108006);
1367 snd_ca0106_ptr_write(chip, 0x43, 0, 0x2108006);
1368 snd_ca0106_ptr_write(chip, 0x44, 0, 0x2108006);
1369 #endif
1370
1371 /* OSS drivers set this. */
1372 /* snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0xf0f003f); */
1373
1374 /* Analog or Digital output */
1375 snd_ca0106_ptr_write(chip, SPDIF_SELECT1, 0, 0xf);
1376 /* 0x0b000000 for digital, 0x000b0000 for analog, from win2000 drivers.
1377 * Use 0x000f0000 for surround71
1378 */
1379 snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0x000f0000);
1380
1381 chip->spdif_enable = 0; /* Set digital SPDIF output off */
1382 /*snd_ca0106_ptr_write(chip, 0x45, 0, 0);*/ /* Analogue out */
1383 /*snd_ca0106_ptr_write(chip, 0x45, 0, 0xf00);*/ /* Digital out */
1384
1385 /* goes to 0x40c80000 when doing SPDIF IN/OUT */
1386 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 0, 0x40c81000);
1387 /* (Mute) CAPTURE feedback into PLAYBACK volume.
1388 * Only lower 16 bits matter.
1389 */
1390 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 1, 0xffffffff);
1391 /* SPDIF IN Volume */
1392 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 2, 0x30300000);
1393 /* SPDIF IN Volume, 0x70 = (vol & 0x3f) | 0x40 */
1394 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 3, 0x00700000);
1395
1396 snd_ca0106_ptr_write(chip, PLAYBACK_ROUTING1, 0, 0x32765410);
1397 snd_ca0106_ptr_write(chip, PLAYBACK_ROUTING2, 0, 0x76767676);
1398 snd_ca0106_ptr_write(chip, CAPTURE_ROUTING1, 0, 0x32765410);
1399 snd_ca0106_ptr_write(chip, CAPTURE_ROUTING2, 0, 0x76767676);
1400
1401 for (ch = 0; ch < 4; ch++) {
1402 /* Only high 16 bits matter */
1403 snd_ca0106_ptr_write(chip, CAPTURE_VOLUME1, ch, 0x30303030);
1404 snd_ca0106_ptr_write(chip, CAPTURE_VOLUME2, ch, 0x30303030);
1405 #if 0 /* Mute */
1406 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0x40404040);
1407 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0x40404040);
1408 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0xffffffff);
1409 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0xffffffff);
1410 #endif
1411 }
1412 if (chip->details->i2c_adc == 1) {
1413 /* Select MIC, Line in, TAD in, AUX in */
1414 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4);
1415 /* Default to CAPTURE_SOURCE to i2s in */
1416 if (!resume)
1417 chip->capture_source = 3;
1418 } else if (chip->details->ac97 == 1) {
1419 /* Default to AC97 in */
1420 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x444400e4);
1421 /* Default to CAPTURE_SOURCE to AC97 in */
1422 if (!resume)
1423 chip->capture_source = 4;
1424 } else {
1425 /* Select MIC, Line in, TAD in, AUX in */
1426 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4);
1427 /* Default to Set CAPTURE_SOURCE to i2s in */
1428 if (!resume)
1429 chip->capture_source = 3;
1430 }
1431
1432 if (chip->details->gpio_type == 2) {
1433 /* The SB0438 use GPIO differently. */
1434 /* FIXME: Still need to find out what the other GPIO bits do.
1435 * E.g. For digital spdif out.
1436 */
1437 outl(0x0, chip->port+GPIO);
1438 /* outl(0x00f0e000, chip->port+GPIO); */ /* Analog */
1439 outl(0x005f5301, chip->port+GPIO); /* Analog */
1440 } else if (chip->details->gpio_type == 1) {
1441 /* The SB0410 and SB0413 use GPIO differently. */
1442 /* FIXME: Still need to find out what the other GPIO bits do.
1443 * E.g. For digital spdif out.
1444 */
1445 outl(0x0, chip->port+GPIO);
1446 /* outl(0x00f0e000, chip->port+GPIO); */ /* Analog */
1447 outl(0x005f5301, chip->port+GPIO); /* Analog */
1448 } else {
1449 outl(0x0, chip->port+GPIO);
1450 outl(0x005f03a3, chip->port+GPIO); /* Analog */
1451 /* outl(0x005f02a2, chip->port+GPIO); */ /* SPDIF */
1452 }
1453 snd_ca0106_intr_enable(chip, 0x105); /* Win2000 uses 0x1e0 */
1454
1455 /* outl(HCFG_LOCKSOUNDCACHE|HCFG_AUDIOENABLE, chip->port+HCFG); */
1456 /* 0x1000 causes AC3 to fails. Maybe it effects 24 bit output. */
1457 /* outl(0x00001409, chip->port+HCFG); */
1458 /* outl(0x00000009, chip->port+HCFG); */
1459 /* AC97 2.0, Enable outputs. */
1460 outl(HCFG_AC97 | HCFG_AUDIOENABLE, chip->port+HCFG);
1461
1462 if (chip->details->i2c_adc == 1) {
1463 /* The SB0410 and SB0413 use I2C to control ADC. */
1464 int size, n;
1465
1466 size = ARRAY_SIZE(i2c_adc_init);
1467 /* snd_printk("I2C:array size=0x%x\n", size); */
1468 for (n = 0; n < size; n++)
1469 snd_ca0106_i2c_write(chip, i2c_adc_init[n][0],
1470 i2c_adc_init[n][1]);
1471 for (n = 0; n < 4; n++) {
1472 chip->i2c_capture_volume[n][0] = 0xcf;
1473 chip->i2c_capture_volume[n][1] = 0xcf;
1474 }
1475 chip->i2c_capture_source = 2; /* Line in */
1476 /* Enable Line-in capture. MIC in currently untested. */
1477 /* snd_ca0106_i2c_write(chip, ADC_MUX, ADC_MUX_LINEIN); */
1478 }
1479
1480 if (chip->details->spi_dac == 1) {
1481 /* The SB0570 use SPI to control DAC. */
1482 int size, n;
1483
1484 size = ARRAY_SIZE(spi_dac_init);
1485 for (n = 0; n < size; n++) {
1486 int reg = spi_dac_init[n] >> SPI_REG_SHIFT;
1487
1488 snd_ca0106_spi_write(chip, spi_dac_init[n]);
1489 if (reg < ARRAY_SIZE(chip->spi_dac_reg))
1490 chip->spi_dac_reg[reg] = spi_dac_init[n];
1491 }
1492 }
1493 }
1494
1495 static void ca0106_stop_chip(struct snd_ca0106 *chip)
1496 {
1497 /* disable interrupts */
1498 snd_ca0106_ptr_write(chip, BASIC_INTERRUPT, 0, 0);
1499 outl(0, chip->port + INTE);
1500 snd_ca0106_ptr_write(chip, EXTENDED_INT_MASK, 0, 0);
1501 udelay(1000);
1502 /* disable audio */
1503 /* outl(HCFG_LOCKSOUNDCACHE, chip->port + HCFG); */
1504 outl(0, chip->port + HCFG);
1505 /* FIXME: We need to stop and DMA transfers here.
1506 * But as I am not sure how yet, we cannot from the dma pages.
1507 * So we can fix: snd-malloc: Memory leak? pages not freed = 8
1508 */
1509 }
1510
1511 static int __devinit snd_ca0106_create(int dev, struct snd_card *card,
1512 struct pci_dev *pci,
1513 struct snd_ca0106 **rchip)
1514 {
1515 struct snd_ca0106 *chip;
1516 struct snd_ca0106_details *c;
1517 int err;
1518 static struct snd_device_ops ops = {
1519 .dev_free = snd_ca0106_dev_free,
1520 };
1521
1522 *rchip = NULL;
1523
1524 err = pci_enable_device(pci);
1525 if (err < 0)
1526 return err;
1527 if (pci_set_dma_mask(pci, DMA_32BIT_MASK) < 0 ||
1528 pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) < 0) {
1529 printk(KERN_ERR "error to set 32bit mask DMA\n");
1530 pci_disable_device(pci);
1531 return -ENXIO;
1532 }
1533
1534 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1535 if (chip == NULL) {
1536 pci_disable_device(pci);
1537 return -ENOMEM;
1538 }
1539
1540 chip->card = card;
1541 chip->pci = pci;
1542 chip->irq = -1;
1543
1544 spin_lock_init(&chip->emu_lock);
1545
1546 chip->port = pci_resource_start(pci, 0);
1547 chip->res_port = request_region(chip->port, 0x20, "snd_ca0106");
1548 if (!chip->res_port) {
1549 snd_ca0106_free(chip);
1550 printk(KERN_ERR "cannot allocate the port\n");
1551 return -EBUSY;
1552 }
1553
1554 if (request_irq(pci->irq, snd_ca0106_interrupt,
1555 IRQF_SHARED, "snd_ca0106", chip)) {
1556 snd_ca0106_free(chip);
1557 printk(KERN_ERR "cannot grab irq\n");
1558 return -EBUSY;
1559 }
1560 chip->irq = pci->irq;
1561
1562 /* This stores the periods table. */
1563 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1564 1024, &chip->buffer) < 0) {
1565 snd_ca0106_free(chip);
1566 return -ENOMEM;
1567 }
1568
1569 pci_set_master(pci);
1570 /* read serial */
1571 pci_read_config_dword(pci, PCI_SUBSYSTEM_VENDOR_ID, &chip->serial);
1572 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &chip->model);
1573 printk(KERN_INFO "snd-ca0106: Model %04x Rev %08x Serial %08x\n",
1574 chip->model, pci->revision, chip->serial);
1575 strcpy(card->driver, "CA0106");
1576 strcpy(card->shortname, "CA0106");
1577
1578 for (c = ca0106_chip_details; c->serial; c++) {
1579 if (subsystem[dev]) {
1580 if (c->serial == subsystem[dev])
1581 break;
1582 } else if (c->serial == chip->serial)
1583 break;
1584 }
1585 chip->details = c;
1586 if (subsystem[dev]) {
1587 printk(KERN_INFO "snd-ca0106: Sound card name=%s, "
1588 "subsystem=0x%x. Forced to subsystem=0x%x\n",
1589 c->name, chip->serial, subsystem[dev]);
1590 }
1591
1592 sprintf(card->longname, "%s at 0x%lx irq %i",
1593 c->name, chip->port, chip->irq);
1594
1595 ca0106_init_chip(chip, 0);
1596
1597 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
1598 if (err < 0) {
1599 snd_ca0106_free(chip);
1600 return err;
1601 }
1602 *rchip = chip;
1603 return 0;
1604 }
1605
1606
1607 static void ca0106_midi_interrupt_enable(struct snd_ca_midi *midi, int intr)
1608 {
1609 snd_ca0106_intr_enable((struct snd_ca0106 *)(midi->dev_id), intr);
1610 }
1611
1612 static void ca0106_midi_interrupt_disable(struct snd_ca_midi *midi, int intr)
1613 {
1614 snd_ca0106_intr_disable((struct snd_ca0106 *)(midi->dev_id), intr);
1615 }
1616
1617 static unsigned char ca0106_midi_read(struct snd_ca_midi *midi, int idx)
1618 {
1619 return (unsigned char)snd_ca0106_ptr_read((struct snd_ca0106 *)(midi->dev_id),
1620 midi->port + idx, 0);
1621 }
1622
1623 static void ca0106_midi_write(struct snd_ca_midi *midi, int data, int idx)
1624 {
1625 snd_ca0106_ptr_write((struct snd_ca0106 *)(midi->dev_id), midi->port + idx, 0, data);
1626 }
1627
1628 static struct snd_card *ca0106_dev_id_card(void *dev_id)
1629 {
1630 return ((struct snd_ca0106 *)dev_id)->card;
1631 }
1632
1633 static int ca0106_dev_id_port(void *dev_id)
1634 {
1635 return ((struct snd_ca0106 *)dev_id)->port;
1636 }
1637
1638 static int __devinit snd_ca0106_midi(struct snd_ca0106 *chip, unsigned int channel)
1639 {
1640 struct snd_ca_midi *midi;
1641 char *name;
1642 int err;
1643
1644 if (channel == CA0106_MIDI_CHAN_B) {
1645 name = "CA0106 MPU-401 (UART) B";
1646 midi = &chip->midi2;
1647 midi->tx_enable = INTE_MIDI_TX_B;
1648 midi->rx_enable = INTE_MIDI_RX_B;
1649 midi->ipr_tx = IPR_MIDI_TX_B;
1650 midi->ipr_rx = IPR_MIDI_RX_B;
1651 midi->port = MIDI_UART_B_DATA;
1652 } else {
1653 name = "CA0106 MPU-401 (UART)";
1654 midi = &chip->midi;
1655 midi->tx_enable = INTE_MIDI_TX_A;
1656 midi->rx_enable = INTE_MIDI_TX_B;
1657 midi->ipr_tx = IPR_MIDI_TX_A;
1658 midi->ipr_rx = IPR_MIDI_RX_A;
1659 midi->port = MIDI_UART_A_DATA;
1660 }
1661
1662 midi->reset = CA0106_MPU401_RESET;
1663 midi->enter_uart = CA0106_MPU401_ENTER_UART;
1664 midi->ack = CA0106_MPU401_ACK;
1665
1666 midi->input_avail = CA0106_MIDI_INPUT_AVAIL;
1667 midi->output_ready = CA0106_MIDI_OUTPUT_READY;
1668
1669 midi->channel = channel;
1670
1671 midi->interrupt_enable = ca0106_midi_interrupt_enable;
1672 midi->interrupt_disable = ca0106_midi_interrupt_disable;
1673
1674 midi->read = ca0106_midi_read;
1675 midi->write = ca0106_midi_write;
1676
1677 midi->get_dev_id_card = ca0106_dev_id_card;
1678 midi->get_dev_id_port = ca0106_dev_id_port;
1679
1680 midi->dev_id = chip;
1681
1682 if ((err = ca_midi_init(chip, midi, 0, name)) < 0)
1683 return err;
1684
1685 return 0;
1686 }
1687
1688
1689 static int __devinit snd_ca0106_probe(struct pci_dev *pci,
1690 const struct pci_device_id *pci_id)
1691 {
1692 static int dev;
1693 struct snd_card *card;
1694 struct snd_ca0106 *chip;
1695 int i, err;
1696
1697 if (dev >= SNDRV_CARDS)
1698 return -ENODEV;
1699 if (!enable[dev]) {
1700 dev++;
1701 return -ENOENT;
1702 }
1703
1704 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
1705 if (card == NULL)
1706 return -ENOMEM;
1707
1708 err = snd_ca0106_create(dev, card, pci, &chip);
1709 if (err < 0)
1710 goto error;
1711
1712 for (i = 0; i < 4; i++) {
1713 err = snd_ca0106_pcm(chip, i);
1714 if (err < 0)
1715 goto error;
1716 }
1717
1718 if (chip->details->ac97 == 1) {
1719 /* The SB0410 and SB0413 do not have an AC97 chip. */
1720 err = snd_ca0106_ac97(chip);
1721 if (err < 0)
1722 goto error;
1723 }
1724 err = snd_ca0106_mixer(chip);
1725 if (err < 0)
1726 goto error;
1727
1728 snd_printdd("ca0106: probe for MIDI channel A ...");
1729 err = snd_ca0106_midi(chip, CA0106_MIDI_CHAN_A);
1730 if (err < 0)
1731 goto error;
1732 snd_printdd(" done.\n");
1733
1734 #ifdef CONFIG_PROC_FS
1735 snd_ca0106_proc_init(chip);
1736 #endif
1737
1738 snd_card_set_dev(card, &pci->dev);
1739
1740 err = snd_card_register(card);
1741 if (err < 0)
1742 goto error;
1743
1744 pci_set_drvdata(pci, card);
1745 dev++;
1746 return 0;
1747
1748 error:
1749 snd_card_free(card);
1750 return err;
1751 }
1752
1753 static void __devexit snd_ca0106_remove(struct pci_dev *pci)
1754 {
1755 snd_card_free(pci_get_drvdata(pci));
1756 pci_set_drvdata(pci, NULL);
1757 }
1758
1759 #ifdef CONFIG_PM
1760 static int snd_ca0106_suspend(struct pci_dev *pci, pm_message_t state)
1761 {
1762 struct snd_card *card = pci_get_drvdata(pci);
1763 struct snd_ca0106 *chip = card->private_data;
1764 int i;
1765
1766 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1767 for (i = 0; i < 4; i++)
1768 snd_pcm_suspend_all(chip->pcm[i]);
1769 snd_ac97_suspend(chip->ac97);
1770 snd_ca0106_mixer_suspend(chip);
1771
1772 ca0106_stop_chip(chip);
1773
1774 pci_disable_device(pci);
1775 pci_save_state(pci);
1776 pci_set_power_state(pci, pci_choose_state(pci, state));
1777 return 0;
1778 }
1779
1780 static int snd_ca0106_resume(struct pci_dev *pci)
1781 {
1782 struct snd_card *card = pci_get_drvdata(pci);
1783 struct snd_ca0106 *chip = card->private_data;
1784 int i;
1785
1786 pci_set_power_state(pci, PCI_D0);
1787 pci_restore_state(pci);
1788
1789 if (pci_enable_device(pci) < 0) {
1790 snd_card_disconnect(card);
1791 return -EIO;
1792 }
1793
1794 pci_set_master(pci);
1795
1796 ca0106_init_chip(chip, 1);
1797
1798 snd_ac97_resume(chip->ac97);
1799 snd_ca0106_mixer_resume(chip);
1800 if (chip->details->spi_dac) {
1801 for (i = 0; i < ARRAY_SIZE(chip->spi_dac_reg); i++)
1802 snd_ca0106_spi_write(chip, chip->spi_dac_reg[i]);
1803 }
1804
1805 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1806 return 0;
1807 }
1808 #endif
1809
1810 // PCI IDs
1811 static struct pci_device_id snd_ca0106_ids[] = {
1812 { 0x1102, 0x0007, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* Audigy LS or Live 24bit */
1813 { 0, }
1814 };
1815 MODULE_DEVICE_TABLE(pci, snd_ca0106_ids);
1816
1817 // pci_driver definition
1818 static struct pci_driver driver = {
1819 .name = "CA0106",
1820 .id_table = snd_ca0106_ids,
1821 .probe = snd_ca0106_probe,
1822 .remove = __devexit_p(snd_ca0106_remove),
1823 #ifdef CONFIG_PM
1824 .suspend = snd_ca0106_suspend,
1825 .resume = snd_ca0106_resume,
1826 #endif
1827 };
1828
1829 // initialization of the module
1830 static int __init alsa_card_ca0106_init(void)
1831 {
1832 return pci_register_driver(&driver);
1833 }
1834
1835 // clean up the module
1836 static void __exit alsa_card_ca0106_exit(void)
1837 {
1838 pci_unregister_driver(&driver);
1839 }
1840
1841 module_init(alsa_card_ca0106_init)
1842 module_exit(alsa_card_ca0106_exit)
This page took 0.068626 seconds and 5 git commands to generate.