diff options
author | Bard Liao <bardliao@realtek.com> | 2015-08-03 12:17:39 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-08-03 17:02:45 +0100 |
commit | a094935e4ebdf5c22c45b8aeeb2d88e9e8c53dbf (patch) | |
tree | 4a33ab748138135c12c53b3db63b4b1769879452 /sound/soc/codecs/rt5645.h | |
parent | f2a5ded38592e5936a099ea6535ad5d3addcbc9d (diff) | |
download | lwn-a094935e4ebdf5c22c45b8aeeb2d88e9e8c53dbf.tar.gz lwn-a094935e4ebdf5c22c45b8aeeb2d88e9e8c53dbf.zip |
ASoC: rt5645: Fix lost pin setting for DMIC1
I2S2_DAC pin can be used for I2S or GPIO. We should set it as GPIO
if we use GPIO5 as DMIC1 data pin.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt5645.h')
-rw-r--r-- | sound/soc/codecs/rt5645.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/codecs/rt5645.h b/sound/soc/codecs/rt5645.h index 0353a6a273ab..278bb9f464c4 100644 --- a/sound/soc/codecs/rt5645.h +++ b/sound/soc/codecs/rt5645.h @@ -1693,6 +1693,10 @@ #define RT5645_GP6_PIN_SFT 6 #define RT5645_GP6_PIN_GPIO6 (0x0 << 6) #define RT5645_GP6_PIN_DMIC2_SDA (0x1 << 6) +#define RT5645_I2S2_DAC_PIN_MASK (0x1 << 4) +#define RT5645_I2S2_DAC_PIN_SFT 4 +#define RT5645_I2S2_DAC_PIN_I2S (0x0 << 4) +#define RT5645_I2S2_DAC_PIN_GPIO (0x1 << 4) #define RT5645_GP8_PIN_MASK (0x1 << 3) #define RT5645_GP8_PIN_SFT 3 #define RT5645_GP8_PIN_GPIO8 (0x0 << 3) |