aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8523.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/wm8523.c')
-rw-r--r--sound/soc/codecs/wm8523.c201
1 files changed, 56 insertions, 145 deletions
diff --git a/sound/soc/codecs/wm8523.c b/sound/soc/codecs/wm8523.c
index 0ad039b4adf5..4fd4d8dca0fc 100644
--- a/sound/soc/codecs/wm8523.c
+++ b/sound/soc/codecs/wm8523.c
@@ -24,15 +24,11 @@
24#include <sound/pcm.h> 24#include <sound/pcm.h>
25#include <sound/pcm_params.h> 25#include <sound/pcm_params.h>
26#include <sound/soc.h> 26#include <sound/soc.h>
27#include <sound/soc-dapm.h>
28#include <sound/initval.h> 27#include <sound/initval.h>
29#include <sound/tlv.h> 28#include <sound/tlv.h>
30 29
31#include "wm8523.h" 30#include "wm8523.h"
32 31
33static struct snd_soc_codec *wm8523_codec;
34struct snd_soc_codec_device soc_codec_dev_wm8523;
35
36#define WM8523_NUM_SUPPLIES 2 32#define WM8523_NUM_SUPPLIES 2
37static const char *wm8523_supply_names[WM8523_NUM_SUPPLIES] = { 33static const char *wm8523_supply_names[WM8523_NUM_SUPPLIES] = {
38 "AVDD", 34 "AVDD",
@@ -43,8 +39,7 @@ static const char *wm8523_supply_names[WM8523_NUM_SUPPLIES] = {
43 39
44/* codec private data */ 40/* codec private data */
45struct wm8523_priv { 41struct wm8523_priv {
46 struct snd_soc_codec codec; 42 enum snd_soc_control_type control_type;
47 u16 reg_cache[WM8523_REGISTER_COUNT];
48 struct regulator_bulk_data supplies[WM8523_NUM_SUPPLIES]; 43 struct regulator_bulk_data supplies[WM8523_NUM_SUPPLIES];
49 unsigned int sysclk; 44 unsigned int sysclk;
50 unsigned int rate_constraint_list[WM8523_NUM_RATES]; 45 unsigned int rate_constraint_list[WM8523_NUM_RATES];
@@ -63,7 +58,7 @@ static const u16 wm8523_reg[WM8523_REGISTER_COUNT] = {
63 0x0000, /* R8 - ZERO_DETECT */ 58 0x0000, /* R8 - ZERO_DETECT */
64}; 59};
65 60
66static int wm8523_volatile_register(unsigned int reg) 61static int wm8523_volatile_register(struct snd_soc_codec *codec, unsigned int reg)
67{ 62{
68 switch (reg) { 63 switch (reg) {
69 case WM8523_DEVICE_ID: 64 case WM8523_DEVICE_ID:
@@ -113,10 +108,11 @@ static const struct snd_soc_dapm_route intercon[] = {
113 108
114static int wm8523_add_widgets(struct snd_soc_codec *codec) 109static int wm8523_add_widgets(struct snd_soc_codec *codec)
115{ 110{
116 snd_soc_dapm_new_controls(codec, wm8523_dapm_widgets, 111 struct snd_soc_dapm_context *dapm = &codec->dapm;
117 ARRAY_SIZE(wm8523_dapm_widgets));
118 112
119 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon)); 113 snd_soc_dapm_new_controls(dapm, wm8523_dapm_widgets,
114 ARRAY_SIZE(wm8523_dapm_widgets));
115 snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon));
120 116
121 return 0; 117 return 0;
122} 118}
@@ -149,7 +145,6 @@ static int wm8523_startup(struct snd_pcm_substream *substream,
149 return -EINVAL; 145 return -EINVAL;
150 } 146 }
151 147
152 return 0;
153 snd_pcm_hw_constraint_list(substream->runtime, 0, 148 snd_pcm_hw_constraint_list(substream->runtime, 0,
154 SNDRV_PCM_HW_PARAM_RATE, 149 SNDRV_PCM_HW_PARAM_RATE,
155 &wm8523->rate_constraint); 150 &wm8523->rate_constraint);
@@ -162,8 +157,7 @@ static int wm8523_hw_params(struct snd_pcm_substream *substream,
162 struct snd_soc_dai *dai) 157 struct snd_soc_dai *dai)
163{ 158{
164 struct snd_soc_pcm_runtime *rtd = substream->private_data; 159 struct snd_soc_pcm_runtime *rtd = substream->private_data;
165 struct snd_soc_device *socdev = rtd->socdev; 160 struct snd_soc_codec *codec = rtd->codec;
166 struct snd_soc_codec *codec = socdev->card->codec;
167 struct wm8523_priv *wm8523 = snd_soc_codec_get_drvdata(codec); 161 struct wm8523_priv *wm8523 = snd_soc_codec_get_drvdata(codec);
168 int i; 162 int i;
169 u16 aifctrl1 = snd_soc_read(codec, WM8523_AIF_CTRL1); 163 u16 aifctrl1 = snd_soc_read(codec, WM8523_AIF_CTRL1);
@@ -319,6 +313,7 @@ static int wm8523_set_bias_level(struct snd_soc_codec *codec,
319 enum snd_soc_bias_level level) 313 enum snd_soc_bias_level level)
320{ 314{
321 struct wm8523_priv *wm8523 = snd_soc_codec_get_drvdata(codec); 315 struct wm8523_priv *wm8523 = snd_soc_codec_get_drvdata(codec);
316 u16 *reg_cache = codec->reg_cache;
322 int ret, i; 317 int ret, i;
323 318
324 switch (level) { 319 switch (level) {
@@ -332,7 +327,7 @@ static int wm8523_set_bias_level(struct snd_soc_codec *codec,
332 break; 327 break;
333 328
334 case SND_SOC_BIAS_STANDBY: 329 case SND_SOC_BIAS_STANDBY:
335 if (codec->bias_level == SND_SOC_BIAS_OFF) { 330 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
336 ret = regulator_bulk_enable(ARRAY_SIZE(wm8523->supplies), 331 ret = regulator_bulk_enable(ARRAY_SIZE(wm8523->supplies),
337 wm8523->supplies); 332 wm8523->supplies);
338 if (ret != 0) { 333 if (ret != 0) {
@@ -349,7 +344,7 @@ static int wm8523_set_bias_level(struct snd_soc_codec *codec,
349 /* Sync back default/cached values */ 344 /* Sync back default/cached values */
350 for (i = WM8523_AIF_CTRL1; 345 for (i = WM8523_AIF_CTRL1;
351 i < WM8523_MAX_REGISTER; i++) 346 i < WM8523_MAX_REGISTER; i++)
352 snd_soc_write(codec, i, wm8523->reg_cache[i]); 347 snd_soc_write(codec, i, reg_cache[i]);
353 348
354 349
355 msleep(100); 350 msleep(100);
@@ -371,7 +366,7 @@ static int wm8523_set_bias_level(struct snd_soc_codec *codec,
371 wm8523->supplies); 366 wm8523->supplies);
372 break; 367 break;
373 } 368 }
374 codec->bias_level = level; 369 codec->dapm.bias_level = level;
375 return 0; 370 return 0;
376} 371}
377 372
@@ -387,8 +382,8 @@ static struct snd_soc_dai_ops wm8523_dai_ops = {
387 .set_fmt = wm8523_set_dai_fmt, 382 .set_fmt = wm8523_set_dai_fmt,
388}; 383};
389 384
390struct snd_soc_dai wm8523_dai = { 385static struct snd_soc_dai_driver wm8523_dai = {
391 .name = "WM8523", 386 .name = "wm8523-hifi",
392 .playback = { 387 .playback = {
393 .stream_name = "Playback", 388 .stream_name = "Playback",
394 .channels_min = 2, /* Mono modes not yet supported */ 389 .channels_min = 2, /* Mono modes not yet supported */
@@ -398,25 +393,17 @@ struct snd_soc_dai wm8523_dai = {
398 }, 393 },
399 .ops = &wm8523_dai_ops, 394 .ops = &wm8523_dai_ops,
400}; 395};
401EXPORT_SYMBOL_GPL(wm8523_dai);
402 396
403#ifdef CONFIG_PM 397#ifdef CONFIG_PM
404static int wm8523_suspend(struct platform_device *pdev, pm_message_t state) 398static int wm8523_suspend(struct snd_soc_codec *codec, pm_message_t state)
405{ 399{
406 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
407 struct snd_soc_codec *codec = socdev->card->codec;
408
409 wm8523_set_bias_level(codec, SND_SOC_BIAS_OFF); 400 wm8523_set_bias_level(codec, SND_SOC_BIAS_OFF);
410 return 0; 401 return 0;
411} 402}
412 403
413static int wm8523_resume(struct platform_device *pdev) 404static int wm8523_resume(struct snd_soc_codec *codec)
414{ 405{
415 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
416 struct snd_soc_codec *codec = socdev->card->codec;
417
418 wm8523_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 406 wm8523_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
419
420 return 0; 407 return 0;
421} 408}
422#else 409#else
@@ -424,93 +411,20 @@ static int wm8523_resume(struct platform_device *pdev)
424#define wm8523_resume NULL 411#define wm8523_resume NULL
425#endif 412#endif
426 413
427static int wm8523_probe(struct platform_device *pdev) 414static int wm8523_probe(struct snd_soc_codec *codec)
428{
429 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
430 struct snd_soc_codec *codec;
431 int ret = 0;
432
433 if (wm8523_codec == NULL) {
434 dev_err(&pdev->dev, "Codec device not registered\n");
435 return -ENODEV;
436 }
437
438 socdev->card->codec = wm8523_codec;
439 codec = wm8523_codec;
440
441 /* register pcms */
442 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
443 if (ret < 0) {
444 dev_err(codec->dev, "failed to create pcms: %d\n", ret);
445 goto pcm_err;
446 }
447
448 snd_soc_add_controls(codec, wm8523_snd_controls,
449 ARRAY_SIZE(wm8523_snd_controls));
450 wm8523_add_widgets(codec);
451
452 return ret;
453
454pcm_err:
455 return ret;
456}
457
458static int wm8523_remove(struct platform_device *pdev)
459{
460 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
461
462 snd_soc_free_pcms(socdev);
463 snd_soc_dapm_free(socdev);
464
465 return 0;
466}
467
468struct snd_soc_codec_device soc_codec_dev_wm8523 = {
469 .probe = wm8523_probe,
470 .remove = wm8523_remove,
471 .suspend = wm8523_suspend,
472 .resume = wm8523_resume,
473};
474EXPORT_SYMBOL_GPL(soc_codec_dev_wm8523);
475
476static int wm8523_register(struct wm8523_priv *wm8523,
477 enum snd_soc_control_type control)
478{ 415{
479 int ret; 416 struct wm8523_priv *wm8523 = snd_soc_codec_get_drvdata(codec);
480 struct snd_soc_codec *codec = &wm8523->codec; 417 int ret, i;
481 int i;
482
483 if (wm8523_codec) {
484 dev_err(codec->dev, "Another WM8523 is registered\n");
485 ret = -EINVAL;
486 goto err;
487 }
488
489 mutex_init(&codec->mutex);
490 INIT_LIST_HEAD(&codec->dapm_widgets);
491 INIT_LIST_HEAD(&codec->dapm_paths);
492
493 snd_soc_codec_set_drvdata(codec, wm8523);
494 codec->name = "WM8523";
495 codec->owner = THIS_MODULE;
496 codec->bias_level = SND_SOC_BIAS_OFF;
497 codec->set_bias_level = wm8523_set_bias_level;
498 codec->dai = &wm8523_dai;
499 codec->num_dai = 1;
500 codec->reg_cache_size = WM8523_REGISTER_COUNT;
501 codec->reg_cache = &wm8523->reg_cache;
502 codec->volatile_register = wm8523_volatile_register;
503 418
419 codec->hw_write = (hw_write_t)i2c_master_send;
504 wm8523->rate_constraint.list = &wm8523->rate_constraint_list[0]; 420 wm8523->rate_constraint.list = &wm8523->rate_constraint_list[0];
505 wm8523->rate_constraint.count = 421 wm8523->rate_constraint.count =
506 ARRAY_SIZE(wm8523->rate_constraint_list); 422 ARRAY_SIZE(wm8523->rate_constraint_list);
507 423
508 memcpy(codec->reg_cache, wm8523_reg, sizeof(wm8523_reg)); 424 ret = snd_soc_codec_set_cache_io(codec, 8, 16, wm8523->control_type);
509
510 ret = snd_soc_codec_set_cache_io(codec, 8, 16, control);
511 if (ret != 0) { 425 if (ret != 0) {
512 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); 426 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
513 goto err; 427 return ret;
514 } 428 }
515 429
516 for (i = 0; i < ARRAY_SIZE(wm8523->supplies); i++) 430 for (i = 0; i < ARRAY_SIZE(wm8523->supplies); i++)
@@ -520,7 +434,7 @@ static int wm8523_register(struct wm8523_priv *wm8523,
520 wm8523->supplies); 434 wm8523->supplies);
521 if (ret != 0) { 435 if (ret != 0) {
522 dev_err(codec->dev, "Failed to request supplies: %d\n", ret); 436 dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
523 goto err; 437 return ret;
524 } 438 }
525 439
526 ret = regulator_bulk_enable(ARRAY_SIZE(wm8523->supplies), 440 ret = regulator_bulk_enable(ARRAY_SIZE(wm8523->supplies),
@@ -555,80 +469,77 @@ static int wm8523_register(struct wm8523_priv *wm8523,
555 goto err_enable; 469 goto err_enable;
556 } 470 }
557 471
558 wm8523_dai.dev = codec->dev;
559
560 /* Change some default settings - latch VU and enable ZC */ 472 /* Change some default settings - latch VU and enable ZC */
561 wm8523->reg_cache[WM8523_DAC_GAINR] |= WM8523_DACR_VU; 473 snd_soc_update_bits(codec, WM8523_DAC_GAINR,
562 wm8523->reg_cache[WM8523_DAC_CTRL3] |= WM8523_ZC; 474 WM8523_DACR_VU, WM8523_DACR_VU);
475 snd_soc_update_bits(codec, WM8523_DAC_CTRL3, WM8523_ZC, WM8523_ZC);
563 476
564 wm8523_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 477 wm8523_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
565 478
566 /* Bias level configuration will have done an extra enable */ 479 /* Bias level configuration will have done an extra enable */
567 regulator_bulk_disable(ARRAY_SIZE(wm8523->supplies), wm8523->supplies); 480 regulator_bulk_disable(ARRAY_SIZE(wm8523->supplies), wm8523->supplies);
568 481
569 wm8523_codec = codec; 482 snd_soc_add_controls(codec, wm8523_snd_controls,
570 483 ARRAY_SIZE(wm8523_snd_controls));
571 ret = snd_soc_register_codec(codec); 484 wm8523_add_widgets(codec);
572 if (ret != 0) {
573 dev_err(codec->dev, "Failed to register codec: %d\n", ret);
574 goto err_enable;
575 }
576
577 ret = snd_soc_register_dai(&wm8523_dai);
578 if (ret != 0) {
579 dev_err(codec->dev, "Failed to register DAI: %d\n", ret);
580 goto err_codec;
581 }
582 485
583 return 0; 486 return 0;
584 487
585err_codec:
586 snd_soc_unregister_codec(codec);
587err_enable: 488err_enable:
588 regulator_bulk_disable(ARRAY_SIZE(wm8523->supplies), wm8523->supplies); 489 regulator_bulk_disable(ARRAY_SIZE(wm8523->supplies), wm8523->supplies);
589err_get: 490err_get:
590 regulator_bulk_free(ARRAY_SIZE(wm8523->supplies), wm8523->supplies); 491 regulator_bulk_free(ARRAY_SIZE(wm8523->supplies), wm8523->supplies);
591err: 492
592 kfree(wm8523);
593 return ret; 493 return ret;
594} 494}
595 495
596static void wm8523_unregister(struct wm8523_priv *wm8523) 496static int wm8523_remove(struct snd_soc_codec *codec)
597{ 497{
598 wm8523_set_bias_level(&wm8523->codec, SND_SOC_BIAS_OFF); 498 struct wm8523_priv *wm8523 = snd_soc_codec_get_drvdata(codec);
499
500 wm8523_set_bias_level(codec, SND_SOC_BIAS_OFF);
599 regulator_bulk_free(ARRAY_SIZE(wm8523->supplies), wm8523->supplies); 501 regulator_bulk_free(ARRAY_SIZE(wm8523->supplies), wm8523->supplies);
600 snd_soc_unregister_dai(&wm8523_dai); 502 return 0;
601 snd_soc_unregister_codec(&wm8523->codec);
602 kfree(wm8523);
603 wm8523_codec = NULL;
604} 503}
605 504
505static struct snd_soc_codec_driver soc_codec_dev_wm8523 = {
506 .probe = wm8523_probe,
507 .remove = wm8523_remove,
508 .suspend = wm8523_suspend,
509 .resume = wm8523_resume,
510 .set_bias_level = wm8523_set_bias_level,
511 .reg_cache_size = WM8523_REGISTER_COUNT,
512 .reg_word_size = sizeof(u16),
513 .reg_cache_default = wm8523_reg,
514 .volatile_register = wm8523_volatile_register,
515};
516
606#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) 517#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
607static __devinit int wm8523_i2c_probe(struct i2c_client *i2c, 518static __devinit int wm8523_i2c_probe(struct i2c_client *i2c,
608 const struct i2c_device_id *id) 519 const struct i2c_device_id *id)
609{ 520{
610 struct wm8523_priv *wm8523; 521 struct wm8523_priv *wm8523;
611 struct snd_soc_codec *codec; 522 int ret;
612 523
613 wm8523 = kzalloc(sizeof(struct wm8523_priv), GFP_KERNEL); 524 wm8523 = kzalloc(sizeof(struct wm8523_priv), GFP_KERNEL);
614 if (wm8523 == NULL) 525 if (wm8523 == NULL)
615 return -ENOMEM; 526 return -ENOMEM;
616 527
617 codec = &wm8523->codec;
618 codec->hw_write = (hw_write_t)i2c_master_send;
619
620 i2c_set_clientdata(i2c, wm8523); 528 i2c_set_clientdata(i2c, wm8523);
621 codec->control_data = i2c; 529 wm8523->control_type = SND_SOC_I2C;
622 530
623 codec->dev = &i2c->dev; 531 ret = snd_soc_register_codec(&i2c->dev,
532 &soc_codec_dev_wm8523, &wm8523_dai, 1);
533 if (ret < 0)
534 kfree(wm8523);
535 return ret;
624 536
625 return wm8523_register(wm8523, SND_SOC_I2C);
626} 537}
627 538
628static __devexit int wm8523_i2c_remove(struct i2c_client *client) 539static __devexit int wm8523_i2c_remove(struct i2c_client *client)
629{ 540{
630 struct wm8523_priv *wm8523 = i2c_get_clientdata(client); 541 snd_soc_unregister_codec(&client->dev);
631 wm8523_unregister(wm8523); 542 kfree(i2c_get_clientdata(client));
632 return 0; 543 return 0;
633} 544}
634 545
@@ -640,7 +551,7 @@ MODULE_DEVICE_TABLE(i2c, wm8523_i2c_id);
640 551
641static struct i2c_driver wm8523_i2c_driver = { 552static struct i2c_driver wm8523_i2c_driver = {
642 .driver = { 553 .driver = {
643 .name = "WM8523", 554 .name = "wm8523-codec",
644 .owner = THIS_MODULE, 555 .owner = THIS_MODULE,
645 }, 556 },
646 .probe = wm8523_i2c_probe, 557 .probe = wm8523_i2c_probe,