diff options
Diffstat (limited to 'sound/soc/omap/zoom2.c')
-rw-r--r-- | sound/soc/omap/zoom2.c | 102 |
1 files changed, 41 insertions, 61 deletions
diff --git a/sound/soc/omap/zoom2.c b/sound/soc/omap/zoom2.c index 50a94ee76ecc..01709940a43c 100644 --- a/sound/soc/omap/zoom2.c +++ b/sound/soc/omap/zoom2.c | |||
@@ -24,26 +24,27 @@ | |||
24 | #include <sound/core.h> | 24 | #include <sound/core.h> |
25 | #include <sound/pcm.h> | 25 | #include <sound/pcm.h> |
26 | #include <sound/soc.h> | 26 | #include <sound/soc.h> |
27 | #include <sound/soc-dapm.h> | ||
28 | 27 | ||
29 | #include <asm/mach-types.h> | 28 | #include <asm/mach-types.h> |
30 | #include <mach/hardware.h> | 29 | #include <mach/hardware.h> |
31 | #include <mach/gpio.h> | 30 | #include <mach/gpio.h> |
31 | #include <mach/board-zoom.h> | ||
32 | #include <plat/mcbsp.h> | 32 | #include <plat/mcbsp.h> |
33 | 33 | ||
34 | /* Register descriptions for twl4030 codec part */ | ||
35 | #include <linux/mfd/twl4030-codec.h> | ||
36 | |||
34 | #include "omap-mcbsp.h" | 37 | #include "omap-mcbsp.h" |
35 | #include "omap-pcm.h" | 38 | #include "omap-pcm.h" |
36 | #include "../codecs/twl4030.h" | ||
37 | 39 | ||
38 | #define ZOOM2_HEADSET_MUX_GPIO (OMAP_MAX_GPIO_LINES + 15) | 40 | #define ZOOM2_HEADSET_MUX_GPIO (OMAP_MAX_GPIO_LINES + 15) |
39 | #define ZOOM2_HEADSET_EXTMUTE_GPIO 153 | ||
40 | 41 | ||
41 | static int zoom2_hw_params(struct snd_pcm_substream *substream, | 42 | static int zoom2_hw_params(struct snd_pcm_substream *substream, |
42 | struct snd_pcm_hw_params *params) | 43 | struct snd_pcm_hw_params *params) |
43 | { | 44 | { |
44 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 45 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
45 | struct snd_soc_dai *codec_dai = rtd->dai->codec_dai; | 46 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
46 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; | 47 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
47 | int ret; | 48 | int ret; |
48 | 49 | ||
49 | /* Set codec DAI configuration */ | 50 | /* Set codec DAI configuration */ |
@@ -85,8 +86,8 @@ static int zoom2_hw_voice_params(struct snd_pcm_substream *substream, | |||
85 | struct snd_pcm_hw_params *params) | 86 | struct snd_pcm_hw_params *params) |
86 | { | 87 | { |
87 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 88 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
88 | struct snd_soc_dai *codec_dai = rtd->dai->codec_dai; | 89 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
89 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; | 90 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
90 | int ret; | 91 | int ret; |
91 | 92 | ||
92 | /* Set codec DAI configuration */ | 93 | /* Set codec DAI configuration */ |
@@ -157,49 +158,52 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
157 | {"Aux In", NULL, "AUXR"}, | 158 | {"Aux In", NULL, "AUXR"}, |
158 | }; | 159 | }; |
159 | 160 | ||
160 | static int zoom2_twl4030_init(struct snd_soc_codec *codec) | 161 | static int zoom2_twl4030_init(struct snd_soc_pcm_runtime *rtd) |
161 | { | 162 | { |
163 | struct snd_soc_codec *codec = rtd->codec; | ||
164 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
162 | int ret; | 165 | int ret; |
163 | 166 | ||
164 | /* Add Zoom2 specific widgets */ | 167 | /* Add Zoom2 specific widgets */ |
165 | ret = snd_soc_dapm_new_controls(codec, zoom2_twl4030_dapm_widgets, | 168 | ret = snd_soc_dapm_new_controls(dapm, zoom2_twl4030_dapm_widgets, |
166 | ARRAY_SIZE(zoom2_twl4030_dapm_widgets)); | 169 | ARRAY_SIZE(zoom2_twl4030_dapm_widgets)); |
167 | if (ret) | 170 | if (ret) |
168 | return ret; | 171 | return ret; |
169 | 172 | ||
170 | /* Set up Zoom2 specific audio path audio_map */ | 173 | /* Set up Zoom2 specific audio path audio_map */ |
171 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); | 174 | snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map)); |
172 | 175 | ||
173 | /* Zoom2 connected pins */ | 176 | /* Zoom2 connected pins */ |
174 | snd_soc_dapm_enable_pin(codec, "Ext Mic"); | 177 | snd_soc_dapm_enable_pin(dapm, "Ext Mic"); |
175 | snd_soc_dapm_enable_pin(codec, "Ext Spk"); | 178 | snd_soc_dapm_enable_pin(dapm, "Ext Spk"); |
176 | snd_soc_dapm_enable_pin(codec, "Headset Mic"); | 179 | snd_soc_dapm_enable_pin(dapm, "Headset Mic"); |
177 | snd_soc_dapm_enable_pin(codec, "Headset Stereophone"); | 180 | snd_soc_dapm_enable_pin(dapm, "Headset Stereophone"); |
178 | snd_soc_dapm_enable_pin(codec, "Aux In"); | 181 | snd_soc_dapm_enable_pin(dapm, "Aux In"); |
179 | 182 | ||
180 | /* TWL4030 not connected pins */ | 183 | /* TWL4030 not connected pins */ |
181 | snd_soc_dapm_nc_pin(codec, "CARKITMIC"); | 184 | snd_soc_dapm_nc_pin(dapm, "CARKITMIC"); |
182 | snd_soc_dapm_nc_pin(codec, "DIGIMIC0"); | 185 | snd_soc_dapm_nc_pin(dapm, "DIGIMIC0"); |
183 | snd_soc_dapm_nc_pin(codec, "DIGIMIC1"); | 186 | snd_soc_dapm_nc_pin(dapm, "DIGIMIC1"); |
184 | snd_soc_dapm_nc_pin(codec, "EARPIECE"); | 187 | snd_soc_dapm_nc_pin(dapm, "EARPIECE"); |
185 | snd_soc_dapm_nc_pin(codec, "PREDRIVEL"); | 188 | snd_soc_dapm_nc_pin(dapm, "PREDRIVEL"); |
186 | snd_soc_dapm_nc_pin(codec, "PREDRIVER"); | 189 | snd_soc_dapm_nc_pin(dapm, "PREDRIVER"); |
187 | snd_soc_dapm_nc_pin(codec, "CARKITL"); | 190 | snd_soc_dapm_nc_pin(dapm, "CARKITL"); |
188 | snd_soc_dapm_nc_pin(codec, "CARKITR"); | 191 | snd_soc_dapm_nc_pin(dapm, "CARKITR"); |
189 | 192 | ||
190 | ret = snd_soc_dapm_sync(codec); | 193 | ret = snd_soc_dapm_sync(dapm); |
191 | 194 | ||
192 | return ret; | 195 | return ret; |
193 | } | 196 | } |
194 | 197 | ||
195 | static int zoom2_twl4030_voice_init(struct snd_soc_codec *codec) | 198 | static int zoom2_twl4030_voice_init(struct snd_soc_pcm_runtime *rtd) |
196 | { | 199 | { |
200 | struct snd_soc_codec *codec = rtd->codec; | ||
197 | unsigned short reg; | 201 | unsigned short reg; |
198 | 202 | ||
199 | /* Enable voice interface */ | 203 | /* Enable voice interface */ |
200 | reg = codec->read(codec, TWL4030_REG_VOICE_IF); | 204 | reg = codec->driver->read(codec, TWL4030_REG_VOICE_IF); |
201 | reg |= TWL4030_VIF_DIN_EN | TWL4030_VIF_DOUT_EN | TWL4030_VIF_EN; | 205 | reg |= TWL4030_VIF_DIN_EN | TWL4030_VIF_DOUT_EN | TWL4030_VIF_EN; |
202 | codec->write(codec, TWL4030_REG_VOICE_IF, reg); | 206 | codec->driver->write(codec, TWL4030_REG_VOICE_IF, reg); |
203 | 207 | ||
204 | return 0; | 208 | return 0; |
205 | } | 209 | } |
@@ -209,16 +213,20 @@ static struct snd_soc_dai_link zoom2_dai[] = { | |||
209 | { | 213 | { |
210 | .name = "TWL4030 I2S", | 214 | .name = "TWL4030 I2S", |
211 | .stream_name = "TWL4030 Audio", | 215 | .stream_name = "TWL4030 Audio", |
212 | .cpu_dai = &omap_mcbsp_dai[0], | 216 | .cpu_dai_name = "omap-mcbsp-dai.1", |
213 | .codec_dai = &twl4030_dai[TWL4030_DAI_HIFI], | 217 | .codec_dai_name = "twl4030-hifi", |
218 | .platform_name = "omap-pcm-audio", | ||
219 | .codec_name = "twl4030-codec", | ||
214 | .init = zoom2_twl4030_init, | 220 | .init = zoom2_twl4030_init, |
215 | .ops = &zoom2_ops, | 221 | .ops = &zoom2_ops, |
216 | }, | 222 | }, |
217 | { | 223 | { |
218 | .name = "TWL4030 PCM", | 224 | .name = "TWL4030 PCM", |
219 | .stream_name = "TWL4030 Voice", | 225 | .stream_name = "TWL4030 Voice", |
220 | .cpu_dai = &omap_mcbsp_dai[1], | 226 | .cpu_dai_name = "omap-mcbsp-dai.2", |
221 | .codec_dai = &twl4030_dai[TWL4030_DAI_VOICE], | 227 | .codec_dai_name = "twl4030-voice", |
228 | .platform_name = "omap-pcm-audio", | ||
229 | .codec_name = "twl4030-codec", | ||
222 | .init = zoom2_twl4030_voice_init, | 230 | .init = zoom2_twl4030_voice_init, |
223 | .ops = &zoom2_voice_ops, | 231 | .ops = &zoom2_voice_ops, |
224 | }, | 232 | }, |
@@ -227,42 +235,18 @@ static struct snd_soc_dai_link zoom2_dai[] = { | |||
227 | /* Audio machine driver */ | 235 | /* Audio machine driver */ |
228 | static struct snd_soc_card snd_soc_zoom2 = { | 236 | static struct snd_soc_card snd_soc_zoom2 = { |
229 | .name = "Zoom2", | 237 | .name = "Zoom2", |
230 | .platform = &omap_soc_platform, | ||
231 | .dai_link = zoom2_dai, | 238 | .dai_link = zoom2_dai, |
232 | .num_links = ARRAY_SIZE(zoom2_dai), | 239 | .num_links = ARRAY_SIZE(zoom2_dai), |
233 | }; | 240 | }; |
234 | 241 | ||
235 | /* EXTMUTE callback function */ | ||
236 | void zoom2_set_hs_extmute(int mute) | ||
237 | { | ||
238 | gpio_set_value(ZOOM2_HEADSET_EXTMUTE_GPIO, mute); | ||
239 | } | ||
240 | |||
241 | /* twl4030 setup */ | ||
242 | static struct twl4030_setup_data twl4030_setup = { | ||
243 | .ramp_delay_value = 3, /* 161 ms */ | ||
244 | .sysclk = 26000, | ||
245 | .hs_extmute = 1, | ||
246 | .set_hs_extmute = zoom2_set_hs_extmute, | ||
247 | }; | ||
248 | |||
249 | /* Audio subsystem */ | ||
250 | static struct snd_soc_device zoom2_snd_devdata = { | ||
251 | .card = &snd_soc_zoom2, | ||
252 | .codec_dev = &soc_codec_dev_twl4030, | ||
253 | .codec_data = &twl4030_setup, | ||
254 | }; | ||
255 | |||
256 | static struct platform_device *zoom2_snd_device; | 242 | static struct platform_device *zoom2_snd_device; |
257 | 243 | ||
258 | static int __init zoom2_soc_init(void) | 244 | static int __init zoom2_soc_init(void) |
259 | { | 245 | { |
260 | int ret; | 246 | int ret; |
261 | 247 | ||
262 | if (!machine_is_omap_zoom2()) { | 248 | if (!machine_is_omap_zoom2()) |
263 | pr_debug("Not Zoom2!\n"); | ||
264 | return -ENODEV; | 249 | return -ENODEV; |
265 | } | ||
266 | printk(KERN_INFO "Zoom2 SoC init\n"); | 250 | printk(KERN_INFO "Zoom2 SoC init\n"); |
267 | 251 | ||
268 | zoom2_snd_device = platform_device_alloc("soc-audio", -1); | 252 | zoom2_snd_device = platform_device_alloc("soc-audio", -1); |
@@ -271,11 +255,7 @@ static int __init zoom2_soc_init(void) | |||
271 | return -ENOMEM; | 255 | return -ENOMEM; |
272 | } | 256 | } |
273 | 257 | ||
274 | platform_set_drvdata(zoom2_snd_device, &zoom2_snd_devdata); | 258 | platform_set_drvdata(zoom2_snd_device, &snd_soc_zoom2); |
275 | zoom2_snd_devdata.dev = &zoom2_snd_device->dev; | ||
276 | *(unsigned int *)zoom2_dai[0].cpu_dai->private_data = 1; /* McBSP2 */ | ||
277 | *(unsigned int *)zoom2_dai[1].cpu_dai->private_data = 2; /* McBSP3 */ | ||
278 | |||
279 | ret = platform_device_add(zoom2_snd_device); | 259 | ret = platform_device_add(zoom2_snd_device); |
280 | if (ret) | 260 | if (ret) |
281 | goto err1; | 261 | goto err1; |