Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 1 | /* |
| 2 | * linux/sound/pxa2xx-ac97.c -- AC97 support for the Intel PXA2xx chip. |
| 3 | * |
| 4 | * Author: Nicolas Pitre |
| 5 | * Created: Dec 02, 2004 |
| 6 | * Copyright: MontaVista Software Inc. |
| 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 version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/kernel.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/wait.h> |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 19 | #include <linux/clk.h> |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 20 | #include <linux/delay.h> |
| 21 | |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 22 | #include <sound/core.h> |
| 23 | #include <sound/pcm.h> |
| 24 | #include <sound/ac97_codec.h> |
| 25 | #include <sound/initval.h> |
| 26 | |
| 27 | #include <asm/irq.h> |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 28 | #include <linux/mutex.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/hardware.h> |
| 30 | #include <mach/pxa-regs.h> |
| 31 | #include <mach/pxa2xx-gpio.h> |
| 32 | #include <mach/audio.h> |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 33 | |
| 34 | #include "pxa2xx-pcm.h" |
| 35 | |
| 36 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 37 | static DEFINE_MUTEX(car_mutex); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 38 | static DECLARE_WAIT_QUEUE_HEAD(gsr_wq); |
| 39 | static volatile long gsr_bits; |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 40 | static struct clk *ac97_clk; |
| 41 | #ifdef CONFIG_PXA27x |
| 42 | static struct clk *ac97conf_clk; |
| 43 | #endif |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 44 | |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 45 | /* |
| 46 | * Beware PXA27x bugs: |
| 47 | * |
| 48 | * o Slot 12 read from modem space will hang controller. |
| 49 | * o CDONE, SDONE interrupt fails after any slot 12 IO. |
| 50 | * |
| 51 | * We therefore have an hybrid approach for waiting on SDONE (interrupt or |
| 52 | * 1 jiffy timeout if interrupt never comes). |
| 53 | */ |
| 54 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 55 | static unsigned short pxa2xx_ac97_read(struct snd_ac97 *ac97, unsigned short reg) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 56 | { |
| 57 | unsigned short val = -1; |
| 58 | volatile u32 *reg_addr; |
| 59 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 60 | mutex_lock(&car_mutex); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 61 | |
| 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); |
| 65 | |
| 66 | /* start read access across the ac97 link */ |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 67 | GSR = GSR_CDONE | GSR_SDONE; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 68 | gsr_bits = 0; |
| 69 | val = *reg_addr; |
| 70 | if (reg == AC97_GPIO_STATUS) |
| 71 | goto out; |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 72 | if (wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_SDONE, 1) <= 0 && |
| 73 | !((GSR | gsr_bits) & GSR_SDONE)) { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 74 | printk(KERN_ERR "%s: read error (ac97_reg=%d GSR=%#lx)\n", |
Harvey Harrison | 9bf8e7d | 2008-03-03 15:32:18 -0800 | [diff] [blame] | 75 | __func__, reg, GSR | gsr_bits); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 76 | val = -1; |
| 77 | goto out; |
| 78 | } |
| 79 | |
| 80 | /* valid data now */ |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 81 | GSR = GSR_CDONE | GSR_SDONE; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 82 | gsr_bits = 0; |
| 83 | val = *reg_addr; |
| 84 | /* but we've just started another cycle... */ |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 85 | wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_SDONE, 1); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 86 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 87 | out: mutex_unlock(&car_mutex); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 88 | return val; |
| 89 | } |
| 90 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 91 | static void pxa2xx_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 92 | { |
| 93 | volatile u32 *reg_addr; |
| 94 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 95 | mutex_lock(&car_mutex); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 96 | |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 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); |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 100 | |
| 101 | GSR = GSR_CDONE | GSR_SDONE; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 102 | gsr_bits = 0; |
| 103 | *reg_addr = val; |
Nicolas Pitre | ea265c0 | 2005-12-12 15:41:47 +0100 | [diff] [blame] | 104 | if (wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_CDONE, 1) <= 0 && |
| 105 | !((GSR | gsr_bits) & GSR_CDONE)) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 106 | printk(KERN_ERR "%s: write error (ac97_reg=%d GSR=%#lx)\n", |
Harvey Harrison | 9bf8e7d | 2008-03-03 15:32:18 -0800 | [diff] [blame] | 107 | __func__, reg, GSR | gsr_bits); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 108 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 109 | mutex_unlock(&car_mutex); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 110 | } |
| 111 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 112 | static void pxa2xx_ac97_reset(struct snd_ac97 *ac97) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 113 | { |
| 114 | /* First, try cold reset */ |
Mark Brown | 815c1be | 2008-04-22 17:09:49 +0200 | [diff] [blame] | 115 | #ifdef CONFIG_PXA3xx |
| 116 | int timeout; |
| 117 | |
| 118 | /* Hold CLKBPB for 100us */ |
| 119 | GCR = 0; |
| 120 | GCR = GCR_CLKBPB; |
| 121 | udelay(100); |
| 122 | GCR = 0; |
| 123 | #endif |
| 124 | |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 125 | GCR &= GCR_COLD_RST; /* clear everything but nCRST */ |
| 126 | GCR &= ~GCR_COLD_RST; /* then assert nCRST */ |
| 127 | |
| 128 | gsr_bits = 0; |
| 129 | #ifdef CONFIG_PXA27x |
| 130 | /* PXA27x Developers Manual section 13.5.2.2.1 */ |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 131 | clk_enable(ac97conf_clk); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 132 | udelay(5); |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 133 | clk_disable(ac97conf_clk); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 134 | GCR = GCR_COLD_RST; |
| 135 | udelay(50); |
Mark Brown | 815c1be | 2008-04-22 17:09:49 +0200 | [diff] [blame] | 136 | #elif defined(CONFIG_PXA3xx) |
| 137 | timeout = 1000; |
| 138 | /* Can't use interrupts on PXA3xx */ |
| 139 | GCR &= ~(GCR_PRIRDY_IEN|GCR_SECRDY_IEN); |
| 140 | |
| 141 | GCR = GCR_WARM_RST | GCR_COLD_RST; |
| 142 | while (!(GSR & (GSR_PCR | GSR_SCR)) && timeout--) |
| 143 | mdelay(10); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 144 | #else |
| 145 | GCR = GCR_COLD_RST; |
| 146 | GCR |= GCR_CDONE_IE|GCR_SDONE_IE; |
| 147 | wait_event_timeout(gsr_wq, gsr_bits & (GSR_PCR | GSR_SCR), 1); |
| 148 | #endif |
| 149 | |
| 150 | if (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR))) { |
| 151 | printk(KERN_INFO "%s: cold reset timeout (GSR=%#lx)\n", |
Harvey Harrison | 9bf8e7d | 2008-03-03 15:32:18 -0800 | [diff] [blame] | 152 | __func__, gsr_bits); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 153 | |
| 154 | /* let's try warm reset */ |
| 155 | gsr_bits = 0; |
| 156 | #ifdef CONFIG_PXA27x |
| 157 | /* warm reset broken on Bulverde, |
| 158 | so manually keep AC97 reset high */ |
| 159 | pxa_gpio_mode(113 | GPIO_OUT | GPIO_DFLT_HIGH); |
| 160 | udelay(10); |
| 161 | GCR |= GCR_WARM_RST; |
| 162 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); |
Liam Girdwood | 4a677ac5 | 2005-08-05 10:24:36 +0200 | [diff] [blame] | 163 | udelay(500); |
Mark Brown | 815c1be | 2008-04-22 17:09:49 +0200 | [diff] [blame] | 164 | #elif defined(CONFIG_PXA3xx) |
| 165 | timeout = 100; |
| 166 | /* Can't use interrupts */ |
| 167 | GCR |= GCR_WARM_RST; |
| 168 | while (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR)) && timeout--) |
| 169 | mdelay(1); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 170 | #else |
Liam Girdwood | 4a677ac5 | 2005-08-05 10:24:36 +0200 | [diff] [blame] | 171 | GCR |= GCR_WARM_RST|GCR_PRIRDY_IEN|GCR_SECRDY_IEN; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 172 | wait_event_timeout(gsr_wq, gsr_bits & (GSR_PCR | GSR_SCR), 1); |
| 173 | #endif |
| 174 | |
| 175 | if (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR))) |
| 176 | printk(KERN_INFO "%s: warm reset timeout (GSR=%#lx)\n", |
Harvey Harrison | 9bf8e7d | 2008-03-03 15:32:18 -0800 | [diff] [blame] | 177 | __func__, gsr_bits); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | GCR &= ~(GCR_PRIRDY_IEN|GCR_SECRDY_IEN); |
| 181 | GCR |= GCR_SDONE_IE|GCR_CDONE_IE; |
| 182 | } |
| 183 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 184 | static irqreturn_t pxa2xx_ac97_irq(int irq, void *dev_id) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 185 | { |
| 186 | long status; |
| 187 | |
| 188 | status = GSR; |
| 189 | if (status) { |
| 190 | GSR = status; |
| 191 | gsr_bits |= status; |
| 192 | wake_up(&gsr_wq); |
| 193 | |
| 194 | #ifdef CONFIG_PXA27x |
| 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)... */ |
| 198 | MISR = MISR_EOC; |
| 199 | PISR = PISR_EOC; |
| 200 | MCSR = MCSR_EOC; |
| 201 | #endif |
| 202 | |
| 203 | return IRQ_HANDLED; |
| 204 | } |
| 205 | |
| 206 | return IRQ_NONE; |
| 207 | } |
| 208 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 209 | static struct snd_ac97_bus_ops pxa2xx_ac97_ops = { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 210 | .read = pxa2xx_ac97_read, |
| 211 | .write = pxa2xx_ac97_write, |
| 212 | .reset = pxa2xx_ac97_reset, |
| 213 | }; |
| 214 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 215 | static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_out = { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 216 | .name = "AC97 PCM out", |
| 217 | .dev_addr = __PREG(PCDR), |
| 218 | .drcmr = &DRCMRTXPCDR, |
| 219 | .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG | |
| 220 | DCMD_BURST32 | DCMD_WIDTH4, |
| 221 | }; |
| 222 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 223 | static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_in = { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 224 | .name = "AC97 PCM in", |
| 225 | .dev_addr = __PREG(PCDR), |
| 226 | .drcmr = &DRCMRRXPCDR, |
| 227 | .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC | |
| 228 | DCMD_BURST32 | DCMD_WIDTH4, |
| 229 | }; |
| 230 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 231 | static struct snd_pcm *pxa2xx_ac97_pcm; |
| 232 | static struct snd_ac97 *pxa2xx_ac97_ac97; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 233 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 234 | static int pxa2xx_ac97_pcm_startup(struct snd_pcm_substream *substream) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 235 | { |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 236 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 237 | pxa2xx_audio_ops_t *platform_ops; |
| 238 | int r; |
| 239 | |
| 240 | runtime->hw.channels_min = 2; |
| 241 | runtime->hw.channels_max = 2; |
| 242 | |
| 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); |
| 247 | |
| 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); |
| 251 | else |
| 252 | return 0; |
| 253 | } |
| 254 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 255 | static void pxa2xx_ac97_pcm_shutdown(struct snd_pcm_substream *substream) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 256 | { |
| 257 | pxa2xx_audio_ops_t *platform_ops; |
| 258 | |
| 259 | platform_ops = substream->pcm->card->dev->platform_data; |
| 260 | if (platform_ops && platform_ops->shutdown) |
| 261 | platform_ops->shutdown(substream, platform_ops->priv); |
| 262 | } |
| 263 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 264 | static int pxa2xx_ac97_pcm_prepare(struct snd_pcm_substream *substream) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 265 | { |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 266 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 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); |
| 270 | } |
| 271 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 272 | static struct pxa2xx_pcm_client pxa2xx_ac97_pcm_client = { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 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, |
| 278 | }; |
| 279 | |
| 280 | #ifdef CONFIG_PM |
| 281 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 282 | static int pxa2xx_ac97_do_suspend(struct snd_card *card, pm_message_t state) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 283 | { |
Takashi Iwai | 792a6c5 | 2005-11-17 17:19:25 +0100 | [diff] [blame] | 284 | pxa2xx_audio_ops_t *platform_ops = card->dev->platform_data; |
| 285 | |
| 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; |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 292 | clk_disable(ac97_clk); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 297 | static int pxa2xx_ac97_do_resume(struct snd_card *card) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 298 | { |
Takashi Iwai | 792a6c5 | 2005-11-17 17:19:25 +0100 | [diff] [blame] | 299 | pxa2xx_audio_ops_t *platform_ops = card->dev->platform_data; |
| 300 | |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 301 | clk_enable(ac97_clk); |
Takashi Iwai | 792a6c5 | 2005-11-17 17:19:25 +0100 | [diff] [blame] | 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); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 306 | |
| 307 | return 0; |
| 308 | } |
| 309 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 310 | static int pxa2xx_ac97_suspend(struct platform_device *dev, pm_message_t state) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 311 | { |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 312 | struct snd_card *card = platform_get_drvdata(dev); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 313 | int ret = 0; |
| 314 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 315 | if (card) |
Dirk Opfer | a55bfdc | 2005-08-08 16:29:43 +0200 | [diff] [blame] | 316 | ret = pxa2xx_ac97_do_suspend(card, PMSG_SUSPEND); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 317 | |
| 318 | return ret; |
| 319 | } |
| 320 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 321 | static int pxa2xx_ac97_resume(struct platform_device *dev) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 322 | { |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 323 | struct snd_card *card = platform_get_drvdata(dev); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 324 | int ret = 0; |
| 325 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 326 | if (card) |
Dirk Opfer | a55bfdc | 2005-08-08 16:29:43 +0200 | [diff] [blame] | 327 | ret = pxa2xx_ac97_do_resume(card); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 328 | |
| 329 | return ret; |
| 330 | } |
| 331 | |
| 332 | #else |
| 333 | #define pxa2xx_ac97_suspend NULL |
| 334 | #define pxa2xx_ac97_resume NULL |
| 335 | #endif |
| 336 | |
Prarit Bhargava | 788c604 | 2007-02-13 13:11:11 +0100 | [diff] [blame] | 337 | static int __devinit pxa2xx_ac97_probe(struct platform_device *dev) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 338 | { |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 339 | struct snd_card *card; |
| 340 | struct snd_ac97_bus *ac97_bus; |
| 341 | struct snd_ac97_template ac97_template; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 342 | int ret; |
| 343 | |
| 344 | ret = -ENOMEM; |
| 345 | card = snd_card_new(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, |
| 346 | THIS_MODULE, 0); |
| 347 | if (!card) |
| 348 | goto err; |
| 349 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 350 | card->dev = &dev->dev; |
| 351 | strncpy(card->driver, dev->dev.driver->name, sizeof(card->driver)); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 352 | |
| 353 | ret = pxa2xx_pcm_new(card, &pxa2xx_ac97_pcm_client, &pxa2xx_ac97_pcm); |
| 354 | if (ret) |
| 355 | goto err; |
| 356 | |
| 357 | ret = request_irq(IRQ_AC97, pxa2xx_ac97_irq, 0, "AC97", NULL); |
| 358 | if (ret < 0) |
| 359 | goto err; |
| 360 | |
| 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); |
| 365 | #ifdef CONFIG_PXA27x |
| 366 | /* Use GPIO 113 as AC97 Reset on Bulverde */ |
| 367 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 368 | ac97conf_clk = clk_get(&dev->dev, "AC97CONFCLK"); |
| 369 | if (IS_ERR(ac97conf_clk)) { |
| 370 | ret = PTR_ERR(ac97conf_clk); |
| 371 | ac97conf_clk = NULL; |
| 372 | goto err; |
| 373 | } |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 374 | #endif |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 375 | |
| 376 | ac97_clk = clk_get(&dev->dev, "AC97CLK"); |
| 377 | if (IS_ERR(ac97_clk)) { |
| 378 | ret = PTR_ERR(ac97_clk); |
| 379 | ac97_clk = NULL; |
| 380 | goto err; |
| 381 | } |
| 382 | clk_enable(ac97_clk); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 383 | |
| 384 | ret = snd_ac97_bus(card, 0, &pxa2xx_ac97_ops, NULL, &ac97_bus); |
| 385 | if (ret) |
| 386 | goto err; |
| 387 | memset(&ac97_template, 0, sizeof(ac97_template)); |
| 388 | ret = snd_ac97_mixer(ac97_bus, &ac97_template, &pxa2xx_ac97_ac97); |
| 389 | if (ret) |
| 390 | goto err; |
| 391 | |
| 392 | snprintf(card->shortname, sizeof(card->shortname), |
| 393 | "%s", snd_ac97_get_short_name(pxa2xx_ac97_ac97)); |
| 394 | snprintf(card->longname, sizeof(card->longname), |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 395 | "%s (%s)", dev->dev.driver->name, card->mixername); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 396 | |
Takashi Iwai | f78dfac | 2007-12-17 16:24:04 +0100 | [diff] [blame] | 397 | snd_card_set_dev(card, &dev->dev); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 398 | ret = snd_card_register(card); |
| 399 | if (ret == 0) { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 400 | platform_set_drvdata(dev, card); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 401 | return 0; |
| 402 | } |
| 403 | |
| 404 | err: |
| 405 | if (card) |
| 406 | snd_card_free(card); |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 407 | if (ac97_clk) { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 408 | GCR |= GCR_ACLINK_OFF; |
| 409 | free_irq(IRQ_AC97, NULL); |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 410 | clk_disable(ac97_clk); |
| 411 | clk_put(ac97_clk); |
| 412 | ac97_clk = NULL; |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 413 | } |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 414 | #ifdef CONFIG_PXA27x |
| 415 | if (ac97conf_clk) { |
| 416 | clk_put(ac97conf_clk); |
| 417 | ac97conf_clk = NULL; |
| 418 | } |
| 419 | #endif |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 420 | return ret; |
| 421 | } |
| 422 | |
Prarit Bhargava | 788c604 | 2007-02-13 13:11:11 +0100 | [diff] [blame] | 423 | static int __devexit pxa2xx_ac97_remove(struct platform_device *dev) |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 424 | { |
Takashi Iwai | d18f837 | 2005-11-17 15:10:38 +0100 | [diff] [blame] | 425 | struct snd_card *card = platform_get_drvdata(dev); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 426 | |
| 427 | if (card) { |
| 428 | snd_card_free(card); |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 429 | platform_set_drvdata(dev, NULL); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 430 | GCR |= GCR_ACLINK_OFF; |
| 431 | free_irq(IRQ_AC97, NULL); |
Mark Brown | 93873fb | 2008-03-04 11:14:25 +0100 | [diff] [blame] | 432 | clk_disable(ac97_clk); |
| 433 | clk_put(ac97_clk); |
| 434 | ac97_clk = NULL; |
| 435 | #ifdef CONFIG_PXA27x |
| 436 | clk_put(ac97conf_clk); |
| 437 | ac97conf_clk = NULL; |
| 438 | #endif |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | return 0; |
| 442 | } |
| 443 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 444 | static struct platform_driver pxa2xx_ac97_driver = { |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 445 | .probe = pxa2xx_ac97_probe, |
Prarit Bhargava | 788c604 | 2007-02-13 13:11:11 +0100 | [diff] [blame] | 446 | .remove = __devexit_p(pxa2xx_ac97_remove), |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 447 | .suspend = pxa2xx_ac97_suspend, |
| 448 | .resume = pxa2xx_ac97_resume, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 449 | .driver = { |
| 450 | .name = "pxa2xx-ac97", |
Kay Sievers | 8b45a20 | 2008-04-14 13:33:36 +0200 | [diff] [blame] | 451 | .owner = THIS_MODULE, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 452 | }, |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 453 | }; |
| 454 | |
| 455 | static int __init pxa2xx_ac97_init(void) |
| 456 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 457 | return platform_driver_register(&pxa2xx_ac97_driver); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static void __exit pxa2xx_ac97_exit(void) |
| 461 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 462 | platform_driver_unregister(&pxa2xx_ac97_driver); |
Takashi Iwai | 2c484df | 2005-06-30 18:54:04 +0200 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | module_init(pxa2xx_ac97_init); |
| 466 | module_exit(pxa2xx_ac97_exit); |
| 467 | |
| 468 | MODULE_AUTHOR("Nicolas Pitre"); |
| 469 | MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip"); |
| 470 | MODULE_LICENSE("GPL"); |
Kay Sievers | 8b45a20 | 2008-04-14 13:33:36 +0200 | [diff] [blame] | 471 | MODULE_ALIAS("platform:pxa2xx-ac97"); |