ASoC: tas571x: add input channel mixer for TAS5717/19
[deliverable/linux.git] / sound / soc / codecs / tas571x.c
index bc1fbafb8ea49ee4f3e251001dbaeabb8375aeb9..d8baca3f8413d19bcdefd44a8917769bf484766f 100644 (file)
@@ -64,6 +64,10 @@ static int tas571x_register_size(struct tas571x_private *priv, unsigned int reg)
        case TAS571X_INPUT_MUX_REG:
        case TAS571X_CH4_SRC_SELECT_REG:
        case TAS571X_PWM_MUX_REG:
+       case TAS5717_CH1_RIGHT_CH_MIX_REG:
+       case TAS5717_CH1_LEFT_CH_MIX_REG:
+       case TAS5717_CH2_LEFT_CH_MIX_REG:
+       case TAS5717_CH2_RIGHT_CH_MIX_REG:
                return 4;
        default:
                return 1;
@@ -397,6 +401,16 @@ static const struct snd_kcontrol_new tas5711_controls[] = {
                   TAS571X_SOFT_MUTE_REG,
                   TAS571X_SOFT_MUTE_CH1_SHIFT, TAS571X_SOFT_MUTE_CH2_SHIFT,
                   1, 1),
+
+       SOC_DOUBLE_R_RANGE("CH1 Mixer Volume",
+                          TAS5717_CH1_LEFT_CH_MIX_REG,
+                          TAS5717_CH1_RIGHT_CH_MIX_REG,
+                          16, 0, 0x80, 0),
+
+       SOC_DOUBLE_R_RANGE("CH2 Mixer Volume",
+                          TAS5717_CH2_LEFT_CH_MIX_REG,
+                          TAS5717_CH2_RIGHT_CH_MIX_REG,
+                          16, 0, 0x80, 0),
 };
 
 static const struct regmap_range tas571x_readonly_regs_range[] = {
@@ -520,6 +534,10 @@ static const struct reg_default tas5717_reg_defaults[] = {
        { 0x08, 0x00c0 },
        { 0x09, 0x00c0 },
        { 0x1b, 0x82 },
+       { TAS5717_CH1_RIGHT_CH_MIX_REG, 0x0 },
+       { TAS5717_CH1_LEFT_CH_MIX_REG, 0x800000},
+       { TAS5717_CH2_LEFT_CH_MIX_REG, 0x0 },
+       { TAS5717_CH2_RIGHT_CH_MIX_REG, 0x800000},
 };
 
 static const struct regmap_config tas5717_regmap_config = {
This page took 0.028872 seconds and 5 git commands to generate.