* [PATCH v3 5/8] ASoC: da7210: Add support for ADC & DAC equalizers
@ 2011-10-14 11:11 Ashish Chavan
2011-10-14 19:41 ` Mark Brown
0 siblings, 1 reply; 3+ messages in thread
From: Ashish Chavan @ 2011-10-14 11:11 UTC (permalink / raw)
To: Mark Brown, lrg, alsa-devel
Cc: linux-kernel, kuninori.morimoto.gx, David Dajun Chen
This patch adds support for ADC and DAC five band equalizers
available on DA7210 codec.
Signed-off-by: Ashish Chavan <ashish.chavan@kpitcummins.com>
Signed-off-by: David Dajun Chen <dchen@diasemi.com>
---
sound/soc/codecs/da7210.c | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c
index bc40fd8..8dad77e 100644
--- a/sound/soc/codecs/da7210.c
+++ b/sound/soc/codecs/da7210.c
@@ -40,10 +40,16 @@
#define DA7210_INMIX_R 0x0E
#define DA7210_ADC_HPF 0x0F
#define DA7210_ADC 0x10
+#define DA7210_ADC_EQ1_2 0X11
+#define DA7210_ADC_EQ3_4 0x12
+#define DA7210_ADC_EQ5 0x13
#define DA7210_DAC_HPF 0x14
#define DA7210_DAC_L 0x15
#define DA7210_DAC_R 0x16
#define DA7210_DAC_SEL 0x17
+#define DA7210_DAC_EQ1_2 0x19
+#define DA7210_DAC_EQ3_4 0x1A
+#define DA7210_DAC_EQ5 0x1B
#define DA7210_OUTMIX_L 0x1C
#define DA7210_OUTMIX_R 0x1D
#define DA7210_OUT1_L 0x1E
@@ -191,6 +197,8 @@ static const DECLARE_TLV_DB_SCALE(dac_gain_tlv, -7725, 75, 0);
static const DECLARE_TLV_DB_SCALE(mic_vol_tlv, -600, 600, 0);
static const DECLARE_TLV_DB_SCALE(aux2_vol_tlv, -600, 600, 0);
static const DECLARE_TLV_DB_SCALE(inpga_gain_tlv, -450, 150, 0);
+static const DECLARE_TLV_DB_SCALE(eq_gain_tlv, -1050, 150, 0);
+static const DECLARE_TLV_DB_SCALE(adc_eq_master_gain_tlv, -1800, 600, 1);
static const unsigned int lineout_vol_tlv[] = {
TLV_DB_RANGE_HEAD(2),
@@ -241,6 +249,34 @@ static const struct snd_kcontrol_new da7210_snd_controls[] = {
SOC_DOUBLE_TLV("In PGA Capture Volume", DA7210_IN_GAIN, 0, 4, 0xF, 0,
inpga_gain_tlv),
+
+ /* DAC Equalizer controls */
+ SOC_SINGLE("DAC EQ Switch", DA7210_DAC_EQ5, 7, 1, 0),
+ SOC_SINGLE_TLV("DAC EQ1 Volume", DA7210_DAC_EQ1_2, 0, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("DAC EQ2 Volume", DA7210_DAC_EQ1_2, 4, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("DAC EQ3 Volume", DA7210_DAC_EQ3_4, 0, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("DAC EQ4 Volume", DA7210_DAC_EQ3_4, 4, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("DAC EQ5 Volume", DA7210_DAC_EQ5, 0, 0xf, 1,
+ eq_gain_tlv),
+
+ /* ADC Equalizer controls */
+ SOC_SINGLE("ADC EQ Switch", DA7210_ADC_EQ5, 7, 1, 0),
+ SOC_SINGLE_TLV("ADC EQ Master Volume", DA7210_ADC_EQ5, 4, 0x3,
+ 1, adc_eq_master_gain_tlv),
+ SOC_SINGLE_TLV("ADC EQ1 Volume", DA7210_ADC_EQ1_2, 0, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("ADC EQ2 Volume", DA7210_ADC_EQ1_2, 4, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("ADC EQ3 Volume", DA7210_ADC_EQ3_4, 0, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("ADC EQ4 Volume", DA7210_ADC_EQ3_4, 4, 0xf, 1,
+ eq_gain_tlv),
+ SOC_SINGLE_TLV("ADC EQ5 Volume", DA7210_ADC_EQ5, 0, 0xf, 1,
+ eq_gain_tlv),
};
/*
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v3 5/8] ASoC: da7210: Add support for ADC & DAC equalizers
2011-10-14 11:11 [PATCH v3 5/8] ASoC: da7210: Add support for ADC & DAC equalizers Ashish Chavan
@ 2011-10-14 19:41 ` Mark Brown
2011-10-15 7:54 ` Ashish Chavan
0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2011-10-14 19:41 UTC (permalink / raw)
To: Ashish Chavan
Cc: linux-kernel, alsa-devel, lrg, kuninori.morimoto.gx,
David Dajun Chen
On Fri, Oct 14, 2011 at 04:41:06PM +0530, Ashish Chavan wrote:
> This patch adds support for ADC and DAC five band equalizers
> available on DA7210 codec.
This and some of the others just adding new controls are good but
depend on the DAPM patches which I didn't apply. I'd suggest
reshuffling them earlier in the series.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3 5/8] ASoC: da7210: Add support for ADC & DAC equalizers
2011-10-14 19:41 ` Mark Brown
@ 2011-10-15 7:54 ` Ashish Chavan
0 siblings, 0 replies; 3+ messages in thread
From: Ashish Chavan @ 2011-10-15 7:54 UTC (permalink / raw)
To: Mark Brown
Cc: alsa-devel, kuninori.morimoto.gx, linux-kernel, David, Chen, lrg
On Fri, 2011-10-14 at 20:41 +0100, Mark Brown wrote:
> On Fri, Oct 14, 2011 at 04:41:06PM +0530, Ashish Chavan wrote:
> > This patch adds support for ADC and DAC five band equalizers
> > available on DA7210 codec.
>
> This and some of the others just adding new controls are good but
> depend on the DAPM patches which I didn't apply. I'd suggest
> reshuffling them earlier in the series.
>
OK, will put them before DAPM and repost.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-10-15 7:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-14 11:11 [PATCH v3 5/8] ASoC: da7210: Add support for ADC & DAC equalizers Ashish Chavan
2011-10-14 19:41 ` Mark Brown
2011-10-15 7:54 ` Ashish Chavan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).