bf5xx-ac97.c 11.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * bf5xx-ac97.c -- AC97 support for the ADI blackfin chip.
 *
 * Author:	Roy Huang
 * Created:	11th. June 2007
 * Copyright:	Analog Device Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/interrupt.h>
#include <linux/wait.h>
#include <linux/delay.h>
19
#include <linux/slab.h>
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/ac97_codec.h>
#include <sound/initval.h>
#include <sound/soc.h>

#include <asm/irq.h>
#include <asm/portmux.h>
#include <linux/mutex.h>
#include <linux/gpio.h>

#include "bf5xx-sport.h"
#include "bf5xx-ac97.h"

35 36 37 38 39 40 41 42 43
/* Anomaly notes:
 *  05000250 -	AD1980 is running in TDM mode and RFS/TFS are generated by SPORT
 *		contrtoller. But, RFSDIV and TFSDIV are always set to 16*16-1,
 *		while the max AC97 data size is 13*16. The DIV is always larger
 *		than data size. AD73311 and ad2602 are not running in TDM mode.
 *		AD1836 and AD73322 depend on external RFS/TFS only. So, this
 *		anomaly does not affect blackfin sound drivers.
*/

44 45 46
static int *cmd_count;
static int sport_num = CONFIG_SND_BF5XX_SPORT_NUM;

