diff options
Diffstat (limited to 'sound/soc/omap/n810.c')
-rw-r--r-- | sound/soc/omap/n810.c | 86 |
1 files changed, 32 insertions, 54 deletions
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c index 08e09d72790f..83d213bfd3d1 100644 --- a/sound/soc/omap/n810.c +++ b/sound/soc/omap/n810.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <sound/core.h> | 27 | #include <sound/core.h> |
28 | #include <sound/pcm.h> | 28 | #include <sound/pcm.h> |
29 | #include <sound/soc.h> | 29 | #include <sound/soc.h> |
30 | #include <sound/soc-dapm.h> | ||
31 | 30 | ||
32 | #include <asm/mach-types.h> | 31 | #include <asm/mach-types.h> |
33 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
@@ -36,7 +35,6 @@ | |||
36 | 35 | ||
37 | #include "omap-mcbsp.h" | 36 | #include "omap-mcbsp.h" |
38 | #include "omap-pcm.h" | 37 | #include "omap-pcm.h" |
39 | #include "../codecs/tlv320aic3x.h" | ||
40 | 38 | ||
41 | #define N810_HEADSET_AMP_GPIO 10 | 39 | #define N810_HEADSET_AMP_GPIO 10 |
42 | #define N810_SPEAKER_AMP_GPIO 101 | 40 | #define N810_SPEAKER_AMP_GPIO 101 |
@@ -58,6 +56,7 @@ static int n810_dmic_func; | |||
58 | 56 | ||
59 | static void n810_ext_control(struct snd_soc_codec *codec) | 57 | static void n810_ext_control(struct snd_soc_codec *codec) |
60 | { | 58 | { |
59 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
61 | int hp = 0, line1l = 0; | 60 | int hp = 0, line1l = 0; |
62 | 61 | ||
63 | switch (n810_jack_func) { | 62 | switch (n810_jack_func) { |
@@ -72,32 +71,32 @@ static void n810_ext_control(struct snd_soc_codec *codec) | |||
72 | } | 71 | } |
73 | 72 | ||
74 | if (n810_spk_func) | 73 | if (n810_spk_func) |
75 | snd_soc_dapm_enable_pin(codec, "Ext Spk"); | 74 | snd_soc_dapm_enable_pin(dapm, "Ext Spk"); |
76 | else | 75 | else |
77 | snd_soc_dapm_disable_pin(codec, "Ext Spk"); | 76 | snd_soc_dapm_disable_pin(dapm, "Ext Spk"); |
78 | 77 | ||
79 | if (hp) | 78 | if (hp) |
80 | snd_soc_dapm_enable_pin(codec, "Headphone Jack"); | 79 | snd_soc_dapm_enable_pin(dapm, "Headphone Jack"); |
81 | else | 80 | else |
82 | snd_soc_dapm_disable_pin(codec, "Headphone Jack"); | 81 | snd_soc_dapm_disable_pin(dapm, "Headphone Jack"); |
83 | if (line1l) | 82 | if (line1l) |
84 | snd_soc_dapm_enable_pin(codec, "LINE1L"); | 83 | snd_soc_dapm_enable_pin(dapm, "LINE1L"); |
85 | else | 84 | else |
86 | snd_soc_dapm_disable_pin(codec, "LINE1L"); | 85 | snd_soc_dapm_disable_pin(dapm, "LINE1L"); |
87 | 86 | ||
88 | if (n810_dmic_func) | 87 | if (n810_dmic_func) |
89 | snd_soc_dapm_enable_pin(codec, "DMic"); | 88 | snd_soc_dapm_enable_pin(dapm, "DMic"); |
90 | else | 89 | else |
91 | snd_soc_dapm_disable_pin(codec, "DMic"); | 90 | snd_soc_dapm_disable_pin(dapm, "DMic"); |
92 | 91 | ||
93 | snd_soc_dapm_sync(codec); | 92 | snd_soc_dapm_sync(dapm); |
94 | } | 93 | } |
95 | 94 | ||
96 | static int n810_startup(struct snd_pcm_substream *substream) | 95 | static int n810_startup(struct snd_pcm_substream *substream) |
97 | { | 96 | { |
98 | struct snd_pcm_runtime *runtime = substream->runtime; | 97 | struct snd_pcm_runtime *runtime = substream->runtime; |
99 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 98 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
100 | struct snd_soc_codec *codec = rtd->socdev->card->codec; | 99 | struct snd_soc_codec *codec = rtd->codec; |
101 | 100 | ||
102 | snd_pcm_hw_constraint_minmax(runtime, | 101 | snd_pcm_hw_constraint_minmax(runtime, |
103 | SNDRV_PCM_HW_PARAM_CHANNELS, 2, 2); | 102 | SNDRV_PCM_HW_PARAM_CHANNELS, 2, 2); |
@@ -115,8 +114,8 @@ static int n810_hw_params(struct snd_pcm_substream *substream, | |||
115 | struct snd_pcm_hw_params *params) | 114 | struct snd_pcm_hw_params *params) |
116 | { | 115 | { |
117 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 116 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
118 | struct snd_soc_dai *codec_dai = rtd->dai->codec_dai; | 117 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
119 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; | 118 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
120 | int err; | 119 | int err; |
121 | 120 | ||
122 | /* Set codec DAI configuration */ | 121 | /* Set codec DAI configuration */ |
@@ -271,19 +270,21 @@ static const struct snd_kcontrol_new aic33_n810_controls[] = { | |||
271 | n810_get_input, n810_set_input), | 270 | n810_get_input, n810_set_input), |
272 | }; | 271 | }; |
273 | 272 | ||
274 | static int n810_aic33_init(struct snd_soc_codec *codec) | 273 | static int n810_aic33_init(struct snd_soc_pcm_runtime *rtd) |
275 | { | 274 | { |
275 | struct snd_soc_codec *codec = rtd->codec; | ||
276 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
276 | int err; | 277 | int err; |
277 | 278 | ||
278 | /* Not connected */ | 279 | /* Not connected */ |
279 | snd_soc_dapm_nc_pin(codec, "MONO_LOUT"); | 280 | snd_soc_dapm_nc_pin(dapm, "MONO_LOUT"); |
280 | snd_soc_dapm_nc_pin(codec, "HPLCOM"); | 281 | snd_soc_dapm_nc_pin(dapm, "HPLCOM"); |
281 | snd_soc_dapm_nc_pin(codec, "HPRCOM"); | 282 | snd_soc_dapm_nc_pin(dapm, "HPRCOM"); |
282 | snd_soc_dapm_nc_pin(codec, "MIC3L"); | 283 | snd_soc_dapm_nc_pin(dapm, "MIC3L"); |
283 | snd_soc_dapm_nc_pin(codec, "MIC3R"); | 284 | snd_soc_dapm_nc_pin(dapm, "MIC3R"); |
284 | snd_soc_dapm_nc_pin(codec, "LINE1R"); | 285 | snd_soc_dapm_nc_pin(dapm, "LINE1R"); |
285 | snd_soc_dapm_nc_pin(codec, "LINE2L"); | 286 | snd_soc_dapm_nc_pin(dapm, "LINE2L"); |
286 | snd_soc_dapm_nc_pin(codec, "LINE2R"); | 287 | snd_soc_dapm_nc_pin(dapm, "LINE2R"); |
287 | 288 | ||
288 | /* Add N810 specific controls */ | 289 | /* Add N810 specific controls */ |
289 | err = snd_soc_add_controls(codec, aic33_n810_controls, | 290 | err = snd_soc_add_controls(codec, aic33_n810_controls, |
@@ -292,13 +293,13 @@ static int n810_aic33_init(struct snd_soc_codec *codec) | |||
292 | return err; | 293 | return err; |
293 | 294 | ||
294 | /* Add N810 specific widgets */ | 295 | /* Add N810 specific widgets */ |
295 | snd_soc_dapm_new_controls(codec, aic33_dapm_widgets, | 296 | snd_soc_dapm_new_controls(dapm, aic33_dapm_widgets, |
296 | ARRAY_SIZE(aic33_dapm_widgets)); | 297 | ARRAY_SIZE(aic33_dapm_widgets)); |
297 | 298 | ||
298 | /* Set up N810 specific audio path audio_map */ | 299 | /* Set up N810 specific audio path audio_map */ |
299 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); | 300 | snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map)); |
300 | 301 | ||
301 | snd_soc_dapm_sync(codec); | 302 | snd_soc_dapm_sync(dapm); |
302 | 303 | ||
303 | return 0; | 304 | return 0; |
304 | } | 305 | } |
@@ -307,8 +308,10 @@ static int n810_aic33_init(struct snd_soc_codec *codec) | |||
307 | static struct snd_soc_dai_link n810_dai = { | 308 | static struct snd_soc_dai_link n810_dai = { |
308 | .name = "TLV320AIC33", | 309 | .name = "TLV320AIC33", |
309 | .stream_name = "AIC33", | 310 | .stream_name = "AIC33", |
310 | .cpu_dai = &omap_mcbsp_dai[0], | 311 | .cpu_dai_name = "omap-mcbsp-dai.1", |
311 | .codec_dai = &aic3x_dai, | 312 | .platform_name = "omap-pcm-audio", |
313 | .codec_name = "tlv320aic3x-codec.2-0018", | ||
314 | .codec_dai_name = "tlv320aic3x-hifi", | ||
312 | .init = n810_aic33_init, | 315 | .init = n810_aic33_init, |
313 | .ops = &n810_ops, | 316 | .ops = &n810_ops, |
314 | }; | 317 | }; |
@@ -316,33 +319,12 @@ static struct snd_soc_dai_link n810_dai = { | |||
316 | /* Audio machine driver */ | 319 | /* Audio machine driver */ |
317 | static struct snd_soc_card snd_soc_n810 = { | 320 | static struct snd_soc_card snd_soc_n810 = { |
318 | .name = "N810", | 321 | .name = "N810", |
319 | .platform = &omap_soc_platform, | ||
320 | .dai_link = &n810_dai, | 322 | .dai_link = &n810_dai, |
321 | .num_links = 1, | 323 | .num_links = 1, |
322 | }; | 324 | }; |
323 | 325 | ||
324 | /* Audio private data */ | ||
325 | static struct aic3x_setup_data n810_aic33_setup = { | ||
326 | .gpio_func[0] = AIC3X_GPIO1_FUNC_DISABLED, | ||
327 | .gpio_func[1] = AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT, | ||
328 | }; | ||
329 | |||
330 | /* Audio subsystem */ | ||
331 | static struct snd_soc_device n810_snd_devdata = { | ||
332 | .card = &snd_soc_n810, | ||
333 | .codec_dev = &soc_codec_dev_aic3x, | ||
334 | .codec_data = &n810_aic33_setup, | ||
335 | }; | ||
336 | |||
337 | static struct platform_device *n810_snd_device; | 326 | static struct platform_device *n810_snd_device; |
338 | 327 | ||
339 | /* temporary i2c device creation until this can be moved into the machine | ||
340 | * support file. | ||
341 | */ | ||
342 | static struct i2c_board_info i2c_device[] = { | ||
343 | { I2C_BOARD_INFO("tlv320aic3x", 0x1b), } | ||
344 | }; | ||
345 | |||
346 | static int __init n810_soc_init(void) | 328 | static int __init n810_soc_init(void) |
347 | { | 329 | { |
348 | int err; | 330 | int err; |
@@ -351,15 +333,11 @@ static int __init n810_soc_init(void) | |||
351 | if (!(machine_is_nokia_n810() || machine_is_nokia_n810_wimax())) | 333 | if (!(machine_is_nokia_n810() || machine_is_nokia_n810_wimax())) |
352 | return -ENODEV; | 334 | return -ENODEV; |
353 | 335 | ||
354 | i2c_register_board_info(1, i2c_device, ARRAY_SIZE(i2c_device)); | ||
355 | |||
356 | n810_snd_device = platform_device_alloc("soc-audio", -1); | 336 | n810_snd_device = platform_device_alloc("soc-audio", -1); |
357 | if (!n810_snd_device) | 337 | if (!n810_snd_device) |
358 | return -ENOMEM; | 338 | return -ENOMEM; |
359 | 339 | ||
360 | platform_set_drvdata(n810_snd_device, &n810_snd_devdata); | 340 | platform_set_drvdata(n810_snd_device, &snd_soc_n810); |
361 | n810_snd_devdata.dev = &n810_snd_device->dev; | ||
362 | *(unsigned int *)n810_dai.cpu_dai->private_data = 1; /* McBSP2 */ | ||
363 | err = platform_device_add(n810_snd_device); | 341 | err = platform_device_add(n810_snd_device); |
364 | if (err) | 342 | if (err) |
365 | goto err1; | 343 | goto err1; |