[ALSA] gusextreme: set codec_flag
[deliverable/linux.git] / sound / isa / cmi8330.c
CommitLineData
1da177e4
LT
1/*
2 * Driver for C-Media's CMI8330 soundcards.
3 * Copyright (c) by George Talusan <gstalusan@uwaterloo.ca>
4 * http://www.undergrad.math.uwaterloo.ca/~gstalusa
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22/*
23 * NOTES
24 *
25 * The extended registers contain mixer settings which are largely
26 * untapped for the time being.
27 *
28 * MPU401 and SPDIF are not supported yet. I don't have the hardware
29 * to aid in coding and testing, so I won't bother.
30 *
31 * To quickly load the module,
32 *
33 * modprobe -a snd-cmi8330 sbport=0x220 sbirq=5 sbdma8=1
34 * sbdma16=5 wssport=0x530 wssirq=11 wssdma=0
35 *
36 * This card has two mixers and two PCM devices. I've cheesed it such
37 * that recording and playback can be done through the same device.
38 * The driver "magically" routes the capturing to the AD1848 codec,
39 * and playback to the SB16 codec. This allows for full-duplex mode
40 * to some extent.
41 * The utilities in alsa-utils are aware of both devices, so passing
42 * the appropriate parameters to amixer and alsactl will give you
43 * full control over both mixers.
44 */
45
46#include <sound/driver.h>
47#include <linux/init.h>
acdcbc15
TI
48#include <linux/err.h>
49#include <linux/platform_device.h>
1da177e4
LT
50#include <linux/slab.h>
51#include <linux/pnp.h>
52#include <linux/moduleparam.h>
53#include <sound/core.h>
54#include <sound/ad1848.h>
55#include <sound/sb.h>
56#include <sound/initval.h>
57
58/*
59 */
60/* #define ENABLE_SB_MIXER */
61#define PLAYBACK_ON_SB
62
63/*
64 */
65MODULE_AUTHOR("George Talusan <gstalusan@uwaterloo.ca>");
66MODULE_DESCRIPTION("C-Media CMI8330");
67MODULE_LICENSE("GPL");
68MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8330,isapnp:{CMI0001,@@@0001,@X@0001}}}");
69
70static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
71static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
72static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP;
73#ifdef CONFIG_PNP
74static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
75#endif
76static long sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
77static int sbirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
78static int sbdma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
79static int sbdma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
80static long wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
81static int wssirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
82static int wssdma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
83
84module_param_array(index, int, NULL, 0444);
85MODULE_PARM_DESC(index, "Index value for CMI8330 soundcard.");
86module_param_array(id, charp, NULL, 0444);
87MODULE_PARM_DESC(id, "ID string for CMI8330 soundcard.");
88module_param_array(enable, bool, NULL, 0444);
89MODULE_PARM_DESC(enable, "Enable CMI8330 soundcard.");
90#ifdef CONFIG_PNP
91module_param_array(isapnp, bool, NULL, 0444);
92MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
93#endif
94
95module_param_array(sbport, long, NULL, 0444);
96MODULE_PARM_DESC(sbport, "Port # for CMI8330 SB driver.");
97module_param_array(sbirq, int, NULL, 0444);
98MODULE_PARM_DESC(sbirq, "IRQ # for CMI8330 SB driver.");
99module_param_array(sbdma8, int, NULL, 0444);
100MODULE_PARM_DESC(sbdma8, "DMA8 for CMI8330 SB driver.");
101module_param_array(sbdma16, int, NULL, 0444);
102MODULE_PARM_DESC(sbdma16, "DMA16 for CMI8330 SB driver.");
103
104module_param_array(wssport, long, NULL, 0444);
105MODULE_PARM_DESC(wssport, "Port # for CMI8330 WSS driver.");
106module_param_array(wssirq, int, NULL, 0444);
107MODULE_PARM_DESC(wssirq, "IRQ # for CMI8330 WSS driver.");
108module_param_array(wssdma, int, NULL, 0444);
109MODULE_PARM_DESC(wssdma, "DMA for CMI8330 WSS driver.");
110
f7a9275d 111static struct platform_device *platform_devices[SNDRV_CARDS];
59b1b34f 112#ifdef CONFIG_PNP
f7a9275d 113static int pnp_registered;
59b1b34f 114#endif
f7a9275d 115
1da177e4
LT
116#define CMI8330_RMUX3D 16
117#define CMI8330_MUTEMUX 17
118#define CMI8330_OUTPUTVOL 18
119#define CMI8330_MASTVOL 19
120#define CMI8330_LINVOL 20
121#define CMI8330_CDINVOL 21
122#define CMI8330_WAVVOL 22
123#define CMI8330_RECMUX 23
124#define CMI8330_WAVGAIN 24
125#define CMI8330_LINGAIN 25
126#define CMI8330_CDINGAIN 26
127
128static unsigned char snd_cmi8330_image[((CMI8330_CDINGAIN)-16) + 1] =
129{
130 0x40, /* 16 - recording mux (SB-mixer-enabled) */
131#ifdef ENABLE_SB_MIXER
132 0x40, /* 17 - mute mux (Mode2) */
133#else
134 0x0, /* 17 - mute mux */
135#endif
136 0x0, /* 18 - vol */
137 0x0, /* 19 - master volume */
138 0x0, /* 20 - line-in volume */
139 0x0, /* 21 - cd-in volume */
140 0x0, /* 22 - wave volume */
141 0x0, /* 23 - mute/rec mux */
142 0x0, /* 24 - wave rec gain */
143 0x0, /* 25 - line-in rec gain */
144 0x0 /* 26 - cd-in rec gain */
145};
146
e3561703 147typedef int (*snd_pcm_open_callback_t)(struct snd_pcm_substream *);
1da177e4
LT
148
149struct snd_cmi8330 {
150#ifdef CONFIG_PNP
151 struct pnp_dev *cap;
152 struct pnp_dev *play;
153#endif
e3561703
TI
154 struct snd_card *card;
155 struct snd_ad1848 *wss;
156 struct snd_sb *sb;
1da177e4 157
e3561703 158 struct snd_pcm *pcm;
1da177e4 159 struct snd_cmi8330_stream {
e3561703 160 struct snd_pcm_ops ops;
1da177e4
LT
161 snd_pcm_open_callback_t open;
162 void *private_data; /* sb or wss */
163 } streams[2];
164};
165
1da177e4
LT
166#ifdef CONFIG_PNP
167
168static struct pnp_card_device_id snd_cmi8330_pnpids[] = {
169 { .id = "CMI0001", .devs = { { "@@@0001" }, { "@X@0001" } } },
170 { .id = "" }
171};
172
173MODULE_DEVICE_TABLE(pnp_card, snd_cmi8330_pnpids);
174
175#endif
176
177
07d58ad0 178static struct ad1848_mix_elem snd_cmi8330_controls[] __devinitdata = {
1da177e4
LT
179AD1848_DOUBLE("Master Playback Volume", 0, CMI8330_MASTVOL, CMI8330_MASTVOL, 4, 0, 15, 0),
180AD1848_SINGLE("Loud Playback Switch", 0, CMI8330_MUTEMUX, 6, 1, 1),
181AD1848_DOUBLE("PCM Playback Switch", 0, AD1848_LEFT_OUTPUT, AD1848_RIGHT_OUTPUT, 7, 7, 1, 1),
182AD1848_DOUBLE("PCM Playback Volume", 0, AD1848_LEFT_OUTPUT, AD1848_RIGHT_OUTPUT, 0, 0, 63, 1),
183AD1848_DOUBLE("Line Playback Switch", 0, CMI8330_MUTEMUX, CMI8330_MUTEMUX, 4, 3, 1, 0),
184AD1848_DOUBLE("Line Playback Volume", 0, CMI8330_LINVOL, CMI8330_LINVOL, 4, 0, 15, 0),
185AD1848_DOUBLE("Line Capture Switch", 0, CMI8330_RMUX3D, CMI8330_RMUX3D, 2, 1, 1, 0),
186AD1848_DOUBLE("Line Capture Volume", 0, CMI8330_LINGAIN, CMI8330_LINGAIN, 4, 0, 15, 0),
187AD1848_DOUBLE("CD Playback Switch", 0, CMI8330_MUTEMUX, CMI8330_MUTEMUX, 2, 1, 1, 0),
188AD1848_DOUBLE("CD Capture Switch", 0, CMI8330_RMUX3D, CMI8330_RMUX3D, 4, 3, 1, 0),
189AD1848_DOUBLE("CD Playback Volume", 0, CMI8330_CDINVOL, CMI8330_CDINVOL, 4, 0, 15, 0),
190AD1848_DOUBLE("CD Capture Volume", 0, CMI8330_CDINGAIN, CMI8330_CDINGAIN, 4, 0, 15, 0),
191AD1848_SINGLE("Mic Playback Switch", 0, CMI8330_MUTEMUX, 0, 1, 0),
192AD1848_SINGLE("Mic Playback Volume", 0, CMI8330_OUTPUTVOL, 0, 7, 0),
193AD1848_SINGLE("Mic Capture Switch", 0, CMI8330_RMUX3D, 0, 1, 0),
194AD1848_SINGLE("Mic Capture Volume", 0, CMI8330_OUTPUTVOL, 5, 7, 0),
195AD1848_DOUBLE("Wavetable Playback Switch", 0, CMI8330_RECMUX, CMI8330_RECMUX, 1, 0, 1, 0),
196AD1848_DOUBLE("Wavetable Playback Volume", 0, CMI8330_WAVVOL, CMI8330_WAVVOL, 4, 0, 15, 0),
197AD1848_DOUBLE("Wavetable Capture Switch", 0, CMI8330_RECMUX, CMI8330_RECMUX, 5, 4, 1, 0),
198AD1848_DOUBLE("Wavetable Capture Volume", 0, CMI8330_WAVGAIN, CMI8330_WAVGAIN, 4, 0, 15, 0),
199AD1848_SINGLE("3D Control - Switch", 0, CMI8330_RMUX3D, 5, 1, 1),
200AD1848_SINGLE("PC Speaker Playback Volume", 0, CMI8330_OUTPUTVOL, 3, 3, 0),
201AD1848_SINGLE("FM Playback Switch", 0, CMI8330_RECMUX, 3, 1, 1),
10e8d78a
CL
202AD1848_SINGLE(SNDRV_CTL_NAME_IEC958("Input ",CAPTURE,SWITCH), 0, CMI8330_RMUX3D, 7, 1, 1),
203AD1848_SINGLE(SNDRV_CTL_NAME_IEC958("Input ",PLAYBACK,SWITCH), 0, CMI8330_MUTEMUX, 7, 1, 1),
1da177e4
LT
204};
205
206#ifdef ENABLE_SB_MIXER
07d58ad0 207static struct sbmix_elem cmi8330_sb_mixers[] __devinitdata = {
1da177e4
LT
208SB_DOUBLE("SB Master Playback Volume", SB_DSP4_MASTER_DEV, (SB_DSP4_MASTER_DEV + 1), 3, 3, 31),
209SB_DOUBLE("Tone Control - Bass", SB_DSP4_BASS_DEV, (SB_DSP4_BASS_DEV + 1), 4, 4, 15),
210SB_DOUBLE("Tone Control - Treble", SB_DSP4_TREBLE_DEV, (SB_DSP4_TREBLE_DEV + 1), 4, 4, 15),
211SB_DOUBLE("SB PCM Playback Volume", SB_DSP4_PCM_DEV, (SB_DSP4_PCM_DEV + 1), 3, 3, 31),
212SB_DOUBLE("SB Synth Playback Volume", SB_DSP4_SYNTH_DEV, (SB_DSP4_SYNTH_DEV + 1), 3, 3, 31),
213SB_DOUBLE("SB CD Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 2, 1, 1),
214SB_DOUBLE("SB CD Playback Volume", SB_DSP4_CD_DEV, (SB_DSP4_CD_DEV + 1), 3, 3, 31),
215SB_DOUBLE("SB Line Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 4, 3, 1),
216SB_DOUBLE("SB Line Playback Volume", SB_DSP4_LINE_DEV, (SB_DSP4_LINE_DEV + 1), 3, 3, 31),
217SB_SINGLE("SB Mic Playback Switch", SB_DSP4_OUTPUT_SW, 0, 1),
218SB_SINGLE("SB Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
219SB_SINGLE("SB PC Speaker Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
220SB_DOUBLE("SB Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3),
221SB_DOUBLE("SB Playback Volume", SB_DSP4_OGAIN_DEV, (SB_DSP4_OGAIN_DEV + 1), 6, 6, 3),
222SB_SINGLE("SB Mic Auto Gain", SB_DSP4_MIC_AGC, 0, 1),
223};
224
07d58ad0 225static unsigned char cmi8330_sb_init_values[][2] __devinitdata = {
1da177e4
LT
226 { SB_DSP4_MASTER_DEV + 0, 0 },
227 { SB_DSP4_MASTER_DEV + 1, 0 },
228 { SB_DSP4_PCM_DEV + 0, 0 },
229 { SB_DSP4_PCM_DEV + 1, 0 },
230 { SB_DSP4_SYNTH_DEV + 0, 0 },
231 { SB_DSP4_SYNTH_DEV + 1, 0 },
232 { SB_DSP4_INPUT_LEFT, 0 },
233 { SB_DSP4_INPUT_RIGHT, 0 },
234 { SB_DSP4_OUTPUT_SW, 0 },
235 { SB_DSP4_SPEAKER_DEV, 0 },
236};
237
238
e3561703 239static int __devinit cmi8330_add_sb_mixers(struct snd_sb *chip)
1da177e4
LT
240{
241 int idx, err;
242 unsigned long flags;
243
244 spin_lock_irqsave(&chip->mixer_lock, flags);
245 snd_sbmixer_write(chip, 0x00, 0x00); /* mixer reset */
246 spin_unlock_irqrestore(&chip->mixer_lock, flags);
247
248 /* mute and zero volume channels */
249 for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_init_values); idx++) {
250 spin_lock_irqsave(&chip->mixer_lock, flags);
251 snd_sbmixer_write(chip, cmi8330_sb_init_values[idx][0],
252 cmi8330_sb_init_values[idx][1]);
253 spin_unlock_irqrestore(&chip->mixer_lock, flags);
254 }
255
256 for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_mixers); idx++) {
257 if ((err = snd_sbmixer_add_ctl_elem(chip, &cmi8330_sb_mixers[idx])) < 0)
258 return err;
259 }
260 return 0;
261}
262#endif
263
e3561703 264static int __devinit snd_cmi8330_mixer(struct snd_card *card, struct snd_cmi8330 *acard)
1da177e4
LT
265{
266 unsigned int idx;
267 int err;
268
269 strcpy(card->mixername, "CMI8330/C3D");
270
271 for (idx = 0; idx < ARRAY_SIZE(snd_cmi8330_controls); idx++) {
272 if ((err = snd_ad1848_add_ctl_elem(acard->wss, &snd_cmi8330_controls[idx])) < 0)
273 return err;
274 }
275
276#ifdef ENABLE_SB_MIXER
277 if ((err = cmi8330_add_sb_mixers(acard->sb)) < 0)
278 return err;
279#endif
280 return 0;
281}
282
283#ifdef CONFIG_PNP
284static int __devinit snd_cmi8330_pnp(int dev, struct snd_cmi8330 *acard,
285 struct pnp_card_link *card,
286 const struct pnp_card_device_id *id)
287{
288 struct pnp_dev *pdev;
289 struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
290 int err;
291
fbdbb220
AC
292 if (!cfg)
293 return -ENOMEM;
1da177e4
LT
294 acard->cap = pnp_request_card_device(card, id->devs[0].id, NULL);
295 if (acard->cap == NULL) {
296 kfree(cfg);
297 return -EBUSY;
298 }
299 acard->play = pnp_request_card_device(card, id->devs[1].id, NULL);
300 if (acard->play == NULL) {
301 kfree(cfg);
302 return -EBUSY;
303 }
304
305 pdev = acard->cap;
306 pnp_init_resource_table(cfg);
307 /* allocate AD1848 resources */
308 if (wssport[dev] != SNDRV_AUTO_PORT)
309 pnp_resource_change(&cfg->port_resource[0], wssport[dev], 8);
310 if (wssdma[dev] != SNDRV_AUTO_DMA)
311 pnp_resource_change(&cfg->dma_resource[0], wssdma[dev], 1);
312 if (wssirq[dev] != SNDRV_AUTO_IRQ)
313 pnp_resource_change(&cfg->irq_resource[0], wssirq[dev], 1);
314
315 err = pnp_manual_config_dev(pdev, cfg, 0);
316 if (err < 0)
317 snd_printk(KERN_ERR "CMI8330/C3D (AD1848) PnP manual resources are invalid, using auto config\n");
318 err = pnp_activate_dev(pdev);
319 if (err < 0) {
320 snd_printk(KERN_ERR "CMI8330/C3D (AD1848) PnP configure failure\n");
321 kfree(cfg);
322 return -EBUSY;
323 }
324 wssport[dev] = pnp_port_start(pdev, 0);
325 wssdma[dev] = pnp_dma(pdev, 0);
326 wssirq[dev] = pnp_irq(pdev, 0);
327
328 /* allocate SB16 resources */
329 pdev = acard->play;
330 pnp_init_resource_table(cfg);
331 if (sbport[dev] != SNDRV_AUTO_PORT)
332 pnp_resource_change(&cfg->port_resource[0], sbport[dev], 16);
333 if (sbdma8[dev] != SNDRV_AUTO_DMA)
334 pnp_resource_change(&cfg->dma_resource[0], sbdma8[dev], 1);
335 if (sbdma16[dev] != SNDRV_AUTO_DMA)
336 pnp_resource_change(&cfg->dma_resource[1], sbdma16[dev], 1);
337 if (sbirq[dev] != SNDRV_AUTO_IRQ)
338 pnp_resource_change(&cfg->irq_resource[0], sbirq[dev], 1);
339
340 err = pnp_manual_config_dev(pdev, cfg, 0);
341 if (err < 0)
342 snd_printk(KERN_ERR "CMI8330/C3D (SB16) PnP manual resources are invalid, using auto config\n");
343 err = pnp_activate_dev(pdev);
344 if (err < 0) {
345 snd_printk(KERN_ERR "CMI8330/C3D (SB16) PnP configure failure\n");
346 kfree(cfg);
347 return -EBUSY;
348 }
349 sbport[dev] = pnp_port_start(pdev, 0);
350 sbdma8[dev] = pnp_dma(pdev, 0);
351 sbdma16[dev] = pnp_dma(pdev, 1);
352 sbirq[dev] = pnp_irq(pdev, 0);
353
354 kfree(cfg);
355 return 0;
356}
357#endif
358
359/*
360 * PCM interface
361 *
362 * since we call the different chip interfaces for playback and capture
363 * directions, we need a trick.
364 *
365 * - copy the ops for each direction into a local record.
366 * - replace the open callback with the new one, which replaces the
367 * substream->private_data with the corresponding chip instance
368 * and calls again the original open callback of the chip.
369 *
370 */
371
372#ifdef PLAYBACK_ON_SB
373#define CMI_SB_STREAM SNDRV_PCM_STREAM_PLAYBACK
374#define CMI_AD_STREAM SNDRV_PCM_STREAM_CAPTURE
375#else
376#define CMI_SB_STREAM SNDRV_PCM_STREAM_CAPTURE
377#define CMI_AD_STREAM SNDRV_PCM_STREAM_PLAYBACK
378#endif
379
e3561703 380static int snd_cmi8330_playback_open(struct snd_pcm_substream *substream)
1da177e4
LT
381{
382 struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream);
383
384 /* replace the private_data and call the original open callback */
385 substream->private_data = chip->streams[SNDRV_PCM_STREAM_PLAYBACK].private_data;
386 return chip->streams[SNDRV_PCM_STREAM_PLAYBACK].open(substream);
387}
388
e3561703 389static int snd_cmi8330_capture_open(struct snd_pcm_substream *substream)
1da177e4
LT
390{
391 struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream);
392
393 /* replace the private_data and call the original open callback */
394 substream->private_data = chip->streams[SNDRV_PCM_STREAM_CAPTURE].private_data;
395 return chip->streams[SNDRV_PCM_STREAM_CAPTURE].open(substream);
396}
397
e3561703 398static int __devinit snd_cmi8330_pcm(struct snd_card *card, struct snd_cmi8330 *chip)
1da177e4 399{
e3561703
TI
400 struct snd_pcm *pcm;
401 const struct snd_pcm_ops *ops;
1da177e4
LT
402 int err;
403 static snd_pcm_open_callback_t cmi_open_callbacks[2] = {
404 snd_cmi8330_playback_open,
405 snd_cmi8330_capture_open
406 };
407
408 if ((err = snd_pcm_new(card, "CMI8330", 0, 1, 1, &pcm)) < 0)
409 return err;
410 strcpy(pcm->name, "CMI8330");
411 pcm->private_data = chip;
1da177e4
LT
412
413 /* SB16 */
414 ops = snd_sb16dsp_get_pcm_ops(CMI_SB_STREAM);
415 chip->streams[CMI_SB_STREAM].ops = *ops;
416 chip->streams[CMI_SB_STREAM].open = ops->open;
417 chip->streams[CMI_SB_STREAM].ops.open = cmi_open_callbacks[CMI_SB_STREAM];
418 chip->streams[CMI_SB_STREAM].private_data = chip->sb;
419
420 /* AD1848 */
421 ops = snd_ad1848_get_pcm_ops(CMI_AD_STREAM);
422 chip->streams[CMI_AD_STREAM].ops = *ops;
423 chip->streams[CMI_AD_STREAM].open = ops->open;
424 chip->streams[CMI_AD_STREAM].ops.open = cmi_open_callbacks[CMI_AD_STREAM];
425 chip->streams[CMI_AD_STREAM].private_data = chip->wss;
426
427 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &chip->streams[SNDRV_PCM_STREAM_PLAYBACK].ops);
428 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &chip->streams[SNDRV_PCM_STREAM_CAPTURE].ops);
429
430 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
431 snd_dma_isa_data(),
432 64*1024, 128*1024);
433 chip->pcm = pcm;
434
435 return 0;
436}
437
438
acdcbc15
TI
439#ifdef CONFIG_PM
440static int snd_cmi8330_suspend(struct snd_card *card)
441{
442 struct snd_cmi8330 *acard = card->private_data;
443
444 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
445 snd_pcm_suspend_all(acard->pcm);
446 acard->wss->suspend(acard->wss);
447 snd_sbmixer_suspend(acard->sb);
448 return 0;
449}
450
451static int snd_cmi8330_resume(struct snd_card *card)
452{
453 struct snd_cmi8330 *acard = card->private_data;
454
455 snd_sbdsp_reset(acard->sb);
456 snd_sbmixer_suspend(acard->sb);
457 acard->wss->resume(acard->wss);
458 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
459 return 0;
460}
461#endif
462
463
1da177e4
LT
464/*
465 */
466
43bcd973
TI
467#ifdef CONFIG_PNP
468#define is_isapnp_selected(dev) isapnp[dev]
469#else
470#define is_isapnp_selected(dev) 0
471#endif
472
473#define PFX "cmi8330: "
474
acdcbc15 475static struct snd_card *snd_cmi8330_card_new(int dev)
1da177e4 476{
e3561703 477 struct snd_card *card;
1da177e4 478 struct snd_cmi8330 *acard;
43bcd973 479
1da177e4
LT
480 card = snd_card_new(index[dev], id[dev], THIS_MODULE,
481 sizeof(struct snd_cmi8330));
482 if (card == NULL) {
43bcd973 483 snd_printk(KERN_ERR PFX "could not get a new card\n");
acdcbc15 484 return NULL;
1da177e4 485 }
acdcbc15 486 acard = card->private_data;
1da177e4 487 acard->card = card;
acdcbc15
TI
488 return card;
489}
1da177e4 490
acdcbc15
TI
491static int __devinit snd_cmi8330_probe(struct snd_card *card, int dev)
492{
493 struct snd_cmi8330 *acard;
494 int i, err;
1da177e4 495
acdcbc15 496 acard = card->private_data;
1da177e4
LT
497 if ((err = snd_ad1848_create(card,
498 wssport[dev] + 4,
499 wssirq[dev],
500 wssdma[dev],
501 AD1848_HW_DETECT,
502 &acard->wss)) < 0) {
43bcd973 503 snd_printk(KERN_ERR PFX "(AD1848) device busy??\n");
acdcbc15 504 return err;
1da177e4
LT
505 }
506 if (acard->wss->hardware != AD1848_HW_CMI8330) {
43bcd973 507 snd_printk(KERN_ERR PFX "(AD1848) not found during probe\n");
acdcbc15 508 return -ENODEV;
1da177e4
LT
509 }
510
511 if ((err = snd_sbdsp_create(card, sbport[dev],
512 sbirq[dev],
513 snd_sb16dsp_interrupt,
514 sbdma8[dev],
515 sbdma16[dev],
516 SB_HW_AUTO, &acard->sb)) < 0) {
43bcd973 517 snd_printk(KERN_ERR PFX "(SB16) device busy??\n");
acdcbc15 518 return err;
1da177e4
LT
519 }
520 if (acard->sb->hardware != SB_HW_16) {
43bcd973 521 snd_printk(KERN_ERR PFX "(SB16) not found during probe\n");
acdcbc15 522 return err;
1da177e4
LT
523 }
524
1da177e4
LT
525 snd_ad1848_out(acard->wss, AD1848_MISC_INFO, 0x40); /* switch on MODE2 */
526 for (i = CMI8330_RMUX3D; i <= CMI8330_CDINGAIN; i++)
527 snd_ad1848_out(acard->wss, i, snd_cmi8330_image[i - CMI8330_RMUX3D]);
1da177e4
LT
528
529 if ((err = snd_cmi8330_mixer(card, acard)) < 0) {
43bcd973 530 snd_printk(KERN_ERR PFX "failed to create mixers\n");
acdcbc15 531 return err;
1da177e4
LT
532 }
533
534 if ((err = snd_cmi8330_pcm(card, acard)) < 0) {
43bcd973 535 snd_printk(KERN_ERR PFX "failed to create pcms\n");
acdcbc15 536 return err;
1da177e4
LT
537 }
538
539 strcpy(card->driver, "CMI8330/C3D");
540 strcpy(card->shortname, "C-Media CMI8330/C3D");
541 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
542 card->shortname,
543 acard->wss->port,
544 wssirq[dev],
545 wssdma[dev]);
546
acdcbc15
TI
547 return snd_card_register(card);
548}
549
07d58ad0 550static int __devinit snd_cmi8330_nonpnp_probe(struct platform_device *pdev)
acdcbc15
TI
551{
552 struct snd_card *card;
553 int err;
554 int dev = pdev->id;
43bcd973 555
acdcbc15
TI
556 if (wssport[dev] == SNDRV_AUTO_PORT) {
557 snd_printk(KERN_ERR PFX "specify wssport\n");
558 return -EINVAL;
559 }
560 if (sbport[dev] == SNDRV_AUTO_PORT) {
561 snd_printk(KERN_ERR PFX "specify sbport\n");
562 return -EINVAL;
563 }
1da177e4 564
acdcbc15
TI
565 card = snd_cmi8330_card_new(dev);
566 if (! card)
567 return -ENOMEM;
568 snd_card_set_dev(card, &pdev->dev);
569 if ((err = snd_cmi8330_probe(card, dev)) < 0) {
570 snd_card_free(card);
571 return err;
572 }
573 platform_set_drvdata(pdev, card);
1da177e4 574 return 0;
acdcbc15
TI
575}
576
788c6043 577static int __devexit snd_cmi8330_nonpnp_remove(struct platform_device *devptr)
acdcbc15
TI
578{
579 snd_card_free(platform_get_drvdata(devptr));
580 platform_set_drvdata(devptr, NULL);
581 return 0;
582}
43bcd973 583
acdcbc15
TI
584#ifdef CONFIG_PM
585static int snd_cmi8330_nonpnp_suspend(struct platform_device *dev, pm_message_t state)
586{
587 return snd_cmi8330_suspend(platform_get_drvdata(dev));
1da177e4
LT
588}
589
acdcbc15
TI
590static int snd_cmi8330_nonpnp_resume(struct platform_device *dev)
591{
592 return snd_cmi8330_resume(platform_get_drvdata(dev));
593}
594#endif
595
596#define CMI8330_DRIVER "snd_cmi8330"
597
598static struct platform_driver snd_cmi8330_driver = {
599 .probe = snd_cmi8330_nonpnp_probe,
788c6043 600 .remove = __devexit_p(snd_cmi8330_nonpnp_remove),
acdcbc15
TI
601#ifdef CONFIG_PM
602 .suspend = snd_cmi8330_nonpnp_suspend,
603 .resume = snd_cmi8330_nonpnp_resume,
604#endif
605 .driver = {
606 .name = CMI8330_DRIVER
607 },
608};
609
610
1da177e4 611#ifdef CONFIG_PNP
07d58ad0
BH
612static unsigned int __devinitdata cmi8330_pnp_devices;
613
acdcbc15
TI
614static int __devinit snd_cmi8330_pnp_detect(struct pnp_card_link *pcard,
615 const struct pnp_card_device_id *pid)
1da177e4
LT
616{
617 static int dev;
acdcbc15 618 struct snd_card *card;
1da177e4
LT
619 int res;
620
621 for ( ; dev < SNDRV_CARDS; dev++) {
acdcbc15
TI
622 if (enable[dev] && isapnp[dev])
623 break;
624 }
625 if (dev >= SNDRV_CARDS)
626 return -ENODEV;
627
628 card = snd_cmi8330_card_new(dev);
629 if (! card)
630 return -ENOMEM;
631 if ((res = snd_cmi8330_pnp(dev, card->private_data, pcard, pid)) < 0) {
632 snd_printk(KERN_ERR PFX "PnP detection failed\n");
633 snd_card_free(card);
634 return res;
635 }
636 snd_card_set_dev(card, &pcard->card->dev);
637 if ((res = snd_cmi8330_probe(card, dev)) < 0) {
638 snd_card_free(card);
639 return res;
1da177e4 640 }
acdcbc15
TI
641 pnp_set_card_drvdata(pcard, card);
642 dev++;
07d58ad0 643 cmi8330_pnp_devices++;
acdcbc15 644 return 0;
1da177e4
LT
645}
646
647static void __devexit snd_cmi8330_pnp_remove(struct pnp_card_link * pcard)
648{
acdcbc15
TI
649 snd_card_free(pnp_get_card_drvdata(pcard));
650 pnp_set_card_drvdata(pcard, NULL);
651}
1da177e4 652
acdcbc15
TI
653#ifdef CONFIG_PM
654static int snd_cmi8330_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state)
655{
656 return snd_cmi8330_suspend(pnp_get_card_drvdata(pcard));
1da177e4
LT
657}
658
acdcbc15
TI
659static int snd_cmi8330_pnp_resume(struct pnp_card_link *pcard)
660{
661 return snd_cmi8330_resume(pnp_get_card_drvdata(pcard));
662}
663#endif
664
1da177e4
LT
665static struct pnp_card_driver cmi8330_pnpc_driver = {
666 .flags = PNP_DRIVER_RES_DISABLE,
667 .name = "cmi8330",
668 .id_table = snd_cmi8330_pnpids,
669 .probe = snd_cmi8330_pnp_detect,
670 .remove = __devexit_p(snd_cmi8330_pnp_remove),
acdcbc15
TI
671#ifdef CONFIG_PM
672 .suspend = snd_cmi8330_pnp_suspend,
673 .resume = snd_cmi8330_pnp_resume,
674#endif
1da177e4
LT
675};
676#endif /* CONFIG_PNP */
677
f7a9275d
CL
678static void __init_or_module snd_cmi8330_unregister_all(void)
679{
680 int i;
681
59b1b34f 682#ifdef CONFIG_PNP
f7a9275d
CL
683 if (pnp_registered)
684 pnp_unregister_card_driver(&cmi8330_pnpc_driver);
59b1b34f 685#endif
f7a9275d
CL
686 for (i = 0; i < ARRAY_SIZE(platform_devices); ++i)
687 platform_device_unregister(platform_devices[i]);
688 platform_driver_unregister(&snd_cmi8330_driver);
689}
690
1da177e4
LT
691static int __init alsa_card_cmi8330_init(void)
692{
acdcbc15 693 int i, err, cards = 0;
1da177e4 694
acdcbc15
TI
695 if ((err = platform_driver_register(&snd_cmi8330_driver)) < 0)
696 return err;
697
82756b27 698 for (i = 0; i < SNDRV_CARDS; i++) {
acdcbc15 699 struct platform_device *device;
82756b27 700 if (! enable[i] || is_isapnp_selected(i))
1da177e4 701 continue;
acdcbc15
TI
702 device = platform_device_register_simple(CMI8330_DRIVER,
703 i, NULL, 0);
d0ac642d
RH
704 if (IS_ERR(device))
705 continue;
dcccdd93
RH
706 if (!platform_get_drvdata(device)) {
707 platform_device_unregister(device);
708 continue;
709 }
f7a9275d 710 platform_devices[i] = device;
acdcbc15 711 cards++;
1da177e4 712 }
acdcbc15 713
59b1b34f 714#ifdef CONFIG_PNP
acdcbc15 715 err = pnp_register_card_driver(&cmi8330_pnpc_driver);
07d58ad0 716 if (!err) {
f7a9275d 717 pnp_registered = 1;
07d58ad0 718 cards += cmi8330_pnp_devices;
f7a9275d 719 }
59b1b34f 720#endif
1da177e4
LT
721
722 if (!cards) {
1da177e4
LT
723#ifdef MODULE
724 snd_printk(KERN_ERR "CMI8330 not found or device busy\n");
725#endif
d0ac642d
RH
726 snd_cmi8330_unregister_all();
727 return -ENODEV;
1da177e4
LT
728 }
729 return 0;
730}
731
732static void __exit alsa_card_cmi8330_exit(void)
733{
f7a9275d 734 snd_cmi8330_unregister_all();
1da177e4
LT
735}
736
737module_init(alsa_card_cmi8330_init)
738module_exit(alsa_card_cmi8330_exit)
This page took 0.238429 seconds and 5 git commands to generate.