linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value
@ 2015-04-29 11:52 Georgi Djakov
  2015-04-29 11:52 ` [PATCH 2/2] clk: qcom: Fix MSM8916 gfx3d_clk_src configuration Georgi Djakov
  2015-05-01  1:40 ` [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value Stephen Boyd
  0 siblings, 2 replies; 4+ messages in thread
From: Georgi Djakov @ 2015-04-29 11:52 UTC (permalink / raw)
  To: sboyd; +Cc: mturquette, linux-clk, linux-kernel, linux-arm-msm

One of the video codec clock frequencies has incorrect divider value. Fix it.

Fixes: 3966fab8b6ab "clk: qcom: Add MSM8916 Global Clock Controller support"
Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
---
 drivers/clk/qcom/gcc-msm8916.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/qcom/gcc-msm8916.c b/drivers/clk/qcom/gcc-msm8916.c
index d3458474eb3a..b15d52b56c6a 100644
--- a/drivers/clk/qcom/gcc-msm8916.c
+++ b/drivers/clk/qcom/gcc-msm8916.c
@@ -1115,7 +1115,7 @@ static struct clk_rcg2 usb_hs_system_clk_src = {
 static const struct freq_tbl ftbl_gcc_venus0_vcodec0_clk[] = {
 	F(100000000, P_GPLL0, 8, 0, 0),
 	F(160000000, P_GPLL0, 5, 0, 0),
-	F(228570000, P_GPLL0, 5, 0, 0),
+	F(228570000, P_GPLL0, 3.5, 0, 0),
 	{ }
 };
 

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] clk: qcom: Fix MSM8916 gfx3d_clk_src configuration
  2015-04-29 11:52 [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value Georgi Djakov
@ 2015-04-29 11:52 ` Georgi Djakov
  2015-05-01  1:41   ` Stephen Boyd
  2015-05-01  1:40 ` [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value Stephen Boyd
  1 sibling, 1 reply; 4+ messages in thread
From: Georgi Djakov @ 2015-04-29 11:52 UTC (permalink / raw)
  To: sboyd; +Cc: mturquette, linux-clk, linux-kernel, linux-arm-msm

The gfx3d_clk_src parents configuration is incorrect. Fix it.

Fixes: 3966fab8b6ab "clk: qcom: Add MSM8916 Global Clock Controller support"
Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
---
 drivers/clk/qcom/gcc-msm8916.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/qcom/gcc-msm8916.c b/drivers/clk/qcom/gcc-msm8916.c
index b15d52b56c6a..c66f7bc2ae87 100644
--- a/drivers/clk/qcom/gcc-msm8916.c
+++ b/drivers/clk/qcom/gcc-msm8916.c
@@ -71,8 +71,8 @@ static const char *gcc_xo_gpll0_bimc[] = {
 static const struct parent_map gcc_xo_gpll0a_gpll1_gpll2a_map[] = {
 	{ P_XO, 0 },
 	{ P_GPLL0_AUX, 3 },
-	{ P_GPLL2_AUX, 2 },
 	{ P_GPLL1, 1 },
+	{ P_GPLL2_AUX, 2 },
 };
 
 static const char *gcc_xo_gpll0a_gpll1_gpll2a[] = {

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value
  2015-04-29 11:52 [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value Georgi Djakov
  2015-04-29 11:52 ` [PATCH 2/2] clk: qcom: Fix MSM8916 gfx3d_clk_src configuration Georgi Djakov
@ 2015-05-01  1:40 ` Stephen Boyd
  1 sibling, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2015-05-01  1:40 UTC (permalink / raw)
  To: Georgi Djakov; +Cc: mturquette, linux-clk, linux-kernel, linux-arm-msm

On 04/29, Georgi Djakov wrote:
> One of the video codec clock frequencies has incorrect divider value. Fix it.
> 
> Fixes: 3966fab8b6ab "clk: qcom: Add MSM8916 Global Clock Controller support"
> Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>

Applied to clk-fixes

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] clk: qcom: Fix MSM8916 gfx3d_clk_src configuration
  2015-04-29 11:52 ` [PATCH 2/2] clk: qcom: Fix MSM8916 gfx3d_clk_src configuration Georgi Djakov
@ 2015-05-01  1:41   ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2015-05-01  1:41 UTC (permalink / raw)
  To: Georgi Djakov; +Cc: mturquette, linux-clk, linux-kernel, linux-arm-msm

On 04/29, Georgi Djakov wrote:
> The gfx3d_clk_src parents configuration is incorrect. Fix it.
> 
> Fixes: 3966fab8b6ab "clk: qcom: Add MSM8916 Global Clock Controller support"
> Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>

Applied to clk-fixes

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-05-01  1:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-29 11:52 [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value Georgi Djakov
2015-04-29 11:52 ` [PATCH 2/2] clk: qcom: Fix MSM8916 gfx3d_clk_src configuration Georgi Djakov
2015-05-01  1:41   ` Stephen Boyd
2015-05-01  1:40 ` [PATCH 1/2] clk: qcom: Fix MSM8916 venus divider value Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).