Skip to content

Commit

Permalink
ASoC: samsung: odroid: Fix EPLL frequency values
Browse files Browse the repository at this point in the history
To prevent incorrect setting of the EPLL the clock frequency
values are changed to exact values as possible to obtain on
the EPLL output with given PLL coefficients.
This patch is required after recent change of the EPLL rate
table by patch
"clk: samsung: exynos5420: The EPLL rate table corrections".

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Sylwester Nawrocki authored and Mark Brown committed Jul 21, 2017
1 parent 5771a8c commit 9d154e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sound/soc/samsung/odroid.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ static int odroid_card_hw_params(struct snd_pcm_substream *substream,
switch (params_rate(params)) {
case 32000:
case 64000:
pll_freq = 131072000U;
pll_freq = 131072006U;
break;
case 44100:
case 88200:
case 176400:
pll_freq = 180633600U;
pll_freq = 180633609U;
break;
case 48000:
case 96000:
case 192000:
pll_freq = 196608000U;
pll_freq = 196608001U;
break;
default:
return -EINVAL;
Expand Down

0 comments on commit 9d154e4

Please sign in to comment.