]> bbs.cooldavid.org Git - net-next-2.6.git/blame - sound/soc/blackfin/bf5xx-ac97.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / sound / soc / blackfin / bf5xx-ac97.c
CommitLineData
f2028623
CC
1/*
2 * bf5xx-ac97.c -- AC97 support for the ADI blackfin chip.
3 *
4 * Author: Roy Huang
5 * Created: 11th. June 2007
6 * Copyright: Analog Device 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/platform_device.h>
16#include <linux/interrupt.h>
17#include <linux/wait.h>
18#include <linux/delay.h>
5a0e3ad6 19#include <linux/slab.h>
f2028623
CC
20
21#include <sound/core.h>
22#include <sound/pcm.h>
23#include <sound/ac97_codec.h>
24#include <sound/initval.h>
25#include <sound/soc.h>
26
27#include <asm/irq.h>
28#include <asm/portmux.h>
29#include <linux/mutex.h>
30#include <linux/gpio.h>
31
32#include "bf5xx-sport.h"
33#include "bf5xx-ac97.h"
34
cf485da1
SZ
35/* Anomaly notes:
36 * 05000250 - AD1980 is running in TDM mode and RFS/TFS are generated by SPORT
37 * contrtoller. But, RFSDIV and TFSDIV are always set to 16*16-1,
38 * while the max AC97 data size is 13*16. The DIV is always larger
39 * than data size. AD73311 and ad2602 are not running in TDM mode.
40 * AD1836 and AD73322 depend on external RFS/TFS only. So, this
41 * anomaly does not affect blackfin sound drivers.
42*/
43
f2028623
CC
44static int *cmd_count;
45static int sport_num = CONFIG_SND_BF5XX_SPORT_NUM;
46
92a950ff
MF
47#define SPORT_REQ(x) \
48 [x] = {P_SPORT##x##_TFS, P_SPORT##x##_DTPRI, P_SPORT##x##_TSCLK, \
49 P_SPORT##x##_RFS, P_SPORT##x##_DRPRI, P_SPORT##x##_RSCLK, 0}
67f854b9 50static u16 sport_req[][7] = {
92a950ff
MF
51#ifdef SPORT0_TCR1
52 SPORT_REQ(0),
67f854b9 53#endif
92a950ff
MF
54#ifdef SPORT1_TCR1
55 SPORT_REQ(1),
67f854b9 56#endif
92a950ff
MF
57#ifdef SPORT2_TCR1
58 SPORT_REQ(2),
67f854b9 59#endif
92a950ff
MF
60#ifdef SPORT3_TCR1
61 SPORT_REQ(3),
62#endif
63};
67f854b9 64
92a950ff
MF
65#define SPORT_PARAMS(x) \
66 [x] = { \
67 .dma_rx_chan = CH_SPORT##x##_RX, \
68 .dma_tx_chan = CH_SPORT##x##_TX, \
69 .err_irq = IRQ_SPORT##x##_ERROR, \
70 .regs = (struct sport_register *)SPORT##x##_TCR1, \
71 }
f2028623 72static struct sport_param sport_params[4] = {
92a950ff
MF
73#ifdef SPORT0_TCR1
74 SPORT_PARAMS(0),
67f854b9 75#endif
92a950ff
MF
76#ifdef SPORT1_TCR1
77 SPORT_PARAMS(1),
67f854b9 78#endif
92a950ff
MF
79#ifdef SPORT2_TCR1
80 SPORT_PARAMS(2),
81#endif
82#ifdef SPORT3_TCR1
83 SPORT_PARAMS(3),
f2028623 84#endif
67f854b9 85};
f2028623 86
67f854b9
CC
87void bf5xx_pcm_to_ac97(struct ac97_frame *dst, const __u16 *src,
88 size_t count, unsigned int chan_mask)
f2028623
CC
89{
90 while (count--) {
67f854b9
CC
91 dst->ac97_tag = TAG_VALID;
92 if (chan_mask & SP_FL) {
93 dst->ac97_pcm_r = *src++;
94 dst->ac97_tag |= TAG_PCM_RIGHT;
95 }
96 if (chan_mask & SP_FR) {
97 dst->ac97_pcm_l = *src++;
98 dst->ac97_tag |= TAG_PCM_LEFT;
99
100 }
101#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
102 if (chan_mask & SP_SR) {
103 dst->ac97_sl = *src++;
104 dst->ac97_tag |= TAG_PCM_SL;
105 }
106 if (chan_mask & SP_SL) {
107 dst->ac97_sr = *src++;
108 dst->ac97_tag |= TAG_PCM_SR;
109 }
110 if (chan_mask & SP_LFE) {
111 dst->ac97_lfe = *src++;
112 dst->ac97_tag |= TAG_PCM_LFE;
113 }
114 if (chan_mask & SP_FC) {
115 dst->ac97_center = *src++;
116 dst->ac97_tag |= TAG_PCM_CENTER;
117 }
118#endif
119 dst++;
f2028623
CC
120 }
121}
122EXPORT_SYMBOL(bf5xx_pcm_to_ac97);
123
67f854b9 124void bf5xx_ac97_to_pcm(const struct ac97_frame *src, __u16 *dst,
f2028623
CC
125 size_t count)
126{
67f854b9
CC
127 while (count--) {
128 *(dst++) = src->ac97_pcm_l;
129 *(dst++) = src->ac97_pcm_r;
130 src++;
131 }
f2028623
CC
132}
133EXPORT_SYMBOL(bf5xx_ac97_to_pcm);
134
135static unsigned int sport_tx_curr_frag(struct sport_device *sport)
136{
67f854b9 137 return sport->tx_curr_frag = sport_curr_offset_tx(sport) /
f2028623
CC
138 sport->tx_fragsize;
139}
140
141static void enqueue_cmd(struct snd_ac97 *ac97, __u16 addr, __u16 data)
142{
143 struct sport_device *sport = sport_handle;
144 int nextfrag = sport_tx_curr_frag(sport);
145 struct ac97_frame *nextwrite;
146
f2028623
CC
147 sport_incfrag(sport, &nextfrag, 1);
148
67f854b9 149 nextwrite = (struct ac97_frame *)(sport->tx_buf +
f2028623
CC
150 nextfrag * sport->tx_fragsize);
151 pr_debug("sport->tx_buf:%p, nextfrag:0x%x nextwrite:%p, cmd_count:%d\n",
152 sport->tx_buf, nextfrag, nextwrite, cmd_count[nextfrag]);
153 nextwrite[cmd_count[nextfrag]].ac97_tag |= TAG_CMD;
154 nextwrite[cmd_count[nextfrag]].ac97_addr = addr;
155 nextwrite[cmd_count[nextfrag]].ac97_data = data;
156 ++cmd_count[nextfrag];
157 pr_debug("ac97_sport: Inserting %02x/%04x into fragment %d\n",
158 addr >> 8, data, nextfrag);
159}
160
161static unsigned short bf5xx_ac97_read(struct snd_ac97 *ac97,
162 unsigned short reg)
163{
164 struct ac97_frame out_frame[2], in_frame[2];
165
166 pr_debug("%s enter 0x%x\n", __func__, reg);
167
168 /* When dma descriptor is enabled, the register should not be read */
169 if (sport_handle->tx_run || sport_handle->rx_run) {
170 pr_err("Could you send a mail to cliff.cai@analog.com "
171 "to report this?\n");
172 return -EFAULT;
173 }
174
175 memset(&out_frame, 0, 2 * sizeof(struct ac97_frame));
176 memset(&in_frame, 0, 2 * sizeof(struct ac97_frame));
177 out_frame[0].ac97_tag = TAG_VALID | TAG_CMD;
178 out_frame[0].ac97_addr = ((reg << 8) | 0x8000);
179 sport_send_and_recv(sport_handle, (unsigned char *)&out_frame,
180 (unsigned char *)&in_frame,
181 2 * sizeof(struct ac97_frame));
182 return in_frame[1].ac97_data;
183}
184
185void bf5xx_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
186 unsigned short val)
187{
188 pr_debug("%s enter 0x%x:0x%04x\n", __func__, reg, val);
189
190 if (sport_handle->tx_run) {
191 enqueue_cmd(ac97, (reg << 8), val); /* write */
192 enqueue_cmd(ac97, (reg << 8) | 0x8000, 0); /* read back */
193 } else {
194 struct ac97_frame frame;
195 memset(&frame, 0, sizeof(struct ac97_frame));
196 frame.ac97_tag = TAG_VALID | TAG_CMD;
197 frame.ac97_addr = (reg << 8);
198 frame.ac97_data = val;
199 sport_send_and_recv(sport_handle, (unsigned char *)&frame, \
200 NULL, sizeof(struct ac97_frame));
201 }
202}
203
204static void bf5xx_ac97_warm_reset(struct snd_ac97 *ac97)
205{
206#if defined(CONFIG_BF54x) || defined(CONFIG_BF561) || \
207 (defined(BF537_FAMILY) && (CONFIG_SND_BF5XX_SPORT_NUM == 1))
208
209#define CONCAT(a, b, c) a ## b ## c
210#define BFIN_SPORT_RFS(x) CONCAT(P_SPORT, x, _RFS)
211
212 u16 per = BFIN_SPORT_RFS(CONFIG_SND_BF5XX_SPORT_NUM);
213 u16 gpio = P_IDENT(BFIN_SPORT_RFS(CONFIG_SND_BF5XX_SPORT_NUM));
214
215 pr_debug("%s enter\n", __func__);
216
217 peripheral_free(per);
218 gpio_request(gpio, "bf5xx-ac97");
219 gpio_direction_output(gpio, 1);
220 udelay(2);
221 gpio_set_value(gpio, 0);
222 udelay(1);
223 gpio_free(gpio);
224 peripheral_request(per, "soc-audio");
225#else
226 pr_info("%s: Not implemented\n", __func__);
227#endif
228}
229
230static void bf5xx_ac97_cold_reset(struct snd_ac97 *ac97)
231{
232#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
233 pr_debug("%s enter\n", __func__);
234
235 /* It is specified for bf548-ezkit */
236 gpio_set_value(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 0);
237 /* Keep reset pin low for 1 ms */
238 mdelay(1);
239 gpio_set_value(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 1);
240 /* Wait for bit clock recover */
241 mdelay(1);
242#else
243 pr_info("%s: Not implemented\n", __func__);
244#endif
245}
246
247struct snd_ac97_bus_ops soc_ac97_ops = {
248 .read = bf5xx_ac97_read,
249 .write = bf5xx_ac97_write,
250 .warm_reset = bf5xx_ac97_warm_reset,
251 .reset = bf5xx_ac97_cold_reset,
252};
253EXPORT_SYMBOL_GPL(soc_ac97_ops);
254
255#ifdef CONFIG_PM
dc7d7b83 256static int bf5xx_ac97_suspend(struct snd_soc_dai *dai)
f2028623
CC
257{
258 struct sport_device *sport =
259 (struct sport_device *)dai->private_data;
260
261 pr_debug("%s : sport %d\n", __func__, dai->id);
262 if (!dai->active)
263 return 0;
264 if (dai->capture.active)
265 sport_rx_stop(sport);
266 if (dai->playback.active)
267 sport_tx_stop(sport);
268 return 0;
269}
270
dc7d7b83 271static int bf5xx_ac97_resume(struct snd_soc_dai *dai)
f2028623
CC
272{
273 int ret;
274 struct sport_device *sport =
275 (struct sport_device *)dai->private_data;
276
277 pr_debug("%s : sport %d\n", __func__, dai->id);
278 if (!dai->active)
279 return 0;
280
79dfc968
CC
281#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
282 ret = sport_set_multichannel(sport, 16, 0x3FF, 1);
283#else
18d02bc3 284 ret = sport_set_multichannel(sport, 16, 0x1F, 1);
79dfc968 285#endif
f2028623
CC
286 if (ret) {
287 pr_err("SPORT is busy!\n");
288 return -EBUSY;
289 }
290
18d02bc3 291 ret = sport_config_rx(sport, IRFS, 0xF, 0, (16*16-1));
f2028623
CC
292 if (ret) {
293 pr_err("SPORT is busy!\n");
294 return -EBUSY;
295 }
296
18d02bc3 297 ret = sport_config_tx(sport, ITFS, 0xF, 0, (16*16-1));
f2028623
CC
298 if (ret) {
299 pr_err("SPORT is busy!\n");
300 return -EBUSY;
301 }
302
f2028623
CC
303 return 0;
304}
305
306#else
307#define bf5xx_ac97_suspend NULL
308#define bf5xx_ac97_resume NULL
309#endif
310
311static int bf5xx_ac97_probe(struct platform_device *pdev,
312 struct snd_soc_dai *dai)
313{
67f854b9 314 int ret = 0;
f2028623
CC
315 cmd_count = (int *)get_zeroed_page(GFP_KERNEL);
316 if (cmd_count == NULL)
317 return -ENOMEM;
318
92a950ff 319 if (peripheral_request_list(sport_req[sport_num], "soc-audio")) {
f2028623 320 pr_err("Requesting Peripherals failed\n");
67f854b9
CC
321 ret = -EFAULT;
322 goto peripheral_err;
92a950ff 323 }
f2028623
CC
324
325#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
326 /* Request PB3 as reset pin */
327 if (gpio_request(CONFIG_SND_BF5XX_RESET_GPIO_NUM, "SND_AD198x RESET")) {
328 pr_err("Failed to request GPIO_%d for reset\n",
329 CONFIG_SND_BF5XX_RESET_GPIO_NUM);
67f854b9
CC
330 ret = -1;
331 goto gpio_err;
f2028623
CC
332 }
333 gpio_direction_output(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 1);
334#endif
335 sport_handle = sport_init(&sport_params[sport_num], 2, \
336 sizeof(struct ac97_frame), NULL);
337 if (!sport_handle) {
67f854b9
CC
338 ret = -ENODEV;
339 goto sport_err;
f2028623
CC
340 }
341 /*SPORT works in TDM mode to simulate AC97 transfers*/
79dfc968
CC
342#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
343 ret = sport_set_multichannel(sport_handle, 16, 0x3FF, 1);
344#else
f2028623 345 ret = sport_set_multichannel(sport_handle, 16, 0x1F, 1);
79dfc968 346#endif
f2028623
CC
347 if (ret) {
348 pr_err("SPORT is busy!\n");
67f854b9
CC
349 ret = -EBUSY;
350 goto sport_config_err;
f2028623
CC
351 }
352
353 ret = sport_config_rx(sport_handle, IRFS, 0xF, 0, (16*16-1));
354 if (ret) {
355 pr_err("SPORT is busy!\n");
67f854b9
CC
356 ret = -EBUSY;
357 goto sport_config_err;
f2028623
CC
358 }
359
360 ret = sport_config_tx(sport_handle, ITFS, 0xF, 0, (16*16-1));
361 if (ret) {
362 pr_err("SPORT is busy!\n");
67f854b9
CC
363 ret = -EBUSY;
364 goto sport_config_err;
365 }
366
0cade26e
MH
367 return 0;
368
67f854b9
CC
369sport_config_err:
370 kfree(sport_handle);
371sport_err:
f2028623 372#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
67f854b9 373 gpio_free(CONFIG_SND_BF5XX_RESET_GPIO_NUM);
67f854b9 374gpio_err:
3465d93a 375#endif
92a950ff 376 peripheral_free_list(sport_req[sport_num]);
67f854b9
CC
377peripheral_err:
378 free_page((unsigned long)cmd_count);
379 cmd_count = NULL;
380
381 return ret;
f2028623
CC
382}
383
384static void bf5xx_ac97_remove(struct platform_device *pdev,
385 struct snd_soc_dai *dai)
386{
387 free_page((unsigned long)cmd_count);
388 cmd_count = NULL;
92a950ff 389 peripheral_free_list(sport_req[sport_num]);
f2028623
CC
390#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
391 gpio_free(CONFIG_SND_BF5XX_RESET_GPIO_NUM);
392#endif
393}
394
395struct snd_soc_dai bfin_ac97_dai = {
396 .name = "bf5xx-ac97",
397 .id = 0,
3ba9e10a 398 .ac97_control = 1,
f2028623
CC
399 .probe = bf5xx_ac97_probe,
400 .remove = bf5xx_ac97_remove,
401 .suspend = bf5xx_ac97_suspend,
402 .resume = bf5xx_ac97_resume,
403 .playback = {
404 .stream_name = "AC97 Playback",
405 .channels_min = 2,
67f854b9
CC
406#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
407 .channels_max = 6,
408#else
f2028623 409 .channels_max = 2,
67f854b9 410#endif
f2028623
CC
411 .rates = SNDRV_PCM_RATE_48000,
412 .formats = SNDRV_PCM_FMTBIT_S16_LE, },
413 .capture = {
414 .stream_name = "AC97 Capture",
415 .channels_min = 2,
416 .channels_max = 2,
417 .rates = SNDRV_PCM_RATE_48000,
418 .formats = SNDRV_PCM_FMTBIT_S16_LE, },
419};
420EXPORT_SYMBOL_GPL(bfin_ac97_dai);
421
c9b3a40f 422static int __init bfin_ac97_init(void)
3f4b783c
MB
423{
424 return snd_soc_register_dai(&bfin_ac97_dai);
425}
426module_init(bfin_ac97_init);
427
428static void __exit bfin_ac97_exit(void)
429{
430 snd_soc_unregister_dai(&bfin_ac97_dai);
431}
432module_exit(bfin_ac97_exit);
433
f2028623
CC
434MODULE_AUTHOR("Roy Huang");
435MODULE_DESCRIPTION("AC97 driver for ADI Blackfin");
436MODULE_LICENSE("GPL");