2 * linux/sound/pxa2xx-ac97.c -- AC97 support for the Intel PXA2xx chip.
4 * Author: Nicolas Pitre
5 * Created: Dec 02, 2004
6 * Copyright: MontaVista Software Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/interrupt.h>
18 #include <linux/wait.h>
19 #include <linux/clk.h>
20 #include <linux/delay.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/ac97_codec.h>
25 #include <sound/initval.h>
28 #include <linux/mutex.h>
29 #include <asm/hardware.h>
30 #include <asm/arch/pxa-regs.h>
31 #include <asm/arch/pxa2xx-gpio.h>
32 #include <asm/arch/audio.h>
34 #include "pxa2xx-pcm.h"
37 static DEFINE_MUTEX(car_mutex);
38 static DECLARE_WAIT_QUEUE_HEAD(gsr_wq);
39 static volatile long gsr_bits;
40 static struct clk *ac97_clk;
42 static struct clk *ac97conf_clk;
48 * o Slot 12 read from modem space will hang controller.
49 * o CDONE, SDONE interrupt fails after any slot 12 IO.
51 * We therefore have an hybrid approach for waiting on SDONE (interrupt or
52 * 1 jiffy timeout if interrupt never comes).
55 static unsigned short pxa2xx_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
57 unsigned short val = -1;
58 volatile u32 *reg_addr;
60 mutex_lock(&car_mutex);
62 /* set up primary or secondary codec space */
63 reg_addr = (ac97->num & 1) ? &SAC_REG_BASE : &PAC_REG_BASE;
64 reg_addr += (reg >> 1);
66 /* start read access across the ac97 link */
67 GSR = GSR_CDONE | GSR_SDONE;
70 if (reg == AC97_GPIO_STATUS)
72 if (wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_SDONE, 1) <= 0 &&
73 !((GSR | gsr_bits) & GSR_SDONE)) {
74 printk(KERN_ERR "%s: read error (ac97_reg=%d GSR=%#lx)\n",
75 __func__, reg, GSR | gsr_bits);
81 GSR = GSR_CDONE | GSR_SDONE;
84 /* but we've just started another cycle... */
85 wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_SDONE, 1);
87 out: mutex_unlock(&car_mutex);
91 static void pxa2xx_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val)
93 volatile u32 *reg_addr;
95 mutex_lock(&car_mutex);
97 /* set up primary or secondary codec space */
98 reg_addr = (ac97->num & 1) ? &SAC_REG_BASE : &PAC_REG_BASE;
99 reg_addr += (reg >> 1);
101 GSR = GSR_CDONE | GSR_SDONE;
104 if (wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_CDONE, 1) <= 0 &&
105 !((GSR | gsr_bits) & GSR_CDONE))
106 printk(KERN_ERR "%s: write error (ac97_reg=%d GSR=%#lx)\n",
107 __func__, reg, GSR | gsr_bits);
109 mutex_unlock(&car_mutex);
112 static void pxa2xx_ac97_reset(struct snd_ac97 *ac97)
114 /* First, try cold reset */
118 /* Hold CLKBPB for 100us */
125 GCR &= GCR_COLD_RST; /* clear everything but nCRST */
126 GCR &= ~GCR_COLD_RST; /* then assert nCRST */
130 /* PXA27x Developers Manual section 13.5.2.2.1 */
131 clk_enable(ac97conf_clk);
133 clk_disable(ac97conf_clk);
136 #elif defined(CONFIG_PXA3xx)
138 /* Can't use interrupts on PXA3xx */
139 GCR &= ~(GCR_PRIRDY_IEN|GCR_SECRDY_IEN);
141 GCR = GCR_WARM_RST | GCR_COLD_RST;
142 while (!(GSR & (GSR_PCR | GSR_SCR)) && timeout--)
146 GCR |= GCR_CDONE_IE|GCR_SDONE_IE;
147 wait_event_timeout(gsr_wq, gsr_bits & (GSR_PCR | GSR_SCR), 1);
150 if (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR))) {
151 printk(KERN_INFO "%s: cold reset timeout (GSR=%#lx)\n",
154 /* let's try warm reset */
157 /* warm reset broken on Bulverde,
158 so manually keep AC97 reset high */
159 pxa_gpio_mode(113 | GPIO_OUT | GPIO_DFLT_HIGH);
162 pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT);
164 #elif defined(CONFIG_PXA3xx)
166 /* Can't use interrupts */
168 while (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR)) && timeout--)
171 GCR |= GCR_WARM_RST|GCR_PRIRDY_IEN|GCR_SECRDY_IEN;
172 wait_event_timeout(gsr_wq, gsr_bits & (GSR_PCR | GSR_SCR), 1);
175 if (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR)))
176 printk(KERN_INFO "%s: warm reset timeout (GSR=%#lx)\n",
180 GCR &= ~(GCR_PRIRDY_IEN|GCR_SECRDY_IEN);
181 GCR |= GCR_SDONE_IE|GCR_CDONE_IE;
184 static irqreturn_t pxa2xx_ac97_irq(int irq, void *dev_id)
195 /* Although we don't use those we still need to clear them
196 since they tend to spuriously trigger when MMC is used
197 (hardware bug? go figure)... */
209 static struct snd_ac97_bus_ops pxa2xx_ac97_ops = {
210 .read = pxa2xx_ac97_read,
211 .write = pxa2xx_ac97_write,
212 .reset = pxa2xx_ac97_reset,
215 static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_out = {
216 .name = "AC97 PCM out",
217 .dev_addr = __PREG(PCDR),
218 .drcmr = &DRCMRTXPCDR,
219 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
220 DCMD_BURST32 | DCMD_WIDTH4,
223 static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_in = {
224 .name = "AC97 PCM in",
225 .dev_addr = __PREG(PCDR),
226 .drcmr = &DRCMRRXPCDR,
227 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
228 DCMD_BURST32 | DCMD_WIDTH4,
231 static struct snd_pcm *pxa2xx_ac97_pcm;
232 static struct snd_ac97 *pxa2xx_ac97_ac97;
234 static int pxa2xx_ac97_pcm_startup(struct snd_pcm_substream *substream)
236 struct snd_pcm_runtime *runtime = substream->runtime;
237 pxa2xx_audio_ops_t *platform_ops;
240 runtime->hw.channels_min = 2;
241 runtime->hw.channels_max = 2;
243 r = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
244 AC97_RATES_FRONT_DAC : AC97_RATES_ADC;
245 runtime->hw.rates = pxa2xx_ac97_ac97->rates[r];
246 snd_pcm_limit_hw_rates(runtime);
248 platform_ops = substream->pcm->card->dev->platform_data;
249 if (platform_ops && platform_ops->startup)
250 return platform_ops->startup(substream, platform_ops->priv);
255 static void pxa2xx_ac97_pcm_shutdown(struct snd_pcm_substream *substream)
257 pxa2xx_audio_ops_t *platform_ops;
259 platform_ops = substream->pcm->card->dev->platform_data;
260 if (platform_ops && platform_ops->shutdown)
261 platform_ops->shutdown(substream, platform_ops->priv);
264 static int pxa2xx_ac97_pcm_prepare(struct snd_pcm_substream *substream)
266 struct snd_pcm_runtime *runtime = substream->runtime;
267 int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
268 AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
269 return snd_ac97_set_rate(pxa2xx_ac97_ac97, reg, runtime->rate);
272 static struct pxa2xx_pcm_client pxa2xx_ac97_pcm_client = {
273 .playback_params = &pxa2xx_ac97_pcm_out,
274 .capture_params = &pxa2xx_ac97_pcm_in,
275 .startup = pxa2xx_ac97_pcm_startup,
276 .shutdown = pxa2xx_ac97_pcm_shutdown,
277 .prepare = pxa2xx_ac97_pcm_prepare,
282 static int pxa2xx_ac97_do_suspend(struct snd_card *card, pm_message_t state)
284 pxa2xx_audio_ops_t *platform_ops = card->dev->platform_data;
286 snd_power_change_state(card, SNDRV_CTL_POWER_D3cold);
287 snd_pcm_suspend_all(pxa2xx_ac97_pcm);
288 snd_ac97_suspend(pxa2xx_ac97_ac97);
289 if (platform_ops && platform_ops->suspend)
290 platform_ops->suspend(platform_ops->priv);
291 GCR |= GCR_ACLINK_OFF;
292 clk_disable(ac97_clk);
297 static int pxa2xx_ac97_do_resume(struct snd_card *card)
299 pxa2xx_audio_ops_t *platform_ops = card->dev->platform_data;
301 clk_enable(ac97_clk);
302 if (platform_ops && platform_ops->resume)
303 platform_ops->resume(platform_ops->priv);
304 snd_ac97_resume(pxa2xx_ac97_ac97);
305 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
310 static int pxa2xx_ac97_suspend(struct platform_device *dev, pm_message_t state)
312 struct snd_card *card = platform_get_drvdata(dev);
316 ret = pxa2xx_ac97_do_suspend(card, PMSG_SUSPEND);
321 static int pxa2xx_ac97_resume(struct platform_device *dev)
323 struct snd_card *card = platform_get_drvdata(dev);
327 ret = pxa2xx_ac97_do_resume(card);
333 #define pxa2xx_ac97_suspend NULL
334 #define pxa2xx_ac97_resume NULL
337 static int __devinit pxa2xx_ac97_probe(struct platform_device *dev)
339 struct snd_card *card;
340 struct snd_ac97_bus *ac97_bus;
341 struct snd_ac97_template ac97_template;
345 card = snd_card_new(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
350 card->dev = &dev->dev;
351 strncpy(card->driver, dev->dev.driver->name, sizeof(card->driver));
353 ret = pxa2xx_pcm_new(card, &pxa2xx_ac97_pcm_client, &pxa2xx_ac97_pcm);
357 ret = request_irq(IRQ_AC97, pxa2xx_ac97_irq, 0, "AC97", NULL);
361 pxa_gpio_mode(GPIO31_SYNC_AC97_MD);
362 pxa_gpio_mode(GPIO30_SDATA_OUT_AC97_MD);
363 pxa_gpio_mode(GPIO28_BITCLK_AC97_MD);
364 pxa_gpio_mode(GPIO29_SDATA_IN_AC97_MD);
366 /* Use GPIO 113 as AC97 Reset on Bulverde */
367 pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT);
368 ac97conf_clk = clk_get(&dev->dev, "AC97CONFCLK");
369 if (IS_ERR(ac97conf_clk)) {
370 ret = PTR_ERR(ac97conf_clk);
376 ac97_clk = clk_get(&dev->dev, "AC97CLK");
377 if (IS_ERR(ac97_clk)) {
378 ret = PTR_ERR(ac97_clk);
382 clk_enable(ac97_clk);
384 ret = snd_ac97_bus(card, 0, &pxa2xx_ac97_ops, NULL, &ac97_bus);
387 memset(&ac97_template, 0, sizeof(ac97_template));
388 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &pxa2xx_ac97_ac97);
392 snprintf(card->shortname, sizeof(card->shortname),
393 "%s", snd_ac97_get_short_name(pxa2xx_ac97_ac97));
394 snprintf(card->longname, sizeof(card->longname),
395 "%s (%s)", dev->dev.driver->name, card->mixername);
397 snd_card_set_dev(card, &dev->dev);
398 ret = snd_card_register(card);
400 platform_set_drvdata(dev, card);
408 GCR |= GCR_ACLINK_OFF;
409 free_irq(IRQ_AC97, NULL);
410 clk_disable(ac97_clk);
416 clk_put(ac97conf_clk);
423 static int __devexit pxa2xx_ac97_remove(struct platform_device *dev)
425 struct snd_card *card = platform_get_drvdata(dev);
429 platform_set_drvdata(dev, NULL);
430 GCR |= GCR_ACLINK_OFF;
431 free_irq(IRQ_AC97, NULL);
432 clk_disable(ac97_clk);
436 clk_put(ac97conf_clk);
444 static struct platform_driver pxa2xx_ac97_driver = {
445 .probe = pxa2xx_ac97_probe,
446 .remove = __devexit_p(pxa2xx_ac97_remove),
447 .suspend = pxa2xx_ac97_suspend,
448 .resume = pxa2xx_ac97_resume,
450 .name = "pxa2xx-ac97",
451 .owner = THIS_MODULE,
455 static int __init pxa2xx_ac97_init(void)
457 return platform_driver_register(&pxa2xx_ac97_driver);
460 static void __exit pxa2xx_ac97_exit(void)
462 platform_driver_unregister(&pxa2xx_ac97_driver);
465 module_init(pxa2xx_ac97_init);
466 module_exit(pxa2xx_ac97_exit);
468 MODULE_AUTHOR("Nicolas Pitre");
469 MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
470 MODULE_LICENSE("GPL");
471 MODULE_ALIAS("platform:pxa2xx-ac97");