aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/samsung
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>2013-05-27 04:46:53 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-05-27 08:05:19 -0400
commit939d3c6a6c56d1db6ab7e44ddf11de60f0122d1a (patch)
treeac9100993c2e7dc209fc3bd1a4e72b6417e3942c /sound/soc/samsung
parente75fa9b1f9d430edeb848db329f924996bc964d6 (diff)
ASoC: bells: Hookup DMICs for Bells
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/samsung')
-rw-r--r--sound/soc/samsung/bells.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/sound/soc/samsung/bells.c b/sound/soc/samsung/bells.c
index ceed466af9ff..29e246803626 100644
--- a/sound/soc/samsung/bells.c
+++ b/sound/soc/samsung/bells.c
@@ -350,8 +350,16 @@ static struct snd_soc_codec_conf bells_codec_conf[] = {
350 }, 350 },
351}; 351};
352 352
353static struct snd_soc_dapm_widget bells_widgets[] = {
354 SND_SOC_DAPM_MIC("DMIC", NULL),
355};
356
353static struct snd_soc_dapm_route bells_routes[] = { 357static struct snd_soc_dapm_route bells_routes[] = {
354 { "Sub CLK_SYS", NULL, "OPCLK" }, 358 { "Sub CLK_SYS", NULL, "OPCLK" },
359
360 { "DMIC", NULL, "MICBIAS2" },
361 { "IN2L", NULL, "DMIC" },
362 { "IN2R", NULL, "DMIC" },
355}; 363};
356 364
357static struct snd_soc_card bells_cards[] = { 365static struct snd_soc_card bells_cards[] = {
@@ -365,6 +373,8 @@ static struct snd_soc_card bells_cards[] = {
365 373
366 .late_probe = bells_late_probe, 374 .late_probe = bells_late_probe,
367 375
376 .dapm_widgets = bells_widgets,
377 .num_dapm_widgets = ARRAY_SIZE(bells_widgets),
368 .dapm_routes = bells_routes, 378 .dapm_routes = bells_routes,
369 .num_dapm_routes = ARRAY_SIZE(bells_routes), 379 .num_dapm_routes = ARRAY_SIZE(bells_routes),
370 380
@@ -383,6 +393,8 @@ static struct snd_soc_card bells_cards[] = {
383 393
384 .late_probe = bells_late_probe, 394 .late_probe = bells_late_probe,
385 395
396 .dapm_widgets = bells_widgets,
397 .num_dapm_widgets = ARRAY_SIZE(bells_widgets),
386 .dapm_routes = bells_routes, 398 .dapm_routes = bells_routes,
387 .num_dapm_routes = ARRAY_SIZE(bells_routes), 399 .num_dapm_routes = ARRAY_SIZE(bells_routes),
388 400
@@ -401,6 +413,8 @@ static struct snd_soc_card bells_cards[] = {
401 413
402 .late_probe = bells_late_probe, 414 .late_probe = bells_late_probe,
403 415
416 .dapm_widgets = bells_widgets,
417 .num_dapm_widgets = ARRAY_SIZE(bells_widgets),
404 .dapm_routes = bells_routes, 418 .dapm_routes = bells_routes,
405 .num_dapm_routes = ARRAY_SIZE(bells_routes), 419 .num_dapm_routes = ARRAY_SIZE(bells_routes),
406 420