3c1f6e358d
Patches are generated using the "format-patch" command from the following location: *https://www.codeaurora.org/cgit/quic/kernel/galak-msm/log/?h=apq_ipq_base *rev=0771849495b4128cac2faf7d49c85c729fc48b20 Patches numbered 76/77/102/103 have already been integrated in 3.14.12, so they're not in this list. All these patches are either integrated are pending integration into kernel.org, therefore these patches should go away once the kernel gets upgraded to 3.16. Support is currently limited to AP148 board but can be extended to other platforms in the future. These changes do not cover ethernet connectivity. Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org> SVN-Revision: 42334
121 lines
3 KiB
Diff
121 lines
3 KiB
Diff
From b9b3815f2a71af88ca68d3524ee4d9b6b4739257 Mon Sep 17 00:00:00 2001
|
|
From: Stephen Boyd <sboyd@codeaurora.org>
|
|
Date: Wed, 18 Jun 2014 15:57:06 -0700
|
|
Subject: [PATCH 174/182] clk: qcom: Add HFPLLs to IPQ806X driver
|
|
|
|
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
|
|
---
|
|
drivers/clk/qcom/gcc-ipq806x.c | 83 ++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 83 insertions(+)
|
|
|
|
diff --git a/drivers/clk/qcom/gcc-ipq806x.c b/drivers/clk/qcom/gcc-ipq806x.c
|
|
index d80dc69..83a73cb 100644
|
|
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
@@ -30,6 +30,7 @@
|
|
#include "clk-pll.h"
|
|
#include "clk-rcg.h"
|
|
#include "clk-branch.h"
|
|
+#include "clk-hfpll.h"
|
|
#include "reset.h"
|
|
|
|
static struct clk_pll pll0 = {
|
|
@@ -102,6 +103,85 @@ static struct clk_regmap pll8_vote = {
|
|
},
|
|
};
|
|
|
|
+static struct hfpll_data hfpll0_data = {
|
|
+ .mode_reg = 0x3200,
|
|
+ .l_reg = 0x3208,
|
|
+ .m_reg = 0x320c,
|
|
+ .n_reg = 0x3210,
|
|
+ .config_reg = 0x3204,
|
|
+ .status_reg = 0x321c,
|
|
+ .config_val = 0x7845c665,
|
|
+ .droop_reg = 0x3214,
|
|
+ .droop_val = 0x0108c000,
|
|
+ .min_rate = 600000000UL,
|
|
+ .max_rate = 1800000000UL,
|
|
+};
|
|
+
|
|
+static struct clk_hfpll hfpll0 = {
|
|
+ .d = &hfpll0_data,
|
|
+ .clkr.hw.init = &(struct clk_init_data){
|
|
+ .parent_names = (const char *[]){ "pxo" },
|
|
+ .num_parents = 1,
|
|
+ .name = "hfpll0",
|
|
+ .ops = &clk_ops_hfpll,
|
|
+ .flags = CLK_IGNORE_UNUSED,
|
|
+ },
|
|
+ .lock = __SPIN_LOCK_UNLOCKED(hfpll0.lock),
|
|
+};
|
|
+
|
|
+static struct hfpll_data hfpll1_data = {
|
|
+ .mode_reg = 0x3240,
|
|
+ .l_reg = 0x3248,
|
|
+ .m_reg = 0x324c,
|
|
+ .n_reg = 0x3250,
|
|
+ .config_reg = 0x3244,
|
|
+ .status_reg = 0x325c,
|
|
+ .config_val = 0x7845c665,
|
|
+ .droop_reg = 0x3314,
|
|
+ .droop_val = 0x0108c000,
|
|
+ .min_rate = 600000000UL,
|
|
+ .max_rate = 1800000000UL,
|
|
+};
|
|
+
|
|
+static struct clk_hfpll hfpll1 = {
|
|
+ .d = &hfpll1_data,
|
|
+ .clkr.hw.init = &(struct clk_init_data){
|
|
+ .parent_names = (const char *[]){ "pxo" },
|
|
+ .num_parents = 1,
|
|
+ .name = "hfpll1",
|
|
+ .ops = &clk_ops_hfpll,
|
|
+ .flags = CLK_IGNORE_UNUSED,
|
|
+ },
|
|
+ .lock = __SPIN_LOCK_UNLOCKED(hfpll1.lock),
|
|
+};
|
|
+
|
|
+static struct hfpll_data hfpll_l2_data = {
|
|
+ .mode_reg = 0x3300,
|
|
+ .l_reg = 0x3308,
|
|
+ .m_reg = 0x330c,
|
|
+ .n_reg = 0x3310,
|
|
+ .config_reg = 0x3304,
|
|
+ .status_reg = 0x331c,
|
|
+ .config_val = 0x7845c665,
|
|
+ .droop_reg = 0x3314,
|
|
+ .droop_val = 0x0108c000,
|
|
+ .min_rate = 600000000UL,
|
|
+ .max_rate = 1800000000UL,
|
|
+};
|
|
+
|
|
+static struct clk_hfpll hfpll_l2 = {
|
|
+ .d = &hfpll_l2_data,
|
|
+ .clkr.hw.init = &(struct clk_init_data){
|
|
+ .parent_names = (const char *[]){ "pxo" },
|
|
+ .num_parents = 1,
|
|
+ .name = "hfpll_l2",
|
|
+ .ops = &clk_ops_hfpll,
|
|
+ .flags = CLK_IGNORE_UNUSED,
|
|
+ },
|
|
+ .lock = __SPIN_LOCK_UNLOCKED(hfpll_l2.lock),
|
|
+};
|
|
+
|
|
+
|
|
static struct clk_pll pll14 = {
|
|
.l_reg = 0x31c4,
|
|
.m_reg = 0x31c8,
|
|
@@ -2878,6 +2958,9 @@ static struct clk_regmap *gcc_ipq806x_clks[] = {
|
|
[NSSTCM_CLK_SRC] = &nss_tcm_src.clkr,
|
|
[NSSTCM_CLK] = &nss_tcm_clk.clkr,
|
|
[NSS_CORE_CLK] = &nss_core_clk,
|
|
+ [PLL9] = &hfpll0.clkr,
|
|
+ [PLL10] = &hfpll1.clkr,
|
|
+ [PLL12] = &hfpll_l2.clkr,
|
|
};
|
|
|
|
static const struct qcom_reset_map gcc_ipq806x_resets[] = {
|
|
--
|
|
1.7.10.4
|
|
|