aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8731.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/wm8731.c')
-rw-r--r--sound/soc/codecs/wm8731.c376
1 files changed, 174 insertions, 202 deletions
diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c
index 0ab9b6355297..76b4361e9b80 100644
--- a/sound/soc/codecs/wm8731.c
+++ b/sound/soc/codecs/wm8731.c
@@ -26,15 +26,11 @@
26#include <sound/pcm.h> 26#include <sound/pcm.h>
27#include <sound/pcm_params.h> 27#include <sound/pcm_params.h>
28#include <sound/soc.h> 28#include <sound/soc.h>
29#include <sound/soc-dapm.h>
30#include <sound/initval.h> 29#include <sound/initval.h>
31#include <sound/tlv.h> 30#include <sound/tlv.h>
32 31
33#include "wm8731.h" 32#include "wm8731.h"
34 33
35static struct snd_soc_codec *wm8731_codec;
36struct snd_soc_codec_device soc_codec_dev_wm8731;
37
38#define WM8731_NUM_SUPPLIES 4 34#define WM8731_NUM_SUPPLIES 4
39static const char *wm8731_supply_names[WM8731_NUM_SUPPLIES] = { 35static const char *wm8731_supply_names[WM8731_NUM_SUPPLIES] = {
40 "AVDD", 36 "AVDD",
@@ -45,10 +41,12 @@ static const char *wm8731_supply_names[WM8731_NUM_SUPPLIES] = {
45 41
46/* codec private data */ 42/* codec private data */
47struct wm8731_priv { 43struct wm8731_priv {
48 struct snd_soc_codec codec; 44 enum snd_soc_control_type control_type;
49 struct regulator_bulk_data supplies[WM8731_NUM_SUPPLIES]; 45 struct regulator_bulk_data supplies[WM8731_NUM_SUPPLIES];
50 u16 reg_cache[WM8731_CACHEREGNUM];
51 unsigned int sysclk; 46 unsigned int sysclk;
47 int sysclk_type;
48 int playback_fs;
49 bool deemph;
52}; 50};
53 51
54 52
@@ -67,16 +65,79 @@ static const u16 wm8731_reg[WM8731_CACHEREGNUM] = {
67#define wm8731_reset(c) snd_soc_write(c, WM8731_RESET, 0) 65#define wm8731_reset(c) snd_soc_write(c, WM8731_RESET, 0)
68 66
69static const char *wm8731_input_select[] = {"Line In", "Mic"}; 67static const char *wm8731_input_select[] = {"Line In", "Mic"};
70static const char *wm8731_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"};
71 68
72static const struct soc_enum wm8731_enum[] = { 69static const struct soc_enum wm8731_insel_enum =
73 SOC_ENUM_SINGLE(WM8731_APANA, 2, 2, wm8731_input_select), 70 SOC_ENUM_SINGLE(WM8731_APANA, 2, 2, wm8731_input_select);
74 SOC_ENUM_SINGLE(WM8731_APDIGI, 1, 4, wm8731_deemph), 71
75}; 72static int wm8731_deemph[] = { 0, 32000, 44100, 48000 };
73
74static int wm8731_set_deemph(struct snd_soc_codec *codec)
75{
76 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
77 int val, i, best;
78
79 /* If we're using deemphasis select the nearest available sample
80 * rate.
81 */
82 if (wm8731->deemph) {
83 best = 1;
84 for (i = 2; i < ARRAY_SIZE(wm8731_deemph); i++) {
85 if (abs(wm8731_deemph[i] - wm8731->playback_fs) <
86 abs(wm8731_deemph[best] - wm8731->playback_fs))
87 best = i;
88 }
89
90 val = best << 1;
91 } else {
92 best = 0;
93 val = 0;
94 }
95
96 dev_dbg(codec->dev, "Set deemphasis %d (%dHz)\n",
97 best, wm8731_deemph[best]);
98
99 return snd_soc_update_bits(codec, WM8731_APDIGI, 0x6, val);
100}
101
102static int wm8731_get_deemph(struct snd_kcontrol *kcontrol,
103 struct snd_ctl_elem_value *ucontrol)
104{
105 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
106 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
107
108 ucontrol->value.enumerated.item[0] = wm8731->deemph;
109
110 return 0;
111}
112
113static int wm8731_put_deemph(struct snd_kcontrol *kcontrol,
114 struct snd_ctl_elem_value *ucontrol)
115{
116 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
117 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
118 int deemph = ucontrol->value.enumerated.item[0];
119 int ret = 0;
120
121 if (deemph > 1)
122 return -EINVAL;
123
124 mutex_lock(&codec->mutex);
125 if (wm8731->deemph != deemph) {
126 wm8731->deemph = deemph;
127
128 wm8731_set_deemph(codec);
129
130 ret = 1;
131 }
132 mutex_unlock(&codec->mutex);
133
134 return ret;
135}
76 136
77static const DECLARE_TLV_DB_SCALE(in_tlv, -3450, 150, 0); 137static const DECLARE_TLV_DB_SCALE(in_tlv, -3450, 150, 0);
78static const DECLARE_TLV_DB_SCALE(sidetone_tlv, -1500, 300, 0); 138static const DECLARE_TLV_DB_SCALE(sidetone_tlv, -1500, 300, 0);
79static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1); 139static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1);
140static const DECLARE_TLV_DB_SCALE(mic_tlv, 0, 2000, 0);
80 141
81static const struct snd_kcontrol_new wm8731_snd_controls[] = { 142static const struct snd_kcontrol_new wm8731_snd_controls[] = {
82 143
@@ -89,7 +150,7 @@ SOC_DOUBLE_R_TLV("Capture Volume", WM8731_LINVOL, WM8731_RINVOL, 0, 31, 0,
89 in_tlv), 150 in_tlv),
90SOC_DOUBLE_R("Line Capture Switch", WM8731_LINVOL, WM8731_RINVOL, 7, 1, 1), 151SOC_DOUBLE_R("Line Capture Switch", WM8731_LINVOL, WM8731_RINVOL, 7, 1, 1),
91 152
92SOC_SINGLE("Mic Boost (+20dB)", WM8731_APANA, 0, 1, 0), 153SOC_SINGLE_TLV("Mic Boost Volume", WM8731_APANA, 0, 1, 0, mic_tlv),
93SOC_SINGLE("Mic Capture Switch", WM8731_APANA, 1, 1, 1), 154SOC_SINGLE("Mic Capture Switch", WM8731_APANA, 1, 1, 1),
94 155
95SOC_SINGLE_TLV("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1, 156SOC_SINGLE_TLV("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1,
@@ -98,7 +159,8 @@ SOC_SINGLE_TLV("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1,
98SOC_SINGLE("ADC High Pass Filter Switch", WM8731_APDIGI, 0, 1, 1), 159SOC_SINGLE("ADC High Pass Filter Switch", WM8731_APDIGI, 0, 1, 1),
99SOC_SINGLE("Store DC Offset Switch", WM8731_APDIGI, 4, 1, 0), 160SOC_SINGLE("Store DC Offset Switch", WM8731_APDIGI, 4, 1, 0),
100 161
101SOC_ENUM("Playback De-emphasis", wm8731_enum[1]), 162SOC_SINGLE_BOOL_EXT("Playback Deemphasis Switch", 0,
163 wm8731_get_deemph, wm8731_put_deemph),
102}; 164};
103 165
104/* Output Mixer */ 166/* Output Mixer */
@@ -110,9 +172,11 @@ SOC_DAPM_SINGLE("HiFi Playback Switch", WM8731_APANA, 4, 1, 0),
110 172
111/* Input mux */ 173/* Input mux */
112static const struct snd_kcontrol_new wm8731_input_mux_controls = 174static const struct snd_kcontrol_new wm8731_input_mux_controls =
113SOC_DAPM_ENUM("Input Select", wm8731_enum[0]); 175SOC_DAPM_ENUM("Input Select", wm8731_insel_enum);
114 176
115static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = { 177static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = {
178SND_SOC_DAPM_SUPPLY("ACTIVE",WM8731_ACTIVE, 0, 0, NULL, 0),
179SND_SOC_DAPM_SUPPLY("OSC", WM8731_PWR, 5, 1, NULL, 0),
116SND_SOC_DAPM_MIXER("Output Mixer", WM8731_PWR, 4, 1, 180SND_SOC_DAPM_MIXER("Output Mixer", WM8731_PWR, 4, 1,
117 &wm8731_output_mixer_controls[0], 181 &wm8731_output_mixer_controls[0],
118 ARRAY_SIZE(wm8731_output_mixer_controls)), 182 ARRAY_SIZE(wm8731_output_mixer_controls)),
@@ -130,7 +194,20 @@ SND_SOC_DAPM_INPUT("RLINEIN"),
130SND_SOC_DAPM_INPUT("LLINEIN"), 194SND_SOC_DAPM_INPUT("LLINEIN"),
131}; 195};
132 196
133static const struct snd_soc_dapm_route intercon[] = { 197static int wm8731_check_osc(struct snd_soc_dapm_widget *source,
198 struct snd_soc_dapm_widget *sink)
199{
200 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(source->codec);
201
202 return wm8731->sysclk_type == WM8731_SYSCLK_XTAL;
203}
204
205static const struct snd_soc_dapm_route wm8731_intercon[] = {
206 {"DAC", NULL, "OSC", wm8731_check_osc},
207 {"ADC", NULL, "OSC", wm8731_check_osc},
208 {"DAC", NULL, "ACTIVE"},
209 {"ADC", NULL, "ACTIVE"},
210
134 /* output mixer */ 211 /* output mixer */
135 {"Output Mixer", "Line Bypass Switch", "Line Input"}, 212 {"Output Mixer", "Line Bypass Switch", "Line Input"},
136 {"Output Mixer", "HiFi Playback Switch", "DAC"}, 213 {"Output Mixer", "HiFi Playback Switch", "DAC"},
@@ -153,16 +230,6 @@ static const struct snd_soc_dapm_route intercon[] = {
153 {"Mic Bias", NULL, "MICIN"}, 230 {"Mic Bias", NULL, "MICIN"},
154}; 231};
155 232
156static int wm8731_add_widgets(struct snd_soc_codec *codec)
157{
158 snd_soc_dapm_new_controls(codec, wm8731_dapm_widgets,
159 ARRAY_SIZE(wm8731_dapm_widgets));
160
161 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
162
163 return 0;
164}
165
166struct _coeff_div { 233struct _coeff_div {
167 u32 mclk; 234 u32 mclk;
168 u32 rate; 235 u32 rate;
@@ -222,15 +289,15 @@ static int wm8731_hw_params(struct snd_pcm_substream *substream,
222 struct snd_pcm_hw_params *params, 289 struct snd_pcm_hw_params *params,
223 struct snd_soc_dai *dai) 290 struct snd_soc_dai *dai)
224{ 291{
225 struct snd_soc_pcm_runtime *rtd = substream->private_data; 292 struct snd_soc_codec *codec = dai->codec;
226 struct snd_soc_device *socdev = rtd->socdev;
227 struct snd_soc_codec *codec = socdev->card->codec;
228 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); 293 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
229 u16 iface = snd_soc_read(codec, WM8731_IFACE) & 0xfff3; 294 u16 iface = snd_soc_read(codec, WM8731_IFACE) & 0xfff3;
230 int i = get_coeff(wm8731->sysclk, params_rate(params)); 295 int i = get_coeff(wm8731->sysclk, params_rate(params));
231 u16 srate = (coeff_div[i].sr << 2) | 296 u16 srate = (coeff_div[i].sr << 2) |
232 (coeff_div[i].bosr << 1) | coeff_div[i].usb; 297 (coeff_div[i].bosr << 1) | coeff_div[i].usb;
233 298
299 wm8731->playback_fs = params_rate(params);
300
234 snd_soc_write(codec, WM8731_SRATE, srate); 301 snd_soc_write(codec, WM8731_SRATE, srate);
235 302
236 /* bit size */ 303 /* bit size */
@@ -245,37 +312,12 @@ static int wm8731_hw_params(struct snd_pcm_substream *substream,
245 break; 312 break;
246 } 313 }
247 314
248 snd_soc_write(codec, WM8731_IFACE, iface); 315 wm8731_set_deemph(codec);
249 return 0;
250}
251
252static int wm8731_pcm_prepare(struct snd_pcm_substream *substream,
253 struct snd_soc_dai *dai)
254{
255 struct snd_soc_pcm_runtime *rtd = substream->private_data;
256 struct snd_soc_device *socdev = rtd->socdev;
257 struct snd_soc_codec *codec = socdev->card->codec;
258
259 /* set active */
260 snd_soc_write(codec, WM8731_ACTIVE, 0x0001);
261 316
317 snd_soc_write(codec, WM8731_IFACE, iface);
262 return 0; 318 return 0;
263} 319}
264 320
265static void wm8731_shutdown(struct snd_pcm_substream *substream,
266 struct snd_soc_dai *dai)
267{
268 struct snd_soc_pcm_runtime *rtd = substream->private_data;
269 struct snd_soc_device *socdev = rtd->socdev;
270 struct snd_soc_codec *codec = socdev->card->codec;
271
272 /* deactivate */
273 if (!codec->active) {
274 udelay(50);
275 snd_soc_write(codec, WM8731_ACTIVE, 0x0);
276 }
277}
278
279static int wm8731_mute(struct snd_soc_dai *dai, int mute) 321static int wm8731_mute(struct snd_soc_dai *dai, int mute)
280{ 322{
281 struct snd_soc_codec *codec = dai->codec; 323 struct snd_soc_codec *codec = dai->codec;
@@ -294,6 +336,15 @@ static int wm8731_set_dai_sysclk(struct snd_soc_dai *codec_dai,
294 struct snd_soc_codec *codec = codec_dai->codec; 336 struct snd_soc_codec *codec = codec_dai->codec;
295 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); 337 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
296 338
339 switch (clk_id) {
340 case WM8731_SYSCLK_XTAL:
341 case WM8731_SYSCLK_MCLK:
342 wm8731->sysclk_type = clk_id;
343 break;
344 default:
345 return -EINVAL;
346 }
347
297 switch (freq) { 348 switch (freq) {
298 case 11289600: 349 case 11289600:
299 case 12000000: 350 case 12000000:
@@ -301,9 +352,14 @@ static int wm8731_set_dai_sysclk(struct snd_soc_dai *codec_dai,
301 case 16934400: 352 case 16934400:
302 case 18432000: 353 case 18432000:
303 wm8731->sysclk = freq; 354 wm8731->sysclk = freq;
304 return 0; 355 break;
356 default:
357 return -EINVAL;
305 } 358 }
306 return -EINVAL; 359
360 snd_soc_dapm_sync(&codec->dapm);
361
362 return 0;
307} 363}
308 364
309 365
@@ -381,7 +437,7 @@ static int wm8731_set_bias_level(struct snd_soc_codec *codec,
381 case SND_SOC_BIAS_PREPARE: 437 case SND_SOC_BIAS_PREPARE:
382 break; 438 break;
383 case SND_SOC_BIAS_STANDBY: 439 case SND_SOC_BIAS_STANDBY:
384 if (codec->bias_level == SND_SOC_BIAS_OFF) { 440 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
385 ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies), 441 ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies),
386 wm8731->supplies); 442 wm8731->supplies);
387 if (ret != 0) 443 if (ret != 0)
@@ -404,13 +460,12 @@ static int wm8731_set_bias_level(struct snd_soc_codec *codec,
404 snd_soc_write(codec, WM8731_PWR, reg | 0x0040); 460 snd_soc_write(codec, WM8731_PWR, reg | 0x0040);
405 break; 461 break;
406 case SND_SOC_BIAS_OFF: 462 case SND_SOC_BIAS_OFF:
407 snd_soc_write(codec, WM8731_ACTIVE, 0x0);
408 snd_soc_write(codec, WM8731_PWR, 0xffff); 463 snd_soc_write(codec, WM8731_PWR, 0xffff);
409 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), 464 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies),
410 wm8731->supplies); 465 wm8731->supplies);
411 break; 466 break;
412 } 467 }
413 codec->bias_level = level; 468 codec->dapm.bias_level = level;
414 return 0; 469 return 0;
415} 470}
416 471
@@ -420,16 +475,14 @@ static int wm8731_set_bias_level(struct snd_soc_codec *codec,
420 SNDRV_PCM_FMTBIT_S24_LE) 475 SNDRV_PCM_FMTBIT_S24_LE)
421 476
422static struct snd_soc_dai_ops wm8731_dai_ops = { 477static struct snd_soc_dai_ops wm8731_dai_ops = {
423 .prepare = wm8731_pcm_prepare,
424 .hw_params = wm8731_hw_params, 478 .hw_params = wm8731_hw_params,
425 .shutdown = wm8731_shutdown,
426 .digital_mute = wm8731_mute, 479 .digital_mute = wm8731_mute,
427 .set_sysclk = wm8731_set_dai_sysclk, 480 .set_sysclk = wm8731_set_dai_sysclk,
428 .set_fmt = wm8731_set_dai_fmt, 481 .set_fmt = wm8731_set_dai_fmt,
429}; 482};
430 483
431struct snd_soc_dai wm8731_dai = { 484static struct snd_soc_dai_driver wm8731_dai = {
432 .name = "WM8731", 485 .name = "wm8731-hifi",
433 .playback = { 486 .playback = {
434 .stream_name = "Playback", 487 .stream_name = "Playback",
435 .channels_min = 1, 488 .channels_min = 1,
@@ -445,24 +498,17 @@ struct snd_soc_dai wm8731_dai = {
445 .ops = &wm8731_dai_ops, 498 .ops = &wm8731_dai_ops,
446 .symmetric_rates = 1, 499 .symmetric_rates = 1,
447}; 500};
448EXPORT_SYMBOL_GPL(wm8731_dai);
449 501
450#ifdef CONFIG_PM 502#ifdef CONFIG_PM
451static int wm8731_suspend(struct platform_device *pdev, pm_message_t state) 503static int wm8731_suspend(struct snd_soc_codec *codec, pm_message_t state)
452{ 504{
453 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
454 struct snd_soc_codec *codec = socdev->card->codec;
455
456 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF); 505 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
457 506
458 return 0; 507 return 0;
459} 508}
460 509
461static int wm8731_resume(struct platform_device *pdev) 510static int wm8731_resume(struct snd_soc_codec *codec)
462{ 511{
463 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
464 struct snd_soc_codec *codec = socdev->card->codec;
465
466 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 512 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
467 513
468 return 0; 514 return 0;
@@ -472,88 +518,15 @@ static int wm8731_resume(struct platform_device *pdev)
472#define wm8731_resume NULL 518#define wm8731_resume NULL
473#endif 519#endif
474 520
475static int wm8731_probe(struct platform_device *pdev) 521static int wm8731_probe(struct snd_soc_codec *codec)
476{ 522{
477 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 523 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
478 struct snd_soc_codec *codec; 524 int ret = 0, i;
479 int ret = 0;
480
481 if (wm8731_codec == NULL) {
482 dev_err(&pdev->dev, "Codec device not registered\n");
483 return -ENODEV;
484 }
485
486 socdev->card->codec = wm8731_codec;
487 codec = wm8731_codec;
488
489 /* register pcms */
490 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
491 if (ret < 0) {
492 dev_err(codec->dev, "failed to create pcms: %d\n", ret);
493 goto pcm_err;
494 }
495
496 snd_soc_add_controls(codec, wm8731_snd_controls,
497 ARRAY_SIZE(wm8731_snd_controls));
498 wm8731_add_widgets(codec);
499
500 return ret;
501
502pcm_err:
503 return ret;
504}
505
506/* power down chip */
507static int wm8731_remove(struct platform_device *pdev)
508{
509 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
510
511 snd_soc_free_pcms(socdev);
512 snd_soc_dapm_free(socdev);
513
514 return 0;
515}
516
517struct snd_soc_codec_device soc_codec_dev_wm8731 = {
518 .probe = wm8731_probe,
519 .remove = wm8731_remove,
520 .suspend = wm8731_suspend,
521 .resume = wm8731_resume,
522};
523EXPORT_SYMBOL_GPL(soc_codec_dev_wm8731);
524
525static int wm8731_register(struct wm8731_priv *wm8731,
526 enum snd_soc_control_type control)
527{
528 int ret, i;
529 struct snd_soc_codec *codec = &wm8731->codec;
530
531 if (wm8731_codec) {
532 dev_err(codec->dev, "Another WM8731 is registered\n");
533 ret = -EINVAL;
534 goto err;
535 }
536
537 mutex_init(&codec->mutex);
538 INIT_LIST_HEAD(&codec->dapm_widgets);
539 INIT_LIST_HEAD(&codec->dapm_paths);
540
541 snd_soc_codec_set_drvdata(codec, wm8731);
542 codec->name = "WM8731";
543 codec->owner = THIS_MODULE;
544 codec->bias_level = SND_SOC_BIAS_OFF;
545 codec->set_bias_level = wm8731_set_bias_level;
546 codec->dai = &wm8731_dai;
547 codec->num_dai = 1;
548 codec->reg_cache_size = WM8731_CACHEREGNUM;
549 codec->reg_cache = &wm8731->reg_cache;
550
551 memcpy(codec->reg_cache, wm8731_reg, sizeof(wm8731_reg));
552 525
553 ret = snd_soc_codec_set_cache_io(codec, 7, 9, control); 526 ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8731->control_type);
554 if (ret < 0) { 527 if (ret < 0) {
555 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); 528 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
556 goto err; 529 return ret;
557 } 530 }
558 531
559 for (i = 0; i < ARRAY_SIZE(wm8731->supplies); i++) 532 for (i = 0; i < ARRAY_SIZE(wm8731->supplies); i++)
@@ -563,7 +536,7 @@ static int wm8731_register(struct wm8731_priv *wm8731,
563 wm8731->supplies); 536 wm8731->supplies);
564 if (ret != 0) { 537 if (ret != 0) {
565 dev_err(codec->dev, "Failed to request supplies: %d\n", ret); 538 dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
566 goto err; 539 return ret;
567 } 540 }
568 541
569 ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies), 542 ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies),
@@ -579,8 +552,6 @@ static int wm8731_register(struct wm8731_priv *wm8731,
579 goto err_regulator_enable; 552 goto err_regulator_enable;
580 } 553 }
581 554
582 wm8731_dai.dev = codec->dev;
583
584 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 555 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
585 556
586 /* Latch the update bits */ 557 /* Latch the update bits */
@@ -590,81 +561,82 @@ static int wm8731_register(struct wm8731_priv *wm8731,
590 snd_soc_update_bits(codec, WM8731_RINVOL, 0x100, 0); 561 snd_soc_update_bits(codec, WM8731_RINVOL, 0x100, 0);
591 562
592 /* Disable bypass path by default */ 563 /* Disable bypass path by default */
593 snd_soc_update_bits(codec, WM8731_APANA, 0x4, 0); 564 snd_soc_update_bits(codec, WM8731_APANA, 0x8, 0);
594 565
595 wm8731_codec = codec; 566 snd_soc_add_controls(codec, wm8731_snd_controls,
596 567 ARRAY_SIZE(wm8731_snd_controls));
597 ret = snd_soc_register_codec(codec);
598 if (ret != 0) {
599 dev_err(codec->dev, "Failed to register codec: %d\n", ret);
600 goto err_regulator_enable;
601 }
602
603 ret = snd_soc_register_dai(&wm8731_dai);
604 if (ret != 0) {
605 dev_err(codec->dev, "Failed to register DAI: %d\n", ret);
606 snd_soc_unregister_codec(codec);
607 goto err_codec;
608 }
609 568
610 /* Regulators will have been enabled by bias management */ 569 /* Regulators will have been enabled by bias management */
611 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); 570 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
612 571
613 return 0; 572 return 0;
614 573
615err_codec:
616 snd_soc_unregister_codec(codec);
617err_regulator_enable: 574err_regulator_enable:
618 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); 575 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
619err_regulator_get: 576err_regulator_get:
620 regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); 577 regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
621err: 578
622 kfree(wm8731);
623 return ret; 579 return ret;
624} 580}
625 581
626static void wm8731_unregister(struct wm8731_priv *wm8731) 582/* power down chip */
583static int wm8731_remove(struct snd_soc_codec *codec)
627{ 584{
628 wm8731_set_bias_level(&wm8731->codec, SND_SOC_BIAS_OFF); 585 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
629 snd_soc_unregister_dai(&wm8731_dai); 586
630 snd_soc_unregister_codec(&wm8731->codec); 587 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
588
589 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
631 regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); 590 regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
632 kfree(wm8731); 591
633 wm8731_codec = NULL; 592 return 0;
634} 593}
635 594
595static struct snd_soc_codec_driver soc_codec_dev_wm8731 = {
596 .probe = wm8731_probe,
597 .remove = wm8731_remove,
598 .suspend = wm8731_suspend,
599 .resume = wm8731_resume,
600 .set_bias_level = wm8731_set_bias_level,
601 .reg_cache_size = ARRAY_SIZE(wm8731_reg),
602 .reg_word_size = sizeof(u16),
603 .reg_cache_default = wm8731_reg,
604 .dapm_widgets = wm8731_dapm_widgets,
605 .num_dapm_widgets = ARRAY_SIZE(wm8731_dapm_widgets),
606 .dapm_routes = wm8731_intercon,
607 .num_dapm_routes = ARRAY_SIZE(wm8731_intercon),
608};
609
636#if defined(CONFIG_SPI_MASTER) 610#if defined(CONFIG_SPI_MASTER)
637static int __devinit wm8731_spi_probe(struct spi_device *spi) 611static int __devinit wm8731_spi_probe(struct spi_device *spi)
638{ 612{
639 struct snd_soc_codec *codec;
640 struct wm8731_priv *wm8731; 613 struct wm8731_priv *wm8731;
614 int ret;
641 615
642 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL); 616 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
643 if (wm8731 == NULL) 617 if (wm8731 == NULL)
644 return -ENOMEM; 618 return -ENOMEM;
645 619
646 codec = &wm8731->codec; 620 wm8731->control_type = SND_SOC_SPI;
647 codec->control_data = spi; 621 spi_set_drvdata(spi, wm8731);
648 codec->dev = &spi->dev;
649 622
650 dev_set_drvdata(&spi->dev, wm8731); 623 ret = snd_soc_register_codec(&spi->dev,
651 624 &soc_codec_dev_wm8731, &wm8731_dai, 1);
652 return wm8731_register(wm8731, SND_SOC_SPI); 625 if (ret < 0)
626 kfree(wm8731);
627 return ret;
653} 628}
654 629
655static int __devexit wm8731_spi_remove(struct spi_device *spi) 630static int __devexit wm8731_spi_remove(struct spi_device *spi)
656{ 631{
657 struct wm8731_priv *wm8731 = dev_get_drvdata(&spi->dev); 632 snd_soc_unregister_codec(&spi->dev);
658 633 kfree(spi_get_drvdata(spi));
659 wm8731_unregister(wm8731);
660
661 return 0; 634 return 0;
662} 635}
663 636
664static struct spi_driver wm8731_spi_driver = { 637static struct spi_driver wm8731_spi_driver = {
665 .driver = { 638 .driver = {
666 .name = "wm8731", 639 .name = "wm8731",
667 .bus = &spi_bus_type,
668 .owner = THIS_MODULE, 640 .owner = THIS_MODULE,
669 }, 641 },
670 .probe = wm8731_spi_probe, 642 .probe = wm8731_spi_probe,
@@ -677,26 +649,26 @@ static __devinit int wm8731_i2c_probe(struct i2c_client *i2c,
677 const struct i2c_device_id *id) 649 const struct i2c_device_id *id)
678{ 650{
679 struct wm8731_priv *wm8731; 651 struct wm8731_priv *wm8731;
680 struct snd_soc_codec *codec; 652 int ret;
681 653
682 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL); 654 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
683 if (wm8731 == NULL) 655 if (wm8731 == NULL)
684 return -ENOMEM; 656 return -ENOMEM;
685 657
686 codec = &wm8731->codec;
687
688 i2c_set_clientdata(i2c, wm8731); 658 i2c_set_clientdata(i2c, wm8731);
689 codec->control_data = i2c; 659 wm8731->control_type = SND_SOC_I2C;
690 660
691 codec->dev = &i2c->dev; 661 ret = snd_soc_register_codec(&i2c->dev,
692 662 &soc_codec_dev_wm8731, &wm8731_dai, 1);
693 return wm8731_register(wm8731, SND_SOC_I2C); 663 if (ret < 0)
664 kfree(wm8731);
665 return ret;
694} 666}
695 667
696static __devexit int wm8731_i2c_remove(struct i2c_client *client) 668static __devexit int wm8731_i2c_remove(struct i2c_client *client)
697{ 669{
698 struct wm8731_priv *wm8731 = i2c_get_clientdata(client); 670 snd_soc_unregister_codec(&client->dev);
699 wm8731_unregister(wm8731); 671 kfree(i2c_get_clientdata(client));
700 return 0; 672 return 0;
701} 673}
702 674
@@ -719,7 +691,7 @@ static struct i2c_driver wm8731_i2c_driver = {
719 691
720static int __init wm8731_modinit(void) 692static int __init wm8731_modinit(void)
721{ 693{
722 int ret; 694 int ret = 0;
723#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) 695#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
724 ret = i2c_add_driver(&wm8731_i2c_driver); 696 ret = i2c_add_driver(&wm8731_i2c_driver);
725 if (ret != 0) { 697 if (ret != 0) {
@@ -734,7 +706,7 @@ static int __init wm8731_modinit(void)
734 ret); 706 ret);
735 } 707 }
736#endif 708#endif
737 return 0; 709 return ret;
738} 710}
739module_init(wm8731_modinit); 711module_init(wm8731_modinit);
740 712