47 48 49
#define SPORT_REQ(x) \
	[x] = {P_SPORT##x##_TFS, P_SPORT##x##_DTPRI, P_SPORT##x##_TSCLK, \
	       P_SPORT##x##_RFS, P_SPORT##x##_DRPRI, P_SPORT##x##_RSCLK, 0}
50
static u16 sport_req[][7] = {
51 52
#ifdef SPORT0_TCR1
	SPORT_REQ(0),
53
#endif
54 55
#ifdef SPORT1_TCR1
	SPORT_REQ(1),
56
#endif
57 58
#ifdef SPORT2_TCR1
	SPORT_REQ(2),
59
#endif
60 61 62 63
#ifdef SPORT3_TCR1
	SPORT_REQ(3),
#endif
};
64

65 66 67 68 69 70 71
#define SPORT_PARAMS(x) \
	[x] = { \
		.dma_rx_chan = CH_SPORT##x##_RX, \
		.dma_tx_chan = CH_SPORT##x##_TX, \
		.err_irq     = IRQ_SPORT##x##_ERROR, \
		.regs        = (struct sport_register *)SPORT##x##_TCR1, \
	}
72
static struct sport_param sport_params[4] = {
73 74
#ifdef SPORT0_TCR1
	SPORT_PARAMS(0),
75
#endif
76 77
#ifdef SPORT1_TCR1
	SPORT_PARAMS(1),
78
#endif
79 80 81 82 83
#ifdef SPORT2_TCR1
	SPORT_PARAMS(2),
#endif
#ifdef SPORT3_TCR1
	SPORT_PARAMS(3),
84
#endif
85
};
86

87 88
void bf5xx_pcm_to_ac97(struct ac97_frame *dst, const __u16 *src,
		size_t count, unsigned int chan_mask)
89 90
{
	while (count--) {
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
		dst->ac97_tag = TAG_VALID;
		if (chan_mask & SP_FL) {
			dst->ac97_pcm_r = *src++;
			dst->ac97_tag |= TAG_PCM_RIGHT;
		}
		if (chan_mask & SP_FR) {
			dst->ac97_pcm_l = *src++;
			dst->ac97_tag |= TAG_PCM_LEFT;

		}
#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
		if (chan_mask & SP_SR) {
			dst->ac97_sl = *src++;
			dst->ac97_tag |= TAG_PCM_SL;
		}
		if (chan_mask & SP_SL) {
			dst->ac97_sr = *src++;
			dst->ac97_tag |= TAG_PCM_SR;
		}
		if (chan_mask & SP_LFE) {
			dst->ac97_lfe = *src++;
			dst->ac97_tag |= TAG_PCM_LFE;
		}
		if (chan_mask & SP_FC) {
			dst->ac97_center = *src++;
			dst->ac97_tag |= TAG_PCM_CENTER;
		}
#endif
		dst++;
120 121 122 123
	}
}
EXPORT_SYMBOL(bf5xx_pcm_to_ac97);

124
void bf5xx_ac97_to_pcm(const struct ac97_frame *src, __u16 *dst,
125 126
		size_t count)
{
127 128 129 130 131
	while (count--) {
		*(dst++) = src->ac97_pcm_l;
		*(dst++) = src->ac97_pcm_r;
		src++;
	}
132 133 134 135 136
}
EXPORT_SYMBOL(bf5xx_ac97_to_pcm);

static unsigned int sport_tx_curr_frag(struct sport_device *sport)
{
137
	return sport->tx_curr_frag = sport_curr_offset_tx(sport) /
138 139 140 141 142 143 144 145 146 147 148
			sport->tx_fragsize;
}

static void enqueue_cmd(struct snd_ac97 *ac97, __u16 addr, __u16 data)
{
	struct sport_device *sport = sport_handle;
	int nextfrag = sport_tx_curr_frag(sport);
	struct ac97_frame *nextwrite;

	sport_incfrag(sport, &nextfrag, 1);

149
	nextwrite = (struct ac97_frame *)(sport->tx_buf +
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
			nextfrag * sport->tx_fragsize);
	pr_debug("sport->tx_buf:%p, nextfrag:0x%x nextwrite:%p, cmd_count:%d\n",
		sport->tx_buf, nextfrag, nextwrite, cmd_count[nextfrag]);
	nextwrite[cmd_count[nextfrag]].ac97_tag |= TAG_CMD;
	nextwrite[cmd_count[nextfrag]].ac97_addr = addr;
	nextwrite[cmd_count[nextfrag]].ac97_data = data;
	++cmd_count[nextfrag];
	pr_debug("ac97_sport: Inserting %02x/%04x into fragment %d\n",
			addr >> 8, data, nextfrag);
}

static unsigned short bf5xx_ac97_read(struct snd_ac97 *ac97,
	unsigned short reg)
{
	struct ac97_frame out_frame[2], in_frame[2];

	pr_debug("%s enter 0x%x\n", __func__, reg);

	/* When dma descriptor is enabled, the register should not be read */
	if (sport_handle->tx_run || sport_handle->rx_run) {
		pr_err("Could you send a mail to cliff.cai@analog.com "
				"to report this?\n");
		return -EFAULT;
	}

	memset(&out_frame, 0, 2 * sizeof(struct ac97_frame));
	memset(&in_frame, 0, 2 * sizeof(struct ac97_frame));
	out_frame[0].ac97_tag = TAG_VALID | TAG_CMD;
	out_frame[0].ac97_addr = ((reg << 8) | 0x8000);
	sport_send_and_recv(sport_handle, (unsigned char *)&out_frame,
			(unsigned char *)&in_frame,
			2 * sizeof(struct ac97_frame));
	return in_frame[1].ac97_data;
}

void bf5xx_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
	unsigned short val)
{
	pr_debug("%s enter 0x%x:0x%04x\n", __func__, reg, val);

	if (sport_handle->tx_run) {
		enqueue_cmd(ac97, (reg << 8), val); /* write */
		enqueue_cmd(ac97, (reg << 8) | 0x8000, 0); /* read back */
	} else {
		struct ac97_frame frame;
		memset(&frame, 0, sizeof(struct ac97_frame));
		frame.ac97_tag = TAG_VALID | TAG_CMD;
		frame.ac97_addr = (reg << 8);
		frame.ac97_data = val;
		sport_send_and_recv(sport_handle, (unsigned char *)&frame, \
				NULL, sizeof(struct ac97_frame));
	}
}

static void bf5xx_ac97_warm_reset(struct snd_ac97 *ac97)
{
#if defined(CONFIG_BF54x) || defined(CONFIG_BF561) || \
 (defined(BF537_FAMILY) && (CONFIG_SND_BF5XX_SPORT_NUM == 1))

#define CONCAT(a, b, c) a ## b ## c
#define BFIN_SPORT_RFS(x) CONCAT(P_SPORT, x, _RFS)

	u16 per = BFIN_SPORT_RFS(CONFIG_SND_BF5XX_SPORT_NUM);
	u16 gpio = P_IDENT(BFIN_SPORT_RFS(CONFIG_SND_BF5XX_SPORT_NUM));

	pr_debug("%s enter\n", __func__);

	peripheral_free(per);
	gpio_request(gpio, "bf5xx-ac97");
	gpio_direction_output(gpio, 1);
	udelay(2);
	gpio_set_value(gpio, 0);
	udelay(1);
	gpio_free(gpio);
	peripheral_request(per, "soc-audio");
#else
	pr_info("%s: Not implemented\n", __func__);
#endif
}

