clk: qcom: Move frequency table macro to common file
authorTaniya Das <tdas@codeaurora.org>
Sat, 23 Jun 2018 14:19:25 +0000 (19:49 +0530)
committerStephen Boyd <sboyd@kernel.org>
Fri, 6 Jul 2018 23:45:51 +0000 (16:45 -0700)
Frequency table macro is used by multiple clock drivers, move frequency
table macro to common header file.

Signed-off-by: Taniya Das <tdas@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
14 files changed:
drivers/clk/qcom/clk-rcg.h
drivers/clk/qcom/gcc-apq8084.c
drivers/clk/qcom/gcc-ipq4019.c
drivers/clk/qcom/gcc-ipq8074.c
drivers/clk/qcom/gcc-msm8916.c
drivers/clk/qcom/gcc-msm8974.c
drivers/clk/qcom/gcc-msm8994.c
drivers/clk/qcom/gcc-msm8996.c
drivers/clk/qcom/gcc-msm8998.c
drivers/clk/qcom/gcc-sdm845.c
drivers/clk/qcom/mmcc-apq8084.c
drivers/clk/qcom/mmcc-msm8974.c
drivers/clk/qcom/mmcc-msm8996.c
drivers/clk/qcom/videocc-sdm845.c

index b209a2f..dbd5a9e 100644 (file)
@@ -7,6 +7,8 @@
 #include <linux/clk-provider.h>
 #include "clk-regmap.h"
 
+#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
+
 struct freq_tbl {
        unsigned long freq;
        u8 src;
index 486d961..9c99a71 100644 (file)
@@ -106,8 +106,6 @@ static const char * const gcc_xo_pcie_sleep[] = {
        "sleep_clk_src",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static struct clk_pll gpll0 = {
        .l_reg = 0x0004,
        .m_reg = 0x0008,
index 46cb256..8902ad4 100644 (file)
@@ -179,8 +179,6 @@ static const char * const gcc_xo_ddr_500_200[] = {
        "ddrpllapss",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static const struct freq_tbl ftbl_gcc_audio_pwm_clk[] = {
        F(48000000, P_XO, 1, 0, 0),
        F(200000000, P_FEPLL200, 1, 0, 0),
index 0462f4a..505c626 100644 (file)
@@ -32,8 +32,6 @@
 #include "clk-regmap-mux.h"
 #include "reset.h"
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 enum {
        P_XO,
        P_GPLL0,
index d6c7f50..ac2b0aa 100644 (file)
@@ -264,8 +264,6 @@ static const char * const gcc_xo_gpll1_emclk_sleep[] = {
        "sleep_clk",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static struct clk_pll gpll0 = {
        .l_reg = 0x21004,
        .m_reg = 0x21008,
index 348e30d..08e2900 100644 (file)
@@ -62,8 +62,6 @@ static const char * const gcc_xo_gpll0_gpll4[] = {
        "gpll4_vote",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static struct clk_pll gpll0 = {
        .l_reg = 0x0004,
        .m_reg = 0x0008,
index 1e38efc..53f0f36 100644 (file)
@@ -57,8 +57,6 @@ static const char * const gcc_xo_gpll0_gpll4[] = {
        "gpll4",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static struct clk_fixed_factor xo = {
        .mult = 1,
        .div = 1,
index 9f35b3f..9d3756c 100644 (file)
@@ -32,8 +32,6 @@
 #include "reset.h"
 #include "gdsc.h"
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 enum {
        P_XO,
        P_GPLL0,
index 78d87f5..9f0ae40 100644 (file)
@@ -25,8 +25,6 @@
 #include "reset.h"
 #include "gdsc.h"
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 enum {
        P_AUD_REF_CLK,
        P_CORE_BI_PLL_TEST_SE,
index e78e6f5..19b470f 100644 (file)
@@ -25,8 +25,6 @@
 #include "gdsc.h"
 #include "reset.h"
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 enum {
        P_BI_TCXO,
        P_AUD_REF_CLK,
index 30777f9..4ce1d7c 100644 (file)
@@ -219,8 +219,6 @@ static const char * const mmcc_xo_mmpll0_1_4_gpll1_0_sleep[] = {
        "sleep_clk_src",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static struct clk_pll mmpll0 = {
        .l_reg = 0x0004,
        .m_reg = 0x0008,
index 715e7cd..9181851 100644 (file)
@@ -184,8 +184,6 @@ static const char * const mmcc_xo_dsibyte_hdmi_edp_gpll0[] = {
        "dsi1pllbyte",
 };
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 static struct clk_pll mmpll0 = {
        .l_reg = 0x0004,
        .m_reg = 0x0008,
index 1a25ee4..60f08b3 100644 (file)
@@ -34,8 +34,6 @@
 #include "reset.h"
 #include "gdsc.h"
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 enum {
        P_XO,
        P_MMPLL0,
index 9073b7a..5d6a772 100644 (file)
@@ -18,8 +18,6 @@
 #include "clk-pll.h"
 #include "gdsc.h"
 
-#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }
-
 enum {
        P_BI_TCXO,
        P_CORE_BI_PLL_TEST_SE,