ASoC: max9877: Add basic DAPM support
authorMark Brown <broonie@linaro.org>
Tue, 13 Aug 2013 12:32:03 +0000 (13:32 +0100)
committerMark Brown <broonie@linaro.org>
Tue, 13 Aug 2013 12:40:35 +0000 (13:40 +0100)
This does not fully map the power control available within the device
but it provides the hooks for routing signals through the device and
allows automatic management of the device low power mode.

Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/codecs/max9877.c

index 8505b401d3c46d3f734e6a8a74c8bc078b5f2bd0..29549cdbf4c1c6138e825e3372644aa9e3008f90 100644 (file)
@@ -87,15 +87,50 @@ static const struct snd_kcontrol_new max9877_controls[] = {
                   MAX9877_INPUT_MODE, 6, 1, 0),
        SOC_SINGLE("MAX9877 Bypass Mode Switch",
                   MAX9877_OUTPUT_MODE, 6, 1, 0),
-       SOC_SINGLE("MAX9877 Shutdown Mode Switch",
-                  MAX9877_OUTPUT_MODE, 7, 1, 1),
        SOC_ENUM("MAX9877 Output Mode", max9877_enum[0]),
        SOC_ENUM("MAX9877 Oscillator Mode", max9877_enum[1]),
 };
 
+static const struct snd_soc_dapm_widget max9877_dapm_widgets[] = {
+SND_SOC_DAPM_INPUT("INA1"),
+SND_SOC_DAPM_INPUT("INA2"),
+SND_SOC_DAPM_INPUT("INB1"),
+SND_SOC_DAPM_INPUT("INB2"),
+SND_SOC_DAPM_INPUT("RXIN+"),
+SND_SOC_DAPM_INPUT("RXIN-"),
+
+SND_SOC_DAPM_PGA("SHDN", MAX9877_OUTPUT_MODE, 7, 1, NULL, 0),
+
+SND_SOC_DAPM_OUTPUT("OUT+"),
+SND_SOC_DAPM_OUTPUT("OUT-"),
+SND_SOC_DAPM_OUTPUT("HPL"),
+SND_SOC_DAPM_OUTPUT("HPR"),
+};
+
+static const struct snd_soc_dapm_route max9877_dapm_routes[] = {
+       { "SHDN", NULL, "INA1" },
+       { "SHDN", NULL, "INA2" },
+       { "SHDN", NULL, "INB1" },
+       { "SHDN", NULL, "INB2" },
+
+       { "OUT+", NULL, "RXIN+" },
+       { "OUT+", NULL, "SHDN" },
+
+       { "OUT-", NULL, "SHDN" },
+       { "OUT-", NULL, "RXIN-" },
+
+       { "HPL", NULL, "SHDN" },
+       { "HPR", NULL, "SHDN" },
+};
+
 static const struct snd_soc_codec_driver max9877_codec = {
        .controls = max9877_controls,
        .num_controls = ARRAY_SIZE(max9877_controls),
+
+       .dapm_widgets = max9877_dapm_widgets,
+       .num_dapm_widgets = ARRAY_SIZE(max9877_dapm_widgets),
+       .dapm_routes = max9877_dapm_routes,
+       .num_dapm_routes = ARRAY_SIZE(max9877_dapm_routes),
 };
 
 static const struct regmap_config max9877_regmap = {
This page took 0.0363 seconds and 5 git commands to generate.