summaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorIcenowy Zheng2017-06-05 15:27:21 +0200
committerMark Brown2017-06-06 20:29:54 +0200
commit2cfeaec0ec896bc0b8aad2de28a3de4572c7e4a1 (patch)
treee87b50712ce4c95e23ca7cd46dbfe87062bad5b7 /sound/soc
parentASoC: sun8i-codec-analog: prepare a mixer control/widget/route set for V3s (diff)
downloadkernel-qcow2-linux-2cfeaec0ec896bc0b8aad2de28a3de4572c7e4a1.tar.gz
kernel-qcow2-linux-2cfeaec0ec896bc0b8aad2de28a3de4572c7e4a1.tar.xz
kernel-qcow2-linux-2cfeaec0ec896bc0b8aad2de28a3de4572c7e4a1.zip
ASoC: sun8i-codec-analog: add support for V3s SoC
The V3s SoC features an analog codec with headphone support but without mic2 and linein. Add support for it. Signed-off-by: Icenowy Zheng <icenowy@aosc.xyz> Reviewed-by: Chen-Yu Tsai <wens@csie.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/sunxi/sun8i-codec-analog.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sound/soc/sunxi/sun8i-codec-analog.c b/sound/soc/sunxi/sun8i-codec-analog.c
index 29c446068151..485e79f292c4 100644
--- a/sound/soc/sunxi/sun8i-codec-analog.c
+++ b/sound/soc/sunxi/sun8i-codec-analog.c
@@ -810,6 +810,11 @@ static int sun8i_codec_analog_add_mixer(struct snd_soc_component *cmpnt,
return 0;
}
+static const struct sun8i_codec_analog_quirks sun8i_v3s_quirks = {
+ .has_headphone = true,
+ .has_hmic = true,
+};
+
static int sun8i_codec_analog_cmpnt_probe(struct snd_soc_component *cmpnt)
{
struct device *dev = cmpnt->dev;
@@ -886,6 +891,10 @@ static const struct of_device_id sun8i_codec_analog_of_match[] = {
.compatible = "allwinner,sun8i-h3-codec-analog",
.data = &sun8i_h3_quirks,
},
+ {
+ .compatible = "allwinner,sun8i-v3s-codec-analog",
+ .data = &sun8i_v3s_quirks,
+ },
{}
};
MODULE_DEVICE_TABLE(of, sun8i_codec_analog_of_match);