diff options
Diffstat (limited to 'sound/soc/omap/ams-delta.c')
-rw-r--r-- | sound/soc/omap/ams-delta.c | 184 |
1 files changed, 99 insertions, 85 deletions
diff --git a/sound/soc/omap/ams-delta.c b/sound/soc/omap/ams-delta.c index b0f618e44840..462cbcbea74a 100644 --- a/sound/soc/omap/ams-delta.c +++ b/sound/soc/omap/ams-delta.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <linux/spinlock.h> | 26 | #include <linux/spinlock.h> |
27 | #include <linux/tty.h> | 27 | #include <linux/tty.h> |
28 | 28 | ||
29 | #include <sound/soc-dapm.h> | 29 | #include <sound/soc.h> |
30 | #include <sound/jack.h> | 30 | #include <sound/jack.h> |
31 | 31 | ||
32 | #include <asm/mach-types.h> | 32 | #include <asm/mach-types.h> |
@@ -94,12 +94,13 @@ static int ams_delta_set_audio_mode(struct snd_kcontrol *kcontrol, | |||
94 | struct snd_ctl_elem_value *ucontrol) | 94 | struct snd_ctl_elem_value *ucontrol) |
95 | { | 95 | { |
96 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); | 96 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
97 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
97 | struct soc_enum *control = (struct soc_enum *)kcontrol->private_value; | 98 | struct soc_enum *control = (struct soc_enum *)kcontrol->private_value; |
98 | unsigned short pins; | 99 | unsigned short pins; |
99 | int pin, changed = 0; | 100 | int pin, changed = 0; |
100 | 101 | ||
101 | /* Refuse any mode changes if we are not able to control the codec. */ | 102 | /* Refuse any mode changes if we are not able to control the codec. */ |
102 | if (!codec->control_data) | 103 | if (!codec->hw_write) |
103 | return -EUNATCH; | 104 | return -EUNATCH; |
104 | 105 | ||
105 | if (ucontrol->value.enumerated.item[0] >= control->max) | 106 | if (ucontrol->value.enumerated.item[0] >= control->max) |
@@ -112,48 +113,48 @@ static int ams_delta_set_audio_mode(struct snd_kcontrol *kcontrol, | |||
112 | 113 | ||
113 | /* Setup pins after corresponding bits if changed */ | 114 | /* Setup pins after corresponding bits if changed */ |
114 | pin = !!(pins & (1 << AMS_DELTA_MOUTHPIECE)); | 115 | pin = !!(pins & (1 << AMS_DELTA_MOUTHPIECE)); |
115 | if (pin != snd_soc_dapm_get_pin_status(codec, "Mouthpiece")) { | 116 | if (pin != snd_soc_dapm_get_pin_status(dapm, "Mouthpiece")) { |
116 | changed = 1; | 117 | changed = 1; |
117 | if (pin) | 118 | if (pin) |
118 | snd_soc_dapm_enable_pin(codec, "Mouthpiece"); | 119 | snd_soc_dapm_enable_pin(dapm, "Mouthpiece"); |
119 | else | 120 | else |
120 | snd_soc_dapm_disable_pin(codec, "Mouthpiece"); | 121 | snd_soc_dapm_disable_pin(dapm, "Mouthpiece"); |
121 | } | 122 | } |
122 | pin = !!(pins & (1 << AMS_DELTA_EARPIECE)); | 123 | pin = !!(pins & (1 << AMS_DELTA_EARPIECE)); |
123 | if (pin != snd_soc_dapm_get_pin_status(codec, "Earpiece")) { | 124 | if (pin != snd_soc_dapm_get_pin_status(dapm, "Earpiece")) { |
124 | changed = 1; | 125 | changed = 1; |
125 | if (pin) | 126 | if (pin) |
126 | snd_soc_dapm_enable_pin(codec, "Earpiece"); | 127 | snd_soc_dapm_enable_pin(dapm, "Earpiece"); |
127 | else | 128 | else |
128 | snd_soc_dapm_disable_pin(codec, "Earpiece"); | 129 | snd_soc_dapm_disable_pin(dapm, "Earpiece"); |
129 | } | 130 | } |
130 | pin = !!(pins & (1 << AMS_DELTA_MICROPHONE)); | 131 | pin = !!(pins & (1 << AMS_DELTA_MICROPHONE)); |
131 | if (pin != snd_soc_dapm_get_pin_status(codec, "Microphone")) { | 132 | if (pin != snd_soc_dapm_get_pin_status(dapm, "Microphone")) { |
132 | changed = 1; | 133 | changed = 1; |
133 | if (pin) | 134 | if (pin) |
134 | snd_soc_dapm_enable_pin(codec, "Microphone"); | 135 | snd_soc_dapm_enable_pin(dapm, "Microphone"); |
135 | else | 136 | else |
136 | snd_soc_dapm_disable_pin(codec, "Microphone"); | 137 | snd_soc_dapm_disable_pin(dapm, "Microphone"); |
137 | } | 138 | } |
138 | pin = !!(pins & (1 << AMS_DELTA_SPEAKER)); | 139 | pin = !!(pins & (1 << AMS_DELTA_SPEAKER)); |
139 | if (pin != snd_soc_dapm_get_pin_status(codec, "Speaker")) { | 140 | if (pin != snd_soc_dapm_get_pin_status(dapm, "Speaker")) { |
140 | changed = 1; | 141 | changed = 1; |
141 | if (pin) | 142 | if (pin) |
142 | snd_soc_dapm_enable_pin(codec, "Speaker"); | 143 | snd_soc_dapm_enable_pin(dapm, "Speaker"); |
143 | else | 144 | else |
144 | snd_soc_dapm_disable_pin(codec, "Speaker"); | 145 | snd_soc_dapm_disable_pin(dapm, "Speaker"); |
145 | } | 146 | } |
146 | pin = !!(pins & (1 << AMS_DELTA_AGC)); | 147 | pin = !!(pins & (1 << AMS_DELTA_AGC)); |
147 | if (pin != ams_delta_audio_agc) { | 148 | if (pin != ams_delta_audio_agc) { |
148 | ams_delta_audio_agc = pin; | 149 | ams_delta_audio_agc = pin; |
149 | changed = 1; | 150 | changed = 1; |
150 | if (pin) | 151 | if (pin) |
151 | snd_soc_dapm_enable_pin(codec, "AGCIN"); | 152 | snd_soc_dapm_enable_pin(dapm, "AGCIN"); |
152 | else | 153 | else |
153 | snd_soc_dapm_disable_pin(codec, "AGCIN"); | 154 | snd_soc_dapm_disable_pin(dapm, "AGCIN"); |
154 | } | 155 | } |
155 | if (changed) | 156 | if (changed) |
156 | snd_soc_dapm_sync(codec); | 157 | snd_soc_dapm_sync(dapm); |
157 | 158 | ||
158 | mutex_unlock(&codec->mutex); | 159 | mutex_unlock(&codec->mutex); |
159 | 160 | ||
@@ -164,19 +165,20 @@ static int ams_delta_get_audio_mode(struct snd_kcontrol *kcontrol, | |||
164 | struct snd_ctl_elem_value *ucontrol) | 165 | struct snd_ctl_elem_value *ucontrol) |
165 | { | 166 | { |
166 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); | 167 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
168 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
167 | unsigned short pins, mode; | 169 | unsigned short pins, mode; |
168 | 170 | ||
169 | pins = ((snd_soc_dapm_get_pin_status(codec, "Mouthpiece") << | 171 | pins = ((snd_soc_dapm_get_pin_status(dapm, "Mouthpiece") << |
170 | AMS_DELTA_MOUTHPIECE) | | 172 | AMS_DELTA_MOUTHPIECE) | |
171 | (snd_soc_dapm_get_pin_status(codec, "Earpiece") << | 173 | (snd_soc_dapm_get_pin_status(dapm, "Earpiece") << |
172 | AMS_DELTA_EARPIECE)); | 174 | AMS_DELTA_EARPIECE)); |
173 | if (pins) | 175 | if (pins) |
174 | pins |= (snd_soc_dapm_get_pin_status(codec, "Microphone") << | 176 | pins |= (snd_soc_dapm_get_pin_status(dapm, "Microphone") << |
175 | AMS_DELTA_MICROPHONE); | 177 | AMS_DELTA_MICROPHONE); |
176 | else | 178 | else |
177 | pins = ((snd_soc_dapm_get_pin_status(codec, "Microphone") << | 179 | pins = ((snd_soc_dapm_get_pin_status(dapm, "Microphone") << |
178 | AMS_DELTA_MICROPHONE) | | 180 | AMS_DELTA_MICROPHONE) | |
179 | (snd_soc_dapm_get_pin_status(codec, "Speaker") << | 181 | (snd_soc_dapm_get_pin_status(dapm, "Speaker") << |
180 | AMS_DELTA_SPEAKER) | | 182 | AMS_DELTA_SPEAKER) | |
181 | (ams_delta_audio_agc << AMS_DELTA_AGC)); | 183 | (ams_delta_audio_agc << AMS_DELTA_AGC)); |
182 | 184 | ||
@@ -246,7 +248,7 @@ static struct snd_soc_jack_pin ams_delta_hook_switch_pins[] = { | |||
246 | */ | 248 | */ |
247 | 249 | ||
248 | /* To actually apply any modem controlled configuration changes to the codec, | 250 | /* To actually apply any modem controlled configuration changes to the codec, |
249 | * we must connect codec DAI pins to the modem for a moment. Be carefull not | 251 | * we must connect codec DAI pins to the modem for a moment. Be careful not |
250 | * to interfere with our digital mute function that shares the same hardware. */ | 252 | * to interfere with our digital mute function that shares the same hardware. */ |
251 | static struct timer_list cx81801_timer; | 253 | static struct timer_list cx81801_timer; |
252 | static bool cx81801_cmd_pending; | 254 | static bool cx81801_cmd_pending; |
@@ -268,31 +270,57 @@ static void cx81801_timeout(unsigned long data) | |||
268 | ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_CODEC, 0); | 270 | ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_CODEC, 0); |
269 | } | 271 | } |
270 | 272 | ||
273 | /* | ||
274 | * Used for passing a codec structure pointer | ||
275 | * from the board initialization code to the tty line discipline. | ||
276 | */ | ||
277 | static struct snd_soc_codec *cx20442_codec; | ||
278 | |||
271 | /* Line discipline .open() */ | 279 | /* Line discipline .open() */ |
272 | static int cx81801_open(struct tty_struct *tty) | 280 | static int cx81801_open(struct tty_struct *tty) |
273 | { | 281 | { |
274 | return v253_ops.open(tty); | 282 | int ret; |
283 | |||
284 | if (!cx20442_codec) | ||
285 | return -ENODEV; | ||
286 | |||
287 | /* | ||
288 | * Pass the codec structure pointer for use by other ldisc callbacks, | ||
289 | * both the card and the codec specific parts. | ||
290 | */ | ||
291 | tty->disc_data = cx20442_codec; | ||
292 | |||
293 | ret = v253_ops.open(tty); | ||
294 | |||
295 | if (ret < 0) | ||
296 | tty->disc_data = NULL; | ||
297 | |||
298 | return ret; | ||
275 | } | 299 | } |
276 | 300 | ||
277 | /* Line discipline .close() */ | 301 | /* Line discipline .close() */ |
278 | static void cx81801_close(struct tty_struct *tty) | 302 | static void cx81801_close(struct tty_struct *tty) |
279 | { | 303 | { |
280 | struct snd_soc_codec *codec = tty->disc_data; | 304 | struct snd_soc_codec *codec = tty->disc_data; |
305 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
281 | 306 | ||
282 | del_timer_sync(&cx81801_timer); | 307 | del_timer_sync(&cx81801_timer); |
283 | 308 | ||
284 | v253_ops.close(tty); | ||
285 | |||
286 | /* Prevent the hook switch from further changing the DAPM pins */ | 309 | /* Prevent the hook switch from further changing the DAPM pins */ |
287 | INIT_LIST_HEAD(&ams_delta_hook_switch.pins); | 310 | INIT_LIST_HEAD(&ams_delta_hook_switch.pins); |
288 | 311 | ||
312 | if (!codec) | ||
313 | return; | ||
314 | |||
315 | v253_ops.close(tty); | ||
316 | |||
289 | /* Revert back to default audio input/output constellation */ | 317 | /* Revert back to default audio input/output constellation */ |
290 | snd_soc_dapm_disable_pin(codec, "Mouthpiece"); | 318 | snd_soc_dapm_disable_pin(dapm, "Mouthpiece"); |
291 | snd_soc_dapm_enable_pin(codec, "Earpiece"); | 319 | snd_soc_dapm_enable_pin(dapm, "Earpiece"); |
292 | snd_soc_dapm_enable_pin(codec, "Microphone"); | 320 | snd_soc_dapm_enable_pin(dapm, "Microphone"); |
293 | snd_soc_dapm_disable_pin(codec, "Speaker"); | 321 | snd_soc_dapm_disable_pin(dapm, "Speaker"); |
294 | snd_soc_dapm_disable_pin(codec, "AGCIN"); | 322 | snd_soc_dapm_disable_pin(dapm, "AGCIN"); |
295 | snd_soc_dapm_sync(codec); | 323 | snd_soc_dapm_sync(dapm); |
296 | } | 324 | } |
297 | 325 | ||
298 | /* Line discipline .hangup() */ | 326 | /* Line discipline .hangup() */ |
@@ -310,7 +338,10 @@ static void cx81801_receive(struct tty_struct *tty, | |||
310 | const unsigned char *c; | 338 | const unsigned char *c; |
311 | int apply, ret; | 339 | int apply, ret; |
312 | 340 | ||
313 | if (!codec->control_data) { | 341 | if (!codec) |
342 | return; | ||
343 | |||
344 | if (!codec->hw_write) { | ||
314 | /* First modem response, complete setup procedure */ | 345 | /* First modem response, complete setup procedure */ |
315 | 346 | ||
316 | /* Initialize timer used for config pulse generation */ | 347 | /* Initialize timer used for config pulse generation */ |
@@ -323,7 +354,7 @@ static void cx81801_receive(struct tty_struct *tty, | |||
323 | ARRAY_SIZE(ams_delta_hook_switch_pins), | 354 | ARRAY_SIZE(ams_delta_hook_switch_pins), |
324 | ams_delta_hook_switch_pins); | 355 | ams_delta_hook_switch_pins); |
325 | if (ret) | 356 | if (ret) |
326 | dev_warn(codec->socdev->card->dev, | 357 | dev_warn(codec->dev, |
327 | "Failed to link hook switch to DAPM pins, " | 358 | "Failed to link hook switch to DAPM pins, " |
328 | "will continue with hook switch unlinked.\n"); | 359 | "will continue with hook switch unlinked.\n"); |
329 | 360 | ||
@@ -371,9 +402,9 @@ static struct tty_ldisc_ops cx81801_ops = { | |||
371 | 402 | ||
372 | 403 | ||
373 | /* | 404 | /* |
374 | * Even if not very usefull, the sound card can still work without any of the | 405 | * Even if not very useful, the sound card can still work without any of the |
375 | * above functonality activated. You can still control its audio input/output | 406 | * above functonality activated. You can still control its audio input/output |
376 | * constellation and speakerphone gain from userspace by issueing AT commands | 407 | * constellation and speakerphone gain from userspace by issuing AT commands |
377 | * over the modem port. | 408 | * over the modem port. |
378 | */ | 409 | */ |
379 | 410 | ||
@@ -383,7 +414,7 @@ static int ams_delta_hw_params(struct snd_pcm_substream *substream, | |||
383 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 414 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
384 | 415 | ||
385 | /* Set cpu DAI configuration */ | 416 | /* Set cpu DAI configuration */ |
386 | return snd_soc_dai_set_fmt(rtd->dai->cpu_dai, | 417 | return snd_soc_dai_set_fmt(rtd->cpu_dai, |
387 | SND_SOC_DAIFMT_DSP_A | | 418 | SND_SOC_DAIFMT_DSP_A | |
388 | SND_SOC_DAIFMT_NB_NF | | 419 | SND_SOC_DAIFMT_NB_NF | |
389 | SND_SOC_DAIFMT_CBM_CFM); | 420 | SND_SOC_DAIFMT_CBM_CFM); |
@@ -398,22 +429,22 @@ static struct snd_soc_ops ams_delta_ops = { | |||
398 | static int ams_delta_set_bias_level(struct snd_soc_card *card, | 429 | static int ams_delta_set_bias_level(struct snd_soc_card *card, |
399 | enum snd_soc_bias_level level) | 430 | enum snd_soc_bias_level level) |
400 | { | 431 | { |
401 | struct snd_soc_codec *codec = card->codec; | 432 | struct snd_soc_codec *codec = card->rtd->codec; |
402 | 433 | ||
403 | switch (level) { | 434 | switch (level) { |
404 | case SND_SOC_BIAS_ON: | 435 | case SND_SOC_BIAS_ON: |
405 | case SND_SOC_BIAS_PREPARE: | 436 | case SND_SOC_BIAS_PREPARE: |
406 | case SND_SOC_BIAS_STANDBY: | 437 | case SND_SOC_BIAS_STANDBY: |
407 | if (codec->bias_level == SND_SOC_BIAS_OFF) | 438 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) |
408 | ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_NRESET, | 439 | ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_NRESET, |
409 | AMS_DELTA_LATCH2_MODEM_NRESET); | 440 | AMS_DELTA_LATCH2_MODEM_NRESET); |
410 | break; | 441 | break; |
411 | case SND_SOC_BIAS_OFF: | 442 | case SND_SOC_BIAS_OFF: |
412 | if (codec->bias_level != SND_SOC_BIAS_OFF) | 443 | if (codec->dapm.bias_level != SND_SOC_BIAS_OFF) |
413 | ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_NRESET, | 444 | ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_NRESET, |
414 | 0); | 445 | 0); |
415 | } | 446 | } |
416 | codec->bias_level = level; | 447 | codec->dapm.bias_level = level; |
417 | 448 | ||
418 | return 0; | 449 | return 0; |
419 | } | 450 | } |
@@ -461,18 +492,21 @@ static void ams_delta_shutdown(struct snd_pcm_substream *substream) | |||
461 | * Card initialization | 492 | * Card initialization |
462 | */ | 493 | */ |
463 | 494 | ||
464 | static int ams_delta_cx20442_init(struct snd_soc_codec *codec) | 495 | static int ams_delta_cx20442_init(struct snd_soc_pcm_runtime *rtd) |
465 | { | 496 | { |
466 | struct snd_soc_dai *codec_dai = codec->dai; | 497 | struct snd_soc_codec *codec = rtd->codec; |
467 | struct snd_soc_card *card = codec->socdev->card; | 498 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
499 | struct snd_soc_dai *codec_dai = rtd->codec_dai; | ||
500 | struct snd_soc_card *card = rtd->card; | ||
468 | int ret; | 501 | int ret; |
469 | /* Codec is ready, now add/activate board specific controls */ | 502 | /* Codec is ready, now add/activate board specific controls */ |
470 | 503 | ||
504 | /* Store a pointer to the codec structure for tty ldisc use */ | ||
505 | cx20442_codec = codec; | ||
506 | |||
471 | /* Set up digital mute if not provided by the codec */ | 507 | /* Set up digital mute if not provided by the codec */ |
472 | if (!codec_dai->ops) { | 508 | if (!codec_dai->driver->ops) { |
473 | codec_dai->ops = &ams_delta_dai_ops; | 509 | codec_dai->driver->ops = &ams_delta_dai_ops; |
474 | } else if (!codec_dai->ops->digital_mute) { | ||
475 | codec_dai->ops->digital_mute = ams_delta_digital_mute; | ||
476 | } else { | 510 | } else { |
477 | ams_delta_ops.startup = ams_delta_startup; | 511 | ams_delta_ops.startup = ams_delta_startup; |
478 | ams_delta_ops.shutdown = ams_delta_shutdown; | 512 | ams_delta_ops.shutdown = ams_delta_shutdown; |
@@ -483,7 +517,7 @@ static int ams_delta_cx20442_init(struct snd_soc_codec *codec) | |||
483 | 517 | ||
484 | /* Add hook switch - can be used to control the codec from userspace | 518 | /* Add hook switch - can be used to control the codec from userspace |
485 | * even if line discipline fails */ | 519 | * even if line discipline fails */ |
486 | ret = snd_soc_jack_new(card, "hook_switch", | 520 | ret = snd_soc_jack_new(rtd->codec, "hook_switch", |
487 | SND_JACK_HEADSET, &ams_delta_hook_switch); | 521 | SND_JACK_HEADSET, &ams_delta_hook_switch); |
488 | if (ret) | 522 | if (ret) |
489 | dev_warn(card->dev, | 523 | dev_warn(card->dev, |
@@ -509,7 +543,7 @@ static int ams_delta_cx20442_init(struct snd_soc_codec *codec) | |||
509 | } | 543 | } |
510 | 544 | ||
511 | /* Add board specific DAPM widgets and routes */ | 545 | /* Add board specific DAPM widgets and routes */ |
512 | ret = snd_soc_dapm_new_controls(codec, ams_delta_dapm_widgets, | 546 | ret = snd_soc_dapm_new_controls(dapm, ams_delta_dapm_widgets, |
513 | ARRAY_SIZE(ams_delta_dapm_widgets)); | 547 | ARRAY_SIZE(ams_delta_dapm_widgets)); |
514 | if (ret) { | 548 | if (ret) { |
515 | dev_warn(card->dev, | 549 | dev_warn(card->dev, |
@@ -518,7 +552,7 @@ static int ams_delta_cx20442_init(struct snd_soc_codec *codec) | |||
518 | return 0; | 552 | return 0; |
519 | } | 553 | } |
520 | 554 | ||
521 | ret = snd_soc_dapm_add_routes(codec, ams_delta_audio_map, | 555 | ret = snd_soc_dapm_add_routes(dapm, ams_delta_audio_map, |
522 | ARRAY_SIZE(ams_delta_audio_map)); | 556 | ARRAY_SIZE(ams_delta_audio_map)); |
523 | if (ret) { | 557 | if (ret) { |
524 | dev_warn(card->dev, | 558 | dev_warn(card->dev, |
@@ -528,13 +562,13 @@ static int ams_delta_cx20442_init(struct snd_soc_codec *codec) | |||
528 | } | 562 | } |
529 | 563 | ||
530 | /* Set up initial pin constellation */ | 564 | /* Set up initial pin constellation */ |
531 | snd_soc_dapm_disable_pin(codec, "Mouthpiece"); | 565 | snd_soc_dapm_disable_pin(dapm, "Mouthpiece"); |
532 | snd_soc_dapm_enable_pin(codec, "Earpiece"); | 566 | snd_soc_dapm_enable_pin(dapm, "Earpiece"); |
533 | snd_soc_dapm_enable_pin(codec, "Microphone"); | 567 | snd_soc_dapm_enable_pin(dapm, "Microphone"); |
534 | snd_soc_dapm_disable_pin(codec, "Speaker"); | 568 | snd_soc_dapm_disable_pin(dapm, "Speaker"); |
535 | snd_soc_dapm_disable_pin(codec, "AGCIN"); | 569 | snd_soc_dapm_disable_pin(dapm, "AGCIN"); |
536 | snd_soc_dapm_disable_pin(codec, "AGCOUT"); | 570 | snd_soc_dapm_disable_pin(dapm, "AGCOUT"); |
537 | snd_soc_dapm_sync(codec); | 571 | snd_soc_dapm_sync(dapm); |
538 | 572 | ||
539 | /* Add virtual switch */ | 573 | /* Add virtual switch */ |
540 | ret = snd_soc_add_controls(codec, ams_delta_audio_controls, | 574 | ret = snd_soc_add_controls(codec, ams_delta_audio_controls, |
@@ -551,27 +585,22 @@ static int ams_delta_cx20442_init(struct snd_soc_codec *codec) | |||
551 | static struct snd_soc_dai_link ams_delta_dai_link = { | 585 | static struct snd_soc_dai_link ams_delta_dai_link = { |
552 | .name = "CX20442", | 586 | .name = "CX20442", |
553 | .stream_name = "CX20442", | 587 | .stream_name = "CX20442", |
554 | .cpu_dai = &omap_mcbsp_dai[0], | 588 | .cpu_dai_name ="omap-mcbsp-dai.0", |
555 | .codec_dai = &cx20442_dai, | 589 | .codec_dai_name = "cx20442-voice", |
556 | .init = ams_delta_cx20442_init, | 590 | .init = ams_delta_cx20442_init, |
591 | .platform_name = "omap-pcm-audio", | ||
592 | .codec_name = "cx20442-codec", | ||
557 | .ops = &ams_delta_ops, | 593 | .ops = &ams_delta_ops, |
558 | }; | 594 | }; |
559 | 595 | ||
560 | /* Audio card driver */ | 596 | /* Audio card driver */ |
561 | static struct snd_soc_card ams_delta_audio_card = { | 597 | static struct snd_soc_card ams_delta_audio_card = { |
562 | .name = "AMS_DELTA", | 598 | .name = "AMS_DELTA", |
563 | .platform = &omap_soc_platform, | ||
564 | .dai_link = &ams_delta_dai_link, | 599 | .dai_link = &ams_delta_dai_link, |
565 | .num_links = 1, | 600 | .num_links = 1, |
566 | .set_bias_level = ams_delta_set_bias_level, | 601 | .set_bias_level = ams_delta_set_bias_level, |
567 | }; | 602 | }; |
568 | 603 | ||
569 | /* Audio subsystem */ | ||
570 | static struct snd_soc_device ams_delta_snd_soc_device = { | ||
571 | .card = &ams_delta_audio_card, | ||
572 | .codec_dev = &cx20442_codec_dev, | ||
573 | }; | ||
574 | |||
575 | /* Module init/exit */ | 604 | /* Module init/exit */ |
576 | static struct platform_device *ams_delta_audio_platform_device; | 605 | static struct platform_device *ams_delta_audio_platform_device; |
577 | static struct platform_device *cx20442_platform_device; | 606 | static struct platform_device *cx20442_platform_device; |
@@ -589,9 +618,7 @@ static int __init ams_delta_module_init(void) | |||
589 | return -ENOMEM; | 618 | return -ENOMEM; |
590 | 619 | ||
591 | platform_set_drvdata(ams_delta_audio_platform_device, | 620 | platform_set_drvdata(ams_delta_audio_platform_device, |
592 | &ams_delta_snd_soc_device); | 621 | &ams_delta_audio_card); |
593 | ams_delta_snd_soc_device.dev = &ams_delta_audio_platform_device->dev; | ||
594 | *(unsigned int *)ams_delta_dai_link.cpu_dai->private_data = OMAP_MCBSP1; | ||
595 | 622 | ||
596 | ret = platform_device_add(ams_delta_audio_platform_device); | 623 | ret = platform_device_add(ams_delta_audio_platform_device); |
597 | if (ret) | 624 | if (ret) |
@@ -601,8 +628,8 @@ static int __init ams_delta_module_init(void) | |||
601 | * Codec platform device could be registered from elsewhere (board?), | 628 | * Codec platform device could be registered from elsewhere (board?), |
602 | * but I do it here as it makes sense only if used with the card. | 629 | * but I do it here as it makes sense only if used with the card. |
603 | */ | 630 | */ |
604 | cx20442_platform_device = platform_device_register_simple("cx20442", | 631 | cx20442_platform_device = |
605 | -1, NULL, 0); | 632 | platform_device_register_simple("cx20442-codec", -1, NULL, 0); |
606 | return 0; | 633 | return 0; |
607 | err: | 634 | err: |
608 | platform_device_put(ams_delta_audio_platform_device); | 635 | platform_device_put(ams_delta_audio_platform_device); |
@@ -612,19 +639,6 @@ module_init(ams_delta_module_init); | |||
612 | 639 | ||
613 | static void __exit ams_delta_module_exit(void) | 640 | static void __exit ams_delta_module_exit(void) |
614 | { | 641 | { |
615 | struct snd_soc_codec *codec; | ||
616 | struct tty_struct *tty; | ||
617 | |||
618 | if (ams_delta_audio_card.codec) { | ||
619 | codec = ams_delta_audio_card.codec; | ||
620 | |||
621 | if (codec->control_data) { | ||
622 | tty = codec->control_data; | ||
623 | |||
624 | tty_hangup(tty); | ||
625 | } | ||
626 | } | ||
627 | |||
628 | if (tty_unregister_ldisc(N_V253) != 0) | 642 | if (tty_unregister_ldisc(N_V253) != 0) |
629 | dev_warn(&ams_delta_audio_platform_device->dev, | 643 | dev_warn(&ams_delta_audio_platform_device->dev, |
630 | "failed to unregister V253 line discipline\n"); | 644 | "failed to unregister V253 line discipline\n"); |