| Javier Martin | 841a451 | 2011-03-07 08:47:09 +0100 | [diff] [blame] | 1 | /* | 
 | 2 |  * mx27vis-aic32x4.c | 
 | 3 |  * | 
 | 4 |  * Copyright 2011 Vista Silicon S.L. | 
 | 5 |  * | 
 | 6 |  * Author: Javier Martin <javier.martin@vista-silicon.com> | 
 | 7 |  * | 
 | 8 |  * This program is free software; you can redistribute  it and/or modify it | 
 | 9 |  * under  the terms of  the GNU General  Public License as published by the | 
 | 10 |  * Free Software Foundation;  either version 2 of the  License, or (at your | 
 | 11 |  * option) any later version. | 
 | 12 |  * | 
 | 13 |  * This program is distributed in the hope that it will be useful, | 
 | 14 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 15 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 16 |  * GNU General Public License for more details. | 
 | 17 |  * | 
 | 18 |  * You should have received a copy of the GNU General Public License | 
 | 19 |  * along with this program; if not, write to the Free Software | 
 | 20 |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | 
 | 21 |  * MA 02110-1301, USA. | 
 | 22 |  */ | 
 | 23 |  | 
 | 24 | #include <linux/module.h> | 
 | 25 | #include <linux/moduleparam.h> | 
 | 26 | #include <linux/device.h> | 
 | 27 | #include <linux/i2c.h> | 
 | 28 | #include <sound/core.h> | 
 | 29 | #include <sound/pcm.h> | 
 | 30 | #include <sound/soc.h> | 
 | 31 | #include <sound/soc-dapm.h> | 
 | 32 | #include <asm/mach-types.h> | 
 | 33 | #include <mach/audmux.h> | 
 | 34 |  | 
 | 35 | #include "../codecs/tlv320aic32x4.h" | 
 | 36 | #include "imx-ssi.h" | 
 | 37 |  | 
 | 38 | static int mx27vis_aic32x4_hw_params(struct snd_pcm_substream *substream, | 
 | 39 | 			    struct snd_pcm_hw_params *params) | 
 | 40 | { | 
 | 41 | 	struct snd_soc_pcm_runtime *rtd = substream->private_data; | 
 | 42 | 	struct snd_soc_dai *codec_dai = rtd->codec_dai; | 
 | 43 | 	struct snd_soc_dai *cpu_dai = rtd->cpu_dai; | 
 | 44 | 	int ret; | 
 | 45 | 	u32 dai_format; | 
 | 46 |  | 
 | 47 | 	dai_format = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_NB_NF | | 
 | 48 | 		SND_SOC_DAIFMT_CBM_CFM; | 
 | 49 |  | 
 | 50 | 	/* set codec DAI configuration */ | 
 | 51 | 	snd_soc_dai_set_fmt(codec_dai, dai_format); | 
 | 52 |  | 
 | 53 | 	/* set cpu DAI configuration */ | 
 | 54 | 	snd_soc_dai_set_fmt(cpu_dai, dai_format); | 
 | 55 |  | 
 | 56 | 	ret = snd_soc_dai_set_sysclk(codec_dai, 0, | 
 | 57 | 				     25000000, SND_SOC_CLOCK_OUT); | 
 | 58 | 	if (ret) { | 
 | 59 | 		pr_err("%s: failed setting codec sysclk\n", __func__); | 
 | 60 | 		return ret; | 
 | 61 | 	} | 
 | 62 |  | 
 | 63 | 	ret = snd_soc_dai_set_sysclk(cpu_dai, IMX_SSP_SYS_CLK, 0, | 
 | 64 | 				SND_SOC_CLOCK_IN); | 
 | 65 | 	if (ret) { | 
 | 66 | 		pr_err("can't set CPU system clock IMX_SSP_SYS_CLK\n"); | 
 | 67 | 		return ret; | 
 | 68 | 	} | 
 | 69 |  | 
 | 70 | 	return 0; | 
 | 71 | } | 
 | 72 |  | 
 | 73 | static struct snd_soc_ops mx27vis_aic32x4_snd_ops = { | 
 | 74 | 	.hw_params	= mx27vis_aic32x4_hw_params, | 
 | 75 | }; | 
 | 76 |  | 
 | 77 | static struct snd_soc_dai_link mx27vis_aic32x4_dai = { | 
 | 78 | 	.name		= "tlv320aic32x4", | 
 | 79 | 	.stream_name	= "TLV320AIC32X4", | 
 | 80 | 	.codec_dai_name	= "tlv320aic32x4-hifi", | 
 | 81 | 	.platform_name	= "imx-pcm-audio.0", | 
 | 82 | 	.codec_name	= "tlv320aic32x4.0-0018", | 
 | 83 | 	.cpu_dai_name	= "imx-ssi.0", | 
 | 84 | 	.ops		= &mx27vis_aic32x4_snd_ops, | 
 | 85 | }; | 
 | 86 |  | 
 | 87 | static struct snd_soc_card mx27vis_aic32x4 = { | 
 | 88 | 	.name		= "visstrim_m10-audio", | 
 | 89 | 	.dai_link	= &mx27vis_aic32x4_dai, | 
 | 90 | 	.num_links	= 1, | 
 | 91 | }; | 
 | 92 |  | 
 | 93 | static struct platform_device *mx27vis_aic32x4_snd_device; | 
 | 94 |  | 
 | 95 | static int __init mx27vis_aic32x4_init(void) | 
 | 96 | { | 
 | 97 | 	int ret; | 
 | 98 |  | 
 | 99 | 	mx27vis_aic32x4_snd_device = platform_device_alloc("soc-audio", -1); | 
 | 100 | 	if (!mx27vis_aic32x4_snd_device) | 
 | 101 | 		return -ENOMEM; | 
 | 102 |  | 
 | 103 | 	platform_set_drvdata(mx27vis_aic32x4_snd_device, &mx27vis_aic32x4); | 
 | 104 | 	ret = platform_device_add(mx27vis_aic32x4_snd_device); | 
 | 105 |  | 
 | 106 | 	if (ret) { | 
 | 107 | 		printk(KERN_ERR "ASoC: Platform device allocation failed\n"); | 
 | 108 | 		platform_device_put(mx27vis_aic32x4_snd_device); | 
 | 109 | 	} | 
 | 110 |  | 
 | 111 | 	/* Connect SSI0 as clock slave to SSI1 external pins */ | 
 | 112 | 	mxc_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0, | 
 | 113 | 			MXC_AUDMUX_V1_PCR_SYN | | 
 | 114 | 			MXC_AUDMUX_V1_PCR_TFSDIR | | 
 | 115 | 			MXC_AUDMUX_V1_PCR_TCLKDIR | | 
 | 116 | 			MXC_AUDMUX_V1_PCR_TFCSEL(MX27_AUDMUX_PPCR1_SSI_PINS_1) | | 
 | 117 | 			MXC_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_PPCR1_SSI_PINS_1) | 
 | 118 | 	); | 
 | 119 | 	mxc_audmux_v1_configure_port(MX27_AUDMUX_PPCR1_SSI_PINS_1, | 
 | 120 | 			MXC_AUDMUX_V1_PCR_SYN | | 
 | 121 | 			MXC_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR1_SSI0) | 
 | 122 | 	); | 
 | 123 |  | 
 | 124 | 	return ret; | 
 | 125 | } | 
 | 126 |  | 
 | 127 | static void __exit mx27vis_aic32x4_exit(void) | 
 | 128 | { | 
 | 129 | 	platform_device_unregister(mx27vis_aic32x4_snd_device); | 
 | 130 | } | 
 | 131 |  | 
 | 132 | module_init(mx27vis_aic32x4_init); | 
 | 133 | module_exit(mx27vis_aic32x4_exit); | 
 | 134 |  | 
 | 135 | MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>"); | 
 | 136 | MODULE_DESCRIPTION("ALSA SoC AIC32X4 mx27 visstrim"); | 
 | 137 | MODULE_LICENSE("GPL"); |