2009-08-21 00:42:59 +00:00
|
|
|
/*
|
|
|
|
* FSI-AK464x sound support for ms7724se
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Renesas Solutions Corp.
|
|
|
|
* Kuninori Morimoto <morimoto.kuninori@renesas.com>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <sound/sh_fsi.h>
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
static int fsi_ak4642_dai_init(struct snd_soc_pcm_runtime *rtd)
|
2010-03-23 07:27:28 +00:00
|
|
|
{
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai *dai = rtd->codec_dai;
|
2010-03-23 07:27:28 +00:00
|
|
|
int ret;
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
ret = snd_soc_dai_set_fmt(dai, SND_SOC_DAIFMT_CBM_CFM);
|
2010-03-15 09:10:50 +00:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
ret = snd_soc_dai_set_sysclk(dai, 0, 11289600, 0);
|
2010-03-23 07:27:28 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-08-21 00:42:59 +00:00
|
|
|
static struct snd_soc_dai_link fsi_dai_link = {
|
|
|
|
.name = "AK4642",
|
|
|
|
.stream_name = "AK4642",
|
2010-03-17 20:15:21 +00:00
|
|
|
.cpu_dai_name = "fsia-dai", /* fsi A */
|
|
|
|
.codec_dai_name = "ak4642-hifi",
|
2010-08-30 11:47:19 +00:00
|
|
|
#ifdef CONFIG_MACH_AP4EVB
|
2010-09-07 06:46:48 +00:00
|
|
|
.platform_name = "sh_fsi2",
|
2010-08-30 11:47:19 +00:00
|
|
|
.codec_name = "ak4642-codec.0-0013",
|
|
|
|
#else
|
|
|
|
.platform_name = "sh_fsi.0",
|
2010-03-17 20:15:21 +00:00
|
|
|
.codec_name = "ak4642-codec.0-0012",
|
2010-08-30 11:47:19 +00:00
|
|
|
#endif
|
2010-03-23 07:27:28 +00:00
|
|
|
.init = fsi_ak4642_dai_init,
|
2009-08-21 00:42:59 +00:00
|
|
|
.ops = NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct snd_soc_card fsi_soc_card = {
|
2010-09-13 10:40:13 +00:00
|
|
|
.name = "FSI (AK4642)",
|
2009-08-21 00:42:59 +00:00
|
|
|
.dai_link = &fsi_dai_link,
|
|
|
|
.num_links = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device *fsi_snd_device;
|
|
|
|
|
|
|
|
static int __init fsi_ak4642_init(void)
|
|
|
|
{
|
|
|
|
int ret = -ENOMEM;
|
|
|
|
|
2010-07-16 10:51:06 +00:00
|
|
|
fsi_snd_device = platform_device_alloc("soc-audio", FSI_PORT_A);
|
2009-08-21 00:42:59 +00:00
|
|
|
if (!fsi_snd_device)
|
|
|
|
goto out;
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
platform_set_drvdata(fsi_snd_device, &fsi_soc_card);
|
2009-08-21 00:42:59 +00:00
|
|
|
ret = platform_device_add(fsi_snd_device);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
platform_device_put(fsi_snd_device);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit fsi_ak4642_exit(void)
|
|
|
|
{
|
|
|
|
platform_device_unregister(fsi_snd_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(fsi_ak4642_init);
|
|
|
|
module_exit(fsi_ak4642_exit);
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DESCRIPTION("Generic SH4 FSI-AK4642 sound card");
|
|
|
|
MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
|