2 * sdp3430.c -- SoC audio for TI OMAP3430 SDP
4 * Author: Misael Lopez Cruz <x0052729@ti.com>
7 * Author: Steve Sakoman <steve@sakoman.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * 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 St, Fifth Floor, Boston, MA
25 #include <linux/clk.h>
26 #include <linux/platform_device.h>
27 #include <linux/i2c/twl.h>
28 #include <sound/core.h>
29 #include <sound/pcm.h>
30 #include <sound/soc.h>
31 #include <sound/jack.h>
33 #include <asm/mach-types.h>
34 #include <linux/platform_data/gpio-omap.h>
35 #include <linux/platform_data/asoc-ti-mcbsp.h>
37 /* Register descriptions for twl4030 codec part */
38 #include <linux/mfd/twl4030-audio.h>
39 #include <linux/module.h>
41 #include "omap-mcbsp.h"
44 /* TWL4030 PMBR1 Register */
45 #define TWL4030_INTBR_PMBR1 0x0D
46 /* TWL4030 PMBR1 Register GPIO6 mux bit */
47 #define TWL4030_GPIO6_PWM0_MUTE(value) (value << 2)
49 static struct snd_soc_card snd_soc_sdp3430
;
51 static int sdp3430_hw_params(struct snd_pcm_substream
*substream
,
52 struct snd_pcm_hw_params
*params
)
54 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
55 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
58 /* Set the codec system clock for DAC and ADC */
59 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0, 26000000,
62 printk(KERN_ERR
"can't set codec system clock\n");
69 static struct snd_soc_ops sdp3430_ops
= {
70 .hw_params
= sdp3430_hw_params
,
74 static struct snd_soc_jack hs_jack
;
76 /* Headset jack detection DAPM pins */
77 static struct snd_soc_jack_pin hs_jack_pins
[] = {
80 .mask
= SND_JACK_MICROPHONE
,
83 .pin
= "Headset Stereophone",
84 .mask
= SND_JACK_HEADPHONE
,
88 /* Headset jack detection gpios */
89 static struct snd_soc_jack_gpio hs_jack_gpios
[] = {
91 .gpio
= (OMAP_MAX_GPIO_LINES
+ 2),
93 .report
= SND_JACK_HEADSET
,
98 /* SDP3430 machine DAPM */
99 static const struct snd_soc_dapm_widget sdp3430_twl4030_dapm_widgets
[] = {
100 SND_SOC_DAPM_MIC("Ext Mic", NULL
),
101 SND_SOC_DAPM_SPK("Ext Spk", NULL
),
102 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
103 SND_SOC_DAPM_HP("Headset Stereophone", NULL
),
106 static const struct snd_soc_dapm_route audio_map
[] = {
107 /* External Mics: MAINMIC, SUBMIC with bias*/
108 {"MAINMIC", NULL
, "Mic Bias 1"},
109 {"SUBMIC", NULL
, "Mic Bias 2"},
110 {"Mic Bias 1", NULL
, "Ext Mic"},
111 {"Mic Bias 2", NULL
, "Ext Mic"},
113 /* External Speakers: HFL, HFR */
114 {"Ext Spk", NULL
, "HFL"},
115 {"Ext Spk", NULL
, "HFR"},
117 /* Headset Mic: HSMIC with bias */
118 {"HSMIC", NULL
, "Headset Mic Bias"},
119 {"Headset Mic Bias", NULL
, "Headset Mic"},
121 /* Headset Stereophone (Headphone): HSOL, HSOR */
122 {"Headset Stereophone", NULL
, "HSOL"},
123 {"Headset Stereophone", NULL
, "HSOR"},
126 static int sdp3430_twl4030_init(struct snd_soc_pcm_runtime
*rtd
)
128 struct snd_soc_codec
*codec
= rtd
->codec
;
129 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
132 /* SDP3430 connected pins */
133 snd_soc_dapm_enable_pin(dapm
, "Ext Mic");
134 snd_soc_dapm_enable_pin(dapm
, "Ext Spk");
135 snd_soc_dapm_disable_pin(dapm
, "Headset Mic");
136 snd_soc_dapm_disable_pin(dapm
, "Headset Stereophone");
138 /* TWL4030 not connected pins */
139 snd_soc_dapm_nc_pin(dapm
, "AUXL");
140 snd_soc_dapm_nc_pin(dapm
, "AUXR");
141 snd_soc_dapm_nc_pin(dapm
, "CARKITMIC");
142 snd_soc_dapm_nc_pin(dapm
, "DIGIMIC0");
143 snd_soc_dapm_nc_pin(dapm
, "DIGIMIC1");
145 snd_soc_dapm_nc_pin(dapm
, "OUTL");
146 snd_soc_dapm_nc_pin(dapm
, "OUTR");
147 snd_soc_dapm_nc_pin(dapm
, "EARPIECE");
148 snd_soc_dapm_nc_pin(dapm
, "PREDRIVEL");
149 snd_soc_dapm_nc_pin(dapm
, "PREDRIVER");
150 snd_soc_dapm_nc_pin(dapm
, "CARKITL");
151 snd_soc_dapm_nc_pin(dapm
, "CARKITR");
153 /* Headset jack detection */
154 ret
= snd_soc_jack_new(codec
, "Headset Jack",
155 SND_JACK_HEADSET
, &hs_jack
);
159 ret
= snd_soc_jack_add_pins(&hs_jack
, ARRAY_SIZE(hs_jack_pins
),
164 ret
= snd_soc_jack_add_gpios(&hs_jack
, ARRAY_SIZE(hs_jack_gpios
),
170 static int sdp3430_twl4030_voice_init(struct snd_soc_pcm_runtime
*rtd
)
172 struct snd_soc_codec
*codec
= rtd
->codec
;
175 /* Enable voice interface */
176 reg
= codec
->driver
->read(codec
, TWL4030_REG_VOICE_IF
);
177 reg
|= TWL4030_VIF_DIN_EN
| TWL4030_VIF_DOUT_EN
| TWL4030_VIF_EN
;
178 codec
->driver
->write(codec
, TWL4030_REG_VOICE_IF
, reg
);
184 /* Digital audio interface glue - connects codec <--> CPU */
185 static struct snd_soc_dai_link sdp3430_dai
[] = {
187 .name
= "TWL4030 I2S",
188 .stream_name
= "TWL4030 Audio",
189 .cpu_dai_name
= "omap-mcbsp.2",
190 .codec_dai_name
= "twl4030-hifi",
191 .platform_name
= "omap-pcm-audio",
192 .codec_name
= "twl4030-codec",
193 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
194 SND_SOC_DAIFMT_CBM_CFM
,
195 .init
= sdp3430_twl4030_init
,
199 .name
= "TWL4030 PCM",
200 .stream_name
= "TWL4030 Voice",
201 .cpu_dai_name
= "omap-mcbsp.3",
202 .codec_dai_name
= "twl4030-voice",
203 .platform_name
= "omap-pcm-audio",
204 .codec_name
= "twl4030-codec",
205 .dai_fmt
= SND_SOC_DAIFMT_DSP_A
| SND_SOC_DAIFMT_IB_NF
|
206 SND_SOC_DAIFMT_CBM_CFM
,
207 .init
= sdp3430_twl4030_voice_init
,
212 /* Audio machine driver */
213 static struct snd_soc_card snd_soc_sdp3430
= {
215 .owner
= THIS_MODULE
,
216 .dai_link
= sdp3430_dai
,
217 .num_links
= ARRAY_SIZE(sdp3430_dai
),
219 .dapm_widgets
= sdp3430_twl4030_dapm_widgets
,
220 .num_dapm_widgets
= ARRAY_SIZE(sdp3430_twl4030_dapm_widgets
),
221 .dapm_routes
= audio_map
,
222 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
225 static struct platform_device
*sdp3430_snd_device
;
227 static int __init
sdp3430_soc_init(void)
232 if (!machine_is_omap_3430sdp())
234 printk(KERN_INFO
"SDP3430 SoC init\n");
236 sdp3430_snd_device
= platform_device_alloc("soc-audio", -1);
237 if (!sdp3430_snd_device
) {
238 printk(KERN_ERR
"Platform device allocation failed\n");
242 platform_set_drvdata(sdp3430_snd_device
, &snd_soc_sdp3430
);
244 /* Set TWL4030 GPIO6 as EXTMUTE signal */
245 twl_i2c_read_u8(TWL4030_MODULE_INTBR
, &pin_mux
,
246 TWL4030_INTBR_PMBR1
);
247 pin_mux
&= ~TWL4030_GPIO6_PWM0_MUTE(0x03);
248 pin_mux
|= TWL4030_GPIO6_PWM0_MUTE(0x02);
249 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, pin_mux
,
250 TWL4030_INTBR_PMBR1
);
252 ret
= platform_device_add(sdp3430_snd_device
);
259 printk(KERN_ERR
"Unable to add platform device\n");
260 platform_device_put(sdp3430_snd_device
);
264 module_init(sdp3430_soc_init
);
266 static void __exit
sdp3430_soc_exit(void)
268 snd_soc_jack_free_gpios(&hs_jack
, ARRAY_SIZE(hs_jack_gpios
),
271 platform_device_unregister(sdp3430_snd_device
);
273 module_exit(sdp3430_soc_exit
);
275 MODULE_AUTHOR("Misael Lopez Cruz <x0052729@ti.com>");
276 MODULE_DESCRIPTION("ALSA SoC SDP3430");
277 MODULE_LICENSE("GPL");