static void bf5xx_ac97_cold_reset(struct snd_ac97 *ac97)
{
#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
	pr_debug("%s enter\n", __func__);

	/* It is specified for bf548-ezkit */
	gpio_set_value(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 0);
	/* Keep reset pin low for 1 ms */
	mdelay(1);
	gpio_set_value(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 1);
	/* Wait for bit clock recover */
	mdelay(1);
#else
	pr_info("%s: Not implemented\n", __func__);
#endif
}

struct snd_ac97_bus_ops soc_ac97_ops = {
	.read	= bf5xx_ac97_read,
	.write	= bf5xx_ac97_write,
	.warm_reset	= bf5xx_ac97_warm_reset,
	.reset	= bf5xx_ac97_cold_reset,
};
EXPORT_SYMBOL_GPL(soc_ac97_ops);

#ifdef CONFIG_PM
256
static int bf5xx_ac97_suspend(struct snd_soc_dai *dai)
257
{
258
	struct sport_device *sport = snd_soc_dai_get_drvdata(dai);
259 260 261 262

	pr_debug("%s : sport %d\n", __func__, dai->id);
	if (!dai->active)
		return 0;
263
	if (dai->capture_active)
264
		sport_rx_stop(sport);
265
	if (dai->playback_active)
266 267 268 269
		sport_tx_stop(sport);
	return 0;
}

270
static int bf5xx_ac97_resume(struct snd_soc_dai *dai)
271 272
{
	int ret;
273
	struct sport_device *sport = snd_soc_dai_get_drvdata(dai);
274 275 276 277 278

	pr_debug("%s : sport %d\n", __func__, dai->id);
	if (!dai->active)
		return 0;

279 280 281
#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
	ret = sport_set_multichannel(sport, 16, 0x3FF, 1);
#else
282
	ret = sport_set_multichannel(sport, 16, 0x1F, 1);
283
#endif
284 285 286 287 288
	if (ret) {
		pr_err("SPORT is busy!\n");
		return -EBUSY;
	}

289
	ret = sport_config_rx(sport, IRFS, 0xF, 0, (16*16-1));
290 291 292 293 294
	if (ret) {
		pr_err("SPORT is busy!\n");
		return -EBUSY;
	}

295
	ret = sport_config_tx(sport, ITFS, 0xF, 0, (16*16-1));
296 297 298 299 300 301 302 303 304 305 306 307 308
	if (ret) {
		pr_err("SPORT is busy!\n");
		return -EBUSY;
	}

	return 0;
}

#else
#define bf5xx_ac97_suspend	NULL
#define bf5xx_ac97_resume	NULL
#endif

