blob: 490217325975ab47f9c393fc66d01365e16410b1 [file] [log] [blame]
Cliff Caif2028622008-09-05 18:21:37 +08001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Cliff Caif2028622008-09-05 18:21:37 +080020
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
Sonic Zhangcf485da2009-06-02 00:18:57 -040035/* 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
Barry Song2c66cb92011-03-28 01:45:10 -040044static struct sport_device *ac97_sport_handle;
Cliff Caif2028622008-09-05 18:21:37 +080045
Cliff Cai67f854b2008-11-18 16:18:17 +080046void bf5xx_pcm_to_ac97(struct ac97_frame *dst, const __u16 *src,
47 size_t count, unsigned int chan_mask)
Cliff Caif2028622008-09-05 18:21:37 +080048{
49 while (count--) {
Cliff Cai67f854b2008-11-18 16:18:17 +080050 dst->ac97_tag = TAG_VALID;
51 if (chan_mask & SP_FL) {
52 dst->ac97_pcm_r = *src++;
53 dst->ac97_tag |= TAG_PCM_RIGHT;
54 }
55 if (chan_mask & SP_FR) {
56 dst->ac97_pcm_l = *src++;
57 dst->ac97_tag |= TAG_PCM_LEFT;
58
59 }
60#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
61 if (chan_mask & SP_SR) {
62 dst->ac97_sl = *src++;
63 dst->ac97_tag |= TAG_PCM_SL;
64 }
65 if (chan_mask & SP_SL) {
66 dst->ac97_sr = *src++;
67 dst->ac97_tag |= TAG_PCM_SR;
68 }
69 if (chan_mask & SP_LFE) {
70 dst->ac97_lfe = *src++;
71 dst->ac97_tag |= TAG_PCM_LFE;
72 }
73 if (chan_mask & SP_FC) {
74 dst->ac97_center = *src++;
75 dst->ac97_tag |= TAG_PCM_CENTER;
76 }
77#endif
78 dst++;
Cliff Caif2028622008-09-05 18:21:37 +080079 }
80}
81EXPORT_SYMBOL(bf5xx_pcm_to_ac97);
82
Cliff Cai67f854b2008-11-18 16:18:17 +080083void bf5xx_ac97_to_pcm(const struct ac97_frame *src, __u16 *dst,
Cliff Caif2028622008-09-05 18:21:37 +080084 size_t count)
85{
Cliff Cai67f854b2008-11-18 16:18:17 +080086 while (count--) {
87 *(dst++) = src->ac97_pcm_l;
88 *(dst++) = src->ac97_pcm_r;
89 src++;
90 }
Cliff Caif2028622008-09-05 18:21:37 +080091}
92EXPORT_SYMBOL(bf5xx_ac97_to_pcm);
93
94static unsigned int sport_tx_curr_frag(struct sport_device *sport)
95{
Cliff Cai67f854b2008-11-18 16:18:17 +080096 return sport->tx_curr_frag = sport_curr_offset_tx(sport) /
Cliff Caif2028622008-09-05 18:21:37 +080097 sport->tx_fragsize;
98}
99
100static void enqueue_cmd(struct snd_ac97 *ac97, __u16 addr, __u16 data)
101{
Barry Song2c66cb92011-03-28 01:45:10 -0400102 struct sport_device *sport = ac97_sport_handle;
103 int *cmd_count = sport->private_data;
Cliff Caif2028622008-09-05 18:21:37 +0800104 int nextfrag = sport_tx_curr_frag(sport);
105 struct ac97_frame *nextwrite;
106
107 sport_incfrag(sport, &nextfrag, 1);
Cliff Caif2028622008-09-05 18:21:37 +0800108
Cliff Cai67f854b2008-11-18 16:18:17 +0800109 nextwrite = (struct ac97_frame *)(sport->tx_buf +
Cliff Caif2028622008-09-05 18:21:37 +0800110 nextfrag * sport->tx_fragsize);
111 pr_debug("sport->tx_buf:%p, nextfrag:0x%x nextwrite:%p, cmd_count:%d\n",
112 sport->tx_buf, nextfrag, nextwrite, cmd_count[nextfrag]);
113 nextwrite[cmd_count[nextfrag]].ac97_tag |= TAG_CMD;
114 nextwrite[cmd_count[nextfrag]].ac97_addr = addr;
115 nextwrite[cmd_count[nextfrag]].ac97_data = data;
116 ++cmd_count[nextfrag];
117 pr_debug("ac97_sport: Inserting %02x/%04x into fragment %d\n",
118 addr >> 8, data, nextfrag);
119}
120
121static unsigned short bf5xx_ac97_read(struct snd_ac97 *ac97,
122 unsigned short reg)
123{
Barry Song2c66cb92011-03-28 01:45:10 -0400124 struct sport_device *sport_handle = ac97_sport_handle;
Cliff Caif2028622008-09-05 18:21:37 +0800125 struct ac97_frame out_frame[2], in_frame[2];
126
127 pr_debug("%s enter 0x%x\n", __func__, reg);
128
129 /* When dma descriptor is enabled, the register should not be read */
130 if (sport_handle->tx_run || sport_handle->rx_run) {
131 pr_err("Could you send a mail to cliff.cai@analog.com "
132 "to report this?\n");
133 return -EFAULT;
134 }
135
136 memset(&out_frame, 0, 2 * sizeof(struct ac97_frame));
137 memset(&in_frame, 0, 2 * sizeof(struct ac97_frame));
138 out_frame[0].ac97_tag = TAG_VALID | TAG_CMD;
139 out_frame[0].ac97_addr = ((reg << 8) | 0x8000);
140 sport_send_and_recv(sport_handle, (unsigned char *)&out_frame,
141 (unsigned char *)&in_frame,
142 2 * sizeof(struct ac97_frame));
143 return in_frame[1].ac97_data;
144}
145
146void bf5xx_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
147 unsigned short val)
148{
Barry Song2c66cb92011-03-28 01:45:10 -0400149 struct sport_device *sport_handle = ac97_sport_handle;
150
Cliff Caif2028622008-09-05 18:21:37 +0800151 pr_debug("%s enter 0x%x:0x%04x\n", __func__, reg, val);
152
153 if (sport_handle->tx_run) {
154 enqueue_cmd(ac97, (reg << 8), val); /* write */
155 enqueue_cmd(ac97, (reg << 8) | 0x8000, 0); /* read back */
156 } else {
157 struct ac97_frame frame;
158 memset(&frame, 0, sizeof(struct ac97_frame));
159 frame.ac97_tag = TAG_VALID | TAG_CMD;
160 frame.ac97_addr = (reg << 8);
161 frame.ac97_data = val;
162 sport_send_and_recv(sport_handle, (unsigned char *)&frame, \
163 NULL, sizeof(struct ac97_frame));
164 }
165}
166
167static void bf5xx_ac97_warm_reset(struct snd_ac97 *ac97)
168{
Barry Song2c66cb92011-03-28 01:45:10 -0400169 struct sport_device *sport_handle = ac97_sport_handle;
170 u16 gpio = P_IDENT(sport_handle->pin_req[3]);
Cliff Caif2028622008-09-05 18:21:37 +0800171
172 pr_debug("%s enter\n", __func__);
173
Barry Song2c66cb92011-03-28 01:45:10 -0400174 peripheral_free_list(sport_handle->pin_req);
Cliff Caif2028622008-09-05 18:21:37 +0800175 gpio_request(gpio, "bf5xx-ac97");
176 gpio_direction_output(gpio, 1);
177 udelay(2);
178 gpio_set_value(gpio, 0);
179 udelay(1);
180 gpio_free(gpio);
Barry Song2c66cb92011-03-28 01:45:10 -0400181 peripheral_request_list(sport_handle->pin_req, "soc-audio");
Cliff Caif2028622008-09-05 18:21:37 +0800182}
183
184static void bf5xx_ac97_cold_reset(struct snd_ac97 *ac97)
185{
186#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
187 pr_debug("%s enter\n", __func__);
188
189 /* It is specified for bf548-ezkit */
190 gpio_set_value(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 0);
191 /* Keep reset pin low for 1 ms */
192 mdelay(1);
193 gpio_set_value(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 1);
194 /* Wait for bit clock recover */
195 mdelay(1);
196#else
197 pr_info("%s: Not implemented\n", __func__);
198#endif
199}
200
201struct snd_ac97_bus_ops soc_ac97_ops = {
202 .read = bf5xx_ac97_read,
203 .write = bf5xx_ac97_write,
204 .warm_reset = bf5xx_ac97_warm_reset,
205 .reset = bf5xx_ac97_cold_reset,
206};
207EXPORT_SYMBOL_GPL(soc_ac97_ops);
208
209#ifdef CONFIG_PM
Mark Browndc7d7b82008-12-03 18:21:52 +0000210static int bf5xx_ac97_suspend(struct snd_soc_dai *dai)
Cliff Caif2028622008-09-05 18:21:37 +0800211{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000212 struct sport_device *sport = snd_soc_dai_get_drvdata(dai);
Cliff Caif2028622008-09-05 18:21:37 +0800213
214 pr_debug("%s : sport %d\n", __func__, dai->id);
215 if (!dai->active)
216 return 0;
Mike Frysingere9c20482011-01-11 19:57:33 -0500217 if (dai->capture_active)
Cliff Caif2028622008-09-05 18:21:37 +0800218 sport_rx_stop(sport);
Mike Frysingere9c20482011-01-11 19:57:33 -0500219 if (dai->playback_active)
Cliff Caif2028622008-09-05 18:21:37 +0800220 sport_tx_stop(sport);
221 return 0;
222}
223
Mark Browndc7d7b82008-12-03 18:21:52 +0000224static int bf5xx_ac97_resume(struct snd_soc_dai *dai)
Cliff Caif2028622008-09-05 18:21:37 +0800225{
226 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000227 struct sport_device *sport = snd_soc_dai_get_drvdata(dai);
Cliff Caif2028622008-09-05 18:21:37 +0800228
229 pr_debug("%s : sport %d\n", __func__, dai->id);
230 if (!dai->active)
231 return 0;
232
Cliff Cai79dfc962009-09-16 20:25:08 -0400233#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
234 ret = sport_set_multichannel(sport, 16, 0x3FF, 1);
235#else
Cliff Cai18d02bc2009-07-14 10:01:39 -0400236 ret = sport_set_multichannel(sport, 16, 0x1F, 1);
Cliff Cai79dfc962009-09-16 20:25:08 -0400237#endif
Cliff Caif2028622008-09-05 18:21:37 +0800238 if (ret) {
239 pr_err("SPORT is busy!\n");
240 return -EBUSY;
241 }
242
Cliff Cai18d02bc2009-07-14 10:01:39 -0400243 ret = sport_config_rx(sport, IRFS, 0xF, 0, (16*16-1));
Cliff Caif2028622008-09-05 18:21:37 +0800244 if (ret) {
245 pr_err("SPORT is busy!\n");
246 return -EBUSY;
247 }
248
Cliff Cai18d02bc2009-07-14 10:01:39 -0400249 ret = sport_config_tx(sport, ITFS, 0xF, 0, (16*16-1));
Cliff Caif2028622008-09-05 18:21:37 +0800250 if (ret) {
251 pr_err("SPORT is busy!\n");
252 return -EBUSY;
253 }
254
Cliff Caif2028622008-09-05 18:21:37 +0800255 return 0;
256}
257
258#else
259#define bf5xx_ac97_suspend NULL
260#define bf5xx_ac97_resume NULL
261#endif
262
Barry Song2c66cb92011-03-28 01:45:10 -0400263static struct snd_soc_dai_driver bfin_ac97_dai = {
264 .ac97_control = 1,
265 .suspend = bf5xx_ac97_suspend,
266 .resume = bf5xx_ac97_resume,
267 .playback = {
268 .stream_name = "AC97 Playback",
269 .channels_min = 2,
270#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
271 .channels_max = 6,
272#else
273 .channels_max = 2,
274#endif
275 .rates = SNDRV_PCM_RATE_48000,
276 .formats = SNDRV_PCM_FMTBIT_S16_LE, },
277 .capture = {
278 .stream_name = "AC97 Capture",
279 .channels_min = 2,
280 .channels_max = 2,
281 .rates = SNDRV_PCM_RATE_48000,
282 .formats = SNDRV_PCM_FMTBIT_S16_LE, },
283};
Cliff Caif2028622008-09-05 18:21:37 +0800284
Kuninori Morimoto514f6ac2013-03-21 03:29:57 -0700285static const struct snd_soc_component_driver bfin_ac97_component = {
286 .name = "bfin-ac97",
287};
288
Bill Pembertondca66da2012-12-07 09:26:13 -0500289static int asoc_bfin_ac97_probe(struct platform_device *pdev)
Barry Song2c66cb92011-03-28 01:45:10 -0400290{
291 struct sport_device *sport_handle;
292 int ret;
Cliff Caif2028622008-09-05 18:21:37 +0800293
294#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
295 /* Request PB3 as reset pin */
296 if (gpio_request(CONFIG_SND_BF5XX_RESET_GPIO_NUM, "SND_AD198x RESET")) {
297 pr_err("Failed to request GPIO_%d for reset\n",
298 CONFIG_SND_BF5XX_RESET_GPIO_NUM);
Cliff Cai67f854b2008-11-18 16:18:17 +0800299 ret = -1;
300 goto gpio_err;
Cliff Caif2028622008-09-05 18:21:37 +0800301 }
302 gpio_direction_output(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 1);
303#endif
Barry Song2c66cb92011-03-28 01:45:10 -0400304
305 sport_handle = sport_init(pdev, 2, sizeof(struct ac97_frame),
306 PAGE_SIZE);
Cliff Caif2028622008-09-05 18:21:37 +0800307 if (!sport_handle) {
Cliff Cai67f854b2008-11-18 16:18:17 +0800308 ret = -ENODEV;
309 goto sport_err;
Cliff Caif2028622008-09-05 18:21:37 +0800310 }
Barry Song2c66cb92011-03-28 01:45:10 -0400311
Cliff Caif2028622008-09-05 18:21:37 +0800312 /*SPORT works in TDM mode to simulate AC97 transfers*/
Cliff Cai79dfc962009-09-16 20:25:08 -0400313#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
314 ret = sport_set_multichannel(sport_handle, 16, 0x3FF, 1);
315#else
Cliff Caif2028622008-09-05 18:21:37 +0800316 ret = sport_set_multichannel(sport_handle, 16, 0x1F, 1);
Cliff Cai79dfc962009-09-16 20:25:08 -0400317#endif
Cliff Caif2028622008-09-05 18:21:37 +0800318 if (ret) {
319 pr_err("SPORT is busy!\n");
Cliff Cai67f854b2008-11-18 16:18:17 +0800320 ret = -EBUSY;
321 goto sport_config_err;
Cliff Caif2028622008-09-05 18:21:37 +0800322 }
323
324 ret = sport_config_rx(sport_handle, IRFS, 0xF, 0, (16*16-1));
325 if (ret) {
326 pr_err("SPORT is busy!\n");
Cliff Cai67f854b2008-11-18 16:18:17 +0800327 ret = -EBUSY;
328 goto sport_config_err;
Cliff Caif2028622008-09-05 18:21:37 +0800329 }
330
331 ret = sport_config_tx(sport_handle, ITFS, 0xF, 0, (16*16-1));
332 if (ret) {
333 pr_err("SPORT is busy!\n");
Cliff Cai67f854b2008-11-18 16:18:17 +0800334 ret = -EBUSY;
335 goto sport_config_err;
Cliff Caif2028622008-09-05 18:21:37 +0800336 }
Cliff Cai67f854b2008-11-18 16:18:17 +0800337
Kuninori Morimoto514f6ac2013-03-21 03:29:57 -0700338 ret = snd_soc_register_component(&pdev->dev, &bfin_ac97_component,
339 &bfin_ac97_dai, 1);
Barry Song2c66cb92011-03-28 01:45:10 -0400340 if (ret) {
341 pr_err("Failed to register DAI: %d\n", ret);
342 goto sport_config_err;
343 }
344
345 ac97_sport_handle = sport_handle;
346
Michael Hennerich0cade262008-11-18 16:18:19 +0800347 return 0;
348
Cliff Cai67f854b2008-11-18 16:18:17 +0800349sport_config_err:
Barry Song2c66cb92011-03-28 01:45:10 -0400350 sport_done(sport_handle);
Cliff Cai67f854b2008-11-18 16:18:17 +0800351sport_err:
352#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
353 gpio_free(CONFIG_SND_BF5XX_RESET_GPIO_NUM);
Cliff Cai67f854b2008-11-18 16:18:17 +0800354gpio_err:
Mike Frysinger3465d932009-03-06 15:53:28 +0800355#endif
Cliff Cai67f854b2008-11-18 16:18:17 +0800356
357 return ret;
Cliff Caif2028622008-09-05 18:21:37 +0800358}
359
Bill Pembertondca66da2012-12-07 09:26:13 -0500360static int asoc_bfin_ac97_remove(struct platform_device *pdev)
Cliff Caif2028622008-09-05 18:21:37 +0800361{
Barry Song2c66cb92011-03-28 01:45:10 -0400362 struct sport_device *sport_handle = platform_get_drvdata(pdev);
363
Kuninori Morimoto514f6ac2013-03-21 03:29:57 -0700364 snd_soc_unregister_component(&pdev->dev);
Barry Song2c66cb92011-03-28 01:45:10 -0400365 sport_done(sport_handle);
Cliff Caif2028622008-09-05 18:21:37 +0800366#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
367 gpio_free(CONFIG_SND_BF5XX_RESET_GPIO_NUM);
368#endif
Cliff Caif2028622008-09-05 18:21:37 +0800369
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000370 return 0;
371}
372
373static struct platform_driver asoc_bfin_ac97_driver = {
374 .driver = {
375 .name = "bfin-ac97",
376 .owner = THIS_MODULE,
377 },
378
379 .probe = asoc_bfin_ac97_probe,
Bill Pembertondca66da2012-12-07 09:26:13 -0500380 .remove = asoc_bfin_ac97_remove,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000381};
382
Axel Linfb802972011-11-24 14:44:52 +0800383module_platform_driver(asoc_bfin_ac97_driver);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000384
Cliff Caif2028622008-09-05 18:21:37 +0800385MODULE_AUTHOR("Roy Huang");
386MODULE_DESCRIPTION("AC97 driver for ADI Blackfin");
387MODULE_LICENSE("GPL");