Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: twl6040 - add method to query HS DC offset step size in mV

Provide a method for mach drivers to query the HS DC offset step size in mV.

Signed-off-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

authored by

Liam Girdwood and committed by
Mark Brown
08656910 9b85fc90

+14
+13
sound/soc/codecs/twl6040.c
··· 1052 1052 } 1053 1053 EXPORT_SYMBOL_GPL(twl6040_get_trim_value); 1054 1054 1055 + int twl6040_get_hs_step_size(struct snd_soc_codec *codec) 1056 + { 1057 + struct twl6040 *twl6040 = codec->control_data; 1058 + 1059 + if (twl6040_get_revid(twl6040) < TWL6040_REV_ES1_2) 1060 + /* For ES under ES_1.3 HS step is 2 mV */ 1061 + return 2; 1062 + else 1063 + /* For ES_1.3 HS step is 1 mV */ 1064 + return 1; 1065 + } 1066 + EXPORT_SYMBOL_GPL(twl6040_get_hs_step_size); 1067 + 1055 1068 static const struct snd_kcontrol_new twl6040_snd_controls[] = { 1056 1069 /* Capture gains */ 1057 1070 SOC_DOUBLE_TLV("Capture Preamplifier Volume",
+1
sound/soc/codecs/twl6040.h
··· 39 39 struct snd_soc_jack *jack, int report); 40 40 int twl6040_get_clk_id(struct snd_soc_codec *codec); 41 41 int twl6040_get_trim_value(struct snd_soc_codec *codec, enum twl6040_trim trim); 42 + int twl6040_get_hs_step_size(struct snd_soc_codec *codec); 42 43 43 44 #endif /* End of __TWL6040_H__ */