Re: [PATCH v2 3/3] clk: qcom: Add Global Clock controller (GCC) driver for SC7180
From: Taniya Das <hidden>
Date: 2019-09-18 09:45:02
Also in:
linux-arm-msm, linux-clk, lkml
Hi Stephen, Thanks for your review. On 8/21/2019 11:31 PM, Stephen Boyd wrote:
Quoting Taniya Das (2019-08-19 09:37:48)quoted
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index e1ff83cc361e..ebd4902afd9f 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig@@ -322,5 +331,4 @@ config KRAITCC help Support for the Krait CPU clocks on Qualcomm devices. Say Y if you want to support CPU frequency scaling. - endifPlease remove this hunk
Would remove this.
quoted
diff --git a/drivers/clk/qcom/gcc-sc7180.c b/drivers/clk/qcom/gcc-sc7180.c new file mode 100644 index 000000000000..8718b675d609 --- /dev/null +++ b/drivers/clk/qcom/gcc-sc7180.c[...]quoted
+ }, +}; + +/* Camera Subsystem requires always ON. */Yes, but why? This comment is useful unless it explains why.
Next patch would take care.
quoted
+static struct clk_branch gcc_camera_ahb_clk = { + .halt_reg = 0xb008, + .halt_check = BRANCH_HALT, + .hwcg_reg = 0xb008, + .hwcg_bit = 1, + .clkr = { + .enable_reg = 0xb008, + .enable_mask = BIT(0), + .hw.init = &(struct clk_init_data){ + .name = "gcc_camera_ahb_clk", + .flags = CLK_IS_CRITICAL, + .ops = &clk_branch2_ops, + }, + }, +}; + +static struct clk_branch gcc_camera_hf_axi_clk = { + .halt_reg = 0xb020, + .halt_check = BRANCH_HALT, + .clkr = { + .enable_reg = 0xb020, + .enable_mask = BIT(0),
-- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation. --