Commit 042f7f8f authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by Maxime Ripard

clk: sunxi-ng: sun5i: Use sigma-delta modulation for audio PLL

The audio blocks require specific clock rates. Until now we were using
the closest clock rate possible with integer N-M factors. This resulted
in audio playback being slightly slower than it should be.

The vendor kernel gets around this (for newer SoCs) by using sigma-delta
modulation to generate a fractional-N factor. As the PLL hardware is
identical in most chips, we can back port the settings from the newer
SoC, in this case the H3, onto the sun5i family.
Signed-off-by: default avatarChen-Yu Tsai <wens@csie.org>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
parent de344851
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "ccu_nkmp.h" #include "ccu_nkmp.h"
#include "ccu_nm.h" #include "ccu_nm.h"
#include "ccu_phase.h" #include "ccu_phase.h"
#include "ccu_sdm.h"
#include "ccu-sun5i.h" #include "ccu-sun5i.h"
...@@ -49,11 +50,20 @@ static struct ccu_nkmp pll_core_clk = { ...@@ -49,11 +50,20 @@ static struct ccu_nkmp pll_core_clk = {
* the base (2x, 4x and 8x), and one variable divider (the one true * the base (2x, 4x and 8x), and one variable divider (the one true
* pll audio). * pll audio).
* *
* We don't have any need for the variable divider for now, so we just * With sigma-delta modulation for fractional-N on the audio PLL,
* hardcode it to match with the clock names * we have to use specific dividers. This means the variable divider
* can no longer be used, as the audio codec requests the exact clock
* rates we support through this mechanism. So we now hard code the
* variable divider to 1. This means the clock rates will no longer
* match the clock names.
*/ */
#define SUN5I_PLL_AUDIO_REG 0x008 #define SUN5I_PLL_AUDIO_REG 0x008
static struct ccu_sdm_setting pll_audio_sdm_table[] = {
{ .rate = 22579200, .pattern = 0xc0010d84, .m = 8, .n = 7 },
{ .rate = 24576000, .pattern = 0xc000ac02, .m = 14, .n = 14 },
};
static struct ccu_nm pll_audio_base_clk = { static struct ccu_nm pll_audio_base_clk = {
.enable = BIT(31), .enable = BIT(31),
.n = _SUNXI_CCU_MULT_OFFSET(8, 7, 0), .n = _SUNXI_CCU_MULT_OFFSET(8, 7, 0),
...@@ -63,8 +73,11 @@ static struct ccu_nm pll_audio_base_clk = { ...@@ -63,8 +73,11 @@ static struct ccu_nm pll_audio_base_clk = {
* offset * offset
*/ */
.m = _SUNXI_CCU_DIV_OFFSET(0, 5, 0), .m = _SUNXI_CCU_DIV_OFFSET(0, 5, 0),
.sdm = _SUNXI_CCU_SDM(pll_audio_sdm_table, 0,
0x00c, BIT(31)),
.common = { .common = {
.reg = 0x008, .reg = 0x008,
.features = CCU_FEATURE_SIGMA_DELTA_MOD,
.hw.init = CLK_HW_INIT("pll-audio-base", .hw.init = CLK_HW_INIT("pll-audio-base",
"hosc", "hosc",
&ccu_nm_ops, &ccu_nm_ops,
...@@ -597,9 +610,9 @@ static struct ccu_common *sun5i_a10s_ccu_clks[] = { ...@@ -597,9 +610,9 @@ static struct ccu_common *sun5i_a10s_ccu_clks[] = {
&iep_clk.common, &iep_clk.common,
}; };
/* We hardcode the divider to 4 for now */ /* We hardcode the divider to 1 for now */
static CLK_FIXED_FACTOR(pll_audio_clk, "pll-audio", static CLK_FIXED_FACTOR(pll_audio_clk, "pll-audio",
"pll-audio-base", 4, 1, CLK_SET_RATE_PARENT); "pll-audio-base", 1, 1, CLK_SET_RATE_PARENT);
static CLK_FIXED_FACTOR(pll_audio_2x_clk, "pll-audio-2x", static CLK_FIXED_FACTOR(pll_audio_2x_clk, "pll-audio-2x",
"pll-audio-base", 2, 1, CLK_SET_RATE_PARENT); "pll-audio-base", 2, 1, CLK_SET_RATE_PARENT);
static CLK_FIXED_FACTOR(pll_audio_4x_clk, "pll-audio-4x", static CLK_FIXED_FACTOR(pll_audio_4x_clk, "pll-audio-4x",
...@@ -980,10 +993,10 @@ static void __init sun5i_ccu_init(struct device_node *node, ...@@ -980,10 +993,10 @@ static void __init sun5i_ccu_init(struct device_node *node,
return; return;
} }
/* Force the PLL-Audio-1x divider to 4 */ /* Force the PLL-Audio-1x divider to 1 */
val = readl(reg + SUN5I_PLL_AUDIO_REG); val = readl(reg + SUN5I_PLL_AUDIO_REG);
val &= ~GENMASK(29, 26); val &= ~GENMASK(29, 26);
writel(val | (3 << 26), reg + SUN5I_PLL_AUDIO_REG); writel(val | (0 << 26), reg + SUN5I_PLL_AUDIO_REG);
/* /*
* Use the peripheral PLL as the AHB parent, instead of CPU / * Use the peripheral PLL as the AHB parent, instead of CPU /
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment