2 * Driver for audio on multifunction CS5535 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"
44 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
;
45 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
;
46 static int enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
;
48 static struct pci_device_id snd_cs5535audio_ids
[] __devinitdata
= {
49 { PCI_VENDOR_ID_NS
, PCI_DEVICE_ID_NS_CS5535_AUDIO
,
50 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0, },
51 { PCI_VENDOR_ID_AMD
, PCI_DEVICE_ID_AMD_CS5536_AUDIO
,
52 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0, },
56 MODULE_DEVICE_TABLE(pci
, snd_cs5535audio_ids
);
58 static void wait_till_cmd_acked(struct cs5535audio
*cs5535au
, unsigned long timeout
)
62 tmp
= cs_readl(cs5535au
, ACC_CODEC_CNTL
);
68 snd_printk(KERN_ERR
"Failure writing to cs5535 codec\n");
71 static unsigned short snd_cs5535audio_codec_read(struct cs5535audio
*cs5535au
,
78 regdata
= ((unsigned int) reg
) << 24;
79 regdata
|= ACC_CODEC_CNTL_RD_CMD
;
82 cs_writel(cs5535au
, ACC_CODEC_CNTL
, regdata
);
83 wait_till_cmd_acked(cs5535au
, 50);
87 val
= cs_readl(cs5535au
, ACC_CODEC_STATUS
);
88 if ((val
& STS_NEW
) && reg
== (val
>> 24))
93 snd_printk(KERN_ERR
"Failure reading cs5535 codec\n");
95 return (unsigned short) val
;
98 static void snd_cs5535audio_codec_write(struct cs5535audio
*cs5535au
,
99 unsigned short reg
, unsigned short val
)
101 unsigned int regdata
;
103 regdata
= ((unsigned int) reg
) << 24;
107 regdata
&= ACC_CODEC_CNTL_WR_CMD
;
109 cs_writel(cs5535au
, ACC_CODEC_CNTL
, regdata
);
110 wait_till_cmd_acked(cs5535au
, 50);
113 static void snd_cs5535audio_ac97_codec_write(struct snd_ac97
*ac97
,
114 unsigned short reg
, unsigned short val
)
116 struct cs5535audio
*cs5535au
= ac97
->private_data
;
117 snd_cs5535audio_codec_write(cs5535au
, reg
, val
);
120 static unsigned short snd_cs5535audio_ac97_codec_read(struct snd_ac97
*ac97
,
123 struct cs5535audio
*cs5535au
= ac97
->private_data
;
124 return snd_cs5535audio_codec_read(cs5535au
, reg
);
127 static int snd_cs5535audio_mixer(struct cs5535audio
*cs5535au
)
129 struct snd_card
*card
= cs5535au
->card
;
130 struct snd_ac97_bus
*pbus
;
131 struct snd_ac97_template ac97
;
133 static struct snd_ac97_bus_ops ops
= {
134 .write
= snd_cs5535audio_ac97_codec_write
,
135 .read
= snd_cs5535audio_ac97_codec_read
,
138 if ((err
= snd_ac97_bus(card
, 0, &ops
, NULL
, &pbus
)) < 0)
141 memset(&ac97
, 0, sizeof(ac97
));
142 ac97
.scaps
= AC97_SCAP_AUDIO
|AC97_SCAP_SKIP_MODEM
;
143 ac97
.private_data
= cs5535au
;
144 ac97
.pci
= cs5535au
->pci
;
146 if ((err
= snd_ac97_mixer(pbus
, &ac97
, &cs5535au
->ac97
)) < 0) {
147 snd_printk(KERN_ERR
"mixer failed\n");
154 static void process_bm0_irq(struct cs5535audio
*cs5535au
)
157 spin_lock(&cs5535au
->reg_lock
);
158 bm_stat
= cs_readb(cs5535au
, ACC_BM0_STATUS
);
159 spin_unlock(&cs5535au
->reg_lock
);
161 struct cs5535audio_dma
*dma
;
162 dma
= cs5535au
->playback_substream
->runtime
->private_data
;
163 snd_pcm_period_elapsed(cs5535au
->playback_substream
);
165 snd_printk(KERN_ERR
"unexpected bm0 irq src, bm_stat=%x\n",
170 static void process_bm1_irq(struct cs5535audio
*cs5535au
)
173 spin_lock(&cs5535au
->reg_lock
);
174 bm_stat
= cs_readb(cs5535au
, ACC_BM1_STATUS
);
175 spin_unlock(&cs5535au
->reg_lock
);
177 struct cs5535audio_dma
*dma
;
178 dma
= cs5535au
->capture_substream
->runtime
->private_data
;
179 snd_pcm_period_elapsed(cs5535au
->capture_substream
);
183 static irqreturn_t
snd_cs5535audio_interrupt(int irq
, void *dev_id
,
184 struct pt_regs
*regs
)
189 struct cs5535audio
*cs5535au
= dev_id
;
191 if (cs5535au
== NULL
)
194 acc_irq_stat
= cs_readw(cs5535au
, ACC_IRQ_STATUS
);
198 for (count
= 0; count
< 10; count
++) {
199 if (acc_irq_stat
& (1 << count
)) {
202 cs_readl(cs5535au
, ACC_GPIO_STATUS
);
205 cs_readl(cs5535au
, ACC_GPIO_STATUS
);
208 process_bm0_irq(cs5535au
);
211 process_bm1_irq(cs5535au
);
214 bm_stat
= cs_readb(cs5535au
, ACC_BM2_STATUS
);
217 bm_stat
= cs_readb(cs5535au
, ACC_BM3_STATUS
);
220 bm_stat
= cs_readb(cs5535au
, ACC_BM4_STATUS
);
223 bm_stat
= cs_readb(cs5535au
, ACC_BM5_STATUS
);
226 bm_stat
= cs_readb(cs5535au
, ACC_BM6_STATUS
);
229 bm_stat
= cs_readb(cs5535au
, ACC_BM7_STATUS
);
232 snd_printk(KERN_ERR
"Unexpected irq src\n");
240 static int snd_cs5535audio_free(struct cs5535audio
*cs5535au
)
242 synchronize_irq(cs5535au
->irq
);
243 pci_set_power_state(cs5535au
->pci
, 3);
245 if (cs5535au
->irq
>= 0)
246 free_irq(cs5535au
->irq
, cs5535au
);
248 pci_release_regions(cs5535au
->pci
);
249 pci_disable_device(cs5535au
->pci
);
254 static int snd_cs5535audio_dev_free(struct snd_device
*device
)
256 struct cs5535audio
*cs5535au
= device
->device_data
;
257 return snd_cs5535audio_free(cs5535au
);
260 static int __devinit
snd_cs5535audio_create(struct snd_card
*card
,
262 struct cs5535audio
**rcs5535au
)
264 struct cs5535audio
*cs5535au
;
267 static struct snd_device_ops ops
= {
268 .dev_free
= snd_cs5535audio_dev_free
,
272 if ((err
= pci_enable_device(pci
)) < 0)
275 if (pci_set_dma_mask(pci
, DMA_32BIT_MASK
) < 0 ||
276 pci_set_consistent_dma_mask(pci
, DMA_32BIT_MASK
) < 0) {
277 printk(KERN_WARNING
"unable to get 32bit dma\n");
282 cs5535au
= kzalloc(sizeof(*cs5535au
), GFP_KERNEL
);
283 if (cs5535au
== NULL
) {
288 spin_lock_init(&cs5535au
->reg_lock
);
289 cs5535au
->card
= card
;
293 if ((err
= pci_request_regions(pci
, "CS5535 Audio")) < 0) {
298 cs5535au
->port
= pci_resource_start(pci
, 0);
300 if (request_irq(pci
->irq
, snd_cs5535audio_interrupt
,
301 SA_INTERRUPT
|SA_SHIRQ
, "CS5535 Audio", cs5535au
)) {
302 snd_printk("unable to grab IRQ %d\n", pci
->irq
);
307 cs5535au
->irq
= pci
->irq
;
310 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
,
311 cs5535au
, &ops
)) < 0)
314 snd_card_set_dev(card
, &pci
->dev
);
316 *rcs5535au
= cs5535au
;
319 sndfail
: /* leave the device alive, just kill the snd */
320 snd_cs5535audio_free(cs5535au
);
324 pci_disable_device(pci
);
328 static int __devinit
snd_cs5535audio_probe(struct pci_dev
*pci
,
329 const struct pci_device_id
*pci_id
)
332 struct snd_card
*card
;
333 struct cs5535audio
*cs5535au
;
336 if (dev
>= SNDRV_CARDS
)
343 card
= snd_card_new(index
[dev
], id
[dev
], THIS_MODULE
, 0);
347 if ((err
= snd_cs5535audio_create(card
, pci
, &cs5535au
)) < 0)
350 if ((err
= snd_cs5535audio_mixer(cs5535au
)) < 0)
353 if ((err
= snd_cs5535audio_pcm(cs5535au
)) < 0)
356 strcpy(card
->driver
, DRIVER_NAME
);
358 strcpy(card
->shortname
, "CS5535 Audio");
359 sprintf(card
->longname
, "%s %s at 0x%lx, irq %i",
360 card
->shortname
, card
->driver
,
361 cs5535au
->port
, cs5535au
->irq
);
363 if ((err
= snd_card_register(card
)) < 0)
366 pci_set_drvdata(pci
, card
);
375 static void __devexit
snd_cs5535audio_remove(struct pci_dev
*pci
)
377 snd_card_free(pci_get_drvdata(pci
));
378 pci_set_drvdata(pci
, NULL
);
381 static struct pci_driver driver
= {
383 .id_table
= snd_cs5535audio_ids
,
384 .probe
= snd_cs5535audio_probe
,
385 .remove
= __devexit_p(snd_cs5535audio_remove
),
388 static int __init
alsa_card_cs5535audio_init(void)
390 return pci_register_driver(&driver
);
393 static void __exit
alsa_card_cs5535audio_exit(void)
395 pci_unregister_driver(&driver
);
398 module_init(alsa_card_cs5535audio_init
)
399 module_exit(alsa_card_cs5535audio_exit
)
401 MODULE_AUTHOR("Jaya Kumar");
402 MODULE_LICENSE("GPL");
403 MODULE_DESCRIPTION("CS5535 Audio");
404 MODULE_SUPPORTED_DEVICE("CS5535 Audio");