e1000e: commit speed/duplex changes for m88 PHY
[linux-2.6/mini2440.git] / sound / arm / pxa2xx-ac97-lib.c
blob34c1d94f921e1285238cbcbfae13ab9eab10f04f
1 /*
2 * Based on sound/arm/pxa2xx-ac97.c and sound/soc/pxa/pxa2xx-ac97.c
3 * which contain:
5 * Author: Nicolas Pitre
6 * Created: Dec 02, 2004
7 * Copyright: MontaVista Software Inc.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/interrupt.h>
17 #include <linux/clk.h>
18 #include <linux/delay.h>
20 #include <sound/ac97_codec.h>
21 #include <sound/pxa2xx-lib.h>
23 #include <asm/irq.h>
24 #include <mach/hardware.h>
25 #include <mach/pxa-regs.h>
26 #include <mach/pxa2xx-gpio.h>
27 #include <mach/audio.h>
29 static DEFINE_MUTEX(car_mutex);
30 static DECLARE_WAIT_QUEUE_HEAD(gsr_wq);
31 static volatile long gsr_bits;
32 static struct clk *ac97_clk;
33 static struct clk *ac97conf_clk;
36 * Beware PXA27x bugs:
38 * o Slot 12 read from modem space will hang controller.
39 * o CDONE, SDONE interrupt fails after any slot 12 IO.
41 * We therefore have an hybrid approach for waiting on SDONE (interrupt or
42 * 1 jiffy timeout if interrupt never comes).
45 unsigned short pxa2xx_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
47 unsigned short val = -1;
48 volatile u32 *reg_addr;
50 mutex_lock(&car_mutex);
52 /* set up primary or secondary codec space */
53 if (cpu_is_pxa25x() && reg == AC97_GPIO_STATUS)
54 reg_addr = ac97->num ? &SMC_REG_BASE : &PMC_REG_BASE;
55 else
56 reg_addr = ac97->num ? &SAC_REG_BASE : &PAC_REG_BASE;
57 reg_addr += (reg >> 1);
59 /* start read access across the ac97 link */
60 GSR = GSR_CDONE | GSR_SDONE;
61 gsr_bits = 0;
62 val = *reg_addr;
63 if (reg == AC97_GPIO_STATUS)
64 goto out;
65 if (wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_SDONE, 1) <= 0 &&
66 !((GSR | gsr_bits) & GSR_SDONE)) {
67 printk(KERN_ERR "%s: read error (ac97_reg=%d GSR=%#lx)\n",
68 __func__, reg, GSR | gsr_bits);
69 val = -1;
70 goto out;
73 /* valid data now */
74 GSR = GSR_CDONE | GSR_SDONE;
75 gsr_bits = 0;
76 val = *reg_addr;
77 /* but we've just started another cycle... */
78 wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_SDONE, 1);
80 out: mutex_unlock(&car_mutex);
81 return val;
83 EXPORT_SYMBOL_GPL(pxa2xx_ac97_read);
85 void pxa2xx_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
86 unsigned short val)
88 volatile u32 *reg_addr;
90 mutex_lock(&car_mutex);
92 /* set up primary or secondary codec space */
93 if (cpu_is_pxa25x() && reg == AC97_GPIO_STATUS)
94 reg_addr = ac97->num ? &SMC_REG_BASE : &PMC_REG_BASE;
95 else
96 reg_addr = ac97->num ? &SAC_REG_BASE : &PAC_REG_BASE;
97 reg_addr += (reg >> 1);
99 GSR = GSR_CDONE | GSR_SDONE;
100 gsr_bits = 0;
101 *reg_addr = val;
102 if (wait_event_timeout(gsr_wq, (GSR | gsr_bits) & GSR_CDONE, 1) <= 0 &&
103 !((GSR | gsr_bits) & GSR_CDONE))
104 printk(KERN_ERR "%s: write error (ac97_reg=%d GSR=%#lx)\n",
105 __func__, reg, GSR | gsr_bits);
107 mutex_unlock(&car_mutex);
109 EXPORT_SYMBOL_GPL(pxa2xx_ac97_write);
111 #ifdef CONFIG_PXA25x
112 static inline void pxa_ac97_warm_pxa25x(void)
114 gsr_bits = 0;
116 GCR |= GCR_WARM_RST | GCR_PRIRDY_IEN | GCR_SECRDY_IEN;
117 wait_event_timeout(gsr_wq, gsr_bits & (GSR_PCR | GSR_SCR), 1);
120 static inline void pxa_ac97_cold_pxa25x(void)
122 GCR &= GCR_COLD_RST; /* clear everything but nCRST */
123 GCR &= ~GCR_COLD_RST; /* then assert nCRST */
125 gsr_bits = 0;
127 GCR = GCR_COLD_RST;
128 GCR |= GCR_CDONE_IE|GCR_SDONE_IE;
129 wait_event_timeout(gsr_wq, gsr_bits & (GSR_PCR | GSR_SCR), 1);
131 #endif
133 #ifdef CONFIG_PXA27x
134 static inline void pxa_ac97_warm_pxa27x(void)
136 gsr_bits = 0;
138 /* warm reset broken on Bulverde,
139 so manually keep AC97 reset high */
140 pxa_gpio_mode(113 | GPIO_OUT | GPIO_DFLT_HIGH);
141 udelay(10);
142 GCR |= GCR_WARM_RST;
143 pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT);
144 udelay(500);
147 static inline void pxa_ac97_cold_pxa27x(void)
149 GCR &= GCR_COLD_RST; /* clear everything but nCRST */
150 GCR &= ~GCR_COLD_RST; /* then assert nCRST */
152 gsr_bits = 0;
154 /* PXA27x Developers Manual section 13.5.2.2.1 */
155 clk_enable(ac97conf_clk);
156 udelay(5);
157 clk_disable(ac97conf_clk);
158 GCR = GCR_COLD_RST;
159 udelay(50);
161 #endif
163 #ifdef CONFIG_PXA3xx
164 static inline void pxa_ac97_warm_pxa3xx(void)
166 int timeout = 100;
168 gsr_bits = 0;
170 /* Can't use interrupts */
171 GCR |= GCR_WARM_RST;
172 while (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR)) && timeout--)
173 mdelay(1);
176 static inline void pxa_ac97_cold_pxa3xx(void)
178 int timeout = 1000;
180 /* Hold CLKBPB for 100us */
181 GCR = 0;
182 GCR = GCR_CLKBPB;
183 udelay(100);
184 GCR = 0;
186 GCR &= GCR_COLD_RST; /* clear everything but nCRST */
187 GCR &= ~GCR_COLD_RST; /* then assert nCRST */
189 gsr_bits = 0;
191 /* Can't use interrupts on PXA3xx */
192 GCR &= ~(GCR_PRIRDY_IEN|GCR_SECRDY_IEN);
194 GCR = GCR_WARM_RST | GCR_COLD_RST;
195 while (!(GSR & (GSR_PCR | GSR_SCR)) && timeout--)
196 mdelay(10);
198 #endif
200 bool pxa2xx_ac97_try_warm_reset(struct snd_ac97 *ac97)
202 #ifdef CONFIG_PXA25x
203 if (cpu_is_pxa25x())
204 pxa_ac97_warm_pxa25x();
205 else
206 #endif
207 #ifdef CONFIG_PXA27x
208 if (cpu_is_pxa27x())
209 pxa_ac97_warm_pxa27x();
210 else
211 #endif
212 #ifdef CONFIG_PXA3xx
213 if (cpu_is_pxa3xx())
214 pxa_ac97_warm_pxa3xx();
215 else
216 #endif
217 BUG();
219 if (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR))) {
220 printk(KERN_INFO "%s: warm reset timeout (GSR=%#lx)\n",
221 __func__, gsr_bits);
223 return false;
226 return true;
228 EXPORT_SYMBOL_GPL(pxa2xx_ac97_try_warm_reset);
230 bool pxa2xx_ac97_try_cold_reset(struct snd_ac97 *ac97)
232 #ifdef CONFIG_PXA25x
233 if (cpu_is_pxa25x())
234 pxa_ac97_cold_pxa25x();
235 else
236 #endif
237 #ifdef CONFIG_PXA27x
238 if (cpu_is_pxa27x())
239 pxa_ac97_cold_pxa27x();
240 else
241 #endif
242 #ifdef CONFIG_PXA3xx
243 if (cpu_is_pxa3xx())
244 pxa_ac97_cold_pxa3xx();
245 else
246 #endif
247 BUG();
249 if (!((GSR | gsr_bits) & (GSR_PCR | GSR_SCR))) {
250 printk(KERN_INFO "%s: cold reset timeout (GSR=%#lx)\n",
251 __func__, gsr_bits);
253 return false;
256 return true;
258 EXPORT_SYMBOL_GPL(pxa2xx_ac97_try_cold_reset);
261 void pxa2xx_ac97_finish_reset(struct snd_ac97 *ac97)
263 GCR &= ~(GCR_PRIRDY_IEN|GCR_SECRDY_IEN);
264 GCR |= GCR_SDONE_IE|GCR_CDONE_IE;
266 EXPORT_SYMBOL_GPL(pxa2xx_ac97_finish_reset);
268 static irqreturn_t pxa2xx_ac97_irq(int irq, void *dev_id)
270 long status;
272 status = GSR;
273 if (status) {
274 GSR = status;
275 gsr_bits |= status;
276 wake_up(&gsr_wq);
278 /* Although we don't use those we still need to clear them
279 since they tend to spuriously trigger when MMC is used
280 (hardware bug? go figure)... */
281 if (cpu_is_pxa27x()) {
282 MISR = MISR_EOC;
283 PISR = PISR_EOC;
284 MCSR = MCSR_EOC;
287 return IRQ_HANDLED;
290 return IRQ_NONE;
293 #ifdef CONFIG_PM
294 int pxa2xx_ac97_hw_suspend(void)
296 GCR |= GCR_ACLINK_OFF;
297 clk_disable(ac97_clk);
298 return 0;
300 EXPORT_SYMBOL_GPL(pxa2xx_ac97_hw_suspend);
302 int pxa2xx_ac97_hw_resume(void)
304 if (cpu_is_pxa25x() || cpu_is_pxa27x()) {
305 pxa_gpio_mode(GPIO31_SYNC_AC97_MD);
306 pxa_gpio_mode(GPIO30_SDATA_OUT_AC97_MD);
307 pxa_gpio_mode(GPIO28_BITCLK_AC97_MD);
308 pxa_gpio_mode(GPIO29_SDATA_IN_AC97_MD);
310 if (cpu_is_pxa27x()) {
311 /* Use GPIO 113 as AC97 Reset on Bulverde */
312 pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT);
314 clk_enable(ac97_clk);
315 return 0;
317 EXPORT_SYMBOL_GPL(pxa2xx_ac97_hw_resume);
318 #endif
320 int __devinit pxa2xx_ac97_hw_probe(struct platform_device *dev)
322 int ret;
324 ret = request_irq(IRQ_AC97, pxa2xx_ac97_irq, 0, "AC97", NULL);
325 if (ret < 0)
326 goto err;
328 if (cpu_is_pxa25x() || cpu_is_pxa27x()) {
329 pxa_gpio_mode(GPIO31_SYNC_AC97_MD);
330 pxa_gpio_mode(GPIO30_SDATA_OUT_AC97_MD);
331 pxa_gpio_mode(GPIO28_BITCLK_AC97_MD);
332 pxa_gpio_mode(GPIO29_SDATA_IN_AC97_MD);
335 if (cpu_is_pxa27x()) {
336 /* Use GPIO 113 as AC97 Reset on Bulverde */
337 pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT);
338 ac97conf_clk = clk_get(&dev->dev, "AC97CONFCLK");
339 if (IS_ERR(ac97conf_clk)) {
340 ret = PTR_ERR(ac97conf_clk);
341 ac97conf_clk = NULL;
342 goto err_irq;
346 ac97_clk = clk_get(&dev->dev, "AC97CLK");
347 if (IS_ERR(ac97_clk)) {
348 ret = PTR_ERR(ac97_clk);
349 ac97_clk = NULL;
350 goto err_irq;
353 return clk_enable(ac97_clk);
355 err_irq:
356 GCR |= GCR_ACLINK_OFF;
357 if (ac97conf_clk) {
358 clk_put(ac97conf_clk);
359 ac97conf_clk = NULL;
361 free_irq(IRQ_AC97, NULL);
362 err:
363 return ret;
365 EXPORT_SYMBOL_GPL(pxa2xx_ac97_hw_probe);
367 void pxa2xx_ac97_hw_remove(struct platform_device *dev)
369 GCR |= GCR_ACLINK_OFF;
370 free_irq(IRQ_AC97, NULL);
371 if (ac97conf_clk) {
372 clk_put(ac97conf_clk);
373 ac97conf_clk = NULL;
375 clk_disable(ac97_clk);
376 clk_put(ac97_clk);
377 ac97_clk = NULL;
379 EXPORT_SYMBOL_GPL(pxa2xx_ac97_hw_remove);
381 MODULE_AUTHOR("Nicolas Pitre");
382 MODULE_DESCRIPTION("Intel/Marvell PXA sound library");
383 MODULE_LICENSE("GPL");