Skip to content

Commit

Permalink
ASoC: rockchip: pdm: using left justified store mode
Browse files Browse the repository at this point in the history
This patch set left justified store mode default.

Signed-off-by: Sugar Zhang <sugar.zhang@rock-chips.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Sugar Zhang authored and Mark Brown committed Apr 4, 2019
1 parent 8a1d95c commit fb20de6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions sound/soc/rockchip/rockchip_pdm.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ static int rockchip_pdm_hw_params(struct snd_pcm_substream *substream,
regmap_update_bits(pdm->regmap, PDM_HPF_CTRL,
PDM_HPF_LE | PDM_HPF_RE, PDM_HPF_LE | PDM_HPF_RE);
regmap_update_bits(pdm->regmap, PDM_CLK_CTRL, PDM_CLK_EN, PDM_CLK_EN);
regmap_update_bits(pdm->regmap, PDM_CTRL0, PDM_MODE_MSK, PDM_MODE_LJ);

val = 0;
switch (params_format(params)) {
Expand Down
3 changes: 3 additions & 0 deletions sound/soc/rockchip/rockchip_pdm.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@

/* PDM CTRL0 */
#define PDM_PATH_MSK (0xf << 27)
#define PDM_MODE_MSK BIT(31)
#define PDM_MODE_RJ 0
#define PDM_MODE_LJ BIT(31)
#define PDM_PATH3_EN BIT(30)
#define PDM_PATH2_EN BIT(29)
#define PDM_PATH1_EN BIT(28)
Expand Down

0 comments on commit fb20de6

Please sign in to comment.