blob: f61c4fa4ed623d2c1d1a4e53172d04a0d8c8c80c [file] [log] [blame]
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001/*
Jaya Kumar9ac25592006-04-28 14:34:49 +02002 * Driver for audio on multifunction CS5535/6 companion device
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01003 * Copyright (C) Jaya Kumar
4 *
5 * Based on Jaroslav Kysela and Takashi Iwai's examples.
6 * This work was sponsored by CIS(M) Sdn Bhd.
7 *
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.
12 *
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.
17 *
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
21 *
22 */
23
Clemens Ladischac09a922005-11-20 13:58:28 +010024#include <sound/driver.h>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010025#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>
31#include <asm/io.h>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010032#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"
40
41#define DRIVER_NAME "cs5535audio"
42
Jaya Kumar9ac25592006-04-28 14:34:49 +020043static char *ac97_quirk;
44module_param(ac97_quirk, charp, 0444);
45MODULE_PARM_DESC(ac97_quirk, "AC'97 board specific workarounds.");
46
47static struct ac97_quirk ac97_quirks[] __devinitdata = {
48#if 0 /* Not yet confirmed if all 5536 boards are HP only */
49 {
50 .subvendor = PCI_VENDOR_ID_AMD,
51 .subdevice = PCI_DEVICE_ID_AMD_CS5536_AUDIO,
52 .name = "AMD RDK",
53 .type = AC97_TUNE_HP_ONLY
54 },
55#endif
56 {}
57};
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010058
59static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
60static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
61static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
62
Takashi Iwai1dbfd8c2006-05-02 18:31:31 +020063module_param_array(index, int, NULL, 0444);
64MODULE_PARM_DESC(index, "Index value for " DRIVER_NAME);
65module_param_array(id, charp, NULL, 0444);
66MODULE_PARM_DESC(id, "ID string for " DRIVER_NAME);
67module_param_array(enable, bool, NULL, 0444);
68MODULE_PARM_DESC(enable, "Enable " DRIVER_NAME);
69
Henrik Kretzschmar396c9b92006-04-24 15:59:04 +020070static struct pci_device_id snd_cs5535audio_ids[] __devinitdata = {
Jaya Kumar9ac25592006-04-28 14:34:49 +020071 { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_AUDIO) },
72 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_AUDIO) },
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010073 {}
74};
75
76MODULE_DEVICE_TABLE(pci, snd_cs5535audio_ids);
77
Takashi Iwai66f8df62005-11-17 14:56:21 +010078static void wait_till_cmd_acked(struct cs5535audio *cs5535au, unsigned long timeout)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010079{
Takashi Iwai3e873172005-11-17 10:15:37 +010080 unsigned int tmp;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010081 do {
82 tmp = cs_readl(cs5535au, ACC_CODEC_CNTL);
83 if (!(tmp & CMD_NEW))
84 break;
David Vrabel10375932006-03-03 18:01:57 +010085 udelay(1);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010086 } while (--timeout);
87 if (!timeout)
88 snd_printk(KERN_ERR "Failure writing to cs5535 codec\n");
89}
90
Takashi Iwai66f8df62005-11-17 14:56:21 +010091static unsigned short snd_cs5535audio_codec_read(struct cs5535audio *cs5535au,
92 unsigned short reg)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010093{
Takashi Iwai3e873172005-11-17 10:15:37 +010094 unsigned int regdata;
Takashi Iwai66f8df62005-11-17 14:56:21 +010095 unsigned int timeout;
Takashi Iwai3e873172005-11-17 10:15:37 +010096 unsigned int val;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010097
Takashi Iwai3e873172005-11-17 10:15:37 +010098 regdata = ((unsigned int) reg) << 24;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010099 regdata |= ACC_CODEC_CNTL_RD_CMD;
100 regdata |= CMD_NEW;
101
102 cs_writel(cs5535au, ACC_CODEC_CNTL, regdata);
David Vrabel10375932006-03-03 18:01:57 +0100103 wait_till_cmd_acked(cs5535au, 50);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100104
105 timeout = 50;
106 do {
107 val = cs_readl(cs5535au, ACC_CODEC_STATUS);
Takashi Iwai3e873172005-11-17 10:15:37 +0100108 if ((val & STS_NEW) && reg == (val >> 24))
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100109 break;
David Vrabel10375932006-03-03 18:01:57 +0100110 udelay(1);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100111 } while (--timeout);
112 if (!timeout)
113 snd_printk(KERN_ERR "Failure reading cs5535 codec\n");
114
Takashi Iwai3e873172005-11-17 10:15:37 +0100115 return (unsigned short) val;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100116}
117
Takashi Iwai66f8df62005-11-17 14:56:21 +0100118static void snd_cs5535audio_codec_write(struct cs5535audio *cs5535au,
119 unsigned short reg, unsigned short val)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100120{
Takashi Iwai3e873172005-11-17 10:15:37 +0100121 unsigned int regdata;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100122
Takashi Iwai3e873172005-11-17 10:15:37 +0100123 regdata = ((unsigned int) reg) << 24;
124 regdata |= val;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100125 regdata &= CMD_MASK;
126 regdata |= CMD_NEW;
127 regdata &= ACC_CODEC_CNTL_WR_CMD;
128
129 cs_writel(cs5535au, ACC_CODEC_CNTL, regdata);
130 wait_till_cmd_acked(cs5535au, 50);
131}
132
Takashi Iwai66f8df62005-11-17 14:56:21 +0100133static void snd_cs5535audio_ac97_codec_write(struct snd_ac97 *ac97,
134 unsigned short reg, unsigned short val)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100135{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100136 struct cs5535audio *cs5535au = ac97->private_data;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100137 snd_cs5535audio_codec_write(cs5535au, reg, val);
138}
139
Takashi Iwai66f8df62005-11-17 14:56:21 +0100140static unsigned short snd_cs5535audio_ac97_codec_read(struct snd_ac97 *ac97,
141 unsigned short reg)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100142{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100143 struct cs5535audio *cs5535au = ac97->private_data;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100144 return snd_cs5535audio_codec_read(cs5535au, reg);
145}
146
Takashi Iwai66f8df62005-11-17 14:56:21 +0100147static int snd_cs5535audio_mixer(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100148{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100149 struct snd_card *card = cs5535au->card;
150 struct snd_ac97_bus *pbus;
151 struct snd_ac97_template ac97;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100152 int err;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100153 static struct snd_ac97_bus_ops ops = {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100154 .write = snd_cs5535audio_ac97_codec_write,
155 .read = snd_cs5535audio_ac97_codec_read,
156 };
157
158 if ((err = snd_ac97_bus(card, 0, &ops, NULL, &pbus)) < 0)
159 return err;
160
161 memset(&ac97, 0, sizeof(ac97));
162 ac97.scaps = AC97_SCAP_AUDIO|AC97_SCAP_SKIP_MODEM;
163 ac97.private_data = cs5535au;
164 ac97.pci = cs5535au->pci;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100165
166 if ((err = snd_ac97_mixer(pbus, &ac97, &cs5535au->ac97)) < 0) {
Takashi Iwai3e873172005-11-17 10:15:37 +0100167 snd_printk(KERN_ERR "mixer failed\n");
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100168 return err;
169 }
170
Jaya Kumar9ac25592006-04-28 14:34:49 +0200171 snd_ac97_tune_hardware(cs5535au->ac97, ac97_quirks, ac97_quirk);
172
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100173 return 0;
174}
175
Takashi Iwai66f8df62005-11-17 14:56:21 +0100176static void process_bm0_irq(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100177{
178 u8 bm_stat;
179 spin_lock(&cs5535au->reg_lock);
180 bm_stat = cs_readb(cs5535au, ACC_BM0_STATUS);
181 spin_unlock(&cs5535au->reg_lock);
182 if (bm_stat & EOP) {
Takashi Iwai66f8df62005-11-17 14:56:21 +0100183 struct cs5535audio_dma *dma;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100184 dma = cs5535au->playback_substream->runtime->private_data;
185 snd_pcm_period_elapsed(cs5535au->playback_substream);
186 } else {
187 snd_printk(KERN_ERR "unexpected bm0 irq src, bm_stat=%x\n",
188 bm_stat);
189 }
190}
191
Takashi Iwai66f8df62005-11-17 14:56:21 +0100192static void process_bm1_irq(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100193{
194 u8 bm_stat;
195 spin_lock(&cs5535au->reg_lock);
196 bm_stat = cs_readb(cs5535au, ACC_BM1_STATUS);
197 spin_unlock(&cs5535au->reg_lock);
198 if (bm_stat & EOP) {
Takashi Iwai66f8df62005-11-17 14:56:21 +0100199 struct cs5535audio_dma *dma;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100200 dma = cs5535au->capture_substream->runtime->private_data;
201 snd_pcm_period_elapsed(cs5535au->capture_substream);
202 }
203}
204
205static irqreturn_t snd_cs5535audio_interrupt(int irq, void *dev_id,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100206 struct pt_regs *regs)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100207{
208 u16 acc_irq_stat;
209 u8 bm_stat;
210 unsigned char count;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100211 struct cs5535audio *cs5535au = dev_id;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100212
213 if (cs5535au == NULL)
214 return IRQ_NONE;
215
216 acc_irq_stat = cs_readw(cs5535au, ACC_IRQ_STATUS);
217
218 if (!acc_irq_stat)
219 return IRQ_NONE;
Takashi Iwai3e873172005-11-17 10:15:37 +0100220 for (count = 0; count < 10; count++) {
221 if (acc_irq_stat & (1 << count)) {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100222 switch (count) {
223 case IRQ_STS:
224 cs_readl(cs5535au, ACC_GPIO_STATUS);
225 break;
226 case WU_IRQ_STS:
227 cs_readl(cs5535au, ACC_GPIO_STATUS);
228 break;
229 case BM0_IRQ_STS:
230 process_bm0_irq(cs5535au);
231 break;
232 case BM1_IRQ_STS:
233 process_bm1_irq(cs5535au);
234 break;
235 case BM2_IRQ_STS:
236 bm_stat = cs_readb(cs5535au, ACC_BM2_STATUS);
237 break;
238 case BM3_IRQ_STS:
239 bm_stat = cs_readb(cs5535au, ACC_BM3_STATUS);
240 break;
241 case BM4_IRQ_STS:
242 bm_stat = cs_readb(cs5535au, ACC_BM4_STATUS);
243 break;
244 case BM5_IRQ_STS:
245 bm_stat = cs_readb(cs5535au, ACC_BM5_STATUS);
246 break;
247 case BM6_IRQ_STS:
248 bm_stat = cs_readb(cs5535au, ACC_BM6_STATUS);
249 break;
250 case BM7_IRQ_STS:
251 bm_stat = cs_readb(cs5535au, ACC_BM7_STATUS);
252 break;
253 default:
254 snd_printk(KERN_ERR "Unexpected irq src\n");
255 break;
256 }
257 }
258 }
259 return IRQ_HANDLED;
260}
261
Takashi Iwai66f8df62005-11-17 14:56:21 +0100262static int snd_cs5535audio_free(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100263{
264 synchronize_irq(cs5535au->irq);
265 pci_set_power_state(cs5535au->pci, 3);
266
267 if (cs5535au->irq >= 0)
268 free_irq(cs5535au->irq, cs5535au);
269
270 pci_release_regions(cs5535au->pci);
271 pci_disable_device(cs5535au->pci);
272 kfree(cs5535au);
273 return 0;
274}
275
Takashi Iwai66f8df62005-11-17 14:56:21 +0100276static int snd_cs5535audio_dev_free(struct snd_device *device)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100277{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100278 struct cs5535audio *cs5535au = device->device_data;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100279 return snd_cs5535audio_free(cs5535au);
280}
281
Takashi Iwai66f8df62005-11-17 14:56:21 +0100282static int __devinit snd_cs5535audio_create(struct snd_card *card,
283 struct pci_dev *pci,
284 struct cs5535audio **rcs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100285{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100286 struct cs5535audio *cs5535au;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100287
288 int err;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100289 static struct snd_device_ops ops = {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100290 .dev_free = snd_cs5535audio_dev_free,
291 };
292
293 *rcs5535au = NULL;
294 if ((err = pci_enable_device(pci)) < 0)
295 return err;
296
297 if (pci_set_dma_mask(pci, DMA_32BIT_MASK) < 0 ||
Takashi Iwai66f8df62005-11-17 14:56:21 +0100298 pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) < 0) {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100299 printk(KERN_WARNING "unable to get 32bit dma\n");
300 err = -ENXIO;
301 goto pcifail;
302 }
303
304 cs5535au = kzalloc(sizeof(*cs5535au), GFP_KERNEL);
305 if (cs5535au == NULL) {
306 err = -ENOMEM;
307 goto pcifail;
308 }
309
310 spin_lock_init(&cs5535au->reg_lock);
311 cs5535au->card = card;
312 cs5535au->pci = pci;
313 cs5535au->irq = -1;
314
315 if ((err = pci_request_regions(pci, "CS5535 Audio")) < 0) {
316 kfree(cs5535au);
317 goto pcifail;
318 }
319
320 cs5535au->port = pci_resource_start(pci, 0);
321
322 if (request_irq(pci->irq, snd_cs5535audio_interrupt,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100323 SA_INTERRUPT|SA_SHIRQ, "CS5535 Audio", cs5535au)) {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100324 snd_printk("unable to grab IRQ %d\n", pci->irq);
325 err = -EBUSY;
326 goto sndfail;
327 }
328
329 cs5535au->irq = pci->irq;
330 pci_set_master(pci);
331
332 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100333 cs5535au, &ops)) < 0)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100334 goto sndfail;
335
336 snd_card_set_dev(card, &pci->dev);
337
338 *rcs5535au = cs5535au;
339 return 0;
340
341sndfail: /* leave the device alive, just kill the snd */
342 snd_cs5535audio_free(cs5535au);
343 return err;
344
345pcifail:
346 pci_disable_device(pci);
347 return err;
348}
349
350static int __devinit snd_cs5535audio_probe(struct pci_dev *pci,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100351 const struct pci_device_id *pci_id)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100352{
353 static int dev;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100354 struct snd_card *card;
355 struct cs5535audio *cs5535au;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100356 int err;
357
358 if (dev >= SNDRV_CARDS)
359 return -ENODEV;
360 if (!enable[dev]) {
361 dev++;
362 return -ENOENT;
363 }
364
365 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
366 if (card == NULL)
367 return -ENOMEM;
368
369 if ((err = snd_cs5535audio_create(card, pci, &cs5535au)) < 0)
370 goto probefail_out;
371
Jaya Kumar9ac25592006-04-28 14:34:49 +0200372 card->private_data = cs5535au;
373
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100374 if ((err = snd_cs5535audio_mixer(cs5535au)) < 0)
375 goto probefail_out;
376
377 if ((err = snd_cs5535audio_pcm(cs5535au)) < 0)
378 goto probefail_out;
379
380 strcpy(card->driver, DRIVER_NAME);
381
382 strcpy(card->shortname, "CS5535 Audio");
383 sprintf(card->longname, "%s %s at 0x%lx, irq %i",
384 card->shortname, card->driver,
385 cs5535au->port, cs5535au->irq);
386
387 if ((err = snd_card_register(card)) < 0)
388 goto probefail_out;
389
390 pci_set_drvdata(pci, card);
391 dev++;
392 return 0;
393
394probefail_out:
395 snd_card_free(card);
396 return err;
397}
398
399static void __devexit snd_cs5535audio_remove(struct pci_dev *pci)
400{
401 snd_card_free(pci_get_drvdata(pci));
402 pci_set_drvdata(pci, NULL);
403}
404
405static struct pci_driver driver = {
406 .name = DRIVER_NAME,
407 .id_table = snd_cs5535audio_ids,
408 .probe = snd_cs5535audio_probe,
409 .remove = __devexit_p(snd_cs5535audio_remove),
Jaya Kumar9ac25592006-04-28 14:34:49 +0200410#ifdef CONFIG_PM
411 .suspend = snd_cs5535audio_suspend,
412 .resume = snd_cs5535audio_resume,
413#endif
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100414};
415
416static int __init alsa_card_cs5535audio_init(void)
417{
Ben Gardnere3291132006-01-09 20:51:29 -0800418 return pci_register_driver(&driver);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100419}
420
421static void __exit alsa_card_cs5535audio_exit(void)
422{
423 pci_unregister_driver(&driver);
424}
425
426module_init(alsa_card_cs5535audio_init)
427module_exit(alsa_card_cs5535audio_exit)
428
429MODULE_AUTHOR("Jaya Kumar");
430MODULE_LICENSE("GPL");
431MODULE_DESCRIPTION("CS5535 Audio");
432MODULE_SUPPORTED_DEVICE("CS5535 Audio");