summaryrefslogtreecommitdiff
path: root/drivers/clk
diff options
context:
space:
mode:
authorDeepak Katragadda <dkatraga@codeaurora.org>2016-10-20 16:50:12 -0700
committerDeepak Katragadda <dkatraga@codeaurora.org>2016-10-20 16:50:12 -0700
commitbfda35b58b35d035e743741cc2a273eee6cab1b9 (patch)
tree151a7bc42bf05a674d29bf3560b257d686be4288 /drivers/clk
parent1ff56658f3493b9e56cb30d1ddcd7e6646d14c85 (diff)
clk: msm: clock: Remove controlling some graphics clocks in Linux
The gcc_gpu_bimc_gfx_src_clk and gcc_gpu_snoc_dvm_gfx_clk need to left at their default state of ON. Remove controlling them from the linux clock driver to avoid disabling them during late_init. Change-Id: If3d964840362b6147ba7c9e26c4a3f5d20e5a557 Signed-off-by: Deepak Katragadda <dkatraga@codeaurora.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/msm/clock-gcc-cobalt.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/drivers/clk/msm/clock-gcc-cobalt.c b/drivers/clk/msm/clock-gcc-cobalt.c
index 46e791b3cb99..f2a3f7402f67 100644
--- a/drivers/clk/msm/clock-gcc-cobalt.c
+++ b/drivers/clk/msm/clock-gcc-cobalt.c
@@ -1707,17 +1707,6 @@ static struct branch_clk gcc_gpu_bimc_gfx_clk = {
},
};
-static struct branch_clk gcc_gpu_bimc_gfx_src_clk = {
- .cbcr_reg = GCC_GPU_BIMC_GFX_SRC_CBCR,
- .has_sibling = 1,
- .base = &virt_base,
- .c = {
- .dbg_name = "gcc_gpu_bimc_gfx_src_clk",
- .ops = &clk_ops_branch,
- CLK_INIT(gcc_gpu_bimc_gfx_src_clk.c),
- },
-};
-
static struct branch_clk gcc_gpu_cfg_ahb_clk = {
.cbcr_reg = GCC_GPU_CFG_AHB_CBCR,
.has_sibling = 1,
@@ -1731,17 +1720,6 @@ static struct branch_clk gcc_gpu_cfg_ahb_clk = {
},
};
-static struct branch_clk gcc_gpu_snoc_dvm_gfx_clk = {
- .cbcr_reg = GCC_GPU_SNOC_DVM_GFX_CBCR,
- .has_sibling = 1,
- .base = &virt_base,
- .c = {
- .dbg_name = "gcc_gpu_snoc_dvm_gfx_clk",
- .ops = &clk_ops_branch,
- CLK_INIT(gcc_gpu_snoc_dvm_gfx_clk.c),
- },
-};
-
static struct branch_clk gcc_gpu_iref_clk = {
.cbcr_reg = GCC_GPU_IREF_EN,
.has_sibling = 1,
@@ -2454,7 +2432,6 @@ static struct mux_clk gcc_debug_mux = {
{ &gcc_mss_mnoc_bimc_axi_clk.c, 0x0120 },
{ &gcc_mss_snoc_axi_clk.c, 0x0123 },
{ &gcc_gpu_cfg_ahb_clk.c, 0x013b },
- { &gcc_gpu_bimc_gfx_src_clk.c, 0x013e },
{ &gcc_gpu_bimc_gfx_clk.c, 0x013f },
{ &gcc_qspi_ahb_clk.c, 0x0156 },
{ &gcc_qspi_ref_clk.c, 0x0157 },
@@ -2649,9 +2626,7 @@ static struct clk_lookup msm_clocks_gcc_cobalt[] = {
CLK_LIST(gcc_gp2_clk),
CLK_LIST(gcc_gp3_clk),
CLK_LIST(gcc_gpu_bimc_gfx_clk),
- CLK_LIST(gcc_gpu_bimc_gfx_src_clk),
CLK_LIST(gcc_gpu_cfg_ahb_clk),
- CLK_LIST(gcc_gpu_snoc_dvm_gfx_clk),
CLK_LIST(gcc_gpu_iref_clk),
CLK_LIST(gcc_hmss_ahb_clk),
CLK_LIST(gcc_hmss_dvm_bus_clk),