OSDN Git Service

clk: qcom: Fix ipq806x LCC frequency tables
authorStephen Boyd <sboyd@codeaurora.org>
Fri, 27 Feb 2015 03:34:35 +0000 (19:34 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 May 2015 20:03:59 +0000 (22:03 +0200)
commit b3261d768bcdd4b368179ed85becf38c95461848 upstream.

These frequency tables list the wrong rates. Either they don't
have the correct frequency at all, or they're specified in kHz
instead of Hz. Fix it.

Fixes: c99e515a92e9 "clk: qcom: Add IPQ806X LPASS clock controller (LCC) driver"
Tested-by: Kenneth Westfield <kwestfie@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/clk/qcom/lcc-ipq806x.c

index 19378b0..a6d3a67 100644 (file)
@@ -294,14 +294,14 @@ static struct clk_regmap_mux pcm_clk = {
 };
 
 static struct freq_tbl clk_tbl_aif_osr[] = {
-       {  22050, P_PLL4, 1, 147, 20480 },
-       {  32000, P_PLL4, 1,   1,    96 },
-       {  44100, P_PLL4, 1, 147, 10240 },
-       {  48000, P_PLL4, 1,   1,    64 },
-       {  88200, P_PLL4, 1, 147,  5120 },
-       {  96000, P_PLL4, 1,   1,    32 },
-       { 176400, P_PLL4, 1, 147,  2560 },
-       { 192000, P_PLL4, 1,   1,    16 },
+       {  2822400, P_PLL4, 1, 147, 20480 },
+       {  4096000, P_PLL4, 1,   1,    96 },
+       {  5644800, P_PLL4, 1, 147, 10240 },
+       {  6144000, P_PLL4, 1,   1,    64 },
+       { 11289600, P_PLL4, 1, 147,  5120 },
+       { 12288000, P_PLL4, 1,   1,    32 },
+       { 22579200, P_PLL4, 1, 147,  2560 },
+       { 24576000, P_PLL4, 1,   1,    16 },
        { },
 };
 
@@ -360,7 +360,7 @@ static struct clk_branch spdif_clk = {
 };
 
 static struct freq_tbl clk_tbl_ahbix[] = {
-       { 131072, P_PLL4, 1, 1, 3 },
+       { 131072000, P_PLL4, 1, 1, 3 },
        { },
 };