ASoC: rt5677: add API to select ASRC clock source
This patch defines an API to select the clock source for specified filters. Signed-off-by: Oder Chiou <oder_chiou@realtek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
这个提交包含在:
@@ -1406,6 +1406,46 @@
|
||||
#define RT5677_DSP_CLK_SRC_PLL2 (0x0 << 7)
|
||||
#define RT5677_DSP_CLK_SRC_BYPASS (0x1 << 7)
|
||||
|
||||
/* ASRC Control 3 (0x85) */
|
||||
#define RT5677_DA_STO_CLK_SEL_MASK (0xf << 12)
|
||||
#define RT5677_DA_STO_CLK_SEL_SFT 12
|
||||
#define RT5677_DA_MONO2L_CLK_SEL_MASK (0xf << 4)
|
||||
#define RT5677_DA_MONO2L_CLK_SEL_SFT 4
|
||||
#define RT5677_DA_MONO2R_CLK_SEL_MASK (0xf << 0)
|
||||
#define RT5677_DA_MONO2R_CLK_SEL_SFT 0
|
||||
|
||||
/* ASRC Control 4 (0x86) */
|
||||
#define RT5677_DA_MONO3L_CLK_SEL_MASK (0xf << 12)
|
||||
#define RT5677_DA_MONO3L_CLK_SEL_SFT 12
|
||||
#define RT5677_DA_MONO3R_CLK_SEL_MASK (0xf << 8)
|
||||
#define RT5677_DA_MONO3R_CLK_SEL_SFT 8
|
||||
#define RT5677_DA_MONO4L_CLK_SEL_MASK (0xf << 4)
|
||||
#define RT5677_DA_MONO4L_CLK_SEL_SFT 4
|
||||
#define RT5677_DA_MONO4R_CLK_SEL_MASK (0xf << 0)
|
||||
#define RT5677_DA_MONO4R_CLK_SEL_SFT 0
|
||||
|
||||
/* ASRC Control 5 (0x87) */
|
||||
#define RT5677_AD_STO1_CLK_SEL_MASK (0xf << 12)
|
||||
#define RT5677_AD_STO1_CLK_SEL_SFT 12
|
||||
#define RT5677_AD_STO2_CLK_SEL_MASK (0xf << 8)
|
||||
#define RT5677_AD_STO2_CLK_SEL_SFT 8
|
||||
#define RT5677_AD_STO3_CLK_SEL_MASK (0xf << 4)
|
||||
#define RT5677_AD_STO3_CLK_SEL_SFT 4
|
||||
#define RT5677_AD_STO4_CLK_SEL_MASK (0xf << 0)
|
||||
#define RT5677_AD_STO4_CLK_SEL_SFT 0
|
||||
|
||||
/* ASRC Control 6 (0x88) */
|
||||
#define RT5677_AD_MONOL_CLK_SEL_MASK (0xf << 12)
|
||||
#define RT5677_AD_MONOL_CLK_SEL_SFT 12
|
||||
#define RT5677_AD_MONOR_CLK_SEL_MASK (0xf << 8)
|
||||
#define RT5677_AD_MONOR_CLK_SEL_SFT 8
|
||||
|
||||
/* ASRC Control 7 (0x89) */
|
||||
#define RT5677_DSP_OB_0_3_CLK_SEL_MASK (0xf << 12)
|
||||
#define RT5677_DSP_OB_0_3_CLK_SEL_SFT 12
|
||||
#define RT5677_DSP_OB_4_7_CLK_SEL_MASK (0xf << 8)
|
||||
#define RT5677_DSP_OB_4_7_CLK_SEL_SFT 8
|
||||
|
||||
/* VAD Function Control 4 (0x9f) */
|
||||
#define RT5677_VAD_SRC_MASK (0x7 << 8)
|
||||
#define RT5677_VAD_SRC_SFT 8
|
||||
@@ -1670,6 +1710,42 @@ enum rt5677_type {
|
||||
RT5676,
|
||||
};
|
||||
|
||||
/* ASRC clock source selection */
|
||||
enum {
|
||||
RT5677_CLK_SEL_SYS,
|
||||
RT5677_CLK_SEL_I2S1_ASRC,
|
||||
RT5677_CLK_SEL_I2S2_ASRC,
|
||||
RT5677_CLK_SEL_I2S3_ASRC,
|
||||
RT5677_CLK_SEL_I2S4_ASRC,
|
||||
RT5677_CLK_SEL_I2S5_ASRC,
|
||||
RT5677_CLK_SEL_I2S6_ASRC,
|
||||
RT5677_CLK_SEL_SYS2,
|
||||
RT5677_CLK_SEL_SYS3,
|
||||
RT5677_CLK_SEL_SYS4,
|
||||
RT5677_CLK_SEL_SYS5,
|
||||
RT5677_CLK_SEL_SYS6,
|
||||
RT5677_CLK_SEL_SYS7,
|
||||
};
|
||||
|
||||
/* filter mask */
|
||||
enum {
|
||||
RT5677_DA_STEREO_FILTER = 0x1,
|
||||
RT5677_DA_MONO2_L_FILTER = (0x1 << 1),
|
||||
RT5677_DA_MONO2_R_FILTER = (0x1 << 2),
|
||||
RT5677_DA_MONO3_L_FILTER = (0x1 << 3),
|
||||
RT5677_DA_MONO3_R_FILTER = (0x1 << 4),
|
||||
RT5677_DA_MONO4_L_FILTER = (0x1 << 5),
|
||||
RT5677_DA_MONO4_R_FILTER = (0x1 << 6),
|
||||
RT5677_AD_STEREO1_FILTER = (0x1 << 7),
|
||||
RT5677_AD_STEREO2_FILTER = (0x1 << 8),
|
||||
RT5677_AD_STEREO3_FILTER = (0x1 << 9),
|
||||
RT5677_AD_STEREO4_FILTER = (0x1 << 10),
|
||||
RT5677_AD_MONO_L_FILTER = (0x1 << 11),
|
||||
RT5677_AD_MONO_R_FILTER = (0x1 << 12),
|
||||
RT5677_DSP_OB_0_3_FILTER = (0x1 << 13),
|
||||
RT5677_DSP_OB_4_7_FILTER = (0x1 << 14),
|
||||
};
|
||||
|
||||
struct rt5677_priv {
|
||||
struct snd_soc_codec *codec;
|
||||
struct rt5677_platform_data pdata;
|
||||
@@ -1696,4 +1772,7 @@ struct rt5677_priv {
|
||||
bool is_vref_slow;
|
||||
};
|
||||
|
||||
int rt5677_sel_asrc_clk_src(struct snd_soc_codec *codec,
|
||||
unsigned int filter_mask, unsigned int clk_src);
|
||||
|
||||
#endif /* __RT5677_H__ */
|
||||
|
在新工单中引用
屏蔽一个用户