2 * Driver for audio on multifunction CS5535/6 companion device
3 * Copyright (C) Jaya Kumar
5 * Based on Jaroslav Kysela and Takashi Iwai's examples.
6 * This work was sponsored by CIS(M) Sdn Bhd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <sound/driver.h>
25 #include <linux/delay.h>
26 #include <linux/interrupt.h>
27 #include <linux/init.h>
28 #include <linux/pci.h>
29 #include <linux/slab.h>
30 #include <linux/moduleparam.h>
32 #include <sound/core.h>
33 #include <sound/control.h>
34 #include <sound/pcm.h>
35 #include <sound/rawmidi.h>
36 #include <sound/ac97_codec.h>
37 #include <sound/initval.h>
38 #include <sound/asoundef.h>
39 #include "cs5535audio.h"
41 #define DRIVER_NAME "cs5535audio"
43 static char *ac97_quirk;
44 module_param(ac97_quirk, charp, 0444);
45 MODULE_PARM_DESC(ac97_quirk, "AC'97 board specific workarounds.");
47 static struct ac97_quirk ac97_quirks[] __devinitdata = {
48 #if 0 /* Not yet confirmed if all 5536 boards are HP only */
50 .subvendor = PCI_VENDOR_ID_AMD,
51 .subdevice = PCI_DEVICE_ID_AMD_CS5536_AUDIO,
53 .type = AC97_TUNE_HP_ONLY
59 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
60 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
61 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
63 static struct pci_device_id snd_cs5535audio_ids[] __devinitdata = {
64 { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_AUDIO) },
65 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_AUDIO) },
69 MODULE_DEVICE_TABLE(pci, snd_cs5535audio_ids);
71 static void wait_till_cmd_acked(struct cs5535audio *cs5535au, unsigned long timeout)
75 tmp = cs_readl(cs5535au, ACC_CODEC_CNTL);
81 snd_printk(KERN_ERR "Failure writing to cs5535 codec\n");
84 static unsigned short snd_cs5535audio_codec_read(struct cs5535audio *cs5535au,
91 regdata = ((unsigned int) reg) << 24;
92 regdata |= ACC_CODEC_CNTL_RD_CMD;
95 cs_writel(cs5535au, ACC_CODEC_CNTL, regdata);
96 wait_till_cmd_acked(cs5535au, 50);
100 val = cs_readl(cs5535au, ACC_CODEC_STATUS);
101 if ((val & STS_NEW) && reg == (val >> 24))
106 snd_printk(KERN_ERR "Failure reading cs5535 codec\n");
108 return (unsigned short) val;
111 static void snd_cs5535audio_codec_write(struct cs5535audio *cs5535au,
112 unsigned short reg, unsigned short val)
114 unsigned int regdata;
116 regdata = ((unsigned int) reg) << 24;
120 regdata &= ACC_CODEC_CNTL_WR_CMD;
122 cs_writel(cs5535au, ACC_CODEC_CNTL, regdata);
123 wait_till_cmd_acked(cs5535au, 50);
126 static void snd_cs5535audio_ac97_codec_write(struct snd_ac97 *ac97,
127 unsigned short reg, unsigned short val)
129 struct cs5535audio *cs5535au = ac97->private_data;
130 snd_cs5535audio_codec_write(cs5535au, reg, val);
133 static unsigned short snd_cs5535audio_ac97_codec_read(struct snd_ac97 *ac97,
136 struct cs5535audio *cs5535au = ac97->private_data;
137 return snd_cs5535audio_codec_read(cs5535au, reg);
140 static int snd_cs5535audio_mixer(struct cs5535audio *cs5535au)
142 struct snd_card *card = cs5535au->card;
143 struct snd_ac97_bus *pbus;
144 struct snd_ac97_template ac97;
146 static struct snd_ac97_bus_ops ops = {
147 .write = snd_cs5535audio_ac97_codec_write,
148 .read = snd_cs5535audio_ac97_codec_read,
151 if ((err = snd_ac97_bus(card, 0, &ops, NULL, &pbus)) < 0)
154 memset(&ac97, 0, sizeof(ac97));
155 ac97.scaps = AC97_SCAP_AUDIO|AC97_SCAP_SKIP_MODEM;
156 ac97.private_data = cs5535au;
157 ac97.pci = cs5535au->pci;
159 if ((err = snd_ac97_mixer(pbus, &ac97, &cs5535au->ac97)) < 0) {
160 snd_printk(KERN_ERR "mixer failed\n");
164 snd_ac97_tune_hardware(cs5535au->ac97, ac97_quirks, ac97_quirk);
169 static void process_bm0_irq(struct cs5535audio *cs5535au)
172 spin_lock(&cs5535au->reg_lock);
173 bm_stat = cs_readb(cs5535au, ACC_BM0_STATUS);
174 spin_unlock(&cs5535au->reg_lock);
176 struct cs5535audio_dma *dma;
177 dma = cs5535au->playback_substream->runtime->private_data;
178 snd_pcm_period_elapsed(cs5535au->playback_substream);
180 snd_printk(KERN_ERR "unexpected bm0 irq src, bm_stat=%x\n",
185 static void process_bm1_irq(struct cs5535audio *cs5535au)
188 spin_lock(&cs5535au->reg_lock);
189 bm_stat = cs_readb(cs5535au, ACC_BM1_STATUS);
190 spin_unlock(&cs5535au->reg_lock);
192 struct cs5535audio_dma *dma;
193 dma = cs5535au->capture_substream->runtime->private_data;
194 snd_pcm_period_elapsed(cs5535au->capture_substream);
198 static irqreturn_t snd_cs5535audio_interrupt(int irq, void *dev_id,
199 struct pt_regs *regs)
204 struct cs5535audio *cs5535au = dev_id;
206 if (cs5535au == NULL)
209 acc_irq_stat = cs_readw(cs5535au, ACC_IRQ_STATUS);
213 for (count = 0; count < 10; count++) {
214 if (acc_irq_stat & (1 << count)) {
217 cs_readl(cs5535au, ACC_GPIO_STATUS);
220 cs_readl(cs5535au, ACC_GPIO_STATUS);
223 process_bm0_irq(cs5535au);
226 process_bm1_irq(cs5535au);
229 bm_stat = cs_readb(cs5535au, ACC_BM2_STATUS);
232 bm_stat = cs_readb(cs5535au, ACC_BM3_STATUS);
235 bm_stat = cs_readb(cs5535au, ACC_BM4_STATUS);
238 bm_stat = cs_readb(cs5535au, ACC_BM5_STATUS);
241 bm_stat = cs_readb(cs5535au, ACC_BM6_STATUS);
244 bm_stat = cs_readb(cs5535au, ACC_BM7_STATUS);
247 snd_printk(KERN_ERR "Unexpected irq src\n");
255 static int snd_cs5535audio_free(struct cs5535audio *cs5535au)
257 synchronize_irq(cs5535au->irq);
258 pci_set_power_state(cs5535au->pci, 3);
260 if (cs5535au->irq >= 0)
261 free_irq(cs5535au->irq, cs5535au);
263 pci_release_regions(cs5535au->pci);
264 pci_disable_device(cs5535au->pci);
269 static int snd_cs5535audio_dev_free(struct snd_device *device)
271 struct cs5535audio *cs5535au = device->device_data;
272 return snd_cs5535audio_free(cs5535au);
275 static int __devinit snd_cs5535audio_create(struct snd_card *card,
277 struct cs5535audio **rcs5535au)
279 struct cs5535audio *cs5535au;
282 static struct snd_device_ops ops = {
283 .dev_free = snd_cs5535audio_dev_free,
287 if ((err = pci_enable_device(pci)) < 0)
290 if (pci_set_dma_mask(pci, DMA_32BIT_MASK) < 0 ||
291 pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) < 0) {
292 printk(KERN_WARNING "unable to get 32bit dma\n");
297 cs5535au = kzalloc(sizeof(*cs5535au), GFP_KERNEL);
298 if (cs5535au == NULL) {
303 spin_lock_init(&cs5535au->reg_lock);
304 cs5535au->card = card;
308 if ((err = pci_request_regions(pci, "CS5535 Audio")) < 0) {
313 cs5535au->port = pci_resource_start(pci, 0);
315 if (request_irq(pci->irq, snd_cs5535audio_interrupt,
316 SA_INTERRUPT|SA_SHIRQ, "CS5535 Audio", cs5535au)) {
317 snd_printk("unable to grab IRQ %d\n", pci->irq);
322 cs5535au->irq = pci->irq;
325 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL,
326 cs5535au, &ops)) < 0)
329 snd_card_set_dev(card, &pci->dev);
331 *rcs5535au = cs5535au;
334 sndfail: /* leave the device alive, just kill the snd */
335 snd_cs5535audio_free(cs5535au);
339 pci_disable_device(pci);
343 static int __devinit snd_cs5535audio_probe(struct pci_dev *pci,
344 const struct pci_device_id *pci_id)
347 struct snd_card *card;
348 struct cs5535audio *cs5535au;
351 if (dev >= SNDRV_CARDS)
358 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
362 if ((err = snd_cs5535audio_create(card, pci, &cs5535au)) < 0)
365 card->private_data = cs5535au;
367 if ((err = snd_cs5535audio_mixer(cs5535au)) < 0)
370 if ((err = snd_cs5535audio_pcm(cs5535au)) < 0)
373 strcpy(card->driver, DRIVER_NAME);
375 strcpy(card->shortname, "CS5535 Audio");
376 sprintf(card->longname, "%s %s at 0x%lx, irq %i",
377 card->shortname, card->driver,
378 cs5535au->port, cs5535au->irq);
380 if ((err = snd_card_register(card)) < 0)
383 pci_set_drvdata(pci, card);
392 static void __devexit snd_cs5535audio_remove(struct pci_dev *pci)
394 snd_card_free(pci_get_drvdata(pci));
395 pci_set_drvdata(pci, NULL);
398 static struct pci_driver driver = {
400 .id_table = snd_cs5535audio_ids,
401 .probe = snd_cs5535audio_probe,
402 .remove = __devexit_p(snd_cs5535audio_remove),
404 .suspend = snd_cs5535audio_suspend,
405 .resume = snd_cs5535audio_resume,
409 static int __init alsa_card_cs5535audio_init(void)
411 return pci_register_driver(&driver);
414 static void __exit alsa_card_cs5535audio_exit(void)
416 pci_unregister_driver(&driver);
419 module_init(alsa_card_cs5535audio_init)
420 module_exit(alsa_card_cs5535audio_exit)
422 MODULE_AUTHOR("Jaya Kumar");
423 MODULE_LICENSE("GPL");
424 MODULE_DESCRIPTION("CS5535 Audio");
425 MODULE_SUPPORTED_DEVICE("CS5535 Audio");