4 * Copyright 2011 Vista Silicon S.L.
6 * Author: Javier Martin <javier.martin@vista-silicon.com>
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.
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.
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,
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>
35 #include "../codecs/tlv320aic32x4.h"
38 static int mx27vis_aic32x4_hw_params(struct snd_pcm_substream
*substream
,
39 struct snd_pcm_hw_params
*params
)
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
;
47 dai_format
= SND_SOC_DAIFMT_DSP_B
| SND_SOC_DAIFMT_NB_NF
|
48 SND_SOC_DAIFMT_CBM_CFM
;
50 /* set codec DAI configuration */
51 snd_soc_dai_set_fmt(codec_dai
, dai_format
);
53 /* set cpu DAI configuration */
54 snd_soc_dai_set_fmt(cpu_dai
, dai_format
);
56 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0,
57 25000000, SND_SOC_CLOCK_OUT
);
59 pr_err("%s: failed setting codec sysclk\n", __func__
);
63 ret
= snd_soc_dai_set_sysclk(cpu_dai
, IMX_SSP_SYS_CLK
, 0,
66 pr_err("can't set CPU system clock IMX_SSP_SYS_CLK\n");
73 static struct snd_soc_ops mx27vis_aic32x4_snd_ops
= {
74 .hw_params
= mx27vis_aic32x4_hw_params
,
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
,
87 static struct snd_soc_card mx27vis_aic32x4
= {
88 .name
= "visstrim_m10-audio",
89 .dai_link
= &mx27vis_aic32x4_dai
,
93 static struct platform_device
*mx27vis_aic32x4_snd_device
;
95 static int __init
mx27vis_aic32x4_init(void)
99 mx27vis_aic32x4_snd_device
= platform_device_alloc("soc-audio", -1);
100 if (!mx27vis_aic32x4_snd_device
)
103 platform_set_drvdata(mx27vis_aic32x4_snd_device
, &mx27vis_aic32x4
);
104 ret
= platform_device_add(mx27vis_aic32x4_snd_device
);
107 printk(KERN_ERR
"ASoC: Platform device allocation failed\n");
108 platform_device_put(mx27vis_aic32x4_snd_device
);
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
)
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
)
127 static void __exit
mx27vis_aic32x4_exit(void)
129 platform_device_unregister(mx27vis_aic32x4_snd_device
);
132 module_init(mx27vis_aic32x4_init
);
133 module_exit(mx27vis_aic32x4_exit
);
135 MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");
136 MODULE_DESCRIPTION("ALSA SoC AIC32X4 mx27 visstrim");
137 MODULE_LICENSE("GPL");