309
static int bf5xx_ac97_probe(struct snd_soc_dai *dai)
310
{
311
	int ret = 0;
312 313 314 315
	cmd_count = (int *)get_zeroed_page(GFP_KERNEL);
	if (cmd_count == NULL)
		return -ENOMEM;

316
	if (peripheral_request_list(sport_req[sport_num], "soc-audio")) {
317
		pr_err("Requesting Peripherals failed\n");
318 319
		ret =  -EFAULT;
		goto peripheral_err;
320
	}
321 322 323 324 325 326

#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
	/* Request PB3 as reset pin */
	if (gpio_request(CONFIG_SND_BF5XX_RESET_GPIO_NUM, "SND_AD198x RESET")) {
		pr_err("Failed to request GPIO_%d for reset\n",
				CONFIG_SND_BF5XX_RESET_GPIO_NUM);
327 328
		ret =  -1;
		goto gpio_err;
329 330 331 332 333 334
	}
	gpio_direction_output(CONFIG_SND_BF5XX_RESET_GPIO_NUM, 1);
#endif
	sport_handle = sport_init(&sport_params[sport_num], 2, \
			sizeof(struct ac97_frame), NULL);
	if (!sport_handle) {
335 336
		ret = -ENODEV;
		goto sport_err;
337 338
	}
	/*SPORT works in TDM mode to simulate AC97 transfers*/
339 340 341
#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
	ret = sport_set_multichannel(sport_handle, 16, 0x3FF, 1);
#else
342
	ret = sport_set_multichannel(sport_handle, 16, 0x1F, 1);
343
#endif
344 345
	if (ret) {
		pr_err("SPORT is busy!\n");
346 347
		ret = -EBUSY;
		goto sport_config_err;
348 349 350 351 352
	}

	ret = sport_config_rx(sport_handle, IRFS, 0xF, 0, (16*16-1));
	if (ret) {
		pr_err("SPORT is busy!\n");
353 354
		ret = -EBUSY;
		goto sport_config_err;
355 356 357 358 359
	}

	ret = sport_config_tx(sport_handle, ITFS, 0xF, 0, (16*16-1));
	if (ret) {
		pr_err("SPORT is busy!\n");
360 361 362 363
		ret = -EBUSY;
		goto sport_config_err;
	}

364 365
	return 0;

366 367 368
sport_config_err:
	kfree(sport_handle);
sport_err:
369
#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
370 371
	gpio_free(CONFIG_SND_BF5XX_RESET_GPIO_NUM);
gpio_err:
372
#endif
373
	peripheral_free_list(sport_req[sport_num]);
374 375 376 377 378
peripheral_err:
	free_page((unsigned long)cmd_count);
	cmd_count = NULL;

	return ret;
379 380
}

381
static int bf5xx_ac97_remove(struct snd_soc_dai *dai)
382 383 384
{
	free_page((unsigned long)cmd_count);
	cmd_count = NULL;
385
	peripheral_free_list(sport_req[sport_num]);
386 387 388
#ifdef CONFIG_SND_BF5XX_HAVE_COLD_RESET
	gpio_free(CONFIG_SND_BF5XX_RESET_GPIO_NUM);
#endif
389
	return 0;
390 391
}

392
struct snd_soc_dai_driver bfin_ac97_dai = {
M
Mark Brown 已提交
393
	.ac97_control = 1,
394 395 396 397 398 399 400
	.probe = bf5xx_ac97_probe,
	.remove = bf5xx_ac97_remove,
	.suspend = bf5xx_ac97_suspend,
	.resume = bf5xx_ac97_resume,
	.playback = {
		.stream_name = "AC97 Playback",
		.channels_min = 2,
401 402 403
#if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT)
		.channels_max = 6,
#else
404
		.channels_max = 2,
405
#endif
406 407 408 409 410 411 412 413 414 415 416
		.rates = SNDRV_PCM_RATE_48000,
		.formats = SNDRV_PCM_FMTBIT_S16_LE, },
	.capture = {
		.stream_name = "AC97 Capture",
		.channels_min = 2,
		.channels_max = 2,
		.rates = SNDRV_PCM_RATE_48000,
		.formats = SNDRV_PCM_FMTBIT_S16_LE, },
};
EXPORT_SYMBOL_GPL(bfin_ac97_dai);

417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
static __devinit int asoc_bfin_ac97_probe(struct platform_device *pdev)
{
	return snd_soc_register_dai(&pdev->dev, &bfin_ac97_dai);
}

static int __devexit asoc_bfin_ac97_remove(struct platform_device *pdev)
{
	snd_soc_unregister_dai(&pdev->dev);
	return 0;
}

static struct platform_driver asoc_bfin_ac97_driver = {
	.driver = {
			.name = "bfin-ac97",
			.owner = THIS_MODULE,
	},

	.probe = asoc_bfin_ac97_probe,
	.remove = __devexit_p(asoc_bfin_ac97_remove),
};

438
static int __init bfin_ac97_init(void)
M
Mark Brown 已提交
439
{
440
	return platform_driver_register(&asoc_bfin_ac97_driver);
M
Mark Brown 已提交
441 442 443 444 445
}
module_init(bfin_ac97_init);

static void __exit bfin_ac97_exit(void)
{
446
	platform_driver_unregister(&asoc_bfin_ac97_driver);
M
Mark Brown 已提交
447 448 449
}
module_exit(bfin_ac97_exit);

450

451 452 453
MODULE_AUTHOR("Roy Huang");
MODULE_DESCRIPTION("AC97 driver for ADI Blackfin");
MODULE_LICENSE("GPL");