Merge branches 'clk-debugfs', 'clk-spreadtrum', 'clk-sifive', 'clk-counted' and ...
authorStephen Boyd <sboyd@kernel.org>
Mon, 30 Oct 2023 21:10:51 +0000 (14:10 -0700)
committerStephen Boyd <sboyd@kernel.org>
Mon, 30 Oct 2023 21:10:51 +0000 (14:10 -0700)
 - Add consumer info to clk debugfs
 - Fix various clk drivers that have clk_hw_onecell_data not at the end
   of an allocation

* clk-debugfs:
  clk: Allow phase adjustment from debugfs
  clk: Show active consumers of clocks in debugfs

* clk-spreadtrum:
  clk: sprd: Composite driver support offset config

* clk-sifive:
  clk: sifive: Allow building the driver as a module
  clk: analogbits: Allow building the library as a module

* clk-counted:
  clk: socfpga: agilex: Add bounds-checking coverage for struct stratix10_clock_data
  clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data
  clk: visconti: Add bounds-checking coverage for struct visconti_pll_provider
  clk: visconti: Fix undefined behavior bug in struct visconti_pll_provider

* clk-qcom: (36 commits)
  clk: qcom: apss-ipq6018: add the GPLL0 clock also as clock provider
  clk: qcom: ipq5332: drop the CLK_SET_RATE_PARENT flag from GPLL clocks
  clk: qcom: ipq9574: drop the CLK_SET_RATE_PARENT flag from GPLL clocks
  clk: qcom: ipq5018: drop the CLK_SET_RATE_PARENT flag from GPLL clocks
  clk: qcom: ipq6018: drop the CLK_SET_RATE_PARENT flag from PLL clocks
  clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks
  clk: qcom: gcc-ipq6018: add QUP6 I2C clock
  clk: qcom: apss-ipq6018: ipq5332: add safe source switch for a53pll
  clk: qcom: apss-ipq-pll: Fix 'l' value for ipq5332_pll_config
  clk: qcom: apss-ipq-pll: Use stromer plus ops for stromer plus pll
  clk: qcom: clk-alpha-pll: introduce stromer plus ops
  clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM
  clk: qcom: videocc-sm8550: switch to clk_lucid_ole_pll_configure
  clk: qcom: gpucc-sm8550: switch to clk_lucid_ole_pll_configure
  clk: qcom: Replace of_device.h with explicit includes
  clk: qcom: smd-rpm: Move CPUSS_GNoC clock to interconnect
  clk: qcom: cbf-msm8996: Convert to platform remove callback returning void
  clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src
  clk: qcom: Add GCC driver support for SM4450
  dt-bindings: clock: qcom: Add GCC clocks for SM4450
  ...

46 files changed:
Documentation/devicetree/bindings/clock/qcom,hfpll.txt
Documentation/devicetree/bindings/clock/qcom,rpmhcc.yaml
Documentation/devicetree/bindings/clock/qcom,sm4450-gcc.yaml [new file with mode: 0644]
Documentation/devicetree/bindings/clock/qcom,sm8450-camcc.yaml
drivers/clk/analogbits/Kconfig
drivers/clk/analogbits/wrpll-cln28hpc.c
drivers/clk/clk.c
drivers/clk/qcom/Kconfig
drivers/clk/qcom/Makefile
drivers/clk/qcom/apss-ipq-pll.c
drivers/clk/qcom/apss-ipq6018.c
drivers/clk/qcom/camcc-sm8550.c [new file with mode: 0644]
drivers/clk/qcom/clk-alpha-pll.c
drivers/clk/qcom/clk-alpha-pll.h
drivers/clk/qcom/clk-cbf-8996.c
drivers/clk/qcom/clk-hfpll.c
drivers/clk/qcom/clk-hfpll.h
drivers/clk/qcom/clk-rcg2.c
drivers/clk/qcom/clk-rpmh.c
drivers/clk/qcom/clk-smd-rpm.c
drivers/clk/qcom/gcc-ipq5018.c
drivers/clk/qcom/gcc-ipq5332.c
drivers/clk/qcom/gcc-ipq6018.c
drivers/clk/qcom/gcc-ipq8074.c
drivers/clk/qcom/gcc-ipq9574.c
drivers/clk/qcom/gcc-msm8996.c
drivers/clk/qcom/gcc-sm4450.c [new file with mode: 0644]
drivers/clk/qcom/gcc-sm8150.c
drivers/clk/qcom/gpucc-sm8550.c
drivers/clk/qcom/hfpll.c
drivers/clk/qcom/mmcc-msm8974.c
drivers/clk/qcom/mmcc-msm8998.c
drivers/clk/qcom/videocc-sm8550.c
drivers/clk/sifive/Kconfig
drivers/clk/sifive/sifive-prci.c
drivers/clk/socfpga/clk-agilex.c
drivers/clk/socfpga/clk-s10.c
drivers/clk/socfpga/stratix10-clk.h
drivers/clk/sprd/composite.h
drivers/clk/sprd/div.c
drivers/clk/sprd/div.h
drivers/clk/visconti/pll.c
drivers/clk/visconti/pll.h
include/dt-bindings/clock/qcom,mmcc-msm8974.h
include/dt-bindings/clock/qcom,sm4450-gcc.h [new file with mode: 0644]
include/dt-bindings/clock/qcom,sm8550-camcc.h [new file with mode: 0644]

index ec02a024424cd46aee4e262f16d4a1d4206fed18..5769cbbe76bea4807219ced4e6d0370bf83eada7 100644 (file)
@@ -12,6 +12,9 @@ PROPERTIES
                         "qcom,hfpll-apq8064", "qcom,hfpll"
                         "qcom,hfpll-msm8974", "qcom,hfpll"
                         "qcom,hfpll-msm8960", "qcom,hfpll"
+                        "qcom,msm8976-hfpll-a53", "qcom,hfpll"
+                        "qcom,msm8976-hfpll-a72", "qcom,hfpll"
+                        "qcom,msm8976-hfpll-cci", "qcom,hfpll"
 
 - reg:
        Usage: required
index fd14d18309a874f4986e9ad0c1c0756f6d2e8d5f..4eb5e59f67724ce2abab1be8071c6d7fcdc416e1 100644 (file)
@@ -28,6 +28,7 @@ properties:
       - qcom,sdx55-rpmh-clk
       - qcom,sdx65-rpmh-clk
       - qcom,sdx75-rpmh-clk
+      - qcom,sm4450-rpmh-clk
       - qcom,sm6350-rpmh-clk
       - qcom,sm8150-rpmh-clk
       - qcom,sm8250-rpmh-clk
diff --git a/Documentation/devicetree/bindings/clock/qcom,sm4450-gcc.yaml b/Documentation/devicetree/bindings/clock/qcom,sm4450-gcc.yaml
new file mode 100644 (file)
index 0000000..5953c8d
--- /dev/null
@@ -0,0 +1,55 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/qcom,sm4450-gcc.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Qualcomm Global Clock & Reset Controller on SM4450
+
+maintainers:
+  - Ajit Pandey <quic_ajipan@quicinc.com>
+  - Taniya Das <quic_tdas@quicinc.com>
+
+description: |
+  Qualcomm global clock control module provides the clocks, resets and power
+  domains on SM4450
+
+  See also:: include/dt-bindings/clock/qcom,sm4450-gcc.h
+
+properties:
+  compatible:
+    const: qcom,sm4450-gcc
+
+  clocks:
+    items:
+      - description: Board XO source
+      - description: Sleep clock source
+      - description: UFS Phy Rx symbol 0 clock source
+      - description: UFS Phy Rx symbol 1 clock source
+      - description: UFS Phy Tx symbol 0 clock source
+      - description: USB3 Phy wrapper pipe clock source
+
+required:
+  - compatible
+  - clocks
+
+allOf:
+  - $ref: qcom,gcc.yaml#
+
+unevaluatedProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/clock/qcom,rpmh.h>
+    clock-controller@100000 {
+      compatible = "qcom,sm4450-gcc";
+      reg = <0x00100000 0x001f4200>;
+      clocks = <&rpmhcc RPMH_CXO_CLK>, <&sleep_clk>,
+               <&ufs_mem_phy 0>, <&ufs_mem_phy 1>,
+               <&ufs_mem_phy 2>, <&usb_1_qmpphy>;
+      #clock-cells = <1>;
+      #reset-cells = <1>;
+      #power-domain-cells = <1>;
+    };
+
+...
index 8178c35bc348a83c56c22258b3e0d021ab3a1d0e..dc3c18e4ead72886eb43d6a16b6355efa8246291 100644 (file)
@@ -13,11 +13,15 @@ description: |
   Qualcomm camera clock control module provides the clocks, resets and power
   domains on SM8450.
 
-  See also:: include/dt-bindings/clock/qcom,sm8450-camcc.h
+  See also::
+    include/dt-bindings/clock/qcom,sm8450-camcc.h
+    include/dt-bindings/clock/qcom,sm8550-camcc.h
 
 properties:
   compatible:
-    const: qcom,sm8450-camcc
+    enum:
+      - qcom,sm8450-camcc
+      - qcom,sm8550-camcc
 
   clocks:
     items:
index 1e291b185438482b33a964a99501f2e2a506a2a5..7d73db0fcd49033cf2bc9f091b419ba1f9eb9d19 100644 (file)
@@ -1,3 +1,3 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config CLK_ANALOGBITS_WRPLL_CLN28HPC
-       bool
+       tristate
index 09ca82356399301ccd7e165bc357271dfec532cf..65d422a588e1f1af91f2d610c178f0f4fe5616af 100644 (file)
@@ -28,6 +28,7 @@
 #include <linux/math64.h>
 #include <linux/math.h>
 #include <linux/minmax.h>
+#include <linux/module.h>
 
 #include <linux/clk/analogbits-wrpll-cln28hpc.h>
 
@@ -312,6 +313,7 @@ int wrpll_configure_for_rate(struct wrpll_cfg *c, u32 target_rate,
 
        return 0;
 }
+EXPORT_SYMBOL_GPL(wrpll_configure_for_rate);
 
 /**
  * wrpll_calc_output_rate() - calculate the PLL's target output rate
@@ -349,6 +351,7 @@ unsigned long wrpll_calc_output_rate(const struct wrpll_cfg *c,
 
        return n;
 }
+EXPORT_SYMBOL_GPL(wrpll_calc_output_rate);
 
 /**
  * wrpll_calc_max_lock_us() - return the time for the PLL to lock
@@ -366,3 +369,8 @@ unsigned int wrpll_calc_max_lock_us(const struct wrpll_cfg *c)
 {
        return MAX_LOCK_US;
 }
+EXPORT_SYMBOL_GPL(wrpll_calc_max_lock_us);
+
+MODULE_AUTHOR("Paul Walmsley <paul.walmsley@sifive.com>");
+MODULE_DESCRIPTION("Analog Bits Wide-Range PLL library");
+MODULE_LICENSE("GPL");
index 473563bc74960f3a472f9e6f7547f2e53459bd1f..2253c154a824834f8e58e9074de6e31a4f548c83 100644 (file)
@@ -3188,28 +3188,41 @@ static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
                                 int level)
 {
        int phase;
+       struct clk *clk_user;
+       int multi_node = 0;
 
-       seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu ",
+       seq_printf(s, "%*s%-*s %-7d %-8d %-8d %-11lu %-10lu ",
                   level * 3 + 1, "",
-                  30 - level * 3, c->name,
+                  35 - level * 3, c->name,
                   c->enable_count, c->prepare_count, c->protect_count,
                   clk_core_get_rate_recalc(c),
                   clk_core_get_accuracy_recalc(c));
 
        phase = clk_core_get_phase(c);
        if (phase >= 0)
-               seq_printf(s, "%5d", phase);
+               seq_printf(s, "%-5d", phase);
        else
                seq_puts(s, "-----");
 
-       seq_printf(s, " %6d", clk_core_get_scaled_duty_cycle(c, 100000));
+       seq_printf(s, " %-6d", clk_core_get_scaled_duty_cycle(c, 100000));
 
        if (c->ops->is_enabled)
-               seq_printf(s, " %9c\n", clk_core_is_enabled(c) ? 'Y' : 'N');
+               seq_printf(s, " %5c ", clk_core_is_enabled(c) ? 'Y' : 'N');
        else if (!c->ops->enable)
-               seq_printf(s, " %9c\n", 'Y');
+               seq_printf(s, " %5c ", 'Y');
        else
-               seq_printf(s, " %9c\n", '?');
+               seq_printf(s, " %5c ", '?');
+
+       hlist_for_each_entry(clk_user, &c->clks, clks_node) {
+               seq_printf(s, "%*s%-*s  %-25s\n",
+                          level * 3 + 2 + 105 * multi_node, "",
+                          30,
+                          clk_user->dev_id ? clk_user->dev_id : "deviceless",
+                          clk_user->con_id ? clk_user->con_id : "no_connection_id");
+
+               multi_node = 1;
+       }
+
 }
 
 static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
@@ -3230,9 +3243,10 @@ static int clk_summary_show(struct seq_file *s, void *data)
        struct clk_core *c;
        struct hlist_head **lists = s->private;
 
-       seq_puts(s, "                                 enable  prepare  protect                                duty  hardware\n");
-       seq_puts(s, "   clock                          count    count    count        rate   accuracy phase  cycle    enable\n");
-       seq_puts(s, "-------------------------------------------------------------------------------------------------------\n");
+       seq_puts(s, "                                 enable  prepare  protect                                duty  hardware                            connection\n");
+       seq_puts(s, "   clock                          count    count    count        rate   accuracy phase  cycle    enable   consumer                         id\n");
+       seq_puts(s, "---------------------------------------------------------------------------------------------------------------------------------------------\n");
+
 
        clk_prepare_lock();
 
@@ -3329,6 +3343,21 @@ static int clk_rate_set(void *data, u64 val)
 
 #define clk_rate_mode  0644
 
+static int clk_phase_set(void *data, u64 val)
+{
+       struct clk_core *core = data;
+       int degrees = do_div(val, 360);
+       int ret;
+
+       clk_prepare_lock();
+       ret = clk_core_set_phase_nolock(core, degrees);
+       clk_prepare_unlock();
+
+       return ret;
+}
+
+#define clk_phase_mode 0644
+
 static int clk_prepare_enable_set(void *data, u64 val)
 {
        struct clk_core *core = data;
@@ -3356,6 +3385,9 @@ DEFINE_DEBUGFS_ATTRIBUTE(clk_prepare_enable_fops, clk_prepare_enable_get,
 #else
 #define clk_rate_set   NULL
 #define clk_rate_mode  0444
+
+#define clk_phase_set  NULL
+#define clk_phase_mode 0644
 #endif
 
 static int clk_rate_get(void *data, u64 *val)
@@ -3371,6 +3403,16 @@ static int clk_rate_get(void *data, u64 *val)
 
 DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, clk_rate_get, clk_rate_set, "%llu\n");
 
+static int clk_phase_get(void *data, u64 *val)
+{
+       struct clk_core *core = data;
+
+       *val = core->phase;
+       return 0;
+}
+
+DEFINE_DEBUGFS_ATTRIBUTE(clk_phase_fops, clk_phase_get, clk_phase_set, "%llu\n");
+
 static const struct {
        unsigned long flag;
        const char *name;
@@ -3564,7 +3606,8 @@ static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
        debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
        debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
        debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
-       debugfs_create_u32("clk_phase", 0444, root, &core->phase);
+       debugfs_create_file("clk_phase", clk_phase_mode, root, core,
+                           &clk_phase_fops);
        debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
        debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
        debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
index 865db5202e4cfe124470d9a365046e645a01c51e..ad1acd9b7426b11228004c9a3916c1b119a6b7d0 100644 (file)
@@ -131,6 +131,7 @@ config IPQ_APSS_6018
        tristate "IPQ APSS Clock Controller"
        select IPQ_APSS_PLL
        depends on QCOM_APCS_IPC || COMPILE_TEST
+       depends on QCOM_SMEM
        help
          Support for APSS clock controller on IPQ platforms. The
          APSS clock controller manages the Mux and enable block that feeds the
@@ -764,6 +765,13 @@ config SM_CAMCC_8450
          Support for the camera clock controller on SM8450 devices.
          Say Y if you want to support camera devices and camera functionality.
 
+config SM_CAMCC_8550
+       tristate "SM8550 Camera Clock Controller"
+       select SM_GCC_8550
+       help
+         Support for the camera clock controller on SM8550 devices.
+         Say Y if you want to support camera devices and camera functionality.
+
 config SM_DISPCC_6115
        tristate "SM6115 Display Clock Controller"
        depends on ARM64 || COMPILE_TEST
@@ -834,6 +842,15 @@ config SM_DISPCC_8550
          Say Y if you want to support display devices and functionality such as
          splash screen.
 
+config SM_GCC_4450
+       tristate "SM4450 Global Clock Controller"
+       depends on ARM64 || COMPILE_TEST
+       select QCOM_GDSC
+       help
+         Support for the global clock controller on SM4450 devices.
+         Say Y if you want to use peripheral devices such as UART, SPI,
+         I2C, USB, SD/UFS, PCIe, etc.
+
 config SM_GCC_6115
        tristate "SM6115 and SM4250 Global Clock Controller"
        depends on ARM64 || COMPILE_TEST
index 4790c8cca42639a2f123af1411672971edb4ff9b..17edd73f9839fcbb56ead26ef953027e6ae0133d 100644 (file)
@@ -102,6 +102,7 @@ obj-$(CONFIG_SDX_GCC_75) += gcc-sdx75.o
 obj-$(CONFIG_SM_CAMCC_6350) += camcc-sm6350.o
 obj-$(CONFIG_SM_CAMCC_8250) += camcc-sm8250.o
 obj-$(CONFIG_SM_CAMCC_8450) += camcc-sm8450.o
+obj-$(CONFIG_SM_CAMCC_8550) += camcc-sm8550.o
 obj-$(CONFIG_SM_DISPCC_6115) += dispcc-sm6115.o
 obj-$(CONFIG_SM_DISPCC_6125) += dispcc-sm6125.o
 obj-$(CONFIG_SM_DISPCC_6350) += dispcc-sm6350.o
@@ -109,6 +110,7 @@ obj-$(CONFIG_SM_DISPCC_6375) += dispcc-sm6375.o
 obj-$(CONFIG_SM_DISPCC_8250) += dispcc-sm8250.o
 obj-$(CONFIG_SM_DISPCC_8450) += dispcc-sm8450.o
 obj-$(CONFIG_SM_DISPCC_8550) += dispcc-sm8550.o
+obj-$(CONFIG_SM_GCC_4450) += gcc-sm4450.o
 obj-$(CONFIG_SM_GCC_6115) += gcc-sm6115.o
 obj-$(CONFIG_SM_GCC_6125) += gcc-sm6125.o
 obj-$(CONFIG_SM_GCC_6350) += gcc-sm6350.o
index e170331858cc14f833d8e85f36edc8b4f10c2dfd..41279e5437a620e38091df621ec540a4a03d05a9 100644 (file)
@@ -68,13 +68,13 @@ static struct clk_alpha_pll ipq_pll_stromer_plus = {
                                .fw_name = "xo",
                        },
                        .num_parents = 1,
-                       .ops = &clk_alpha_pll_stromer_ops,
+                       .ops = &clk_alpha_pll_stromer_plus_ops,
                },
        },
 };
 
 static const struct alpha_pll_config ipq5332_pll_config = {
-       .l = 0x3e,
+       .l = 0x2d,
        .config_ctl_val = 0x4001075b,
        .config_ctl_hi_val = 0x304,
        .main_output_mask = BIT(0),
index f2f502e2d5a45ec42210f649a575c52dadf57057..e6295b832686cd7daa5ea70c79f31c2ad09fde2f 100644 (file)
@@ -9,8 +9,11 @@
 #include <linux/clk-provider.h>
 #include <linux/regmap.h>
 #include <linux/module.h>
+#include <linux/clk.h>
+#include <linux/soc/qcom/smem.h>
 
 #include <dt-bindings/clock/qcom,apss-ipq.h>
+#include <dt-bindings/arm/qcom,ids.h>
 
 #include "common.h"
 #include "clk-regmap.h"
 
 enum {
        P_XO,
+       P_GPLL0,
        P_APSS_PLL_EARLY,
 };
 
 static const struct clk_parent_data parents_apcs_alias0_clk_src[] = {
        { .fw_name = "xo" },
+       { .fw_name = "gpll0" },
        { .fw_name = "pll" },
 };
 
 static const struct parent_map parents_apcs_alias0_clk_src_map[] = {
        { P_XO, 0 },
+       { P_GPLL0, 4 },
        { P_APSS_PLL_EARLY, 5 },
 };
 
@@ -81,15 +87,68 @@ static const struct qcom_cc_desc apss_ipq6018_desc = {
        .num_clks = ARRAY_SIZE(apss_ipq6018_clks),
 };
 
+static int cpu_clk_notifier_fn(struct notifier_block *nb, unsigned long action,
+                               void *data)
+{
+       struct clk_hw *hw;
+       u8 index;
+       int err;
+
+       if (action == PRE_RATE_CHANGE)
+               index = P_GPLL0;
+       else if (action == POST_RATE_CHANGE || action == ABORT_RATE_CHANGE)
+               index = P_APSS_PLL_EARLY;
+       else
+               return NOTIFY_OK;
+
+       hw = &apcs_alias0_clk_src.clkr.hw;
+       err = clk_rcg2_mux_closest_ops.set_parent(hw, index);
+
+       return notifier_from_errno(err);
+}
+
 static int apss_ipq6018_probe(struct platform_device *pdev)
 {
+       struct clk_hw *hw = &apcs_alias0_clk_src.clkr.hw;
+       struct notifier_block *cpu_clk_notifier;
        struct regmap *regmap;
+       u32 soc_id;
+       int ret;
+
+       ret = qcom_smem_get_soc_id(&soc_id);
+       if (ret)
+               return ret;
 
        regmap = dev_get_regmap(pdev->dev.parent, NULL);
        if (!regmap)
                return -ENODEV;
 
-       return qcom_cc_really_probe(pdev, &apss_ipq6018_desc, regmap);
+       ret = qcom_cc_really_probe(pdev, &apss_ipq6018_desc, regmap);
+       if (ret)
+               return ret;
+
+       switch (soc_id) {
+       /* Only below variants of IPQ53xx support scaling */
+       case QCOM_ID_IPQ5332:
+       case QCOM_ID_IPQ5322:
+       case QCOM_ID_IPQ5300:
+               cpu_clk_notifier = devm_kzalloc(&pdev->dev,
+                                               sizeof(*cpu_clk_notifier),
+                                               GFP_KERNEL);
+               if (!cpu_clk_notifier)
+                       return -ENOMEM;
+
+               cpu_clk_notifier->notifier_call = cpu_clk_notifier_fn;
+
+               ret = devm_clk_notifier_register(&pdev->dev, hw->clk, cpu_clk_notifier);
+               if (ret)
+                       return ret;
+               break;
+       default:
+               break;
+       }
+
+       return 0;
 }
 
 static struct platform_driver apss_ipq6018_driver = {
diff --git a/drivers/clk/qcom/camcc-sm8550.c b/drivers/clk/qcom/camcc-sm8550.c
new file mode 100644 (file)
index 0000000..dd51ba4
--- /dev/null
@@ -0,0 +1,3565 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright (c) 2023, Qualcomm Innovation Center, Inc. All rights reserved.
+ */
+
+#include <linux/clk-provider.h>
+#include <linux/mod_devicetable.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/pm_runtime.h>
+#include <linux/regmap.h>
+
+#include <dt-bindings/clock/qcom,sm8550-camcc.h>
+
+#include "clk-alpha-pll.h"
+#include "clk-branch.h"
+#include "clk-rcg.h"
+#include "clk-regmap.h"
+#include "common.h"
+#include "gdsc.h"
+#include "reset.h"
+
+enum {
+       DT_IFACE,
+       DT_BI_TCXO,
+       DT_BI_TCXO_AO,
+       DT_SLEEP_CLK,
+};
+
+enum {
+       P_BI_TCXO,
+       P_BI_TCXO_AO,
+       P_CAM_CC_PLL0_OUT_EVEN,
+       P_CAM_CC_PLL0_OUT_MAIN,
+       P_CAM_CC_PLL0_OUT_ODD,
+       P_CAM_CC_PLL1_OUT_EVEN,
+       P_CAM_CC_PLL2_OUT_EVEN,
+       P_CAM_CC_PLL2_OUT_MAIN,
+       P_CAM_CC_PLL3_OUT_EVEN,
+       P_CAM_CC_PLL4_OUT_EVEN,
+       P_CAM_CC_PLL5_OUT_EVEN,
+       P_CAM_CC_PLL6_OUT_EVEN,
+       P_CAM_CC_PLL7_OUT_EVEN,
+       P_CAM_CC_PLL8_OUT_EVEN,
+       P_CAM_CC_PLL9_OUT_EVEN,
+       P_CAM_CC_PLL9_OUT_ODD,
+       P_CAM_CC_PLL10_OUT_EVEN,
+       P_CAM_CC_PLL11_OUT_EVEN,
+       P_CAM_CC_PLL12_OUT_EVEN,
+       P_SLEEP_CLK,
+};
+
+static const struct pll_vco lucid_ole_vco[] = {
+       { 249600000, 2300000000, 0 },
+};
+
+static const struct pll_vco rivian_ole_vco[] = {
+       { 777000000, 1285000000, 0 },
+};
+
+static const struct alpha_pll_config cam_cc_pll0_config = {
+       .l = 0x3e,
+       .alpha = 0x8000,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00008400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll0 = {
+       .offset = 0x0,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll0",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll0_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll0_out_even = {
+       .offset = 0x0,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll0_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll0_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll0_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll0.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll0_out_odd[] = {
+       { 0x2, 3 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll0_out_odd = {
+       .offset = 0x0,
+       .post_div_shift = 14,
+       .post_div_table = post_div_table_cam_cc_pll0_out_odd,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll0_out_odd),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll0_out_odd",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll0.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll1_config = {
+       .l = 0x2f,
+       .alpha = 0x6555,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll1 = {
+       .offset = 0x1000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll1",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll1_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll1_out_even = {
+       .offset = 0x1000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll1_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll1_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll1_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll1.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll2_config = {
+       .l = 0x32,
+       .alpha = 0x0,
+       .config_ctl_val = 0x10000030,
+       .config_ctl_hi_val = 0x80890263,
+       .config_ctl_hi1_val = 0x00000217,
+       .user_ctl_val = 0x00000000,
+       .user_ctl_hi_val = 0x00100000,
+};
+
+static struct clk_alpha_pll cam_cc_pll2 = {
+       .offset = 0x2000,
+       .vco_table = rivian_ole_vco,
+       .num_vco = ARRAY_SIZE(rivian_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_RIVIAN_EVO],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll2",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_rivian_evo_ops,
+               },
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll3_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll3 = {
+       .offset = 0x3000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll3",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll3_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll3_out_even = {
+       .offset = 0x3000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll3_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll3_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll3_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll3.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll4_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll4 = {
+       .offset = 0x4000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll4",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll4_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll4_out_even = {
+       .offset = 0x4000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll4_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll4_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll4_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll4.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll5_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll5 = {
+       .offset = 0x5000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll5",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll5_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll5_out_even = {
+       .offset = 0x5000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll5_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll5_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll5_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll5.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll6_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll6 = {
+       .offset = 0x6000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll6",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll6_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll6_out_even = {
+       .offset = 0x6000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll6_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll6_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll6_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll6.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll7_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll7 = {
+       .offset = 0x7000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll7",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll7_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll7_out_even = {
+       .offset = 0x7000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll7_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll7_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll7_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll7.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll8_config = {
+       .l = 0x14,
+       .alpha = 0xd555,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll8 = {
+       .offset = 0x8000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll8",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll8_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll8_out_even = {
+       .offset = 0x8000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll8_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll8_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll8_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll8.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll9_config = {
+       .l = 0x32,
+       .alpha = 0x0,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll9 = {
+       .offset = 0x9000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll9",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll9_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll9_out_even = {
+       .offset = 0x9000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll9_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll9_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll9_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll9.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll10_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll10 = {
+       .offset = 0xa000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll10",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll10_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll10_out_even = {
+       .offset = 0xa000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll10_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll10_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll10_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll10.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll11_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll11 = {
+       .offset = 0xb000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll11",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll11_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll11_out_even = {
+       .offset = 0xb000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll11_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll11_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll11_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll11.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct alpha_pll_config cam_cc_pll12_config = {
+       .l = 0x30,
+       .alpha = 0x8aaa,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x82aa299c,
+       .test_ctl_val = 0x00000000,
+       .test_ctl_hi_val = 0x00000003,
+       .test_ctl_hi1_val = 0x00009000,
+       .test_ctl_hi2_val = 0x00000034,
+       .user_ctl_val = 0x00000400,
+       .user_ctl_hi_val = 0x00000005,
+};
+
+static struct clk_alpha_pll cam_cc_pll12 = {
+       .offset = 0xc000,
+       .vco_table = lucid_ole_vco,
+       .num_vco = ARRAY_SIZE(lucid_ole_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_pll12",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_cam_cc_pll12_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv cam_cc_pll12_out_even = {
+       .offset = 0xc000,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_cam_cc_pll12_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_cam_cc_pll12_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_OLE],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_pll12_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &cam_cc_pll12.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_alpha_pll_postdiv_lucid_ole_ops,
+       },
+};
+
+static const struct parent_map cam_cc_parent_map_0[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL0_OUT_MAIN, 1 },
+       { P_CAM_CC_PLL0_OUT_EVEN, 2 },
+       { P_CAM_CC_PLL0_OUT_ODD, 3 },
+       { P_CAM_CC_PLL9_OUT_ODD, 4 },
+       { P_CAM_CC_PLL9_OUT_EVEN, 5 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_0[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll0.clkr.hw },
+       { .hw = &cam_cc_pll0_out_even.clkr.hw },
+       { .hw = &cam_cc_pll0_out_odd.clkr.hw },
+       { .hw = &cam_cc_pll9.clkr.hw },
+       { .hw = &cam_cc_pll9_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_1[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL2_OUT_EVEN, 3 },
+       { P_CAM_CC_PLL2_OUT_MAIN, 5 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_1[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll2.clkr.hw },
+       { .hw = &cam_cc_pll2.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_2[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL8_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_2[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll8_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_3[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL3_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_3[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll3_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_4[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL10_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_4[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll10_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_5[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL4_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_5[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll4_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_6[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL11_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_6[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll11_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_7[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL5_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_7[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll5_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_8[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL12_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_8[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll12_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_9[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL1_OUT_EVEN, 4 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_9[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll1_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_10[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL6_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_10[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll6_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_11[] = {
+       { P_BI_TCXO, 0 },
+       { P_CAM_CC_PLL7_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_11[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &cam_cc_pll7_out_even.clkr.hw },
+};
+
+static const struct parent_map cam_cc_parent_map_12[] = {
+       { P_SLEEP_CLK, 0 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_12[] = {
+       { .index = DT_SLEEP_CLK },
+};
+
+static const struct parent_map cam_cc_parent_map_13_ao[] = {
+       { P_BI_TCXO_AO, 0 },
+};
+
+static const struct clk_parent_data cam_cc_parent_data_13_ao[] = {
+       { .index = DT_BI_TCXO_AO },
+};
+
+static const struct freq_tbl ftbl_cam_cc_bps_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(200000000, P_CAM_CC_PLL8_OUT_EVEN, 1, 0, 0),
+       F(400000000, P_CAM_CC_PLL8_OUT_EVEN, 1, 0, 0),
+       F(480000000, P_CAM_CC_PLL8_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL8_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_bps_clk_src = {
+       .cmd_rcgr = 0x10278,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_2,
+       .freq_tbl = ftbl_cam_cc_bps_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_bps_clk_src",
+               .parent_data = cam_cc_parent_data_2,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_2),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_camnoc_axi_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(300000000, P_CAM_CC_PLL0_OUT_EVEN, 2, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_ODD, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_camnoc_axi_clk_src = {
+       .cmd_rcgr = 0x13de0,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_camnoc_axi_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_camnoc_axi_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_cci_0_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(37500000, P_CAM_CC_PLL0_OUT_EVEN, 16, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_cci_0_clk_src = {
+       .cmd_rcgr = 0x13900,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_cci_0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_cci_0_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_cci_1_clk_src = {
+       .cmd_rcgr = 0x13a30,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_cci_0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_cci_1_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_cci_2_clk_src = {
+       .cmd_rcgr = 0x13b60,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_cci_0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_cci_2_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_cphy_rx_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_MAIN, 3, 0, 0),
+       F(480000000, P_CAM_CC_PLL0_OUT_MAIN, 2.5, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_cphy_rx_clk_src = {
+       .cmd_rcgr = 0x11290,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_cphy_rx_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_cphy_rx_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_cre_clk_src[] = {
+       F(200000000, P_CAM_CC_PLL0_OUT_ODD, 2, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_ODD, 1, 0, 0),
+       F(480000000, P_CAM_CC_PLL9_OUT_EVEN, 1, 0, 0),
+       F(600000000, P_CAM_CC_PLL0_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_cre_clk_src = {
+       .cmd_rcgr = 0x1353c,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_cre_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_cre_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_csi0phytimer_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_EVEN, 1.5, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_csi0phytimer_clk_src = {
+       .cmd_rcgr = 0x15980,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi0phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_csi1phytimer_clk_src = {
+       .cmd_rcgr = 0x15ab8,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi1phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_csi2phytimer_clk_src = {
+       .cmd_rcgr = 0x15bec,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi2phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_csi3phytimer_clk_src = {
+       .cmd_rcgr = 0x15d20,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi3phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_csi4phytimer_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_ODD, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_csi4phytimer_clk_src = {
+       .cmd_rcgr = 0x15e54,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi4phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi4phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_csi5phytimer_clk_src = {
+       .cmd_rcgr = 0x15f88,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi5phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_csi6phytimer_clk_src = {
+       .cmd_rcgr = 0x160bc,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi6phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_csi7phytimer_clk_src = {
+       .cmd_rcgr = 0x161f0,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csi0phytimer_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csi7phytimer_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_csid_clk_src[] = {
+       F(400000000, P_CAM_CC_PLL0_OUT_MAIN, 3, 0, 0),
+       F(480000000, P_CAM_CC_PLL0_OUT_MAIN, 2.5, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_csid_clk_src = {
+       .cmd_rcgr = 0x13ca8,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csid_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_csid_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_fast_ahb_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(300000000, P_CAM_CC_PLL0_OUT_EVEN, 2, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_MAIN, 3, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_fast_ahb_clk_src = {
+       .cmd_rcgr = 0x10018,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_fast_ahb_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_fast_ahb_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_icp_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_ODD, 1, 0, 0),
+       F(480000000, P_CAM_CC_PLL9_OUT_EVEN, 1, 0, 0),
+       F(600000000, P_CAM_CC_PLL0_OUT_MAIN, 2, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_icp_clk_src = {
+       .cmd_rcgr = 0x137c4,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_icp_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_icp_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ife_0_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(466000000, P_CAM_CC_PLL3_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL3_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL3_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL3_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ife_0_clk_src = {
+       .cmd_rcgr = 0x11018,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_3,
+       .freq_tbl = ftbl_cam_cc_ife_0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_0_clk_src",
+               .parent_data = cam_cc_parent_data_3,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_3),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ife_0_dsp_clk_src[] = {
+       F(466000000, P_CAM_CC_PLL10_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL10_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL10_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL10_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ife_0_dsp_clk_src = {
+       .cmd_rcgr = 0x11154,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_4,
+       .freq_tbl = ftbl_cam_cc_ife_0_dsp_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_0_dsp_clk_src",
+               .parent_data = cam_cc_parent_data_4,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_4),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ife_1_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(466000000, P_CAM_CC_PLL4_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL4_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL4_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL4_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ife_1_clk_src = {
+       .cmd_rcgr = 0x12018,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_5,
+       .freq_tbl = ftbl_cam_cc_ife_1_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_1_clk_src",
+               .parent_data = cam_cc_parent_data_5,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_5),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ife_1_dsp_clk_src[] = {
+       F(466000000, P_CAM_CC_PLL11_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL11_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL11_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL11_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ife_1_dsp_clk_src = {
+       .cmd_rcgr = 0x12154,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_6,
+       .freq_tbl = ftbl_cam_cc_ife_1_dsp_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_1_dsp_clk_src",
+               .parent_data = cam_cc_parent_data_6,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_6),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ife_2_clk_src[] = {
+       F(466000000, P_CAM_CC_PLL5_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL5_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL5_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL5_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ife_2_clk_src = {
+       .cmd_rcgr = 0x122a8,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_7,
+       .freq_tbl = ftbl_cam_cc_ife_2_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_2_clk_src",
+               .parent_data = cam_cc_parent_data_7,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_7),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ife_2_dsp_clk_src[] = {
+       F(466000000, P_CAM_CC_PLL12_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL12_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL12_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL12_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ife_2_dsp_clk_src = {
+       .cmd_rcgr = 0x123e4,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_8,
+       .freq_tbl = ftbl_cam_cc_ife_2_dsp_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_2_dsp_clk_src",
+               .parent_data = cam_cc_parent_data_8,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_8),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_ife_lite_clk_src = {
+       .cmd_rcgr = 0x13000,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csid_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_lite_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_ife_lite_csid_clk_src = {
+       .cmd_rcgr = 0x1313c,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_csid_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ife_lite_csid_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_ipe_nps_clk_src[] = {
+       F(455000000, P_CAM_CC_PLL1_OUT_EVEN, 1, 0, 0),
+       F(575000000, P_CAM_CC_PLL1_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL1_OUT_EVEN, 1, 0, 0),
+       F(825000000, P_CAM_CC_PLL1_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_ipe_nps_clk_src = {
+       .cmd_rcgr = 0x103cc,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_9,
+       .freq_tbl = ftbl_cam_cc_ipe_nps_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_ipe_nps_clk_src",
+               .parent_data = cam_cc_parent_data_9,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_9),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_jpeg_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(200000000, P_CAM_CC_PLL0_OUT_ODD, 2, 0, 0),
+       F(400000000, P_CAM_CC_PLL0_OUT_ODD, 1, 0, 0),
+       F(480000000, P_CAM_CC_PLL9_OUT_EVEN, 1, 0, 0),
+       F(600000000, P_CAM_CC_PLL0_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_jpeg_clk_src = {
+       .cmd_rcgr = 0x13674,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_jpeg_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_jpeg_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_mclk0_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(24000000, P_CAM_CC_PLL2_OUT_MAIN, 10, 1, 4),
+       F(68571429, P_CAM_CC_PLL2_OUT_MAIN, 14, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_mclk0_clk_src = {
+       .cmd_rcgr = 0x15000,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk0_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk1_clk_src = {
+       .cmd_rcgr = 0x15130,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk1_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk2_clk_src = {
+       .cmd_rcgr = 0x15260,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk2_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk3_clk_src = {
+       .cmd_rcgr = 0x15390,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk3_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk4_clk_src = {
+       .cmd_rcgr = 0x154c0,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk4_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk5_clk_src = {
+       .cmd_rcgr = 0x155f0,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk5_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk6_clk_src = {
+       .cmd_rcgr = 0x15720,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk6_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 cam_cc_mclk7_clk_src = {
+       .cmd_rcgr = 0x15850,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_1,
+       .freq_tbl = ftbl_cam_cc_mclk0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_mclk7_clk_src",
+               .parent_data = cam_cc_parent_data_1,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_qdss_debug_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(75000000, P_CAM_CC_PLL0_OUT_EVEN, 8, 0, 0),
+       F(150000000, P_CAM_CC_PLL0_OUT_EVEN, 4, 0, 0),
+       F(300000000, P_CAM_CC_PLL0_OUT_MAIN, 4, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_qdss_debug_clk_src = {
+       .cmd_rcgr = 0x13f24,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_qdss_debug_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_qdss_debug_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_sfe_0_clk_src[] = {
+       F(466000000, P_CAM_CC_PLL6_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL6_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL6_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL6_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_sfe_0_clk_src = {
+       .cmd_rcgr = 0x13294,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_10,
+       .freq_tbl = ftbl_cam_cc_sfe_0_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_sfe_0_clk_src",
+               .parent_data = cam_cc_parent_data_10,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_10),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_sfe_1_clk_src[] = {
+       F(466000000, P_CAM_CC_PLL7_OUT_EVEN, 1, 0, 0),
+       F(594000000, P_CAM_CC_PLL7_OUT_EVEN, 1, 0, 0),
+       F(675000000, P_CAM_CC_PLL7_OUT_EVEN, 1, 0, 0),
+       F(785000000, P_CAM_CC_PLL7_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_sfe_1_clk_src = {
+       .cmd_rcgr = 0x133f4,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_11,
+       .freq_tbl = ftbl_cam_cc_sfe_1_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_sfe_1_clk_src",
+               .parent_data = cam_cc_parent_data_11,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_11),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_sleep_clk_src[] = {
+       F(32000, P_SLEEP_CLK, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_sleep_clk_src = {
+       .cmd_rcgr = 0x141a0,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_12,
+       .freq_tbl = ftbl_cam_cc_sleep_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_sleep_clk_src",
+               .parent_data = cam_cc_parent_data_12,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_12),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_slow_ahb_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(80000000, P_CAM_CC_PLL0_OUT_EVEN, 7.5, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_slow_ahb_clk_src = {
+       .cmd_rcgr = 0x10148,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_0,
+       .freq_tbl = ftbl_cam_cc_slow_ahb_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_slow_ahb_clk_src",
+               .parent_data = cam_cc_parent_data_0,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_cam_cc_xo_clk_src[] = {
+       F(19200000, P_BI_TCXO_AO, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 cam_cc_xo_clk_src = {
+       .cmd_rcgr = 0x14070,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = cam_cc_parent_map_13_ao,
+       .freq_tbl = ftbl_cam_cc_xo_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "cam_cc_xo_clk_src",
+               .parent_data = cam_cc_parent_data_13_ao,
+               .num_parents = ARRAY_SIZE(cam_cc_parent_data_13_ao),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_branch cam_cc_bps_ahb_clk = {
+       .halt_reg = 0x10274,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10274,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_bps_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_bps_clk = {
+       .halt_reg = 0x103a4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x103a4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_bps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_bps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_bps_fast_ahb_clk = {
+       .halt_reg = 0x10144,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10144,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_bps_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_camnoc_axi_clk = {
+       .halt_reg = 0x13f0c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13f0c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_camnoc_axi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_camnoc_axi_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_camnoc_dcd_xo_clk = {
+       .halt_reg = 0x13f18,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13f18,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_camnoc_dcd_xo_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_xo_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_camnoc_xo_clk = {
+       .halt_reg = 0x13f1c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13f1c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_camnoc_xo_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_xo_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cci_0_clk = {
+       .halt_reg = 0x13a2c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13a2c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cci_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cci_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cci_1_clk = {
+       .halt_reg = 0x13b5c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13b5c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cci_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cci_1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cci_2_clk = {
+       .halt_reg = 0x13c8c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13c8c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cci_2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cci_2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_core_ahb_clk = {
+       .halt_reg = 0x1406c,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x1406c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_core_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_ahb_clk = {
+       .halt_reg = 0x13c90,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13c90,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_bps_clk = {
+       .halt_reg = 0x103b0,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x103b0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_bps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_bps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_cre_clk = {
+       .halt_reg = 0x1366c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1366c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_cre_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cre_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_fast_ahb_clk = {
+       .halt_reg = 0x13c9c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13c9c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_ife_0_clk = {
+       .halt_reg = 0x11150,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x11150,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_ife_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_ife_1_clk = {
+       .halt_reg = 0x12150,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x12150,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_ife_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_ife_2_clk = {
+       .halt_reg = 0x123e0,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x123e0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_ife_2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_ife_lite_clk = {
+       .halt_reg = 0x13138,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13138,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_ife_lite_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_lite_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_ipe_nps_clk = {
+       .halt_reg = 0x10504,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10504,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_ipe_nps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ipe_nps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_sbi_clk = {
+       .halt_reg = 0x1054c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1054c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_sbi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_sfe_0_clk = {
+       .halt_reg = 0x133cc,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x133cc,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_sfe_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_sfe_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cpas_sfe_1_clk = {
+       .halt_reg = 0x1352c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1352c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cpas_sfe_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_sfe_1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cre_ahb_clk = {
+       .halt_reg = 0x13670,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13670,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cre_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_cre_clk = {
+       .halt_reg = 0x13668,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13668,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_cre_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cre_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi0phytimer_clk = {
+       .halt_reg = 0x15aac,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15aac,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi0phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi0phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi1phytimer_clk = {
+       .halt_reg = 0x15be4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15be4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi1phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi1phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi2phytimer_clk = {
+       .halt_reg = 0x15d18,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15d18,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi2phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi2phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi3phytimer_clk = {
+       .halt_reg = 0x15e4c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15e4c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi3phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi3phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi4phytimer_clk = {
+       .halt_reg = 0x15f80,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15f80,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi4phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi4phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi5phytimer_clk = {
+       .halt_reg = 0x160b4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x160b4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi5phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi5phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi6phytimer_clk = {
+       .halt_reg = 0x161e8,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x161e8,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi6phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi6phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csi7phytimer_clk = {
+       .halt_reg = 0x1631c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1631c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csi7phytimer_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csi7phytimer_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csid_clk = {
+       .halt_reg = 0x13dd4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13dd4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csid_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_csid_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csid_csiphy_rx_clk = {
+       .halt_reg = 0x15ab4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15ab4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csid_csiphy_rx_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy0_clk = {
+       .halt_reg = 0x15ab0,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15ab0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy1_clk = {
+       .halt_reg = 0x15be8,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15be8,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy2_clk = {
+       .halt_reg = 0x15d1c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15d1c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy3_clk = {
+       .halt_reg = 0x15e50,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15e50,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy3_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy4_clk = {
+       .halt_reg = 0x15f84,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x15f84,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy4_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy5_clk = {
+       .halt_reg = 0x160b8,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x160b8,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy5_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy6_clk = {
+       .halt_reg = 0x161ec,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x161ec,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy6_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_csiphy7_clk = {
+       .halt_reg = 0x16320,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x16320,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_csiphy7_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_drv_ahb_clk = {
+       .halt_reg = 0x142d8,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x142d8,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_drv_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_drv_xo_clk = {
+       .halt_reg = 0x142d4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x142d4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_drv_xo_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_xo_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_icp_ahb_clk = {
+       .halt_reg = 0x138fc,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x138fc,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_icp_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_icp_clk = {
+       .halt_reg = 0x138f0,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x138f0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_icp_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_icp_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_0_clk = {
+       .halt_reg = 0x11144,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x11144,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_0_dsp_clk = {
+       .halt_reg = 0x11280,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x11280,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_0_dsp_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_0_dsp_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_0_fast_ahb_clk = {
+       .halt_reg = 0x1128c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1128c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_0_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_1_clk = {
+       .halt_reg = 0x12144,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x12144,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_1_dsp_clk = {
+       .halt_reg = 0x12280,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x12280,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_1_dsp_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_1_dsp_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_1_fast_ahb_clk = {
+       .halt_reg = 0x1228c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1228c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_1_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_2_clk = {
+       .halt_reg = 0x123d4,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x123d4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_2_dsp_clk = {
+       .halt_reg = 0x12510,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x12510,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_2_dsp_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_2_dsp_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_2_fast_ahb_clk = {
+       .halt_reg = 0x1251c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1251c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_2_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_lite_ahb_clk = {
+       .halt_reg = 0x13278,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13278,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_lite_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_lite_clk = {
+       .halt_reg = 0x1312c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1312c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_lite_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_lite_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_lite_cphy_rx_clk = {
+       .halt_reg = 0x13274,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13274,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_lite_cphy_rx_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_cphy_rx_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ife_lite_csid_clk = {
+       .halt_reg = 0x13268,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13268,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ife_lite_csid_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_lite_csid_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ipe_nps_ahb_clk = {
+       .halt_reg = 0x1051c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1051c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ipe_nps_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_slow_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ipe_nps_clk = {
+       .halt_reg = 0x104f8,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x104f8,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ipe_nps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ipe_nps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ipe_nps_fast_ahb_clk = {
+       .halt_reg = 0x10520,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10520,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ipe_nps_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ipe_pps_clk = {
+       .halt_reg = 0x10508,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10508,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ipe_pps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ipe_nps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_ipe_pps_fast_ahb_clk = {
+       .halt_reg = 0x10524,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10524,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_ipe_pps_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_jpeg_1_clk = {
+       .halt_reg = 0x137ac,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x137ac,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_jpeg_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_jpeg_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_jpeg_clk = {
+       .halt_reg = 0x137a0,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x137a0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_jpeg_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_jpeg_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk0_clk = {
+       .halt_reg = 0x1512c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1512c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk1_clk = {
+       .halt_reg = 0x1525c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1525c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk2_clk = {
+       .halt_reg = 0x1538c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1538c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk3_clk = {
+       .halt_reg = 0x154bc,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x154bc,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk3_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk3_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk4_clk = {
+       .halt_reg = 0x155ec,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x155ec,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk4_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk4_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk5_clk = {
+       .halt_reg = 0x1571c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1571c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk5_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk5_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk6_clk = {
+       .halt_reg = 0x1584c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1584c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk6_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk6_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_mclk7_clk = {
+       .halt_reg = 0x1597c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x1597c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_mclk7_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_mclk7_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_qdss_debug_clk = {
+       .halt_reg = 0x14050,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x14050,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_qdss_debug_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_qdss_debug_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_qdss_debug_xo_clk = {
+       .halt_reg = 0x14054,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x14054,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_qdss_debug_xo_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_xo_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_sbi_clk = {
+       .halt_reg = 0x10540,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10540,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_sbi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_ife_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_sbi_fast_ahb_clk = {
+       .halt_reg = 0x10550,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x10550,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_sbi_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_sfe_0_clk = {
+       .halt_reg = 0x133c0,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x133c0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_sfe_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_sfe_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_sfe_0_fast_ahb_clk = {
+       .halt_reg = 0x133d8,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x133d8,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_sfe_0_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_sfe_1_clk = {
+       .halt_reg = 0x13520,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13520,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_sfe_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_sfe_1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch cam_cc_sfe_1_fast_ahb_clk = {
+       .halt_reg = 0x13538,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x13538,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "cam_cc_sfe_1_fast_ahb_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &cam_cc_fast_ahb_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct gdsc cam_cc_bps_gdsc = {
+       .gdscr = 0x10004,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_bps_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_ife_0_gdsc = {
+       .gdscr = 0x11004,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_ife_0_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_ife_1_gdsc = {
+       .gdscr = 0x12004,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_ife_1_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_ife_2_gdsc = {
+       .gdscr = 0x12294,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_ife_2_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_ipe_0_gdsc = {
+       .gdscr = 0x103b8,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_ipe_0_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_sbi_gdsc = {
+       .gdscr = 0x1052c,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_sbi_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_sfe_0_gdsc = {
+       .gdscr = 0x13280,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_sfe_0_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_sfe_1_gdsc = {
+       .gdscr = 0x133e0,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_sfe_1_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc cam_cc_titan_top_gdsc = {
+       .gdscr = 0x14058,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "cam_cc_titan_top_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct clk_regmap *cam_cc_sm8550_clocks[] = {
+       [CAM_CC_BPS_AHB_CLK] = &cam_cc_bps_ahb_clk.clkr,
+       [CAM_CC_BPS_CLK] = &cam_cc_bps_clk.clkr,
+       [CAM_CC_BPS_CLK_SRC] = &cam_cc_bps_clk_src.clkr,
+       [CAM_CC_BPS_FAST_AHB_CLK] = &cam_cc_bps_fast_ahb_clk.clkr,
+       [CAM_CC_CAMNOC_AXI_CLK] = &cam_cc_camnoc_axi_clk.clkr,
+       [CAM_CC_CAMNOC_AXI_CLK_SRC] = &cam_cc_camnoc_axi_clk_src.clkr,
+       [CAM_CC_CAMNOC_DCD_XO_CLK] = &cam_cc_camnoc_dcd_xo_clk.clkr,
+       [CAM_CC_CAMNOC_XO_CLK] = &cam_cc_camnoc_xo_clk.clkr,
+       [CAM_CC_CCI_0_CLK] = &cam_cc_cci_0_clk.clkr,
+       [CAM_CC_CCI_0_CLK_SRC] = &cam_cc_cci_0_clk_src.clkr,
+       [CAM_CC_CCI_1_CLK] = &cam_cc_cci_1_clk.clkr,
+       [CAM_CC_CCI_1_CLK_SRC] = &cam_cc_cci_1_clk_src.clkr,
+       [CAM_CC_CCI_2_CLK] = &cam_cc_cci_2_clk.clkr,
+       [CAM_CC_CCI_2_CLK_SRC] = &cam_cc_cci_2_clk_src.clkr,
+       [CAM_CC_CORE_AHB_CLK] = &cam_cc_core_ahb_clk.clkr,
+       [CAM_CC_CPAS_AHB_CLK] = &cam_cc_cpas_ahb_clk.clkr,
+       [CAM_CC_CPAS_BPS_CLK] = &cam_cc_cpas_bps_clk.clkr,
+       [CAM_CC_CPAS_CRE_CLK] = &cam_cc_cpas_cre_clk.clkr,
+       [CAM_CC_CPAS_FAST_AHB_CLK] = &cam_cc_cpas_fast_ahb_clk.clkr,
+       [CAM_CC_CPAS_IFE_0_CLK] = &cam_cc_cpas_ife_0_clk.clkr,
+       [CAM_CC_CPAS_IFE_1_CLK] = &cam_cc_cpas_ife_1_clk.clkr,
+       [CAM_CC_CPAS_IFE_2_CLK] = &cam_cc_cpas_ife_2_clk.clkr,
+       [CAM_CC_CPAS_IFE_LITE_CLK] = &cam_cc_cpas_ife_lite_clk.clkr,
+       [CAM_CC_CPAS_IPE_NPS_CLK] = &cam_cc_cpas_ipe_nps_clk.clkr,
+       [CAM_CC_CPAS_SBI_CLK] = &cam_cc_cpas_sbi_clk.clkr,
+       [CAM_CC_CPAS_SFE_0_CLK] = &cam_cc_cpas_sfe_0_clk.clkr,
+       [CAM_CC_CPAS_SFE_1_CLK] = &cam_cc_cpas_sfe_1_clk.clkr,
+       [CAM_CC_CPHY_RX_CLK_SRC] = &cam_cc_cphy_rx_clk_src.clkr,
+       [CAM_CC_CRE_AHB_CLK] = &cam_cc_cre_ahb_clk.clkr,
+       [CAM_CC_CRE_CLK] = &cam_cc_cre_clk.clkr,
+       [CAM_CC_CRE_CLK_SRC] = &cam_cc_cre_clk_src.clkr,
+       [CAM_CC_CSI0PHYTIMER_CLK] = &cam_cc_csi0phytimer_clk.clkr,
+       [CAM_CC_CSI0PHYTIMER_CLK_SRC] = &cam_cc_csi0phytimer_clk_src.clkr,
+       [CAM_CC_CSI1PHYTIMER_CLK] = &cam_cc_csi1phytimer_clk.clkr,
+       [CAM_CC_CSI1PHYTIMER_CLK_SRC] = &cam_cc_csi1phytimer_clk_src.clkr,
+       [CAM_CC_CSI2PHYTIMER_CLK] = &cam_cc_csi2phytimer_clk.clkr,
+       [CAM_CC_CSI2PHYTIMER_CLK_SRC] = &cam_cc_csi2phytimer_clk_src.clkr,
+       [CAM_CC_CSI3PHYTIMER_CLK] = &cam_cc_csi3phytimer_clk.clkr,
+       [CAM_CC_CSI3PHYTIMER_CLK_SRC] = &cam_cc_csi3phytimer_clk_src.clkr,
+       [CAM_CC_CSI4PHYTIMER_CLK] = &cam_cc_csi4phytimer_clk.clkr,
+       [CAM_CC_CSI4PHYTIMER_CLK_SRC] = &cam_cc_csi4phytimer_clk_src.clkr,
+       [CAM_CC_CSI5PHYTIMER_CLK] = &cam_cc_csi5phytimer_clk.clkr,
+       [CAM_CC_CSI5PHYTIMER_CLK_SRC] = &cam_cc_csi5phytimer_clk_src.clkr,
+       [CAM_CC_CSI6PHYTIMER_CLK] = &cam_cc_csi6phytimer_clk.clkr,
+       [CAM_CC_CSI6PHYTIMER_CLK_SRC] = &cam_cc_csi6phytimer_clk_src.clkr,
+       [CAM_CC_CSI7PHYTIMER_CLK] = &cam_cc_csi7phytimer_clk.clkr,
+       [CAM_CC_CSI7PHYTIMER_CLK_SRC] = &cam_cc_csi7phytimer_clk_src.clkr,
+       [CAM_CC_CSID_CLK] = &cam_cc_csid_clk.clkr,
+       [CAM_CC_CSID_CLK_SRC] = &cam_cc_csid_clk_src.clkr,
+       [CAM_CC_CSID_CSIPHY_RX_CLK] = &cam_cc_csid_csiphy_rx_clk.clkr,
+       [CAM_CC_CSIPHY0_CLK] = &cam_cc_csiphy0_clk.clkr,
+       [CAM_CC_CSIPHY1_CLK] = &cam_cc_csiphy1_clk.clkr,
+       [CAM_CC_CSIPHY2_CLK] = &cam_cc_csiphy2_clk.clkr,
+       [CAM_CC_CSIPHY3_CLK] = &cam_cc_csiphy3_clk.clkr,
+       [CAM_CC_CSIPHY4_CLK] = &cam_cc_csiphy4_clk.clkr,
+       [CAM_CC_CSIPHY5_CLK] = &cam_cc_csiphy5_clk.clkr,
+       [CAM_CC_CSIPHY6_CLK] = &cam_cc_csiphy6_clk.clkr,
+       [CAM_CC_CSIPHY7_CLK] = &cam_cc_csiphy7_clk.clkr,
+       [CAM_CC_DRV_AHB_CLK] = &cam_cc_drv_ahb_clk.clkr,
+       [CAM_CC_DRV_XO_CLK] = &cam_cc_drv_xo_clk.clkr,
+       [CAM_CC_FAST_AHB_CLK_SRC] = &cam_cc_fast_ahb_clk_src.clkr,
+       [CAM_CC_ICP_AHB_CLK] = &cam_cc_icp_ahb_clk.clkr,
+       [CAM_CC_ICP_CLK] = &cam_cc_icp_clk.clkr,
+       [CAM_CC_ICP_CLK_SRC] = &cam_cc_icp_clk_src.clkr,
+       [CAM_CC_IFE_0_CLK] = &cam_cc_ife_0_clk.clkr,
+       [CAM_CC_IFE_0_CLK_SRC] = &cam_cc_ife_0_clk_src.clkr,
+       [CAM_CC_IFE_0_DSP_CLK] = &cam_cc_ife_0_dsp_clk.clkr,
+       [CAM_CC_IFE_0_DSP_CLK_SRC] = &cam_cc_ife_0_dsp_clk_src.clkr,
+       [CAM_CC_IFE_0_FAST_AHB_CLK] = &cam_cc_ife_0_fast_ahb_clk.clkr,
+       [CAM_CC_IFE_1_CLK] = &cam_cc_ife_1_clk.clkr,
+       [CAM_CC_IFE_1_CLK_SRC] = &cam_cc_ife_1_clk_src.clkr,
+       [CAM_CC_IFE_1_DSP_CLK] = &cam_cc_ife_1_dsp_clk.clkr,
+       [CAM_CC_IFE_1_DSP_CLK_SRC] = &cam_cc_ife_1_dsp_clk_src.clkr,
+       [CAM_CC_IFE_1_FAST_AHB_CLK] = &cam_cc_ife_1_fast_ahb_clk.clkr,
+       [CAM_CC_IFE_2_CLK] = &cam_cc_ife_2_clk.clkr,
+       [CAM_CC_IFE_2_CLK_SRC] = &cam_cc_ife_2_clk_src.clkr,
+       [CAM_CC_IFE_2_DSP_CLK] = &cam_cc_ife_2_dsp_clk.clkr,
+       [CAM_CC_IFE_2_DSP_CLK_SRC] = &cam_cc_ife_2_dsp_clk_src.clkr,
+       [CAM_CC_IFE_2_FAST_AHB_CLK] = &cam_cc_ife_2_fast_ahb_clk.clkr,
+       [CAM_CC_IFE_LITE_AHB_CLK] = &cam_cc_ife_lite_ahb_clk.clkr,
+       [CAM_CC_IFE_LITE_CLK] = &cam_cc_ife_lite_clk.clkr,
+       [CAM_CC_IFE_LITE_CLK_SRC] = &cam_cc_ife_lite_clk_src.clkr,
+       [CAM_CC_IFE_LITE_CPHY_RX_CLK] = &cam_cc_ife_lite_cphy_rx_clk.clkr,
+       [CAM_CC_IFE_LITE_CSID_CLK] = &cam_cc_ife_lite_csid_clk.clkr,
+       [CAM_CC_IFE_LITE_CSID_CLK_SRC] = &cam_cc_ife_lite_csid_clk_src.clkr,
+       [CAM_CC_IPE_NPS_AHB_CLK] = &cam_cc_ipe_nps_ahb_clk.clkr,
+       [CAM_CC_IPE_NPS_CLK] = &cam_cc_ipe_nps_clk.clkr,
+       [CAM_CC_IPE_NPS_CLK_SRC] = &cam_cc_ipe_nps_clk_src.clkr,
+       [CAM_CC_IPE_NPS_FAST_AHB_CLK] = &cam_cc_ipe_nps_fast_ahb_clk.clkr,
+       [CAM_CC_IPE_PPS_CLK] = &cam_cc_ipe_pps_clk.clkr,
+       [CAM_CC_IPE_PPS_FAST_AHB_CLK] = &cam_cc_ipe_pps_fast_ahb_clk.clkr,
+       [CAM_CC_JPEG_1_CLK] = &cam_cc_jpeg_1_clk.clkr,
+       [CAM_CC_JPEG_CLK] = &cam_cc_jpeg_clk.clkr,
+       [CAM_CC_JPEG_CLK_SRC] = &cam_cc_jpeg_clk_src.clkr,
+       [CAM_CC_MCLK0_CLK] = &cam_cc_mclk0_clk.clkr,
+       [CAM_CC_MCLK0_CLK_SRC] = &cam_cc_mclk0_clk_src.clkr,
+       [CAM_CC_MCLK1_CLK] = &cam_cc_mclk1_clk.clkr,
+       [CAM_CC_MCLK1_CLK_SRC] = &cam_cc_mclk1_clk_src.clkr,
+       [CAM_CC_MCLK2_CLK] = &cam_cc_mclk2_clk.clkr,
+       [CAM_CC_MCLK2_CLK_SRC] = &cam_cc_mclk2_clk_src.clkr,
+       [CAM_CC_MCLK3_CLK] = &cam_cc_mclk3_clk.clkr,
+       [CAM_CC_MCLK3_CLK_SRC] = &cam_cc_mclk3_clk_src.clkr,
+       [CAM_CC_MCLK4_CLK] = &cam_cc_mclk4_clk.clkr,
+       [CAM_CC_MCLK4_CLK_SRC] = &cam_cc_mclk4_clk_src.clkr,
+       [CAM_CC_MCLK5_CLK] = &cam_cc_mclk5_clk.clkr,
+       [CAM_CC_MCLK5_CLK_SRC] = &cam_cc_mclk5_clk_src.clkr,
+       [CAM_CC_MCLK6_CLK] = &cam_cc_mclk6_clk.clkr,
+       [CAM_CC_MCLK6_CLK_SRC] = &cam_cc_mclk6_clk_src.clkr,
+       [CAM_CC_MCLK7_CLK] = &cam_cc_mclk7_clk.clkr,
+       [CAM_CC_MCLK7_CLK_SRC] = &cam_cc_mclk7_clk_src.clkr,
+       [CAM_CC_PLL0] = &cam_cc_pll0.clkr,
+       [CAM_CC_PLL0_OUT_EVEN] = &cam_cc_pll0_out_even.clkr,
+       [CAM_CC_PLL0_OUT_ODD] = &cam_cc_pll0_out_odd.clkr,
+       [CAM_CC_PLL1] = &cam_cc_pll1.clkr,
+       [CAM_CC_PLL1_OUT_EVEN] = &cam_cc_pll1_out_even.clkr,
+       [CAM_CC_PLL2] = &cam_cc_pll2.clkr,
+       [CAM_CC_PLL3] = &cam_cc_pll3.clkr,
+       [CAM_CC_PLL3_OUT_EVEN] = &cam_cc_pll3_out_even.clkr,
+       [CAM_CC_PLL4] = &cam_cc_pll4.clkr,
+       [CAM_CC_PLL4_OUT_EVEN] = &cam_cc_pll4_out_even.clkr,
+       [CAM_CC_PLL5] = &cam_cc_pll5.clkr,
+       [CAM_CC_PLL5_OUT_EVEN] = &cam_cc_pll5_out_even.clkr,
+       [CAM_CC_PLL6] = &cam_cc_pll6.clkr,
+       [CAM_CC_PLL6_OUT_EVEN] = &cam_cc_pll6_out_even.clkr,
+       [CAM_CC_PLL7] = &cam_cc_pll7.clkr,
+       [CAM_CC_PLL7_OUT_EVEN] = &cam_cc_pll7_out_even.clkr,
+       [CAM_CC_PLL8] = &cam_cc_pll8.clkr,
+       [CAM_CC_PLL8_OUT_EVEN] = &cam_cc_pll8_out_even.clkr,
+       [CAM_CC_PLL9] = &cam_cc_pll9.clkr,
+       [CAM_CC_PLL9_OUT_EVEN] = &cam_cc_pll9_out_even.clkr,
+       [CAM_CC_PLL10] = &cam_cc_pll10.clkr,
+       [CAM_CC_PLL10_OUT_EVEN] = &cam_cc_pll10_out_even.clkr,
+       [CAM_CC_PLL11] = &cam_cc_pll11.clkr,
+       [CAM_CC_PLL11_OUT_EVEN] = &cam_cc_pll11_out_even.clkr,
+       [CAM_CC_PLL12] = &cam_cc_pll12.clkr,
+       [CAM_CC_PLL12_OUT_EVEN] = &cam_cc_pll12_out_even.clkr,
+       [CAM_CC_QDSS_DEBUG_CLK] = &cam_cc_qdss_debug_clk.clkr,
+       [CAM_CC_QDSS_DEBUG_CLK_SRC] = &cam_cc_qdss_debug_clk_src.clkr,
+       [CAM_CC_QDSS_DEBUG_XO_CLK] = &cam_cc_qdss_debug_xo_clk.clkr,
+       [CAM_CC_SBI_CLK] = &cam_cc_sbi_clk.clkr,
+       [CAM_CC_SBI_FAST_AHB_CLK] = &cam_cc_sbi_fast_ahb_clk.clkr,
+       [CAM_CC_SFE_0_CLK] = &cam_cc_sfe_0_clk.clkr,
+       [CAM_CC_SFE_0_CLK_SRC] = &cam_cc_sfe_0_clk_src.clkr,
+       [CAM_CC_SFE_0_FAST_AHB_CLK] = &cam_cc_sfe_0_fast_ahb_clk.clkr,
+       [CAM_CC_SFE_1_CLK] = &cam_cc_sfe_1_clk.clkr,
+       [CAM_CC_SFE_1_CLK_SRC] = &cam_cc_sfe_1_clk_src.clkr,
+       [CAM_CC_SFE_1_FAST_AHB_CLK] = &cam_cc_sfe_1_fast_ahb_clk.clkr,
+       [CAM_CC_SLEEP_CLK_SRC] = &cam_cc_sleep_clk_src.clkr,
+       [CAM_CC_SLOW_AHB_CLK_SRC] = &cam_cc_slow_ahb_clk_src.clkr,
+       [CAM_CC_XO_CLK_SRC] = &cam_cc_xo_clk_src.clkr,
+};
+
+static struct gdsc *cam_cc_sm8550_gdscs[] = {
+       [CAM_CC_BPS_GDSC] = &cam_cc_bps_gdsc,
+       [CAM_CC_IFE_0_GDSC] = &cam_cc_ife_0_gdsc,
+       [CAM_CC_IFE_1_GDSC] = &cam_cc_ife_1_gdsc,
+       [CAM_CC_IFE_2_GDSC] = &cam_cc_ife_2_gdsc,
+       [CAM_CC_IPE_0_GDSC] = &cam_cc_ipe_0_gdsc,
+       [CAM_CC_SBI_GDSC] = &cam_cc_sbi_gdsc,
+       [CAM_CC_SFE_0_GDSC] = &cam_cc_sfe_0_gdsc,
+       [CAM_CC_SFE_1_GDSC] = &cam_cc_sfe_1_gdsc,
+       [CAM_CC_TITAN_TOP_GDSC] = &cam_cc_titan_top_gdsc,
+};
+
+static const struct qcom_reset_map cam_cc_sm8550_resets[] = {
+       [CAM_CC_BPS_BCR] = { 0x10000 },
+       [CAM_CC_DRV_BCR] = { 0x142d0 },
+       [CAM_CC_ICP_BCR] = { 0x137c0 },
+       [CAM_CC_IFE_0_BCR] = { 0x11000 },
+       [CAM_CC_IFE_1_BCR] = { 0x12000 },
+       [CAM_CC_IFE_2_BCR] = { 0x12290 },
+       [CAM_CC_IPE_0_BCR] = { 0x103b4 },
+       [CAM_CC_QDSS_DEBUG_BCR] = { 0x13f20 },
+       [CAM_CC_SBI_BCR] = { 0x10528 },
+       [CAM_CC_SFE_0_BCR] = { 0x1327c },
+       [CAM_CC_SFE_1_BCR] = { 0x133dc },
+};
+
+static const struct regmap_config cam_cc_sm8550_regmap_config = {
+       .reg_bits = 32,
+       .reg_stride = 4,
+       .val_bits = 32,
+       .max_register = 0x16320,
+       .fast_io = true,
+};
+
+static struct qcom_cc_desc cam_cc_sm8550_desc = {
+       .config = &cam_cc_sm8550_regmap_config,
+       .clks = cam_cc_sm8550_clocks,
+       .num_clks = ARRAY_SIZE(cam_cc_sm8550_clocks),
+       .resets = cam_cc_sm8550_resets,
+       .num_resets = ARRAY_SIZE(cam_cc_sm8550_resets),
+       .gdscs = cam_cc_sm8550_gdscs,
+       .num_gdscs = ARRAY_SIZE(cam_cc_sm8550_gdscs),
+};
+
+static const struct of_device_id cam_cc_sm8550_match_table[] = {
+       { .compatible = "qcom,sm8550-camcc" },
+       { }
+};
+MODULE_DEVICE_TABLE(of, cam_cc_sm8550_match_table);
+
+static int cam_cc_sm8550_probe(struct platform_device *pdev)
+{
+       struct regmap *regmap;
+       int ret;
+
+       ret = devm_pm_runtime_enable(&pdev->dev);
+       if (ret)
+               return ret;
+
+       ret = pm_runtime_resume_and_get(&pdev->dev);
+       if (ret)
+               return ret;
+
+       regmap = qcom_cc_map(pdev, &cam_cc_sm8550_desc);
+       if (IS_ERR(regmap)) {
+               pm_runtime_put(&pdev->dev);
+               return PTR_ERR(regmap);
+       }
+
+       clk_lucid_ole_pll_configure(&cam_cc_pll0, regmap, &cam_cc_pll0_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll1, regmap, &cam_cc_pll1_config);
+       clk_rivian_evo_pll_configure(&cam_cc_pll2, regmap, &cam_cc_pll2_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll3, regmap, &cam_cc_pll3_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll4, regmap, &cam_cc_pll4_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll5, regmap, &cam_cc_pll5_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll6, regmap, &cam_cc_pll6_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll7, regmap, &cam_cc_pll7_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll8, regmap, &cam_cc_pll8_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll9, regmap, &cam_cc_pll9_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll10, regmap, &cam_cc_pll10_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll11, regmap, &cam_cc_pll11_config);
+       clk_lucid_ole_pll_configure(&cam_cc_pll12, regmap, &cam_cc_pll12_config);
+
+       /*
+        * Keep clocks always enabled:
+        *      cam_cc_gdsc_clk
+        *      cam_cc_sleep_clk
+        */
+       regmap_update_bits(regmap, 0x1419c, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x142cc, BIT(0), BIT(0));
+
+       ret = qcom_cc_really_probe(pdev, &cam_cc_sm8550_desc, regmap);
+
+       pm_runtime_put(&pdev->dev);
+
+       return ret;
+}
+
+static struct platform_driver cam_cc_sm8550_driver = {
+       .probe = cam_cc_sm8550_probe,
+       .driver = {
+               .name = "cam_cc-sm8550",
+               .of_match_table = cam_cc_sm8550_match_table,
+       },
+};
+
+module_platform_driver(cam_cc_sm8550_driver);
+
+MODULE_DESCRIPTION("QTI CAMCC SM8550 Driver");
+MODULE_LICENSE("GPL");
index e4ef645f65d1fd9ca1889d3b170100dae6b71814..05898d2a8b22cd35460722bb63586eec25fc0691 100644 (file)
@@ -271,6 +271,7 @@ EXPORT_SYMBOL_GPL(clk_alpha_pll_regs);
 #define LUCID_EVO_ENABLE_VOTE_RUN       BIT(25)
 #define LUCID_EVO_PLL_L_VAL_MASK        GENMASK(15, 0)
 #define LUCID_EVO_PLL_CAL_L_VAL_SHIFT  16
+#define LUCID_OLE_PLL_RINGOSC_CAL_L_VAL_SHIFT  24
 
 /* ZONDA PLL specific */
 #define ZONDA_PLL_OUT_MASK     0xf
@@ -2119,6 +2120,34 @@ void clk_lucid_evo_pll_configure(struct clk_alpha_pll *pll, struct regmap *regma
 }
 EXPORT_SYMBOL_GPL(clk_lucid_evo_pll_configure);
 
+void clk_lucid_ole_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
+                                const struct alpha_pll_config *config)
+{
+       u32 lval = config->l;
+
+       lval |= TRION_PLL_CAL_VAL << LUCID_EVO_PLL_CAL_L_VAL_SHIFT;
+       lval |= TRION_PLL_CAL_VAL << LUCID_OLE_PLL_RINGOSC_CAL_L_VAL_SHIFT;
+       clk_alpha_pll_write_config(regmap, PLL_L_VAL(pll), lval);
+       clk_alpha_pll_write_config(regmap, PLL_ALPHA_VAL(pll), config->alpha);
+       clk_alpha_pll_write_config(regmap, PLL_CONFIG_CTL(pll), config->config_ctl_val);
+       clk_alpha_pll_write_config(regmap, PLL_CONFIG_CTL_U(pll), config->config_ctl_hi_val);
+       clk_alpha_pll_write_config(regmap, PLL_CONFIG_CTL_U1(pll), config->config_ctl_hi1_val);
+       clk_alpha_pll_write_config(regmap, PLL_USER_CTL(pll), config->user_ctl_val);
+       clk_alpha_pll_write_config(regmap, PLL_USER_CTL_U(pll), config->user_ctl_hi_val);
+       clk_alpha_pll_write_config(regmap, PLL_TEST_CTL(pll), config->test_ctl_val);
+       clk_alpha_pll_write_config(regmap, PLL_TEST_CTL_U(pll), config->test_ctl_hi_val);
+       clk_alpha_pll_write_config(regmap, PLL_TEST_CTL_U1(pll), config->test_ctl_hi1_val);
+       clk_alpha_pll_write_config(regmap, PLL_TEST_CTL_U2(pll), config->test_ctl_hi2_val);
+
+       /* Disable PLL output */
+       regmap_update_bits(regmap, PLL_MODE(pll), PLL_OUTCTRL, 0);
+
+       /* Set operation mode to STANDBY and de-assert the reset */
+       regmap_write(regmap, PLL_OPMODE(pll), PLL_STANDBY);
+       regmap_update_bits(regmap, PLL_MODE(pll), PLL_RESET_N, PLL_RESET_N);
+}
+EXPORT_SYMBOL_GPL(clk_lucid_ole_pll_configure);
+
 static int alpha_pll_lucid_evo_enable(struct clk_hw *hw)
 {
        struct clk_alpha_pll *pll = to_clk_alpha_pll(hw);
@@ -2479,3 +2508,66 @@ const struct clk_ops clk_alpha_pll_stromer_ops = {
        .set_rate = clk_alpha_pll_stromer_set_rate,
 };
 EXPORT_SYMBOL_GPL(clk_alpha_pll_stromer_ops);
+
+static int clk_alpha_pll_stromer_plus_set_rate(struct clk_hw *hw,
+                                              unsigned long rate,
+                                              unsigned long prate)
+{
+       struct clk_alpha_pll *pll = to_clk_alpha_pll(hw);
+       u32 l, alpha_width = pll_alpha_width(pll);
+       int ret, pll_mode;
+       u64 a;
+
+       rate = alpha_pll_round_rate(rate, prate, &l, &a, alpha_width);
+
+       ret = regmap_read(pll->clkr.regmap, PLL_MODE(pll), &pll_mode);
+       if (ret)
+               return ret;
+
+       regmap_write(pll->clkr.regmap, PLL_MODE(pll), 0);
+
+       /* Delay of 2 output clock ticks required until output is disabled */
+       udelay(1);
+
+       regmap_write(pll->clkr.regmap, PLL_L_VAL(pll), l);
+
+       if (alpha_width > ALPHA_BITWIDTH)
+               a <<= alpha_width - ALPHA_BITWIDTH;
+
+       regmap_write(pll->clkr.regmap, PLL_ALPHA_VAL(pll), a);
+       regmap_write(pll->clkr.regmap, PLL_ALPHA_VAL_U(pll),
+                                       a >> ALPHA_BITWIDTH);
+
+       regmap_write(pll->clkr.regmap, PLL_MODE(pll), PLL_BYPASSNL);
+
+       /* Wait five micro seconds or more */
+       udelay(5);
+       regmap_update_bits(pll->clkr.regmap, PLL_MODE(pll), PLL_RESET_N,
+                          PLL_RESET_N);
+
+       /* The lock time should be less than 50 micro seconds worst case */
+       usleep_range(50, 60);
+
+       ret = wait_for_pll_enable_lock(pll);
+       if (ret) {
+               pr_err("Wait for PLL enable lock failed [%s] %d\n",
+                      clk_hw_get_name(hw), ret);
+               return ret;
+       }
+
+       if (pll_mode & PLL_OUTCTRL)
+               regmap_update_bits(pll->clkr.regmap, PLL_MODE(pll), PLL_OUTCTRL,
+                                  PLL_OUTCTRL);
+
+       return 0;
+}
+
+const struct clk_ops clk_alpha_pll_stromer_plus_ops = {
+       .prepare = clk_alpha_pll_enable,
+       .unprepare = clk_alpha_pll_disable,
+       .is_enabled = clk_alpha_pll_is_enabled,
+       .recalc_rate = clk_alpha_pll_recalc_rate,
+       .determine_rate = clk_alpha_pll_stromer_determine_rate,
+       .set_rate = clk_alpha_pll_stromer_plus_set_rate,
+};
+EXPORT_SYMBOL_GPL(clk_alpha_pll_stromer_plus_ops);
index e4bd863027ab63701b72e93f8943c6287dae7358..a1a75bb12fe88bb5466d0ccce7561a6a788466ae 100644 (file)
@@ -152,6 +152,7 @@ extern const struct clk_ops clk_alpha_pll_postdiv_ops;
 extern const struct clk_ops clk_alpha_pll_huayra_ops;
 extern const struct clk_ops clk_alpha_pll_postdiv_ro_ops;
 extern const struct clk_ops clk_alpha_pll_stromer_ops;
+extern const struct clk_ops clk_alpha_pll_stromer_plus_ops;
 
 extern const struct clk_ops clk_alpha_pll_fabia_ops;
 extern const struct clk_ops clk_alpha_pll_fixed_fabia_ops;
@@ -199,6 +200,8 @@ void clk_zonda_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
                             const struct alpha_pll_config *config);
 void clk_lucid_evo_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
                                 const struct alpha_pll_config *config);
+void clk_lucid_ole_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
+                                const struct alpha_pll_config *config);
 void clk_rivian_evo_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
                                  const struct alpha_pll_config *config);
 void clk_stromer_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
index 53f205a3f183c1530cb549c2ff33fc98216bf47e..fe24b4abeab48085eac2dc587f997251fa9c9b71 100644 (file)
@@ -250,13 +250,11 @@ static int qcom_msm8996_cbf_icc_register(struct platform_device *pdev, struct cl
        return 0;
 }
 
-static int qcom_msm8996_cbf_icc_remove(struct platform_device *pdev)
+static void qcom_msm8996_cbf_icc_remove(struct platform_device *pdev)
 {
        struct icc_provider *provider = platform_get_drvdata(pdev);
 
        icc_clk_unregister(provider);
-
-       return 0;
 }
 #define qcom_msm8996_cbf_icc_sync_state icc_sync_state
 #else
@@ -266,7 +264,7 @@ static int qcom_msm8996_cbf_icc_register(struct platform_device *pdev,  struct c
 
        return 0;
 }
-#define qcom_msm8996_cbf_icc_remove(pdev) (0)
+#define qcom_msm8996_cbf_icc_remove(pdev) { }
 #define qcom_msm8996_cbf_icc_sync_state NULL
 #endif
 
@@ -340,9 +338,9 @@ static int qcom_msm8996_cbf_probe(struct platform_device *pdev)
        return qcom_msm8996_cbf_icc_register(pdev, &cbf_mux.clkr.hw);
 }
 
-static int qcom_msm8996_cbf_remove(struct platform_device *pdev)
+static void qcom_msm8996_cbf_remove(struct platform_device *pdev)
 {
-       return qcom_msm8996_cbf_icc_remove(pdev);
+       qcom_msm8996_cbf_icc_remove(pdev);
 }
 
 static const struct of_device_id qcom_msm8996_cbf_match_table[] = {
@@ -354,7 +352,7 @@ MODULE_DEVICE_TABLE(of, qcom_msm8996_cbf_match_table);
 
 static struct platform_driver qcom_msm8996_cbf_driver = {
        .probe = qcom_msm8996_cbf_probe,
-       .remove = qcom_msm8996_cbf_remove,
+       .remove_new = qcom_msm8996_cbf_remove,
        .driver = {
                .name = "qcom-msm8996-cbf",
                .of_match_table = qcom_msm8996_cbf_match_table,
index 86f728dc69e554848eb3485f99d5750c90d860ae..705352aff0677e5d1891f63f1a882a8ccf1ea83f 100644 (file)
@@ -44,6 +44,10 @@ static void __clk_hfpll_init_once(struct clk_hw *hw)
                regmap_write(regmap, hd->user_reg, regval);
        }
 
+       /* Write L_VAL from conf if it exist */
+       if (hd->l_val)
+               regmap_write(regmap, hd->l_reg, hd->l_val);
+
        if (hd->droop_reg)
                regmap_write(regmap, hd->droop_reg, hd->droop_val);
 
index 2a57b2fb2f2f5db3955f930b9e1f9e79ecb0c00c..27b9effcb3fdf5d82c78651a0f04d6f8f51b69f5 100644 (file)
@@ -18,6 +18,7 @@ struct hfpll_data {
        u32 status_reg;
        u8  lock_bit;
 
+       u32 l_val;
        u32 droop_val;
        u32 config_val;
        u32 user_val;
index e22baf3a7112aadfc9715df18a9a24303aad57bc..5183c74b074f8d3f705a5b4c9e4fbce49d32cfba 100644 (file)
@@ -158,17 +158,11 @@ static int clk_rcg2_set_parent(struct clk_hw *hw, u8 index)
 static unsigned long
 calc_rate(unsigned long rate, u32 m, u32 n, u32 mode, u32 hid_div)
 {
-       if (hid_div) {
-               rate *= 2;
-               rate /= hid_div + 1;
-       }
+       if (hid_div)
+               rate = mult_frac(rate, 2, hid_div + 1);
 
-       if (mode) {
-               u64 tmp = rate;
-               tmp *= m;
-               do_div(tmp, n);
-               rate = tmp;
-       }
+       if (mode)
+               rate = mult_frac(rate, m, n);
 
        return rate;
 }
index 4c5b552b47b6a1ed9da0d7278280cfd05c0765dd..5d853fd432940cdcfea6321a9f2564c32ee4ad09 100644 (file)
@@ -350,6 +350,7 @@ DEFINE_CLK_RPMH_VRM(ln_bb_clk3, _a2, "lnbclka3", 2);
 
 DEFINE_CLK_RPMH_VRM(ln_bb_clk1, _a4, "lnbclka1", 4);
 DEFINE_CLK_RPMH_VRM(ln_bb_clk2, _a4, "lnbclka2", 4);
+DEFINE_CLK_RPMH_VRM(ln_bb_clk3, _a4, "lnbclka3", 4);
 
 DEFINE_CLK_RPMH_VRM(ln_bb_clk2, _g4, "lnbclkg2", 4);
 DEFINE_CLK_RPMH_VRM(ln_bb_clk3, _g4, "lnbclkg3", 4);
@@ -717,6 +718,25 @@ static const struct clk_rpmh_desc clk_rpmh_sdx75 = {
        .num_clks = ARRAY_SIZE(sdx75_rpmh_clocks),
 };
 
+static struct clk_hw *sm4450_rpmh_clocks[] = {
+       [RPMH_CXO_CLK]          = &clk_rpmh_bi_tcxo_div4.hw,
+       [RPMH_CXO_CLK_A]        = &clk_rpmh_bi_tcxo_div4_ao.hw,
+       [RPMH_LN_BB_CLK2]       = &clk_rpmh_ln_bb_clk2_a4.hw,
+       [RPMH_LN_BB_CLK2_A]     = &clk_rpmh_ln_bb_clk2_a4_ao.hw,
+       [RPMH_LN_BB_CLK3]       = &clk_rpmh_ln_bb_clk3_a4.hw,
+       [RPMH_LN_BB_CLK3_A]     = &clk_rpmh_ln_bb_clk3_a4_ao.hw,
+       [RPMH_RF_CLK1]          = &clk_rpmh_rf_clk1_a.hw,
+       [RPMH_RF_CLK1_A]        = &clk_rpmh_rf_clk1_a_ao.hw,
+       [RPMH_RF_CLK5]          = &clk_rpmh_rf_clk5_a.hw,
+       [RPMH_RF_CLK5_A]        = &clk_rpmh_rf_clk5_a_ao.hw,
+       [RPMH_IPA_CLK]          = &clk_rpmh_ipa.hw,
+};
+
+static const struct clk_rpmh_desc clk_rpmh_sm4450 = {
+       .clks = sm4450_rpmh_clocks,
+       .num_clks = ARRAY_SIZE(sm4450_rpmh_clocks),
+};
+
 static struct clk_hw *of_clk_rpmh_hw_get(struct of_phandle_args *clkspec,
                                         void *data)
 {
@@ -810,6 +830,7 @@ static const struct of_device_id clk_rpmh_match_table[] = {
        { .compatible = "qcom,sdx55-rpmh-clk",  .data = &clk_rpmh_sdx55},
        { .compatible = "qcom,sdx65-rpmh-clk",  .data = &clk_rpmh_sdx65},
        { .compatible = "qcom,sdx75-rpmh-clk",  .data = &clk_rpmh_sdx75},
+       { .compatible = "qcom,sm4450-rpmh-clk", .data = &clk_rpmh_sm4450},
        { .compatible = "qcom,sm6350-rpmh-clk", .data = &clk_rpmh_sm6350},
        { .compatible = "qcom,sm8150-rpmh-clk", .data = &clk_rpmh_sm8150},
        { .compatible = "qcom,sm8250-rpmh-clk", .data = &clk_rpmh_sm8250},
index 0191fc0dd7dac1f87a9c44fcb6b9e59850aee57a..8602c02047d0481b28e7c7da75ddb1564aa3da14 100644 (file)
@@ -574,6 +574,16 @@ static const struct clk_smd_rpm *sm_qnoc_icc_clks[] = {
        &clk_smd_rpm_bus_2_snoc_clk,
 };
 
+static const struct clk_smd_rpm *qcm2290_icc_clks[] = {
+       &clk_smd_rpm_bimc_clk,
+       &clk_smd_rpm_bus_1_cnoc_clk,
+       &clk_smd_rpm_mmnrt_clk,
+       &clk_smd_rpm_mmrt_clk,
+       &clk_smd_rpm_qup_clk,
+       &clk_smd_rpm_bus_2_snoc_clk,
+       &clk_smd_rpm_cpuss_gnoc_clk,
+};
+
 static struct clk_smd_rpm *msm8909_clks[] = {
        [RPM_SMD_QPIC_CLK]              = &clk_smd_rpm_qpic_clk,
        [RPM_SMD_QPIC_CLK_A]            = &clk_smd_rpm_qpic_a_clk,
@@ -1189,15 +1199,13 @@ static struct clk_smd_rpm *qcm2290_clks[] = {
        [RPM_SMD_PKA_A_CLK] = &clk_smd_rpm_pka_a_clk,
        [RPM_SMD_BIMC_GPU_CLK] = &clk_smd_rpm_bimc_gpu_clk,
        [RPM_SMD_BIMC_GPU_A_CLK] = &clk_smd_rpm_bimc_gpu_a_clk,
-       [RPM_SMD_CPUSS_GNOC_CLK] = &clk_smd_rpm_cpuss_gnoc_clk,
-       [RPM_SMD_CPUSS_GNOC_A_CLK] = &clk_smd_rpm_cpuss_gnoc_a_clk,
 };
 
 static const struct rpm_smd_clk_desc rpm_clk_qcm2290 = {
        .clks = qcm2290_clks,
        .num_clks = ARRAY_SIZE(qcm2290_clks),
-       .icc_clks = sm_qnoc_icc_clks,
-       .num_icc_clks = ARRAY_SIZE(sm_qnoc_icc_clks)
+       .icc_clks = qcm2290_icc_clks,
+       .num_icc_clks = ARRAY_SIZE(qcm2290_icc_clks)
 };
 
 static const struct of_device_id rpm_smd_clk_match_table[] = {
index 19dc2b71cacf0062efd9370588589f7791021144..4aba47e8700d2723ea7613b3a5fbc70fd7a16e12 100644 (file)
@@ -3,8 +3,9 @@
  * Copyright (c) 2023, The Linux Foundation. All rights reserved.
  */
 #include <linux/clk-provider.h>
+#include <linux/mod_devicetable.h>
 #include <linux/module.h>
-#include <linux/of_device.h>
+#include <linux/platform_device.h>
 #include <linux/regmap.h>
 
 #include <dt-bindings/clock/qcom,gcc-ipq5018.h>
@@ -128,7 +129,6 @@ static struct clk_alpha_pll_postdiv gpll0 = {
                },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -143,7 +143,6 @@ static struct clk_alpha_pll_postdiv gpll2 = {
                },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -158,7 +157,6 @@ static struct clk_alpha_pll_postdiv gpll4 = {
                },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
index b02026f8549b2f3459b09aedda520bc0fbbe5606..f98591148a9767864cc529ae6ecb76a49727c8f2 100644 (file)
@@ -71,7 +71,6 @@ static struct clk_fixed_factor gpll0_div2 = {
                                &gpll0_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_fixed_factor_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -85,7 +84,6 @@ static struct clk_alpha_pll_postdiv gpll0 = {
                                &gpll0_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -114,7 +112,6 @@ static struct clk_alpha_pll_postdiv gpll2 = {
                                &gpll2_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -154,7 +151,6 @@ static struct clk_alpha_pll_postdiv gpll4 = {
                                &gpll4_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
index 6120fbbc5de053796e264d5bd6d7e542734a364f..b366912cd6480e181f4903bb2170202b9546ab85 100644 (file)
@@ -72,7 +72,6 @@ static struct clk_fixed_factor gpll0_out_main_div2 = {
                                &gpll0_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_fixed_factor_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -86,7 +85,6 @@ static struct clk_alpha_pll_postdiv gpll0 = {
                                &gpll0_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -161,7 +159,6 @@ static struct clk_alpha_pll_postdiv gpll6 = {
                                &gpll6_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -192,7 +189,6 @@ static struct clk_alpha_pll_postdiv gpll4 = {
                                &gpll4_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -243,7 +239,6 @@ static struct clk_alpha_pll_postdiv gpll2 = {
                                &gpll2_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -274,7 +269,6 @@ static struct clk_alpha_pll_postdiv nss_crypto_pll = {
                                &nss_crypto_pll_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -2125,6 +2119,26 @@ static struct clk_branch gcc_blsp1_qup5_spi_apps_clk = {
        },
 };
 
+static struct clk_branch gcc_blsp1_qup6_i2c_apps_clk = {
+       .halt_reg = 0x07010,
+       .clkr = {
+               .enable_reg = 0x07010,
+               .enable_mask = BIT(0),
+               .hw.init = &(struct clk_init_data){
+                       .name = "gcc_blsp1_qup6_i2c_apps_clk",
+                       .parent_hws = (const struct clk_hw *[]){
+                                       &blsp1_qup6_i2c_apps_clk_src.clkr.hw },
+                       .num_parents = 1,
+                       /*
+                        * RPM uses QUP6 I2C to communicate with the external
+                        * PMIC so it must not be disabled.
+                        */
+                       .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
 static struct clk_branch gcc_blsp1_qup6_spi_apps_clk = {
        .halt_reg = 0x0700c,
        .clkr = {
@@ -4281,6 +4295,7 @@ static struct clk_regmap *gcc_ipq6018_clks[] = {
        [GCC_BLSP1_QUP4_SPI_APPS_CLK] = &gcc_blsp1_qup4_spi_apps_clk.clkr,
        [GCC_BLSP1_QUP5_I2C_APPS_CLK] = &gcc_blsp1_qup5_i2c_apps_clk.clkr,
        [GCC_BLSP1_QUP5_SPI_APPS_CLK] = &gcc_blsp1_qup5_spi_apps_clk.clkr,
+       [GCC_BLSP1_QUP6_I2C_APPS_CLK] = &gcc_blsp1_qup6_i2c_apps_clk.clkr,
        [GCC_BLSP1_QUP6_SPI_APPS_CLK] = &gcc_blsp1_qup6_spi_apps_clk.clkr,
        [GCC_BLSP1_UART1_APPS_CLK] = &gcc_blsp1_uart1_apps_clk.clkr,
        [GCC_BLSP1_UART2_APPS_CLK] = &gcc_blsp1_uart2_apps_clk.clkr,
index 63ac2ced76bb9539d49ac690516c1cdd09b86638..b7faf12a511a16f786d81643a1f90296212886f2 100644 (file)
@@ -75,7 +75,6 @@ static struct clk_fixed_factor gpll0_out_main_div2 = {
                                &gpll0_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_fixed_factor_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -121,7 +120,6 @@ static struct clk_alpha_pll_postdiv gpll2 = {
                                &gpll2_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -154,7 +152,6 @@ static struct clk_alpha_pll_postdiv gpll4 = {
                                &gpll4_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -188,7 +185,6 @@ static struct clk_alpha_pll_postdiv gpll6 = {
                                &gpll6_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -201,7 +197,6 @@ static struct clk_fixed_factor gpll6_out_main_div2 = {
                                &gpll6_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_fixed_factor_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
@@ -266,7 +261,6 @@ static struct clk_alpha_pll_postdiv nss_crypto_pll = {
                                &nss_crypto_pll_main.clkr.hw },
                .num_parents = 1,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
-               .flags = CLK_SET_RATE_PARENT,
        },
 };
 
index 8f430367299e667bab2dcea1b9c7142cc7d2f2cc..e8190108e1aef394eb546981b1cea8a6f6f0e2ba 100644 (file)
@@ -87,7 +87,6 @@ static struct clk_fixed_factor gpll0_out_main_div2 = {
                        &gpll0_main.clkr.hw
                },
                .num_parents = 1,
-               .flags = CLK_SET_RATE_PARENT,
                .ops = &clk_fixed_factor_ops,
        },
 };
@@ -102,7 +101,6 @@ static struct clk_alpha_pll_postdiv gpll0 = {
                        &gpll0_main.clkr.hw
                },
                .num_parents = 1,
-               .flags = CLK_SET_RATE_PARENT,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
        },
 };
@@ -132,7 +130,6 @@ static struct clk_alpha_pll_postdiv gpll4 = {
                        &gpll4_main.clkr.hw
                },
                .num_parents = 1,
-               .flags = CLK_SET_RATE_PARENT,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
        },
 };
@@ -162,7 +159,6 @@ static struct clk_alpha_pll_postdiv gpll2 = {
                        &gpll2_main.clkr.hw
                },
                .num_parents = 1,
-               .flags = CLK_SET_RATE_PARENT,
                .ops = &clk_alpha_pll_postdiv_ro_ops,
        },
 };
index 14dcc3f036683c55169bde385f4d043e818a4705..e7b03a17514a5d964d341ceefaa7b249678aa773 100644 (file)
@@ -244,71 +244,6 @@ static const struct clk_parent_data gcc_xo_gpll0_gpll4_gpll0_early_div[] = {
        { .hw = &gpll0_early_div.hw }
 };
 
-static const struct freq_tbl ftbl_system_noc_clk_src[] = {
-       F(19200000, P_XO, 1, 0, 0),
-       F(50000000, P_GPLL0_EARLY_DIV, 6, 0, 0),
-       F(100000000, P_GPLL0, 6, 0, 0),
-       F(150000000, P_GPLL0, 4, 0, 0),
-       F(200000000, P_GPLL0, 3, 0, 0),
-       F(240000000, P_GPLL0, 2.5, 0, 0),
-       { }
-};
-
-static struct clk_rcg2 system_noc_clk_src = {
-       .cmd_rcgr = 0x0401c,
-       .hid_width = 5,
-       .parent_map = gcc_xo_gpll0_gpll0_early_div_map,
-       .freq_tbl = ftbl_system_noc_clk_src,
-       .clkr.hw.init = &(struct clk_init_data){
-               .name = "system_noc_clk_src",
-               .parent_data = gcc_xo_gpll0_gpll0_early_div,
-               .num_parents = ARRAY_SIZE(gcc_xo_gpll0_gpll0_early_div),
-               .ops = &clk_rcg2_ops,
-       },
-};
-
-static const struct freq_tbl ftbl_config_noc_clk_src[] = {
-       F(19200000, P_XO, 1, 0, 0),
-       F(37500000, P_GPLL0, 16, 0, 0),
-       F(75000000, P_GPLL0, 8, 0, 0),
-       { }
-};
-
-static struct clk_rcg2 config_noc_clk_src = {
-       .cmd_rcgr = 0x0500c,
-       .hid_width = 5,
-       .parent_map = gcc_xo_gpll0_map,
-       .freq_tbl = ftbl_config_noc_clk_src,
-       .clkr.hw.init = &(struct clk_init_data){
-               .name = "config_noc_clk_src",
-               .parent_data = gcc_xo_gpll0,
-               .num_parents = ARRAY_SIZE(gcc_xo_gpll0),
-               .ops = &clk_rcg2_ops,
-       },
-};
-
-static const struct freq_tbl ftbl_periph_noc_clk_src[] = {
-       F(19200000, P_XO, 1, 0, 0),
-       F(37500000, P_GPLL0, 16, 0, 0),
-       F(50000000, P_GPLL0, 12, 0, 0),
-       F(75000000, P_GPLL0, 8, 0, 0),
-       F(100000000, P_GPLL0, 6, 0, 0),
-       { }
-};
-
-static struct clk_rcg2 periph_noc_clk_src = {
-       .cmd_rcgr = 0x06014,
-       .hid_width = 5,
-       .parent_map = gcc_xo_gpll0_map,
-       .freq_tbl = ftbl_periph_noc_clk_src,
-       .clkr.hw.init = &(struct clk_init_data){
-               .name = "periph_noc_clk_src",
-               .parent_data = gcc_xo_gpll0,
-               .num_parents = ARRAY_SIZE(gcc_xo_gpll0),
-               .ops = &clk_rcg2_ops,
-       },
-};
-
 static const struct freq_tbl ftbl_usb30_master_clk_src[] = {
        F(19200000, P_XO, 1, 0, 0),
        F(120000000, P_GPLL0, 5, 0, 0),
@@ -1297,11 +1232,7 @@ static struct clk_branch gcc_mmss_noc_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_mmss_noc_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED,
+                       .flags = CLK_IGNORE_UNUSED,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1464,11 +1395,6 @@ static struct clk_branch gcc_usb_phy_cfg_ahb2phy_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_usb_phy_cfg_ahb2phy_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1498,11 +1424,6 @@ static struct clk_branch gcc_sdcc1_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_sdcc1_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1549,11 +1470,6 @@ static struct clk_branch gcc_sdcc2_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_sdcc2_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1583,11 +1499,6 @@ static struct clk_branch gcc_sdcc3_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_sdcc3_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1617,11 +1528,6 @@ static struct clk_branch gcc_sdcc4_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_sdcc4_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1635,11 +1541,6 @@ static struct clk_branch gcc_blsp1_ahb_clk = {
                .enable_mask = BIT(17),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_blsp1_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -1977,11 +1878,6 @@ static struct clk_branch gcc_blsp2_ahb_clk = {
                .enable_mask = BIT(15),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_blsp2_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2318,11 +2214,6 @@ static struct clk_branch gcc_pdm_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pdm_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2353,11 +2244,6 @@ static struct clk_branch gcc_prng_ahb_clk = {
                .enable_mask = BIT(13),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_prng_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2370,11 +2256,6 @@ static struct clk_branch gcc_tsif_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_tsif_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2422,11 +2303,6 @@ static struct clk_branch gcc_boot_rom_ahb_clk = {
                .enable_mask = BIT(10),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_boot_rom_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2520,11 +2396,6 @@ static struct clk_branch gcc_pcie_0_slv_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_0_slv_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2537,11 +2408,6 @@ static struct clk_branch gcc_pcie_0_mstr_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_0_mstr_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2554,11 +2420,6 @@ static struct clk_branch gcc_pcie_0_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_0_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2606,11 +2467,6 @@ static struct clk_branch gcc_pcie_1_slv_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_1_slv_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2623,11 +2479,6 @@ static struct clk_branch gcc_pcie_1_mstr_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_1_mstr_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2640,11 +2491,6 @@ static struct clk_branch gcc_pcie_1_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_1_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2692,11 +2538,6 @@ static struct clk_branch gcc_pcie_2_slv_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_2_slv_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2709,11 +2550,6 @@ static struct clk_branch gcc_pcie_2_mstr_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_2_mstr_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2726,11 +2562,6 @@ static struct clk_branch gcc_pcie_2_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_2_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2778,11 +2609,6 @@ static struct clk_branch gcc_pcie_phy_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_pcie_phy_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -2829,11 +2655,6 @@ static struct clk_branch gcc_ufs_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_ufs_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3060,11 +2881,7 @@ static struct clk_branch gcc_aggre0_snoc_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_aggre0_snoc_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
+                       .flags = CLK_IS_CRITICAL,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3077,11 +2894,7 @@ static struct clk_branch gcc_aggre0_cnoc_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_aggre0_cnoc_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
+                       .flags = CLK_IS_CRITICAL,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3094,11 +2907,7 @@ static struct clk_branch gcc_smmu_aggre0_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_smmu_aggre0_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
+                       .flags = CLK_IS_CRITICAL,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3111,11 +2920,7 @@ static struct clk_branch gcc_smmu_aggre0_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_smmu_aggre0_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
+                       .flags = CLK_IS_CRITICAL,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3162,10 +2967,6 @@ static struct clk_branch gcc_dcc_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_dcc_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3178,10 +2979,6 @@ static struct clk_branch gcc_aggre0_noc_mpu_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_aggre0_noc_mpu_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3194,11 +2991,6 @@ static struct clk_branch gcc_qspi_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_qspi_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &periph_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
-                       .flags = CLK_SET_RATE_PARENT,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3347,10 +3139,6 @@ static struct clk_branch gcc_mss_cfg_ahb_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_mss_cfg_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &config_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3363,10 +3151,6 @@ static struct clk_branch gcc_mss_mnoc_bimc_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_mss_mnoc_bimc_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3379,10 +3163,6 @@ static struct clk_branch gcc_mss_snoc_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_mss_snoc_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3395,10 +3175,6 @@ static struct clk_branch gcc_mss_q6_bimc_axi_clk = {
                .enable_mask = BIT(0),
                .hw.init = &(struct clk_init_data){
                        .name = "gcc_mss_q6_bimc_axi_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &system_noc_clk_src.clkr.hw,
-                       },
-                       .num_parents = 1,
                        .ops = &clk_branch2_ops,
                },
        },
@@ -3495,9 +3271,6 @@ static struct clk_regmap *gcc_msm8996_clocks[] = {
        [GPLL0] = &gpll0.clkr,
        [GPLL4_EARLY] = &gpll4_early.clkr,
        [GPLL4] = &gpll4.clkr,
-       [SYSTEM_NOC_CLK_SRC] = &system_noc_clk_src.clkr,
-       [CONFIG_NOC_CLK_SRC] = &config_noc_clk_src.clkr,
-       [PERIPH_NOC_CLK_SRC] = &periph_noc_clk_src.clkr,
        [USB30_MASTER_CLK_SRC] = &usb30_master_clk_src.clkr,
        [USB30_MOCK_UTMI_CLK_SRC] = &usb30_mock_utmi_clk_src.clkr,
        [USB3_PHY_AUX_CLK_SRC] = &usb3_phy_aux_clk_src.clkr,
diff --git a/drivers/clk/qcom/gcc-sm4450.c b/drivers/clk/qcom/gcc-sm4450.c
new file mode 100644 (file)
index 0000000..31abe27
--- /dev/null
@@ -0,0 +1,2898 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright (c) 2023, Qualcomm Innovation Center, Inc. All rights reserved.
+ */
+
+#include <linux/clk-provider.h>
+#include <linux/mod_devicetable.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+
+#include <dt-bindings/clock/qcom,sm4450-gcc.h>
+
+#include "clk-alpha-pll.h"
+#include "clk-branch.h"
+#include "clk-rcg.h"
+#include "clk-regmap.h"
+#include "clk-regmap-divider.h"
+#include "clk-regmap-mux.h"
+#include "clk-regmap-phy-mux.h"
+#include "gdsc.h"
+#include "reset.h"
+
+enum {
+       DT_BI_TCXO,
+       DT_SLEEP_CLK,
+       DT_PCIE_0_PIPE_CLK,
+       DT_UFS_PHY_RX_SYMBOL_0_CLK,
+       DT_UFS_PHY_RX_SYMBOL_1_CLK,
+       DT_UFS_PHY_TX_SYMBOL_0_CLK,
+       DT_USB3_PHY_WRAPPER_GCC_USB30_PIPE_CLK,
+};
+
+enum {
+       P_BI_TCXO,
+       P_GCC_GPLL0_OUT_EVEN,
+       P_GCC_GPLL0_OUT_MAIN,
+       P_GCC_GPLL0_OUT_ODD,
+       P_GCC_GPLL1_OUT_MAIN,
+       P_GCC_GPLL3_OUT_MAIN,
+       P_GCC_GPLL4_OUT_MAIN,
+       P_GCC_GPLL9_OUT_MAIN,
+       P_GCC_GPLL10_OUT_MAIN,
+       P_SLEEP_CLK,
+       P_UFS_PHY_RX_SYMBOL_0_CLK,
+       P_UFS_PHY_RX_SYMBOL_1_CLK,
+       P_UFS_PHY_TX_SYMBOL_0_CLK,
+       P_USB3_PHY_WRAPPER_GCC_USB30_PIPE_CLK,
+};
+
+static const struct pll_vco lucid_evo_vco[] = {
+       { 249600000, 2020000000, 0 },
+};
+
+static struct clk_alpha_pll gcc_gpll0 = {
+       .offset = 0x0,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr = {
+               .enable_reg = 0x62018,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpll0",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_fixed_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct clk_div_table post_div_table_gcc_gpll0_out_even[] = {
+       { 0x1, 2 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv gcc_gpll0_out_even = {
+       .offset = 0x0,
+       .post_div_shift = 10,
+       .post_div_table = post_div_table_gcc_gpll0_out_even,
+       .num_post_div = ARRAY_SIZE(post_div_table_gcc_gpll0_out_even),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_gpll0_out_even",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &gcc_gpll0.clkr.hw,
+               },
+               .num_parents = 1,
+               .ops = &clk_alpha_pll_postdiv_lucid_evo_ops,
+       },
+};
+
+static const struct clk_div_table post_div_table_gcc_gpll0_out_odd[] = {
+       { 0x2, 3 },
+       { }
+};
+
+static struct clk_alpha_pll_postdiv gcc_gpll0_out_odd = {
+       .offset = 0x0,
+       .post_div_shift = 14,
+       .post_div_table = post_div_table_gcc_gpll0_out_odd,
+       .num_post_div = ARRAY_SIZE(post_div_table_gcc_gpll0_out_odd),
+       .width = 4,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_gpll0_out_odd",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &gcc_gpll0.clkr.hw,
+               },
+               .num_parents = 1,
+               .ops = &clk_alpha_pll_postdiv_lucid_evo_ops,
+       },
+};
+
+static struct clk_alpha_pll gcc_gpll1 = {
+       .offset = 0x1000,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr = {
+               .enable_reg = 0x62018,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpll1",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_fixed_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct alpha_pll_config gcc_gpll3_config = {
+       .l = 0x14,
+       .alpha = 0xd555,
+       .config_ctl_val = 0x20485699,
+       .config_ctl_hi_val = 0x00182261,
+       .config_ctl_hi1_val = 0x32aa299c,
+       .user_ctl_val = 0x00000000,
+       .user_ctl_hi_val = 0x00000805,
+};
+
+static struct clk_alpha_pll gcc_gpll3 = {
+       .offset = 0x3000,
+       .vco_table = lucid_evo_vco,
+       .num_vco = ARRAY_SIZE(lucid_evo_vco),
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr = {
+               .enable_reg = 0x62018,
+               .enable_mask = BIT(3),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpll3",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_lucid_evo_ops,
+               },
+       },
+};
+
+static struct clk_alpha_pll gcc_gpll4 = {
+       .offset = 0x4000,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr = {
+               .enable_reg = 0x62018,
+               .enable_mask = BIT(4),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpll4",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_fixed_lucid_evo_ops,
+               },
+       },
+};
+
+static struct clk_alpha_pll gcc_gpll9 = {
+       .offset = 0x9000,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr = {
+               .enable_reg = 0x62018,
+               .enable_mask = BIT(9),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpll9",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_fixed_lucid_evo_ops,
+               },
+       },
+};
+
+static struct clk_alpha_pll gcc_gpll10 = {
+       .offset = 0xa000,
+       .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID_EVO],
+       .clkr = {
+               .enable_reg = 0x62018,
+               .enable_mask = BIT(10),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpll10",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_BI_TCXO,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_alpha_pll_fixed_lucid_evo_ops,
+               },
+       },
+};
+
+static const struct parent_map gcc_parent_map_0[] = {
+       { P_BI_TCXO, 0 },
+       { P_GCC_GPLL0_OUT_MAIN, 1 },
+       { P_GCC_GPLL0_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data gcc_parent_data_0[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &gcc_gpll0.clkr.hw },
+       { .hw = &gcc_gpll0_out_even.clkr.hw },
+};
+
+static const struct parent_map gcc_parent_map_1[] = {
+       { P_BI_TCXO, 0 },
+       { P_GCC_GPLL0_OUT_MAIN, 1 },
+       { P_SLEEP_CLK, 5 },
+       { P_GCC_GPLL0_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data gcc_parent_data_1[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &gcc_gpll0.clkr.hw },
+       { .index = DT_SLEEP_CLK },
+       { .hw = &gcc_gpll0_out_even.clkr.hw },
+};
+
+static const struct parent_map gcc_parent_map_2[] = {
+       { P_BI_TCXO, 0 },
+       { P_GCC_GPLL0_OUT_MAIN, 1 },
+       { P_GCC_GPLL1_OUT_MAIN, 4 },
+       { P_GCC_GPLL4_OUT_MAIN, 5 },
+       { P_GCC_GPLL0_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data gcc_parent_data_2[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &gcc_gpll0.clkr.hw },
+       { .hw = &gcc_gpll1.clkr.hw },
+       { .hw = &gcc_gpll4.clkr.hw },
+       { .hw = &gcc_gpll0_out_even.clkr.hw },
+};
+
+static const struct parent_map gcc_parent_map_3[] = {
+       { P_BI_TCXO, 0 },
+       { P_SLEEP_CLK, 5 },
+};
+
+static const struct clk_parent_data gcc_parent_data_3[] = {
+       { .index = DT_BI_TCXO },
+       { .index = DT_SLEEP_CLK },
+};
+
+static const struct parent_map gcc_parent_map_4[] = {
+       { P_BI_TCXO, 0 },
+       { P_GCC_GPLL0_OUT_MAIN, 1 },
+       { P_GCC_GPLL0_OUT_ODD, 2 },
+       { P_GCC_GPLL10_OUT_MAIN, 3 },
+       { P_GCC_GPLL0_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data gcc_parent_data_4[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &gcc_gpll0.clkr.hw },
+       { .hw = &gcc_gpll0_out_odd.clkr.hw },
+       { .hw = &gcc_gpll10.clkr.hw },
+       { .hw = &gcc_gpll0_out_even.clkr.hw },
+};
+
+static const struct parent_map gcc_parent_map_5[] = {
+       { P_BI_TCXO, 0 },
+};
+
+static const struct clk_parent_data gcc_parent_data_5[] = {
+       { .index = DT_BI_TCXO },
+};
+
+static const struct parent_map gcc_parent_map_6[] = {
+       { P_BI_TCXO, 0 },
+       { P_GCC_GPLL0_OUT_MAIN, 1 },
+       { P_GCC_GPLL9_OUT_MAIN, 2 },
+       { P_GCC_GPLL4_OUT_MAIN, 5 },
+       { P_GCC_GPLL0_OUT_EVEN, 6 },
+};
+
+static const struct clk_parent_data gcc_parent_data_6[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &gcc_gpll0.clkr.hw },
+       { .hw = &gcc_gpll9.clkr.hw },
+       { .hw = &gcc_gpll4.clkr.hw },
+       { .hw = &gcc_gpll0_out_even.clkr.hw },
+};
+
+static const struct parent_map gcc_parent_map_7[] = {
+       { P_UFS_PHY_RX_SYMBOL_0_CLK, 0 },
+       { P_BI_TCXO, 2 },
+};
+
+static const struct clk_parent_data gcc_parent_data_7[] = {
+       { .index = DT_UFS_PHY_RX_SYMBOL_0_CLK },
+       { .index = DT_BI_TCXO },
+};
+
+static const struct parent_map gcc_parent_map_8[] = {
+       { P_UFS_PHY_RX_SYMBOL_1_CLK, 0 },
+       { P_BI_TCXO, 2 },
+};
+
+static const struct clk_parent_data gcc_parent_data_8[] = {
+       { .index = DT_UFS_PHY_RX_SYMBOL_1_CLK },
+       { .index = DT_BI_TCXO },
+};
+
+static const struct parent_map gcc_parent_map_9[] = {
+       { P_UFS_PHY_TX_SYMBOL_0_CLK, 0 },
+       { P_BI_TCXO, 2 },
+};
+
+static const struct clk_parent_data gcc_parent_data_9[] = {
+       { .index = DT_UFS_PHY_TX_SYMBOL_0_CLK },
+       { .index = DT_BI_TCXO },
+};
+
+static const struct parent_map gcc_parent_map_10[] = {
+       { P_USB3_PHY_WRAPPER_GCC_USB30_PIPE_CLK, 0 },
+       { P_BI_TCXO, 2 },
+};
+
+static const struct clk_parent_data gcc_parent_data_10[] = {
+       { .index = DT_USB3_PHY_WRAPPER_GCC_USB30_PIPE_CLK },
+       { .index = DT_BI_TCXO },
+};
+
+static const struct parent_map gcc_parent_map_11[] = {
+       { P_BI_TCXO, 0 },
+       { P_GCC_GPLL0_OUT_MAIN, 1 },
+       { P_GCC_GPLL3_OUT_MAIN, 5 },
+};
+
+static const struct clk_parent_data gcc_parent_data_11[] = {
+       { .index = DT_BI_TCXO },
+       { .hw = &gcc_gpll0.clkr.hw },
+       { .hw = &gcc_gpll3.clkr.hw },
+};
+
+static struct clk_regmap_phy_mux gcc_pcie_0_pipe_clk_src = {
+       .reg = 0x7b060,
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_pipe_clk_src",
+                       .parent_data = &(const struct clk_parent_data) {
+                               .index = DT_PCIE_0_PIPE_CLK,
+                       },
+                       .num_parents = 1,
+                       .ops = &clk_regmap_phy_mux_ops,
+               },
+       },
+};
+
+static struct clk_regmap_mux gcc_ufs_phy_rx_symbol_0_clk_src = {
+       .reg = 0x87060,
+       .shift = 0,
+       .width = 2,
+       .parent_map = gcc_parent_map_7,
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_rx_symbol_0_clk_src",
+                       .parent_data = gcc_parent_data_7,
+                       .num_parents = ARRAY_SIZE(gcc_parent_data_7),
+                       .ops = &clk_regmap_mux_closest_ops,
+               },
+       },
+};
+
+static struct clk_regmap_mux gcc_ufs_phy_rx_symbol_1_clk_src = {
+       .reg = 0x870d0,
+       .shift = 0,
+       .width = 2,
+       .parent_map = gcc_parent_map_8,
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_rx_symbol_1_clk_src",
+                       .parent_data = gcc_parent_data_8,
+                       .num_parents = ARRAY_SIZE(gcc_parent_data_8),
+                       .ops = &clk_regmap_mux_closest_ops,
+               },
+       },
+};
+
+static struct clk_regmap_mux gcc_ufs_phy_tx_symbol_0_clk_src = {
+       .reg = 0x87050,
+       .shift = 0,
+       .width = 2,
+       .parent_map = gcc_parent_map_9,
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_tx_symbol_0_clk_src",
+                       .parent_data = gcc_parent_data_9,
+                       .num_parents = ARRAY_SIZE(gcc_parent_data_9),
+                       .ops = &clk_regmap_mux_closest_ops,
+               },
+       },
+};
+
+static struct clk_regmap_mux gcc_usb3_prim_phy_pipe_clk_src = {
+       .reg = 0x49068,
+       .shift = 0,
+       .width = 2,
+       .parent_map = gcc_parent_map_10,
+       .clkr = {
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb3_prim_phy_pipe_clk_src",
+                       .parent_data = gcc_parent_data_10,
+                       .num_parents = ARRAY_SIZE(gcc_parent_data_10),
+                       .ops = &clk_regmap_mux_closest_ops,
+               },
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_gp1_clk_src[] = {
+       F(50000000, P_GCC_GPLL0_OUT_EVEN, 6, 0, 0),
+       F(100000000, P_GCC_GPLL0_OUT_MAIN, 6, 0, 0),
+       F(200000000, P_GCC_GPLL0_OUT_MAIN, 3, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_gp1_clk_src = {
+       .cmd_rcgr = 0x74004,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_1,
+       .freq_tbl = ftbl_gcc_gp1_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_gp1_clk_src",
+               .parent_data = gcc_parent_data_1,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 gcc_gp2_clk_src = {
+       .cmd_rcgr = 0x75004,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_1,
+       .freq_tbl = ftbl_gcc_gp1_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_gp2_clk_src",
+               .parent_data = gcc_parent_data_1,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 gcc_gp3_clk_src = {
+       .cmd_rcgr = 0x76004,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_1,
+       .freq_tbl = ftbl_gcc_gp1_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_gp3_clk_src",
+               .parent_data = gcc_parent_data_1,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_1),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_pcie_0_aux_clk_src[] = {
+       F(9600000, P_BI_TCXO, 2, 0, 0),
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_pcie_0_aux_clk_src = {
+       .cmd_rcgr = 0x7b064,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_3,
+       .freq_tbl = ftbl_gcc_pcie_0_aux_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_pcie_0_aux_clk_src",
+               .parent_data = gcc_parent_data_3,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_3),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_pcie_0_phy_rchng_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(100000000, P_GCC_GPLL0_OUT_MAIN, 6, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_pcie_0_phy_rchng_clk_src = {
+       .cmd_rcgr = 0x7b048,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_pcie_0_phy_rchng_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_pcie_0_phy_rchng_clk_src",
+               .parent_data = gcc_parent_data_0,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_pdm2_clk_src[] = {
+       F(60000000, P_GCC_GPLL0_OUT_MAIN, 10, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_pdm2_clk_src = {
+       .cmd_rcgr = 0x43010,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_pdm2_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_pdm2_clk_src",
+               .parent_data = gcc_parent_data_0,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_qupv3_wrap0_s0_clk_src[] = {
+       F(7372800, P_GCC_GPLL0_OUT_EVEN, 1, 384, 15625),
+       F(14745600, P_GCC_GPLL0_OUT_EVEN, 1, 768, 15625),
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(29491200, P_GCC_GPLL0_OUT_EVEN, 1, 1536, 15625),
+       F(32000000, P_GCC_GPLL0_OUT_EVEN, 1, 8, 75),
+       F(48000000, P_GCC_GPLL0_OUT_EVEN, 1, 4, 25),
+       F(64000000, P_GCC_GPLL0_OUT_EVEN, 1, 16, 75),
+       F(75000000, P_GCC_GPLL0_OUT_EVEN, 4, 0, 0),
+       F(80000000, P_GCC_GPLL0_OUT_EVEN, 1, 4, 15),
+       F(96000000, P_GCC_GPLL0_OUT_EVEN, 1, 8, 25),
+       F(100000000, P_GCC_GPLL0_OUT_MAIN, 6, 0, 0),
+       F(102400000, P_GCC_GPLL0_OUT_EVEN, 1, 128, 375),
+       F(112000000, P_GCC_GPLL0_OUT_EVEN, 1, 28, 75),
+       F(117964800, P_GCC_GPLL0_OUT_EVEN, 1, 6144, 15625),
+       F(120000000, P_GCC_GPLL0_OUT_EVEN, 2.5, 0, 0),
+       { }
+};
+
+static struct clk_init_data gcc_qupv3_wrap0_s0_clk_src_init = {
+       .name = "gcc_qupv3_wrap0_s0_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap0_s0_clk_src = {
+       .cmd_rcgr = 0x27014,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap0_s0_clk_src_init,
+};
+
+static const struct freq_tbl ftbl_gcc_qupv3_wrap0_s1_clk_src[] = {
+       F(7372800, P_GCC_GPLL0_OUT_EVEN, 1, 384, 15625),
+       F(14745600, P_GCC_GPLL0_OUT_EVEN, 1, 768, 15625),
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       F(29491200, P_GCC_GPLL0_OUT_EVEN, 1, 1536, 15625),
+       F(32000000, P_GCC_GPLL0_OUT_EVEN, 1, 8, 75),
+       F(48000000, P_GCC_GPLL0_OUT_EVEN, 1, 4, 25),
+       F(64000000, P_GCC_GPLL0_OUT_EVEN, 1, 16, 75),
+       F(75000000, P_GCC_GPLL0_OUT_EVEN, 4, 0, 0),
+       F(80000000, P_GCC_GPLL0_OUT_EVEN, 1, 4, 15),
+       F(96000000, P_GCC_GPLL0_OUT_EVEN, 1, 8, 25),
+       F(100000000, P_GCC_GPLL0_OUT_MAIN, 6, 0, 0),
+       { }
+};
+
+static struct clk_init_data gcc_qupv3_wrap0_s1_clk_src_init = {
+       .name = "gcc_qupv3_wrap0_s1_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap0_s1_clk_src = {
+       .cmd_rcgr = 0x27148,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap0_s1_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap0_s2_clk_src_init = {
+       .name = "gcc_qupv3_wrap0_s2_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap0_s2_clk_src = {
+       .cmd_rcgr = 0x2727c,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap0_s2_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap0_s3_clk_src_init = {
+       .name = "gcc_qupv3_wrap0_s3_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap0_s3_clk_src = {
+       .cmd_rcgr = 0x273b0,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap0_s3_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap0_s4_clk_src_init = {
+       .name = "gcc_qupv3_wrap0_s4_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap0_s4_clk_src = {
+       .cmd_rcgr = 0x274e4,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap0_s4_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap1_s0_clk_src_init = {
+       .name = "gcc_qupv3_wrap1_s0_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap1_s0_clk_src = {
+       .cmd_rcgr = 0x28014,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap1_s0_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap1_s1_clk_src_init = {
+       .name = "gcc_qupv3_wrap1_s1_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap1_s1_clk_src = {
+       .cmd_rcgr = 0x28148,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap1_s1_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap1_s2_clk_src_init = {
+       .name = "gcc_qupv3_wrap1_s2_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap1_s2_clk_src = {
+       .cmd_rcgr = 0x2827c,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap1_s2_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap1_s3_clk_src_init = {
+       .name = "gcc_qupv3_wrap1_s3_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap1_s3_clk_src = {
+       .cmd_rcgr = 0x283b0,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap1_s3_clk_src_init,
+};
+
+static struct clk_init_data gcc_qupv3_wrap1_s4_clk_src_init = {
+       .name = "gcc_qupv3_wrap1_s4_clk_src",
+       .parent_data = gcc_parent_data_0,
+       .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+       .flags = CLK_SET_RATE_PARENT,
+       .ops = &clk_rcg2_shared_ops,
+};
+
+static struct clk_rcg2 gcc_qupv3_wrap1_s4_clk_src = {
+       .cmd_rcgr = 0x284e4,
+       .mnd_width = 16,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_qupv3_wrap0_s1_clk_src,
+       .clkr.hw.init = &gcc_qupv3_wrap1_s4_clk_src_init,
+};
+
+static const struct freq_tbl ftbl_gcc_sdcc1_apps_clk_src[] = {
+       F(144000, P_BI_TCXO, 16, 3, 25),
+       F(400000, P_BI_TCXO, 12, 1, 4),
+       F(20000000, P_GCC_GPLL0_OUT_EVEN, 5, 1, 3),
+       F(25000000, P_GCC_GPLL0_OUT_EVEN, 12, 0, 0),
+       F(50000000, P_GCC_GPLL0_OUT_EVEN, 6, 0, 0),
+       F(100000000, P_GCC_GPLL0_OUT_ODD, 2, 0, 0),
+       F(192000000, P_GCC_GPLL10_OUT_MAIN, 2, 0, 0),
+       F(384000000, P_GCC_GPLL10_OUT_MAIN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_sdcc1_apps_clk_src = {
+       .cmd_rcgr = 0xb3010,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_4,
+       .freq_tbl = ftbl_gcc_sdcc1_apps_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_sdcc1_apps_clk_src",
+               .parent_data = gcc_parent_data_4,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_4),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_floor_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_sdcc1_ice_core_clk_src[] = {
+       F(100000000, P_GCC_GPLL0_OUT_ODD, 2, 0, 0),
+       F(150000000, P_GCC_GPLL0_OUT_EVEN, 2, 0, 0),
+       F(300000000, P_GCC_GPLL0_OUT_EVEN, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_sdcc1_ice_core_clk_src = {
+       .cmd_rcgr = 0xb3030,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_4,
+       .freq_tbl = ftbl_gcc_sdcc1_ice_core_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_sdcc1_ice_core_clk_src",
+               .parent_data = gcc_parent_data_4,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_4),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_floor_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_sdcc2_apps_clk_src[] = {
+       F(400000, P_BI_TCXO, 12, 1, 4),
+       F(25000000, P_GCC_GPLL0_OUT_EVEN, 12, 0, 0),
+       F(50000000, P_GCC_GPLL0_OUT_EVEN, 6, 0, 0),
+       F(100000000, P_GCC_GPLL0_OUT_EVEN, 3, 0, 0),
+       F(202000000, P_GCC_GPLL9_OUT_MAIN, 4, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_sdcc2_apps_clk_src = {
+       .cmd_rcgr = 0x24014,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_6,
+       .freq_tbl = ftbl_gcc_sdcc2_apps_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_sdcc2_apps_clk_src",
+               .parent_data = gcc_parent_data_6,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_6),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_floor_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_ufs_phy_axi_clk_src[] = {
+       F(25000000, P_GCC_GPLL0_OUT_EVEN, 12, 0, 0),
+       F(75000000, P_GCC_GPLL0_OUT_EVEN, 4, 0, 0),
+       F(150000000, P_GCC_GPLL0_OUT_MAIN, 4, 0, 0),
+       F(300000000, P_GCC_GPLL0_OUT_MAIN, 2, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_ufs_phy_axi_clk_src = {
+       .cmd_rcgr = 0x8702c,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_ufs_phy_axi_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_ufs_phy_axi_clk_src",
+               .parent_data = gcc_parent_data_0,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_ufs_phy_ice_core_clk_src[] = {
+       F(100000000, P_GCC_GPLL0_OUT_MAIN, 6, 0, 0),
+       F(200000000, P_GCC_GPLL0_OUT_MAIN, 3, 0, 0),
+       F(403000000, P_GCC_GPLL4_OUT_MAIN, 2, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_ufs_phy_ice_core_clk_src = {
+       .cmd_rcgr = 0x87074,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_2,
+       .freq_tbl = ftbl_gcc_ufs_phy_ice_core_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_ufs_phy_ice_core_clk_src",
+               .parent_data = gcc_parent_data_2,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_2),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 gcc_ufs_phy_phy_aux_clk_src = {
+       .cmd_rcgr = 0x870a8,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_5,
+       .freq_tbl = ftbl_gcc_pcie_0_aux_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_ufs_phy_phy_aux_clk_src",
+               .parent_data = gcc_parent_data_5,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_5),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_ufs_phy_unipro_core_clk_src[] = {
+       F(75000000, P_GCC_GPLL0_OUT_EVEN, 4, 0, 0),
+       F(150000000, P_GCC_GPLL0_OUT_MAIN, 4, 0, 0),
+       F(300000000, P_GCC_GPLL0_OUT_MAIN, 2, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_ufs_phy_unipro_core_clk_src = {
+       .cmd_rcgr = 0x8708c,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_ufs_phy_unipro_core_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_ufs_phy_unipro_core_clk_src",
+               .parent_data = gcc_parent_data_0,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_usb30_prim_master_clk_src[] = {
+       F(66666667, P_GCC_GPLL0_OUT_EVEN, 4.5, 0, 0),
+       F(133333333, P_GCC_GPLL0_OUT_MAIN, 4.5, 0, 0),
+       F(200000000, P_GCC_GPLL0_OUT_MAIN, 3, 0, 0),
+       F(240000000, P_GCC_GPLL0_OUT_MAIN, 2.5, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_usb30_prim_master_clk_src = {
+       .cmd_rcgr = 0x49028,
+       .mnd_width = 8,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_usb30_prim_master_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_usb30_prim_master_clk_src",
+               .parent_data = gcc_parent_data_0,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_usb30_prim_mock_utmi_clk_src[] = {
+       F(19200000, P_BI_TCXO, 1, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_usb30_prim_mock_utmi_clk_src = {
+       .cmd_rcgr = 0x49040,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_0,
+       .freq_tbl = ftbl_gcc_usb30_prim_mock_utmi_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_usb30_prim_mock_utmi_clk_src",
+               .parent_data = gcc_parent_data_0,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_0),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_rcg2 gcc_usb3_prim_phy_aux_clk_src = {
+       .cmd_rcgr = 0x4906c,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_3,
+       .freq_tbl = ftbl_gcc_usb30_prim_mock_utmi_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_usb3_prim_phy_aux_clk_src",
+               .parent_data = gcc_parent_data_3,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_3),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static const struct freq_tbl ftbl_gcc_video_venus_clk_src[] = {
+       F(133333333, P_GCC_GPLL3_OUT_MAIN, 3, 0, 0),
+       F(240000000, P_GCC_GPLL3_OUT_MAIN, 2, 0, 0),
+       F(365000000, P_GCC_GPLL3_OUT_MAIN, 2, 0, 0),
+       F(384000000, P_GCC_GPLL3_OUT_MAIN, 2, 0, 0),
+       { }
+};
+
+static struct clk_rcg2 gcc_video_venus_clk_src = {
+       .cmd_rcgr = 0xb6004,
+       .mnd_width = 0,
+       .hid_width = 5,
+       .parent_map = gcc_parent_map_11,
+       .freq_tbl = ftbl_gcc_video_venus_clk_src,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_video_venus_clk_src",
+               .parent_data = gcc_parent_data_11,
+               .num_parents = ARRAY_SIZE(gcc_parent_data_11),
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_rcg2_shared_ops,
+       },
+};
+
+static struct clk_regmap_div gcc_pcie_0_pipe_div2_clk_src = {
+       .reg = 0x7b084,
+       .shift = 0,
+       .width = 4,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_pcie_0_pipe_div2_clk_src",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &gcc_pcie_0_pipe_clk_src.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_regmap_div_ro_ops,
+       },
+};
+
+static struct clk_regmap_div gcc_usb30_prim_mock_utmi_postdiv_clk_src = {
+       .reg = 0x49058,
+       .shift = 0,
+       .width = 4,
+       .clkr.hw.init = &(const struct clk_init_data) {
+               .name = "gcc_usb30_prim_mock_utmi_postdiv_clk_src",
+               .parent_hws = (const struct clk_hw*[]) {
+                       &gcc_usb30_prim_mock_utmi_clk_src.clkr.hw,
+               },
+               .num_parents = 1,
+               .flags = CLK_SET_RATE_PARENT,
+               .ops = &clk_regmap_div_ro_ops,
+       },
+};
+
+static struct clk_branch gcc_aggre_noc_pcie_0_axi_clk = {
+       .halt_reg = 0x7b08c,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x7b08c,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(12),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_aggre_noc_pcie_0_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_aggre_ufs_phy_axi_clk = {
+       .halt_reg = 0x870d4,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x870d4,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x870d4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_aggre_ufs_phy_axi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_axi_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_aggre_ufs_phy_axi_hw_ctl_clk = {
+       .halt_reg = 0x870d4,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x870d4,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x870d4,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_aggre_ufs_phy_axi_hw_ctl_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_axi_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_aggre_usb3_prim_axi_clk = {
+       .halt_reg = 0x49088,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x49088,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x49088,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_aggre_usb3_prim_axi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb30_prim_master_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_boot_rom_ahb_clk = {
+       .halt_reg = 0x48004,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x48004,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(10),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_boot_rom_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_camera_hf_axi_clk = {
+       .halt_reg = 0x36010,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x36010,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x36010,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_camera_hf_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_camera_sf_axi_clk = {
+       .halt_reg = 0x36014,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x36014,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x36014,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_camera_sf_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_cfg_noc_pcie_anoc_ahb_clk = {
+       .halt_reg = 0x20030,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x20030,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(20),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_cfg_noc_pcie_anoc_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_cfg_noc_usb3_prim_axi_clk = {
+       .halt_reg = 0x49084,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x49084,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x49084,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_cfg_noc_usb3_prim_axi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb30_prim_master_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ddrss_gpu_axi_clk = {
+       .halt_reg = 0x81154,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x81154,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x81154,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ddrss_gpu_axi_clk",
+                       .ops = &clk_branch2_aon_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ddrss_pcie_sf_tbu_clk = {
+       .halt_reg = 0x7b090,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x7b090,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(19),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ddrss_pcie_sf_tbu_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_disp_hf_axi_clk = {
+       .halt_reg = 0x3700c,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x3700c,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x3700c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_disp_hf_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_eusb3_0_clkref_en = {
+       .halt_reg = 0x9c00c,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x9c00c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_eusb3_0_clkref_en",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gp1_clk = {
+       .halt_reg = 0x74000,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x74000,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gp1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_gp1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gp2_clk = {
+       .halt_reg = 0x75000,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x75000,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gp2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_gp2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gp3_clk = {
+       .halt_reg = 0x76000,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x76000,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gp3_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_gp3_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gpu_gpll0_clk_src = {
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(15),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpu_gpll0_clk_src",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_gpll0.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gpu_gpll0_div_clk_src = {
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(16),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpu_gpll0_div_clk_src",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_gpll0_out_even.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gpu_memnoc_gfx_clk = {
+       .halt_reg = 0x81010,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x81010,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x81010,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpu_memnoc_gfx_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_gpu_snoc_dvm_gfx_clk = {
+       .halt_reg = 0x81018,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x81018,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_gpu_snoc_dvm_gfx_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_aggre_noc_mmu_audio_tbu_clk = {
+       .halt_reg = 0x8d004,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d004,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_aggre_noc_mmu_audio_tbu_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_aggre_noc_mmu_pcie_tbu_clk = {
+       .halt_reg = 0x8d010,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d010,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_aggre_noc_mmu_pcie_tbu_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_aggre_noc_mmu_tbu1_clk = {
+       .halt_reg = 0x8d008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_aggre_noc_mmu_tbu1_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_aggre_noc_mmu_tbu2_clk = {
+       .halt_reg = 0x8d00c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d00c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_aggre_noc_mmu_tbu2_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_mmnoc_mmu_tbu_hf0_clk = {
+       .halt_reg = 0x8d018,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d018,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_mmnoc_mmu_tbu_hf0_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_mmnoc_mmu_tbu_hf1_clk = {
+       .halt_reg = 0x8d01c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d01c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_mmnoc_mmu_tbu_hf1_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_mmnoc_mmu_tbu_sf0_clk = {
+       .halt_reg = 0x8d014,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d014,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_mmnoc_mmu_tbu_sf0_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_hlos1_vote_mmu_tcu_clk = {
+       .halt_reg = 0x8d02c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x8d02c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data){
+                       .name = "gcc_hlos1_vote_mmu_tcu_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_aux_clk = {
+       .halt_reg = 0x7b034,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(3),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_aux_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_pcie_0_aux_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_cfg_ahb_clk = {
+       .halt_reg = 0x7b030,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x7b030,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(2),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_cfg_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_clkref_en = {
+       .halt_reg = 0x9c004,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x9c004,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_clkref_en",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_mstr_axi_clk = {
+       .halt_reg = 0x7b028,
+       .halt_check = BRANCH_HALT_SKIP,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_mstr_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_phy_rchng_clk = {
+       .halt_reg = 0x7b044,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62000,
+               .enable_mask = BIT(22),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_phy_rchng_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_pcie_0_phy_rchng_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_pipe_clk = {
+       .halt_reg = 0x7b03c,
+       .halt_check = BRANCH_HALT_SKIP,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(4),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_pipe_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_pcie_0_pipe_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_pipe_div2_clk = {
+       .halt_reg = 0x7b094,
+       .halt_check = BRANCH_HALT_SKIP,
+       .clkr = {
+               .enable_reg = 0x62010,
+               .enable_mask = BIT(26),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_pipe_div2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_pcie_0_pipe_div2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_slv_axi_clk = {
+       .halt_reg = 0x7b020,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x7b020,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_slv_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pcie_0_slv_q2a_axi_clk = {
+       .halt_reg = 0x7b01c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(5),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pcie_0_slv_q2a_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pdm2_clk = {
+       .halt_reg = 0x4300c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x4300c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pdm2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_pdm2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pdm_ahb_clk = {
+       .halt_reg = 0x43004,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x43004,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x43004,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pdm_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_pdm_xo4_clk = {
+       .halt_reg = 0x43008,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x43008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_pdm_xo4_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qmip_camera_nrt_ahb_clk = {
+       .halt_reg = 0x36008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x36008,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x36008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qmip_camera_nrt_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qmip_camera_rt_ahb_clk = {
+       .halt_reg = 0x3600c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x3600c,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x3600c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qmip_camera_rt_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qmip_disp_ahb_clk = {
+       .halt_reg = 0x37008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x37008,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x37008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qmip_disp_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qmip_gpu_ahb_clk = {
+       .halt_reg = 0x81008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x81008,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x81008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qmip_gpu_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qmip_pcie_ahb_clk = {
+       .halt_reg = 0x7b018,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x7b018,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x7b018,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qmip_pcie_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qmip_video_vcodec_ahb_clk = {
+       .halt_reg = 0x42008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x42008,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x42008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qmip_video_vcodec_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_core_2x_clk = {
+       .halt_reg = 0x3300c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(9),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_core_2x_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_core_clk = {
+       .halt_reg = 0x33000,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(8),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_core_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_s0_clk = {
+       .halt_reg = 0x2700c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(10),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_s0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap0_s0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_s1_clk = {
+       .halt_reg = 0x27140,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(11),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_s1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap0_s1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_s2_clk = {
+       .halt_reg = 0x27274,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(12),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_s2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap0_s2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_s3_clk = {
+       .halt_reg = 0x273a8,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(13),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_s3_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap0_s3_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap0_s4_clk = {
+       .halt_reg = 0x274dc,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(14),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap0_s4_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap0_s4_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_core_2x_clk = {
+       .halt_reg = 0x3314c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(18),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_core_2x_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_core_clk = {
+       .halt_reg = 0x33140,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(19),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_core_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_s0_clk = {
+       .halt_reg = 0x2800c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(22),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_s0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap1_s0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_s1_clk = {
+       .halt_reg = 0x28140,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(23),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_s1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap1_s1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_s2_clk = {
+       .halt_reg = 0x28274,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(24),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_s2_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap1_s2_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_s3_clk = {
+       .halt_reg = 0x283a8,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(25),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_s3_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap1_s3_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap1_s4_clk = {
+       .halt_reg = 0x284dc,
+       .halt_check = BRANCH_HALT_VOTED,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(26),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap1_s4_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_qupv3_wrap1_s4_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap_0_m_ahb_clk = {
+       .halt_reg = 0x27004,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x27004,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(6),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap_0_m_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap_0_s_ahb_clk = {
+       .halt_reg = 0x27008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x27008,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(7),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap_0_s_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap_1_m_ahb_clk = {
+       .halt_reg = 0x28004,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x28004,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(20),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap_1_m_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_qupv3_wrap_1_s_ahb_clk = {
+       .halt_reg = 0x28008,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x28008,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x62008,
+               .enable_mask = BIT(21),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_qupv3_wrap_1_s_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_sdcc1_ahb_clk = {
+       .halt_reg = 0xb3004,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0xb3004,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_sdcc1_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_sdcc1_apps_clk = {
+       .halt_reg = 0xb3008,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0xb3008,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_sdcc1_apps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_sdcc1_apps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_sdcc1_ice_core_clk = {
+       .halt_reg = 0xb3028,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0xb3028,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0xb3028,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_sdcc1_ice_core_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_sdcc1_ice_core_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_sdcc2_ahb_clk = {
+       .halt_reg = 0x2400c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x2400c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_sdcc2_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_sdcc2_apps_clk = {
+       .halt_reg = 0x24004,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x24004,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_sdcc2_apps_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_sdcc2_apps_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_0_clkref_en = {
+       .halt_reg = 0x9c000,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x9c000,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_0_clkref_en",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_pad_clkref_en = {
+       .halt_reg = 0x9c024,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x9c024,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_pad_clkref_en",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_ahb_clk = {
+       .halt_reg = 0x87020,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x87020,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x87020,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_ahb_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_axi_clk = {
+       .halt_reg = 0x87018,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x87018,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x87018,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_axi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_axi_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_axi_hw_ctl_clk = {
+       .halt_reg = 0x87018,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x87018,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x87018,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_axi_hw_ctl_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_axi_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_ice_core_clk = {
+       .halt_reg = 0x8706c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x8706c,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x8706c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_ice_core_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_ice_core_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_ice_core_hw_ctl_clk = {
+       .halt_reg = 0x8706c,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x8706c,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x8706c,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_ice_core_hw_ctl_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_ice_core_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_phy_aux_clk = {
+       .halt_reg = 0x870a4,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x870a4,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x870a4,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_phy_aux_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_phy_aux_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_phy_aux_hw_ctl_clk = {
+       .halt_reg = 0x870a4,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x870a4,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x870a4,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_phy_aux_hw_ctl_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_phy_aux_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_rx_symbol_0_clk = {
+       .halt_reg = 0x87028,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x87028,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_rx_symbol_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_rx_symbol_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_rx_symbol_1_clk = {
+       .halt_reg = 0x870c0,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x870c0,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_rx_symbol_1_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_rx_symbol_1_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_tx_symbol_0_clk = {
+       .halt_reg = 0x87024,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x87024,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_tx_symbol_0_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_tx_symbol_0_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_unipro_core_clk = {
+       .halt_reg = 0x87064,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x87064,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x87064,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_unipro_core_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_unipro_core_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_ufs_phy_unipro_core_hw_ctl_clk = {
+       .halt_reg = 0x87064,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0x87064,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x87064,
+               .enable_mask = BIT(1),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_ufs_phy_unipro_core_hw_ctl_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_ufs_phy_unipro_core_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb30_prim_master_clk = {
+       .halt_reg = 0x49018,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x49018,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb30_prim_master_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb30_prim_master_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb30_prim_mock_utmi_clk = {
+       .halt_reg = 0x49024,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x49024,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb30_prim_mock_utmi_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb30_prim_mock_utmi_postdiv_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb30_prim_sleep_clk = {
+       .halt_reg = 0x49020,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x49020,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb30_prim_sleep_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb3_0_clkref_en = {
+       .halt_reg = 0x9c010,
+       .halt_check = BRANCH_HALT_DELAY,
+       .clkr = {
+               .enable_reg = 0x9c010,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb3_0_clkref_en",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb3_prim_phy_aux_clk = {
+       .halt_reg = 0x4905c,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x4905c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb3_prim_phy_aux_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb3_prim_phy_aux_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb3_prim_phy_com_aux_clk = {
+       .halt_reg = 0x49060,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0x49060,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb3_prim_phy_com_aux_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb3_prim_phy_aux_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_usb3_prim_phy_pipe_clk = {
+       .halt_reg = 0x49064,
+       .halt_check = BRANCH_HALT_DELAY,
+       .hwcg_reg = 0x49064,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x49064,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_usb3_prim_phy_pipe_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_usb3_prim_phy_pipe_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_vcodec0_axi_clk = {
+       .halt_reg = 0x42020,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x42020,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x42020,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_vcodec0_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_venus_ctl_axi_clk = {
+       .halt_reg = 0x4201c,
+       .halt_check = BRANCH_HALT_SKIP,
+       .clkr = {
+               .enable_reg = 0x4201c,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_venus_ctl_axi_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_video_throttle_core_clk = {
+       .halt_reg = 0x42014,
+       .halt_check = BRANCH_HALT_SKIP,
+       .hwcg_reg = 0x42014,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0x42014,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_video_throttle_core_clk",
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_video_vcodec0_sys_clk = {
+       .halt_reg = 0xb6058,
+       .halt_check = BRANCH_HALT_VOTED,
+       .hwcg_reg = 0xb6058,
+       .hwcg_bit = 1,
+       .clkr = {
+               .enable_reg = 0xb6058,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_video_vcodec0_sys_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_video_venus_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct clk_branch gcc_video_venus_ctl_clk = {
+       .halt_reg = 0xb6038,
+       .halt_check = BRANCH_HALT,
+       .clkr = {
+               .enable_reg = 0xb6038,
+               .enable_mask = BIT(0),
+               .hw.init = &(const struct clk_init_data) {
+                       .name = "gcc_video_venus_ctl_clk",
+                       .parent_hws = (const struct clk_hw*[]) {
+                               &gcc_video_venus_clk_src.clkr.hw,
+                       },
+                       .num_parents = 1,
+                       .flags = CLK_SET_RATE_PARENT,
+                       .ops = &clk_branch2_ops,
+               },
+       },
+};
+
+static struct gdsc gcc_pcie_0_gdsc = {
+       .gdscr = 0x7b004,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "gcc_pcie_0_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE | VOTABLE,
+};
+
+static struct gdsc gcc_ufs_phy_gdsc = {
+       .gdscr = 0x87004,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "gcc_ufs_phy_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc gcc_usb30_prim_gdsc = {
+       .gdscr = 0x49004,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "gcc_usb30_prim_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct gdsc gcc_vcodec0_gdsc = {
+       .gdscr = 0xb6044,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "gcc_vcodec0_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE | HW_CTRL,
+};
+
+static struct gdsc gcc_venus_gdsc = {
+       .gdscr = 0xb6020,
+       .en_rest_wait_val = 0x2,
+       .en_few_wait_val = 0x2,
+       .clk_dis_wait_val = 0xf,
+       .pd = {
+               .name = "gcc_venus_gdsc",
+       },
+       .pwrsts = PWRSTS_OFF_ON,
+       .flags = POLL_CFG_GDSCR | RETAIN_FF_ENABLE,
+};
+
+static struct clk_regmap *gcc_sm4450_clocks[] = {
+       [GCC_AGGRE_NOC_PCIE_0_AXI_CLK] = &gcc_aggre_noc_pcie_0_axi_clk.clkr,
+       [GCC_AGGRE_UFS_PHY_AXI_CLK] = &gcc_aggre_ufs_phy_axi_clk.clkr,
+       [GCC_AGGRE_UFS_PHY_AXI_HW_CTL_CLK] = &gcc_aggre_ufs_phy_axi_hw_ctl_clk.clkr,
+       [GCC_AGGRE_USB3_PRIM_AXI_CLK] = &gcc_aggre_usb3_prim_axi_clk.clkr,
+       [GCC_BOOT_ROM_AHB_CLK] = &gcc_boot_rom_ahb_clk.clkr,
+       [GCC_CAMERA_HF_AXI_CLK] = &gcc_camera_hf_axi_clk.clkr,
+       [GCC_CAMERA_SF_AXI_CLK] = &gcc_camera_sf_axi_clk.clkr,
+       [GCC_CFG_NOC_PCIE_ANOC_AHB_CLK] = &gcc_cfg_noc_pcie_anoc_ahb_clk.clkr,
+       [GCC_CFG_NOC_USB3_PRIM_AXI_CLK] = &gcc_cfg_noc_usb3_prim_axi_clk.clkr,
+       [GCC_DDRSS_GPU_AXI_CLK] = &gcc_ddrss_gpu_axi_clk.clkr,
+       [GCC_DDRSS_PCIE_SF_TBU_CLK] = &gcc_ddrss_pcie_sf_tbu_clk.clkr,
+       [GCC_DISP_HF_AXI_CLK] = &gcc_disp_hf_axi_clk.clkr,
+       [GCC_EUSB3_0_CLKREF_EN] = &gcc_eusb3_0_clkref_en.clkr,
+       [GCC_GP1_CLK] = &gcc_gp1_clk.clkr,
+       [GCC_GP1_CLK_SRC] = &gcc_gp1_clk_src.clkr,
+       [GCC_GP2_CLK] = &gcc_gp2_clk.clkr,
+       [GCC_GP2_CLK_SRC] = &gcc_gp2_clk_src.clkr,
+       [GCC_GP3_CLK] = &gcc_gp3_clk.clkr,
+       [GCC_GP3_CLK_SRC] = &gcc_gp3_clk_src.clkr,
+       [GCC_GPLL0] = &gcc_gpll0.clkr,
+       [GCC_GPLL0_OUT_EVEN] = &gcc_gpll0_out_even.clkr,
+       [GCC_GPLL0_OUT_ODD] = &gcc_gpll0_out_odd.clkr,
+       [GCC_GPLL1] = &gcc_gpll1.clkr,
+       [GCC_GPLL3] = &gcc_gpll3.clkr,
+       [GCC_GPLL4] = &gcc_gpll4.clkr,
+       [GCC_GPLL9] = &gcc_gpll9.clkr,
+       [GCC_GPLL10] = &gcc_gpll10.clkr,
+       [GCC_GPU_GPLL0_CLK_SRC] = &gcc_gpu_gpll0_clk_src.clkr,
+       [GCC_GPU_GPLL0_DIV_CLK_SRC] = &gcc_gpu_gpll0_div_clk_src.clkr,
+       [GCC_GPU_MEMNOC_GFX_CLK] = &gcc_gpu_memnoc_gfx_clk.clkr,
+       [GCC_GPU_SNOC_DVM_GFX_CLK] = &gcc_gpu_snoc_dvm_gfx_clk.clkr,
+       [GCC_HLOS1_VOTE_AGGRE_NOC_MMU_AUDIO_TBU_CLK] =
+               &gcc_hlos1_vote_aggre_noc_mmu_audio_tbu_clk.clkr,
+       [GCC_HLOS1_VOTE_AGGRE_NOC_MMU_PCIE_TBU_CLK] =
+               &gcc_hlos1_vote_aggre_noc_mmu_pcie_tbu_clk.clkr,
+       [GCC_HLOS1_VOTE_AGGRE_NOC_MMU_TBU1_CLK] = &gcc_hlos1_vote_aggre_noc_mmu_tbu1_clk.clkr,
+       [GCC_HLOS1_VOTE_AGGRE_NOC_MMU_TBU2_CLK] = &gcc_hlos1_vote_aggre_noc_mmu_tbu2_clk.clkr,
+       [GCC_HLOS1_VOTE_MMNOC_MMU_TBU_HF0_CLK] = &gcc_hlos1_vote_mmnoc_mmu_tbu_hf0_clk.clkr,
+       [GCC_HLOS1_VOTE_MMNOC_MMU_TBU_HF1_CLK] = &gcc_hlos1_vote_mmnoc_mmu_tbu_hf1_clk.clkr,
+       [GCC_HLOS1_VOTE_MMNOC_MMU_TBU_SF0_CLK] = &gcc_hlos1_vote_mmnoc_mmu_tbu_sf0_clk.clkr,
+       [GCC_HLOS1_VOTE_MMU_TCU_CLK] = &gcc_hlos1_vote_mmu_tcu_clk.clkr,
+       [GCC_PCIE_0_AUX_CLK] = &gcc_pcie_0_aux_clk.clkr,
+       [GCC_PCIE_0_AUX_CLK_SRC] = &gcc_pcie_0_aux_clk_src.clkr,
+       [GCC_PCIE_0_CFG_AHB_CLK] = &gcc_pcie_0_cfg_ahb_clk.clkr,
+       [GCC_PCIE_0_CLKREF_EN] = &gcc_pcie_0_clkref_en.clkr,
+       [GCC_PCIE_0_MSTR_AXI_CLK] = &gcc_pcie_0_mstr_axi_clk.clkr,
+       [GCC_PCIE_0_PHY_RCHNG_CLK] = &gcc_pcie_0_phy_rchng_clk.clkr,
+       [GCC_PCIE_0_PHY_RCHNG_CLK_SRC] = &gcc_pcie_0_phy_rchng_clk_src.clkr,
+       [GCC_PCIE_0_PIPE_CLK] = &gcc_pcie_0_pipe_clk.clkr,
+       [GCC_PCIE_0_PIPE_CLK_SRC] = &gcc_pcie_0_pipe_clk_src.clkr,
+       [GCC_PCIE_0_PIPE_DIV2_CLK] = &gcc_pcie_0_pipe_div2_clk.clkr,
+       [GCC_PCIE_0_PIPE_DIV2_CLK_SRC] = &gcc_pcie_0_pipe_div2_clk_src.clkr,
+       [GCC_PCIE_0_SLV_AXI_CLK] = &gcc_pcie_0_slv_axi_clk.clkr,
+       [GCC_PCIE_0_SLV_Q2A_AXI_CLK] = &gcc_pcie_0_slv_q2a_axi_clk.clkr,
+       [GCC_PDM2_CLK] = &gcc_pdm2_clk.clkr,
+       [GCC_PDM2_CLK_SRC] = &gcc_pdm2_clk_src.clkr,
+       [GCC_PDM_AHB_CLK] = &gcc_pdm_ahb_clk.clkr,
+       [GCC_PDM_XO4_CLK] = &gcc_pdm_xo4_clk.clkr,
+       [GCC_QMIP_CAMERA_NRT_AHB_CLK] = &gcc_qmip_camera_nrt_ahb_clk.clkr,
+       [GCC_QMIP_CAMERA_RT_AHB_CLK] = &gcc_qmip_camera_rt_ahb_clk.clkr,
+       [GCC_QMIP_DISP_AHB_CLK] = &gcc_qmip_disp_ahb_clk.clkr,
+       [GCC_QMIP_GPU_AHB_CLK] = &gcc_qmip_gpu_ahb_clk.clkr,
+       [GCC_QMIP_PCIE_AHB_CLK] = &gcc_qmip_pcie_ahb_clk.clkr,
+       [GCC_QMIP_VIDEO_VCODEC_AHB_CLK] = &gcc_qmip_video_vcodec_ahb_clk.clkr,
+       [GCC_QUPV3_WRAP0_CORE_2X_CLK] = &gcc_qupv3_wrap0_core_2x_clk.clkr,
+       [GCC_QUPV3_WRAP0_CORE_CLK] = &gcc_qupv3_wrap0_core_clk.clkr,
+       [GCC_QUPV3_WRAP0_S0_CLK] = &gcc_qupv3_wrap0_s0_clk.clkr,
+       [GCC_QUPV3_WRAP0_S0_CLK_SRC] = &gcc_qupv3_wrap0_s0_clk_src.clkr,
+       [GCC_QUPV3_WRAP0_S1_CLK] = &gcc_qupv3_wrap0_s1_clk.clkr,
+       [GCC_QUPV3_WRAP0_S1_CLK_SRC] = &gcc_qupv3_wrap0_s1_clk_src.clkr,
+       [GCC_QUPV3_WRAP0_S2_CLK] = &gcc_qupv3_wrap0_s2_clk.clkr,
+       [GCC_QUPV3_WRAP0_S2_CLK_SRC] = &gcc_qupv3_wrap0_s2_clk_src.clkr,
+       [GCC_QUPV3_WRAP0_S3_CLK] = &gcc_qupv3_wrap0_s3_clk.clkr,
+       [GCC_QUPV3_WRAP0_S3_CLK_SRC] = &gcc_qupv3_wrap0_s3_clk_src.clkr,
+       [GCC_QUPV3_WRAP0_S4_CLK] = &gcc_qupv3_wrap0_s4_clk.clkr,
+       [GCC_QUPV3_WRAP0_S4_CLK_SRC] = &gcc_qupv3_wrap0_s4_clk_src.clkr,
+       [GCC_QUPV3_WRAP1_CORE_2X_CLK] = &gcc_qupv3_wrap1_core_2x_clk.clkr,
+       [GCC_QUPV3_WRAP1_CORE_CLK] = &gcc_qupv3_wrap1_core_clk.clkr,
+       [GCC_QUPV3_WRAP1_S0_CLK] = &gcc_qupv3_wrap1_s0_clk.clkr,
+       [GCC_QUPV3_WRAP1_S0_CLK_SRC] = &gcc_qupv3_wrap1_s0_clk_src.clkr,
+       [GCC_QUPV3_WRAP1_S1_CLK] = &gcc_qupv3_wrap1_s1_clk.clkr,
+       [GCC_QUPV3_WRAP1_S1_CLK_SRC] = &gcc_qupv3_wrap1_s1_clk_src.clkr,
+       [GCC_QUPV3_WRAP1_S2_CLK] = &gcc_qupv3_wrap1_s2_clk.clkr,
+       [GCC_QUPV3_WRAP1_S2_CLK_SRC] = &gcc_qupv3_wrap1_s2_clk_src.clkr,
+       [GCC_QUPV3_WRAP1_S3_CLK] = &gcc_qupv3_wrap1_s3_clk.clkr,
+       [GCC_QUPV3_WRAP1_S3_CLK_SRC] = &gcc_qupv3_wrap1_s3_clk_src.clkr,
+       [GCC_QUPV3_WRAP1_S4_CLK] = &gcc_qupv3_wrap1_s4_clk.clkr,
+       [GCC_QUPV3_WRAP1_S4_CLK_SRC] = &gcc_qupv3_wrap1_s4_clk_src.clkr,
+       [GCC_QUPV3_WRAP_0_M_AHB_CLK] = &gcc_qupv3_wrap_0_m_ahb_clk.clkr,
+       [GCC_QUPV3_WRAP_0_S_AHB_CLK] = &gcc_qupv3_wrap_0_s_ahb_clk.clkr,
+       [GCC_QUPV3_WRAP_1_M_AHB_CLK] = &gcc_qupv3_wrap_1_m_ahb_clk.clkr,
+       [GCC_QUPV3_WRAP_1_S_AHB_CLK] = &gcc_qupv3_wrap_1_s_ahb_clk.clkr,
+       [GCC_SDCC1_AHB_CLK] = &gcc_sdcc1_ahb_clk.clkr,
+       [GCC_SDCC1_APPS_CLK] = &gcc_sdcc1_apps_clk.clkr,
+       [GCC_SDCC1_APPS_CLK_SRC] = &gcc_sdcc1_apps_clk_src.clkr,
+       [GCC_SDCC1_ICE_CORE_CLK] = &gcc_sdcc1_ice_core_clk.clkr,
+       [GCC_SDCC1_ICE_CORE_CLK_SRC] = &gcc_sdcc1_ice_core_clk_src.clkr,
+       [GCC_SDCC2_AHB_CLK] = &gcc_sdcc2_ahb_clk.clkr,
+       [GCC_SDCC2_APPS_CLK] = &gcc_sdcc2_apps_clk.clkr,
+       [GCC_SDCC2_APPS_CLK_SRC] = &gcc_sdcc2_apps_clk_src.clkr,
+       [GCC_UFS_0_CLKREF_EN] = &gcc_ufs_0_clkref_en.clkr,
+       [GCC_UFS_PAD_CLKREF_EN] = &gcc_ufs_pad_clkref_en.clkr,
+       [GCC_UFS_PHY_AHB_CLK] = &gcc_ufs_phy_ahb_clk.clkr,
+       [GCC_UFS_PHY_AXI_CLK] = &gcc_ufs_phy_axi_clk.clkr,
+       [GCC_UFS_PHY_AXI_CLK_SRC] = &gcc_ufs_phy_axi_clk_src.clkr,
+       [GCC_UFS_PHY_AXI_HW_CTL_CLK] = &gcc_ufs_phy_axi_hw_ctl_clk.clkr,
+       [GCC_UFS_PHY_ICE_CORE_CLK] = &gcc_ufs_phy_ice_core_clk.clkr,
+       [GCC_UFS_PHY_ICE_CORE_CLK_SRC] = &gcc_ufs_phy_ice_core_clk_src.clkr,
+       [GCC_UFS_PHY_ICE_CORE_HW_CTL_CLK] = &gcc_ufs_phy_ice_core_hw_ctl_clk.clkr,
+       [GCC_UFS_PHY_PHY_AUX_CLK] = &gcc_ufs_phy_phy_aux_clk.clkr,
+       [GCC_UFS_PHY_PHY_AUX_CLK_SRC] = &gcc_ufs_phy_phy_aux_clk_src.clkr,
+       [GCC_UFS_PHY_PHY_AUX_HW_CTL_CLK] = &gcc_ufs_phy_phy_aux_hw_ctl_clk.clkr,
+       [GCC_UFS_PHY_RX_SYMBOL_0_CLK] = &gcc_ufs_phy_rx_symbol_0_clk.clkr,
+       [GCC_UFS_PHY_RX_SYMBOL_0_CLK_SRC] = &gcc_ufs_phy_rx_symbol_0_clk_src.clkr,
+       [GCC_UFS_PHY_RX_SYMBOL_1_CLK] = &gcc_ufs_phy_rx_symbol_1_clk.clkr,
+       [GCC_UFS_PHY_RX_SYMBOL_1_CLK_SRC] = &gcc_ufs_phy_rx_symbol_1_clk_src.clkr,
+       [GCC_UFS_PHY_TX_SYMBOL_0_CLK] = &gcc_ufs_phy_tx_symbol_0_clk.clkr,
+       [GCC_UFS_PHY_TX_SYMBOL_0_CLK_SRC] = &gcc_ufs_phy_tx_symbol_0_clk_src.clkr,
+       [GCC_UFS_PHY_UNIPRO_CORE_CLK] = &gcc_ufs_phy_unipro_core_clk.clkr,
+       [GCC_UFS_PHY_UNIPRO_CORE_CLK_SRC] = &gcc_ufs_phy_unipro_core_clk_src.clkr,
+       [GCC_UFS_PHY_UNIPRO_CORE_HW_CTL_CLK] = &gcc_ufs_phy_unipro_core_hw_ctl_clk.clkr,
+       [GCC_USB30_PRIM_MASTER_CLK] = &gcc_usb30_prim_master_clk.clkr,
+       [GCC_USB30_PRIM_MASTER_CLK_SRC] = &gcc_usb30_prim_master_clk_src.clkr,
+       [GCC_USB30_PRIM_MOCK_UTMI_CLK] = &gcc_usb30_prim_mock_utmi_clk.clkr,
+       [GCC_USB30_PRIM_MOCK_UTMI_CLK_SRC] = &gcc_usb30_prim_mock_utmi_clk_src.clkr,
+       [GCC_USB30_PRIM_MOCK_UTMI_POSTDIV_CLK_SRC] = &gcc_usb30_prim_mock_utmi_postdiv_clk_src.clkr,
+       [GCC_USB30_PRIM_SLEEP_CLK] = &gcc_usb30_prim_sleep_clk.clkr,
+       [GCC_USB3_0_CLKREF_EN] = &gcc_usb3_0_clkref_en.clkr,
+       [GCC_USB3_PRIM_PHY_AUX_CLK] = &gcc_usb3_prim_phy_aux_clk.clkr,
+       [GCC_USB3_PRIM_PHY_AUX_CLK_SRC] = &gcc_usb3_prim_phy_aux_clk_src.clkr,
+       [GCC_USB3_PRIM_PHY_COM_AUX_CLK] = &gcc_usb3_prim_phy_com_aux_clk.clkr,
+       [GCC_USB3_PRIM_PHY_PIPE_CLK] = &gcc_usb3_prim_phy_pipe_clk.clkr,
+       [GCC_USB3_PRIM_PHY_PIPE_CLK_SRC] = &gcc_usb3_prim_phy_pipe_clk_src.clkr,
+       [GCC_VCODEC0_AXI_CLK] = &gcc_vcodec0_axi_clk.clkr,
+       [GCC_VENUS_CTL_AXI_CLK] = &gcc_venus_ctl_axi_clk.clkr,
+       [GCC_VIDEO_THROTTLE_CORE_CLK] = &gcc_video_throttle_core_clk.clkr,
+       [GCC_VIDEO_VCODEC0_SYS_CLK] = &gcc_video_vcodec0_sys_clk.clkr,
+       [GCC_VIDEO_VENUS_CLK_SRC] = &gcc_video_venus_clk_src.clkr,
+       [GCC_VIDEO_VENUS_CTL_CLK] = &gcc_video_venus_ctl_clk.clkr,
+};
+
+static struct gdsc *gcc_sm4450_gdscs[] = {
+       [GCC_PCIE_0_GDSC] = &gcc_pcie_0_gdsc,
+       [GCC_UFS_PHY_GDSC] = &gcc_ufs_phy_gdsc,
+       [GCC_USB30_PRIM_GDSC] = &gcc_usb30_prim_gdsc,
+       [GCC_VCODEC0_GDSC] = &gcc_vcodec0_gdsc,
+       [GCC_VENUS_GDSC] = &gcc_venus_gdsc,
+};
+
+static const struct qcom_reset_map gcc_sm4450_resets[] = {
+       [GCC_CAMERA_BCR] = { 0x36000 },
+       [GCC_DISPLAY_BCR] = { 0x37000 },
+       [GCC_GPU_BCR] = { 0x81000 },
+       [GCC_PCIE_0_BCR] = { 0x7b000 },
+       [GCC_PCIE_0_LINK_DOWN_BCR] = { 0x7c014 },
+       [GCC_PCIE_0_NOCSR_COM_PHY_BCR] = { 0x7c020 },
+       [GCC_PCIE_0_PHY_BCR] = { 0x7c01c },
+       [GCC_PCIE_0_PHY_NOCSR_COM_PHY_BCR] = { 0x7c028 },
+       [GCC_PCIE_PHY_BCR] = { 0x7f000 },
+       [GCC_PCIE_PHY_CFG_AHB_BCR] = { 0x7f00c },
+       [GCC_PCIE_PHY_COM_BCR] = { 0x7f010 },
+       [GCC_PDM_BCR] = { 0x43000 },
+       [GCC_QUPV3_WRAPPER_0_BCR] = { 0x27000 },
+       [GCC_QUPV3_WRAPPER_1_BCR] = { 0x28000 },
+       [GCC_QUSB2PHY_PRIM_BCR] = { 0x22000 },
+       [GCC_QUSB2PHY_SEC_BCR] = { 0x22004 },
+       [GCC_SDCC1_BCR] = { 0xb3000 },
+       [GCC_SDCC2_BCR] = { 0x24000 },
+       [GCC_UFS_PHY_BCR] = { 0x87000 },
+       [GCC_USB30_PRIM_BCR] = { 0x49000 },
+       [GCC_USB3_DP_PHY_PRIM_BCR] = { 0x60008 },
+       [GCC_USB3_DP_PHY_SEC_BCR] = { 0x60014 },
+       [GCC_USB3_PHY_PRIM_BCR] = { 0x60000 },
+       [GCC_USB3_PHY_SEC_BCR] = { 0x6000c },
+       [GCC_USB3PHY_PHY_PRIM_BCR] = { 0x60004 },
+       [GCC_USB3PHY_PHY_SEC_BCR] = { 0x60010 },
+       [GCC_VCODEC0_BCR] = { 0xb6040 },
+       [GCC_VENUS_BCR] = { 0xb601c },
+       [GCC_VIDEO_BCR] = { 0x42000 },
+       [GCC_VIDEO_VENUS_BCR] = { 0xb6000 },
+       [GCC_VENUS_CTL_AXI_CLK_ARES] = { 0x4201c, 2 },
+       [GCC_VIDEO_VENUS_CTL_CLK_ARES] = { 0xb6038, 2 },
+};
+
+static const struct clk_rcg_dfs_data gcc_dfs_clocks[] = {
+       DEFINE_RCG_DFS(gcc_qupv3_wrap0_s0_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap0_s1_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap0_s2_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap0_s3_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap0_s4_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap1_s0_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap1_s1_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap1_s2_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap1_s3_clk_src),
+       DEFINE_RCG_DFS(gcc_qupv3_wrap1_s4_clk_src),
+};
+
+static const struct regmap_config gcc_sm4450_regmap_config = {
+       .reg_bits = 32,
+       .reg_stride = 4,
+       .val_bits = 32,
+       .max_register = 0x1f41f0,
+       .fast_io = true,
+};
+
+static const struct qcom_cc_desc gcc_sm4450_desc = {
+       .config = &gcc_sm4450_regmap_config,
+       .clks = gcc_sm4450_clocks,
+       .num_clks = ARRAY_SIZE(gcc_sm4450_clocks),
+       .resets = gcc_sm4450_resets,
+       .num_resets = ARRAY_SIZE(gcc_sm4450_resets),
+       .gdscs = gcc_sm4450_gdscs,
+       .num_gdscs = ARRAY_SIZE(gcc_sm4450_gdscs),
+};
+
+static const struct of_device_id gcc_sm4450_match_table[] = {
+       { .compatible = "qcom,sm4450-gcc" },
+       { }
+};
+MODULE_DEVICE_TABLE(of, gcc_sm4450_match_table);
+
+static int gcc_sm4450_probe(struct platform_device *pdev)
+{
+       struct regmap *regmap;
+       int ret;
+
+       regmap = qcom_cc_map(pdev, &gcc_sm4450_desc);
+       if (IS_ERR(regmap))
+               return PTR_ERR(regmap);
+
+       clk_lucid_evo_pll_configure(&gcc_gpll3, regmap, &gcc_gpll3_config);
+       ret = qcom_cc_register_rcg_dfs(regmap, gcc_dfs_clocks,
+                                      ARRAY_SIZE(gcc_dfs_clocks));
+       if (ret)
+               return ret;
+
+       qcom_branch_set_force_mem_core(regmap, gcc_ufs_phy_ice_core_clk, true);
+
+       /*
+        * Keep clocks always enabled:
+        * gcc_camera_ahb_clk
+        * gcc_camera_sleep_clk
+        * gcc_camera_xo_clk
+        * gcc_disp_ahb_clk
+        * gcc_disp_xo_clk
+        * gcc_gpu_cfg_ahb_clk
+        * gcc_video_ahb_clk
+        * gcc_video_xo_clk
+        */
+       regmap_update_bits(regmap, 0x36004, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x36018, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x3601c, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x37004, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x37014, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x81004, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x42004, BIT(0), BIT(0));
+       regmap_update_bits(regmap, 0x42018, BIT(0), BIT(0));
+
+       regmap_update_bits(regmap, 0x4201c, BIT(21), BIT(21));
+
+       return qcom_cc_really_probe(pdev, &gcc_sm4450_desc, regmap);
+}
+
+static struct platform_driver gcc_sm4450_driver = {
+       .probe = gcc_sm4450_probe,
+       .driver = {
+               .name = "gcc-sm4450",
+               .of_match_table = gcc_sm4450_match_table,
+       },
+};
+
+static int __init gcc_sm4450_init(void)
+{
+       return platform_driver_register(&gcc_sm4450_driver);
+}
+subsys_initcall(gcc_sm4450_init);
+
+static void __exit gcc_sm4450_exit(void)
+{
+       platform_driver_unregister(&gcc_sm4450_driver);
+}
+module_exit(gcc_sm4450_exit);
+
+MODULE_DESCRIPTION("QTI GCC SM4450 Driver");
+MODULE_LICENSE("GPL");
index 41ab210875fb243a72e07d5f65f55b9e4cae7d5f..05d115c52dfebbb4f2d6101ba2f580031326d4f4 100644 (file)
@@ -774,7 +774,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = {
                .name = "gcc_sdcc2_apps_clk_src",
                .parent_data = gcc_parents_6,
                .num_parents = ARRAY_SIZE(gcc_parents_6),
-               .flags = CLK_SET_RATE_PARENT,
+               .flags = CLK_OPS_PARENT_ENABLE,
                .ops = &clk_rcg2_floor_ops,
        },
 };
index 775e0b931923256cad349e7ecfdcf38dc5bdb21f..420dcb27b47ddee0e8cabeb6df91531c96e19776 100644 (file)
@@ -39,8 +39,7 @@ static const struct pll_vco lucid_ole_vco[] = {
 };
 
 static const struct alpha_pll_config gpu_cc_pll0_config = {
-       /* .l includes RINGOSC_CAL_L_VAL, CAL_L_VAL, L_VAL fields */
-       .l = 0x4444000d,
+       .l = 0x0d,
        .alpha = 0x0,
        .config_ctl_val = 0x20485699,
        .config_ctl_hi_val = 0x00182261,
@@ -71,8 +70,7 @@ static struct clk_alpha_pll gpu_cc_pll0 = {
 };
 
 static const struct alpha_pll_config gpu_cc_pll1_config = {
-       /* .l includes RINGOSC_CAL_L_VAL, CAL_L_VAL, L_VAL fields */
-       .l = 0x44440016,
+       .l = 0x16,
        .alpha = 0xeaaa,
        .config_ctl_val = 0x20485699,
        .config_ctl_hi_val = 0x00182261,
@@ -574,8 +572,8 @@ static int gpu_cc_sm8550_probe(struct platform_device *pdev)
        if (IS_ERR(regmap))
                return PTR_ERR(regmap);
 
-       clk_lucid_evo_pll_configure(&gpu_cc_pll0, regmap, &gpu_cc_pll0_config);
-       clk_lucid_evo_pll_configure(&gpu_cc_pll1, regmap, &gpu_cc_pll1_config);
+       clk_lucid_ole_pll_configure(&gpu_cc_pll0, regmap, &gpu_cc_pll0_config);
+       clk_lucid_ole_pll_configure(&gpu_cc_pll1, regmap, &gpu_cc_pll1_config);
 
        /*
         * Keep clocks always enabled:
index f4d78003d1896dd012ba78cac7c963ed61d7921a..dac27e31ef6091bfce1ccf1d0126750817ad4e33 100644 (file)
@@ -6,6 +6,7 @@
 #include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/of.h>
+#include <linux/of_device.h>
 #include <linux/clk.h>
 #include <linux/clk-provider.h>
 #include <linux/regmap.h>
@@ -31,8 +32,62 @@ static const struct hfpll_data hdata = {
        .max_rate = 2900000000UL,
 };
 
+static const struct hfpll_data msm8976_a53 = {
+       .mode_reg = 0x00,
+       .l_reg = 0x04,
+       .m_reg = 0x08,
+       .n_reg = 0x0c,
+       .user_reg = 0x10,
+       .config_reg = 0x14,
+       .config_val = 0x341600,
+       .status_reg = 0x1c,
+       .lock_bit = 16,
+
+       .l_val = 0x35,
+       .user_val = 0x109,
+       .min_rate = 902400000UL,
+       .max_rate = 1478400000UL,
+};
+
+static const struct hfpll_data msm8976_a72 = {
+       .mode_reg = 0x00,
+       .l_reg = 0x04,
+       .m_reg = 0x08,
+       .n_reg = 0x0c,
+       .user_reg = 0x10,
+       .config_reg = 0x14,
+       .config_val = 0x4e0405d,
+       .status_reg = 0x1c,
+       .lock_bit = 16,
+
+       .l_val = 0x3e,
+       .user_val = 0x100109,
+       .min_rate = 940800000UL,
+       .max_rate = 2016000000UL,
+};
+
+static const struct hfpll_data msm8976_cci = {
+       .mode_reg = 0x00,
+       .l_reg = 0x04,
+       .m_reg = 0x08,
+       .n_reg = 0x0c,
+       .user_reg = 0x10,
+       .config_reg = 0x14,
+       .config_val = 0x141400,
+       .status_reg = 0x1c,
+       .lock_bit = 16,
+
+       .l_val = 0x20,
+       .user_val = 0x100109,
+       .min_rate = 556800000UL,
+       .max_rate = 902400000UL,
+};
+
 static const struct of_device_id qcom_hfpll_match_table[] = {
-       { .compatible = "qcom,hfpll" },
+       { .compatible = "qcom,hfpll", .data = &hdata },
+       { .compatible = "qcom,msm8976-hfpll-a53", .data = &msm8976_a53 },
+       { .compatible = "qcom,msm8976-hfpll-a72", .data = &msm8976_a72 },
+       { .compatible = "qcom,msm8976-hfpll-cci", .data = &msm8976_cci },
        { }
 };
 MODULE_DEVICE_TABLE(of, qcom_hfpll_match_table);
@@ -83,7 +138,7 @@ static int qcom_hfpll_probe(struct platform_device *pdev)
 
        init.parent_data = &pdata;
 
-       h->d = &hdata;
+       h->d = of_device_get_match_data(&pdev->dev);
        h->clkr.hw.init = &init;
        spin_lock_init(&h->lock);
 
index 1f3bd302fe6ed4b7540a380723a39d56f2636570..a31f6cf0c4e0cef1a1e2ce31bc28ccedd3394219 100644 (file)
@@ -2170,22 +2170,6 @@ static struct clk_branch mmss_s0_axi_clk = {
        },
 };
 
-static struct clk_branch ocmemcx_ahb_clk = {
-       .halt_reg = 0x405c,
-       .clkr = {
-               .enable_reg = 0x405c,
-               .enable_mask = BIT(0),
-               .hw.init = &(struct clk_init_data){
-                       .name = "ocmemcx_ahb_clk",
-                       .parent_hws = (const struct clk_hw*[]){
-                               &mmss_ahb_clk_src.clkr.hw
-                       },
-                       .num_parents = 1,
-                       .ops = &clk_branch2_ops,
-               },
-       },
-};
-
 static struct clk_branch ocmemcx_ocmemnoc_clk = {
        .halt_reg = 0x4058,
        .clkr = {
@@ -2503,7 +2487,6 @@ static struct clk_regmap *mmcc_msm8226_clocks[] = {
        [MMSS_MMSSNOC_BTO_AHB_CLK] = &mmss_mmssnoc_bto_ahb_clk.clkr,
        [MMSS_MMSSNOC_AXI_CLK] = &mmss_mmssnoc_axi_clk.clkr,
        [MMSS_S0_AXI_CLK] = &mmss_s0_axi_clk.clkr,
-       [OCMEMCX_AHB_CLK] = &ocmemcx_ahb_clk.clkr,
        [OXILI_GFX3D_CLK] = &oxili_gfx3d_clk.clkr,
        [OXILICX_AHB_CLK] = &oxilicx_ahb_clk.clkr,
        [OXILICX_AXI_CLK] = &oxilicx_axi_clk.clkr,
@@ -2660,7 +2643,6 @@ static struct clk_regmap *mmcc_msm8974_clocks[] = {
        [MMSS_MMSSNOC_BTO_AHB_CLK] = &mmss_mmssnoc_bto_ahb_clk.clkr,
        [MMSS_MMSSNOC_AXI_CLK] = &mmss_mmssnoc_axi_clk.clkr,
        [MMSS_S0_AXI_CLK] = &mmss_s0_axi_clk.clkr,
-       [OCMEMCX_AHB_CLK] = &ocmemcx_ahb_clk.clkr,
        [OCMEMCX_OCMEMNOC_CLK] = &ocmemcx_ocmemnoc_clk.clkr,
        [OCMEMNOC_CLK] = &ocmemnoc_clk.clkr,
        [OXILI_GFX3D_CLK] = &oxili_gfx3d_clk.clkr,
index a023c4374be96a76fcd65b3ded74d2a856c7d67d..1180e48c687ac4fa5cd0f5288187673ea67f314c 100644 (file)
@@ -2439,6 +2439,7 @@ static struct clk_branch fd_ahb_clk = {
 
 static struct clk_branch mnoc_ahb_clk = {
        .halt_reg = 0x5024,
+       .halt_check = BRANCH_HALT_SKIP,
        .clkr = {
                .enable_reg = 0x5024,
                .enable_mask = BIT(0),
@@ -2454,6 +2455,7 @@ static struct clk_branch mnoc_ahb_clk = {
 
 static struct clk_branch bimc_smmu_ahb_clk = {
        .halt_reg = 0xe004,
+       .halt_check = BRANCH_HALT_SKIP,
        .hwcg_reg = 0xe004,
        .hwcg_bit = 1,
        .clkr = {
@@ -2471,6 +2473,7 @@ static struct clk_branch bimc_smmu_ahb_clk = {
 
 static struct clk_branch bimc_smmu_axi_clk = {
        .halt_reg = 0xe008,
+       .halt_check = BRANCH_HALT_SKIP,
        .hwcg_reg = 0xe008,
        .hwcg_bit = 1,
        .clkr = {
@@ -2607,11 +2610,13 @@ static struct gdsc camss_cpp_gdsc = {
 static struct gdsc bimc_smmu_gdsc = {
        .gdscr = 0xe020,
        .gds_hw_ctrl = 0xe024,
+       .cxcs = (unsigned int []){ 0xe008 },
+       .cxc_count = 1,
        .pd = {
                .name = "bimc_smmu",
        },
        .pwrsts = PWRSTS_OFF_ON,
-       .flags = HW_CTRL | ALWAYS_ON,
+       .flags = VOTABLE,
 };
 
 static struct clk_regmap *mmcc_msm8998_clocks[] = {
index 3bb136ec31b1641f68247f209cf2999f6a5af905..f3c9dfaee968fb73ea1a5366c95f24c51a212a2c 100644 (file)
@@ -36,8 +36,7 @@ static const struct pll_vco lucid_ole_vco[] = {
 };
 
 static const struct alpha_pll_config video_cc_pll0_config = {
-       /* .l includes RINGOSC_CAL_L_VAL, CAL_L_VAL, L_VAL fields */
-       .l = 0x44440025,
+       .l = 0x25,
        .alpha = 0x8000,
        .config_ctl_val = 0x20485699,
        .config_ctl_hi_val = 0x00182261,
@@ -68,8 +67,7 @@ static struct clk_alpha_pll video_cc_pll0 = {
 };
 
 static const struct alpha_pll_config video_cc_pll1_config = {
-       /* .l includes RINGOSC_CAL_L_VAL, CAL_L_VAL, L_VAL fields */
-       .l = 0x44440036,
+       .l = 0x36,
        .alpha = 0xb000,
        .config_ctl_val = 0x20485699,
        .config_ctl_hi_val = 0x00182261,
@@ -427,8 +425,8 @@ static int video_cc_sm8550_probe(struct platform_device *pdev)
                return PTR_ERR(regmap);
        }
 
-       clk_lucid_evo_pll_configure(&video_cc_pll0, regmap, &video_cc_pll0_config);
-       clk_lucid_evo_pll_configure(&video_cc_pll1, regmap, &video_cc_pll1_config);
+       clk_lucid_ole_pll_configure(&video_cc_pll0, regmap, &video_cc_pll0_config);
+       clk_lucid_ole_pll_configure(&video_cc_pll1, regmap, &video_cc_pll1_config);
 
        /*
         * Keep clocks always enabled:
index 2322f634a910e9da09f3e4082d0c7c497158ea03..49597d95602eb068d3fcf2f8941da1e72129ff70 100644 (file)
@@ -10,7 +10,7 @@ menuconfig CLK_SIFIVE
 if CLK_SIFIVE
 
 config CLK_SIFIVE_PRCI
-       bool "PRCI driver for SiFive SoCs"
+       tristate "PRCI driver for SiFive SoCs"
        default ARCH_SIFIVE
        select RESET_CONTROLLER
        select RESET_SIMPLE
index af81eb835bc235ab66f1be1fc43a61c62cd6383f..25b8e1a80ddce0bf0f88428ea79d2ec45b11e1e2 100644 (file)
@@ -7,6 +7,7 @@
 #include <linux/clkdev.h>
 #include <linux/delay.h>
 #include <linux/io.h>
+#include <linux/module.h>
 #include <linux/of.h>
 #include "sifive-prci.h"
 #include "fu540-prci.h"
@@ -618,9 +619,8 @@ static struct platform_driver sifive_prci_driver = {
        },
        .probe = sifive_prci_probe,
 };
+module_platform_driver(sifive_prci_driver);
 
-static int __init sifive_prci_init(void)
-{
-       return platform_driver_register(&sifive_prci_driver);
-}
-core_initcall(sifive_prci_init);
+MODULE_AUTHOR("Paul Walmsley <paul.walmsley@sifive.com>");
+MODULE_DESCRIPTION("SiFive Power Reset Clock Interface (PRCI) driver");
+MODULE_LICENSE("GPL");
index 6b65a74aefa6ee814f710afd4a925301eb45e117..8dd94f64756b97fdea558ebde55b76a3a3baaffb 100644 (file)
@@ -471,12 +471,12 @@ static int agilex_clkmgr_init(struct platform_device *pdev)
        if (!clk_data)
                return -ENOMEM;
 
+       clk_data->clk_data.num = num_clks;
+       clk_data->base = base;
+
        for (i = 0; i < num_clks; i++)
                clk_data->clk_data.hws[i] = ERR_PTR(-ENOENT);
 
-       clk_data->base = base;
-       clk_data->clk_data.num = num_clks;
-
        agilex_clk_register_pll(agilex_pll_clks, ARRAY_SIZE(agilex_pll_clks), clk_data);
 
        agilex_clk_register_c_perip(agilex_main_perip_c_clks,
@@ -511,12 +511,12 @@ static int n5x_clkmgr_init(struct platform_device *pdev)
        if (!clk_data)
                return -ENOMEM;
 
-       for (i = 0; i < num_clks; i++)
-               clk_data->clk_data.hws[i] = ERR_PTR(-ENOENT);
-
        clk_data->base = base;
        clk_data->clk_data.num = num_clks;
 
+       for (i = 0; i < num_clks; i++)
+               clk_data->clk_data.hws[i] = ERR_PTR(-ENOENT);
+
        n5x_clk_register_pll(agilex_pll_clks, ARRAY_SIZE(agilex_pll_clks), clk_data);
 
        n5x_clk_register_c_perip(n5x_main_perip_c_clks,
index 3752bd9c103c5611cbe820815f76460d9d286ba9..b4bf4e2d38e165fcea70838afa6a0ebf36907b39 100644 (file)
@@ -402,12 +402,12 @@ static int s10_clkmgr_init(struct platform_device *pdev)
        if (!clk_data)
                return -ENOMEM;
 
-       for (i = 0; i < num_clks; i++)
-               clk_data->clk_data.hws[i] = ERR_PTR(-ENOENT);
-
        clk_data->base = base;
        clk_data->clk_data.num = num_clks;
 
+       for (i = 0; i < num_clks; i++)
+               clk_data->clk_data.hws[i] = ERR_PTR(-ENOENT);
+
        s10_clk_register_pll(s10_pll_clks, ARRAY_SIZE(s10_pll_clks), clk_data);
 
        s10_clk_register_c_perip(s10_main_perip_c_clks,
index 75234e0783e1ccf699836f4da1f86b5ab8517cad..83fe4eb3133cbeefb489515762aeccca144e5a4d 100644 (file)
@@ -7,8 +7,10 @@
 #define        __STRATIX10_CLK_H
 
 struct stratix10_clock_data {
-       struct clk_hw_onecell_data      clk_data;
        void __iomem            *base;
+
+       /* Must be last */
+       struct clk_hw_onecell_data      clk_data;
 };
 
 struct stratix10_pll_clock {
index adbabbe596b7018bc0c67f4d1c1d77639708fb1c..15cec97d2aa73e08af38ecb1c502c6c24137f7e2 100644 (file)
@@ -19,24 +19,24 @@ struct sprd_comp {
 };
 
 #define SPRD_COMP_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, _table,        \
-                                _mshift, _mwidth, _dshift, _dwidth,    \
-                                _flags, _fn)                           \
+                                _mshift, _mwidth, _doffset, _dshift,   \
+                                _dwidth, _flags, _fn)                  \
        struct sprd_comp _struct = {                                    \
                .mux    = _SPRD_MUX_CLK(_mshift, _mwidth, _table),      \
-               .div    = _SPRD_DIV_CLK(_dshift, _dwidth),              \
+               .div    = _SPRD_DIV_CLK(_doffset, _dshift, _dwidth),    \
                .common = {                                             \
                        .regmap         = NULL,                         \
                        .reg            = _reg,                         \
                        .hw.init = _fn(_name, _parent,                  \
                                       &sprd_comp_ops, _flags),         \
-                        }                                              \
+               }                                                       \
        }
 
 #define SPRD_COMP_CLK_TABLE(_struct, _name, _parent, _reg, _table,     \
                            _mshift, _mwidth, _dshift, _dwidth, _flags) \
        SPRD_COMP_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, _table, \
-                                _mshift, _mwidth, _dshift, _dwidth,    \
-                                _flags, CLK_HW_INIT_PARENTS)
+                                _mshift, _mwidth, 0x0, _dshift,        \
+                                _dwidth, _flags, CLK_HW_INIT_PARENTS)
 
 #define SPRD_COMP_CLK(_struct, _name, _parent, _reg, _mshift,          \
                      _mwidth, _dshift, _dwidth, _flags)                \
@@ -47,15 +47,33 @@ struct sprd_comp {
                                 _mshift, _mwidth, _dshift,             \
                                 _dwidth, _flags)                       \
        SPRD_COMP_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, _table, \
-                                _mshift, _mwidth, _dshift, _dwidth,    \
-                                _flags, CLK_HW_INIT_PARENTS_DATA)
+                                _mshift, _mwidth, 0x0, _dshift,        \
+                                _dwidth, _flags,                       \
+                                CLK_HW_INIT_PARENTS_DATA)
 
 #define SPRD_COMP_CLK_DATA(_struct, _name, _parent, _reg, _mshift,     \
                           _mwidth, _dshift, _dwidth, _flags)           \
-       SPRD_COMP_CLK_DATA_TABLE(_struct, _name, _parent, _reg, NULL,   \
+       SPRD_COMP_CLK_DATA_TABLE(_struct, _name, _parent, _reg, NULL,   \
                                 _mshift, _mwidth, _dshift, _dwidth,    \
                                 _flags)
 
+#define SPRD_COMP_CLK_DATA_TABLE_OFFSET(_struct, _name, _parent, _reg, \
+                                       _table, _mshift, _mwidth,       \
+                                       _doffset, _dshift, _dwidth,     \
+                                       _flags)                         \
+       SPRD_COMP_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, _table, \
+                                _mshift, _mwidth, _doffset, _dshift,   \
+                                _dwidth, _flags,                       \
+                                CLK_HW_INIT_PARENTS_DATA)
+
+#define SPRD_COMP_CLK_DATA_OFFSET(_struct, _name, _parent, _reg,       \
+                                 _mshift, _mwidth, _doffset, _dshift,  \
+                                 _dwidth, _flags)                      \
+       SPRD_COMP_CLK_DATA_TABLE_OFFSET(_struct, _name, _parent, _reg,  \
+                                       NULL, _mshift, _mwidth,         \
+                                       _doffset, _dshift, _dwidth,     \
+                                       _flags)
+
 static inline struct sprd_comp *hw_to_sprd_comp(const struct clk_hw *hw)
 {
        struct sprd_clk_common *common = hw_to_sprd_clk_common(hw);
index c7261630cab410be5da31a2aa1130bd9ff2ed419..936782c241271832c0a1957c99cbecc287351d1b 100644 (file)
@@ -25,7 +25,7 @@ unsigned long sprd_div_helper_recalc_rate(struct sprd_clk_common *common,
        unsigned long val;
        unsigned int reg;
 
-       regmap_read(common->regmap, common->reg, &reg);
+       regmap_read(common->regmap, common->reg + div->offset, &reg);
        val = reg >> div->shift;
        val &= (1 << div->width) - 1;
 
@@ -53,10 +53,10 @@ int sprd_div_helper_set_rate(const struct sprd_clk_common *common,
        val = divider_get_val(rate, parent_rate, NULL,
                              div->width, 0);
 
-       regmap_read(common->regmap, common->reg, &reg);
+       regmap_read(common->regmap, common->reg + div->offset, &reg);
        reg &= ~GENMASK(div->width + div->shift - 1, div->shift);
 
-       regmap_write(common->regmap, common->reg,
+       regmap_write(common->regmap, common->reg + div->offset,
                          reg | (val << div->shift));
 
        return 0;
index f5d614b3dcf14e783266f04858a46ffc77523ef3..a0bcad80498f895a0d841d6782efa0da64d13fab 100644 (file)
  * classes.
  */
 struct sprd_div_internal {
+       s32     offset;
        u8      shift;
        u8      width;
 };
 
-#define _SPRD_DIV_CLK(_shift, _width)  \
+#define _SPRD_DIV_CLK(_offset, _shift, _width) \
        {                               \
+               .offset = _offset,      \
                .shift  = _shift,       \
                .width  = _width,       \
        }
@@ -35,10 +37,10 @@ struct sprd_div {
        struct sprd_clk_common  common;
 };
 
-#define SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg,         \
+#define SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, _offset,        \
                                _shift, _width, _flags, _fn)            \
        struct sprd_div _struct = {                                     \
-               .div    = _SPRD_DIV_CLK(_shift, _width),                \
+               .div    = _SPRD_DIV_CLK(_offset, _shift, _width),       \
                .common = {                                             \
                        .regmap         = NULL,                         \
                        .reg            = _reg,                         \
@@ -49,12 +51,17 @@ struct sprd_div {
 
 #define SPRD_DIV_CLK(_struct, _name, _parent, _reg,                    \
                     _shift, _width, _flags)                            \
-       SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg,          \
+       SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, 0x0,     \
                                _shift, _width, _flags, CLK_HW_INIT)
 
+#define SPRD_DIV_CLK_FW_NAME(_struct, _name, _parent, _reg,            \
+                       _shift, _width, _flags)                         \
+       SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, 0x0,     \
+                               _shift, _width, _flags, CLK_HW_INIT_FW_NAME)
+
 #define SPRD_DIV_CLK_HW(_struct, _name, _parent, _reg,                 \
                        _shift, _width, _flags)                         \
-       SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg,          \
+       SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, 0x0,     \
                                _shift, _width, _flags, CLK_HW_INIT_HW)
 
 static inline struct sprd_div *hw_to_sprd_div(const struct clk_hw *hw)
index 1f3234f22667446557a2e8d36843378a2841ac73..e9cd80e085dc3b9f4c4ef41e901d40b31e49bc6e 100644 (file)
@@ -329,12 +329,12 @@ struct visconti_pll_provider * __init visconti_init_pll(struct device_node *np,
        if (!ctx)
                return ERR_PTR(-ENOMEM);
 
-       for (i = 0; i < nr_plls; ++i)
-               ctx->clk_data.hws[i] = ERR_PTR(-ENOENT);
-
        ctx->node = np;
        ctx->reg_base = base;
        ctx->clk_data.num = nr_plls;
 
+       for (i = 0; i < nr_plls; ++i)
+               ctx->clk_data.hws[i] = ERR_PTR(-ENOENT);
+
        return ctx;
 }
index 01d07f1bf01b1031bc61b88826953cdeabb017de..c4bd40676da4bf6c428331d211d09c50957271e5 100644 (file)
 
 struct visconti_pll_provider {
        void __iomem *reg_base;
-       struct clk_hw_onecell_data clk_data;
        struct device_node *node;
+
+       /* Must be last */
+       struct clk_hw_onecell_data clk_data;
 };
 
 #define VISCONTI_PLL_RATE(_rate, _dacen, _dsmen, \
index a62cb0629a7a15091d13a3757433e02451e76ff4..743ee60632eb8aea0fa5347da142ebf22d205bc4 100644 (file)
 #define MMSS_MMSSNOC_BTO_AHB_CLK                       112
 #define MMSS_MMSSNOC_AXI_CLK                           113
 #define MMSS_S0_AXI_CLK                                        114
-#define OCMEMCX_AHB_CLK                                        115
 #define OCMEMCX_OCMEMNOC_CLK                           116
 #define OXILI_OCMEMGX_CLK                              117
 #define OCMEMNOC_CLK                                   118
diff --git a/include/dt-bindings/clock/qcom,sm4450-gcc.h b/include/dt-bindings/clock/qcom,sm4450-gcc.h
new file mode 100644 (file)
index 0000000..c18e47a
--- /dev/null
@@ -0,0 +1,197 @@
+/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
+/*
+ * Copyright (c) 2023, Qualcomm Innovation Center, Inc. All rights reserved.
+ */
+
+#ifndef _DT_BINDINGS_CLK_QCOM_GCC_SM4450_H
+#define _DT_BINDINGS_CLK_QCOM_GCC_SM4450_H
+
+/* GCC clocks */
+#define GCC_AGGRE_NOC_PCIE_0_AXI_CLK                           0
+#define GCC_AGGRE_UFS_PHY_AXI_CLK                              1
+#define GCC_AGGRE_UFS_PHY_AXI_HW_CTL_CLK                       2
+#define GCC_AGGRE_USB3_PRIM_AXI_CLK                            3
+#define GCC_BOOT_ROM_AHB_CLK                                   4
+#define GCC_CAMERA_AHB_CLK                                     5
+#define GCC_CAMERA_HF_AXI_CLK                                  6
+#define GCC_CAMERA_SF_AXI_CLK                                  7
+#define GCC_CAMERA_SLEEP_CLK                                   8
+#define GCC_CAMERA_XO_CLK                                      9
+#define GCC_CFG_NOC_PCIE_ANOC_AHB_CLK                          10
+#define GCC_CFG_NOC_USB3_PRIM_AXI_CLK                          11
+#define GCC_DDRSS_GPU_AXI_CLK                                  12
+#define GCC_DDRSS_PCIE_SF_TBU_CLK                              13
+#define GCC_DISP_AHB_CLK                                       14
+#define GCC_DISP_HF_AXI_CLK                                    15
+#define GCC_DISP_XO_CLK                                                16
+#define GCC_EUSB3_0_CLKREF_EN                                  17
+#define GCC_GP1_CLK                                            18
+#define GCC_GP1_CLK_SRC                                                19
+#define GCC_GP2_CLK                                            20
+#define GCC_GP2_CLK_SRC                                                21
+#define GCC_GP3_CLK                                            22
+#define GCC_GP3_CLK_SRC                                                23
+#define GCC_GPLL0                                              24
+#define GCC_GPLL0_OUT_EVEN                                     25
+#define GCC_GPLL0_OUT_ODD                                      26
+#define GCC_GPLL1                                              27
+#define GCC_GPLL3                                              28
+#define GCC_GPLL4                                              29
+#define GCC_GPLL9                                              30
+#define GCC_GPLL10                                             31
+#define GCC_GPU_CFG_AHB_CLK                                    32
+#define GCC_GPU_GPLL0_CLK_SRC                                  33
+#define GCC_GPU_GPLL0_DIV_CLK_SRC                              34
+#define GCC_GPU_MEMNOC_GFX_CLK                                 35
+#define GCC_GPU_SNOC_DVM_GFX_CLK                               36
+#define GCC_HLOS1_VOTE_AGGRE_NOC_MMU_AUDIO_TBU_CLK             37
+#define GCC_HLOS1_VOTE_AGGRE_NOC_MMU_PCIE_TBU_CLK              38
+#define GCC_HLOS1_VOTE_AGGRE_NOC_MMU_TBU1_CLK                  39
+#define GCC_HLOS1_VOTE_AGGRE_NOC_MMU_TBU2_CLK                  40
+#define GCC_HLOS1_VOTE_MMNOC_MMU_TBU_HF0_CLK                   41
+#define GCC_HLOS1_VOTE_MMNOC_MMU_TBU_HF1_CLK                   42
+#define GCC_HLOS1_VOTE_MMNOC_MMU_TBU_SF0_CLK                   43
+#define GCC_HLOS1_VOTE_MMU_TCU_CLK                             44
+#define GCC_PCIE_0_AUX_CLK                                     45
+#define GCC_PCIE_0_AUX_CLK_SRC                                 46
+#define GCC_PCIE_0_CFG_AHB_CLK                                 47
+#define GCC_PCIE_0_CLKREF_EN                                   48
+#define GCC_PCIE_0_MSTR_AXI_CLK                                        49
+#define GCC_PCIE_0_PHY_RCHNG_CLK                               50
+#define GCC_PCIE_0_PHY_RCHNG_CLK_SRC                           51
+#define GCC_PCIE_0_PIPE_CLK                                    52
+#define GCC_PCIE_0_PIPE_CLK_SRC                                        53
+#define GCC_PCIE_0_PIPE_DIV2_CLK                               54
+#define GCC_PCIE_0_PIPE_DIV2_CLK_SRC                           55
+#define GCC_PCIE_0_SLV_AXI_CLK                                 56
+#define GCC_PCIE_0_SLV_Q2A_AXI_CLK                             57
+#define GCC_PDM2_CLK                                           58
+#define GCC_PDM2_CLK_SRC                                       59
+#define GCC_PDM_AHB_CLK                                                60
+#define GCC_PDM_XO4_CLK                                                61
+#define GCC_QMIP_CAMERA_NRT_AHB_CLK                            62
+#define GCC_QMIP_CAMERA_RT_AHB_CLK                             63
+#define GCC_QMIP_DISP_AHB_CLK                                  64
+#define GCC_QMIP_GPU_AHB_CLK                                   65
+#define GCC_QMIP_PCIE_AHB_CLK                                  66
+#define GCC_QMIP_VIDEO_VCODEC_AHB_CLK                          67
+#define GCC_QUPV3_WRAP0_CORE_2X_CLK                            68
+#define GCC_QUPV3_WRAP0_CORE_CLK                               69
+#define GCC_QUPV3_WRAP0_S0_CLK                                 70
+#define GCC_QUPV3_WRAP0_S0_CLK_SRC                             71
+#define GCC_QUPV3_WRAP0_S1_CLK                                 72
+#define GCC_QUPV3_WRAP0_S1_CLK_SRC                             73
+#define GCC_QUPV3_WRAP0_S2_CLK                                 74
+#define GCC_QUPV3_WRAP0_S2_CLK_SRC                             75
+#define GCC_QUPV3_WRAP0_S3_CLK                                 76
+#define GCC_QUPV3_WRAP0_S3_CLK_SRC                             77
+#define GCC_QUPV3_WRAP0_S4_CLK                                 78
+#define GCC_QUPV3_WRAP0_S4_CLK_SRC                             79
+#define GCC_QUPV3_WRAP1_CORE_2X_CLK                            80
+#define GCC_QUPV3_WRAP1_CORE_CLK                               81
+#define GCC_QUPV3_WRAP1_S0_CLK                                 82
+#define GCC_QUPV3_WRAP1_S0_CLK_SRC                             83
+#define GCC_QUPV3_WRAP1_S1_CLK                                 84
+#define GCC_QUPV3_WRAP1_S1_CLK_SRC                             85
+#define GCC_QUPV3_WRAP1_S2_CLK                                 86
+#define GCC_QUPV3_WRAP1_S2_CLK_SRC                             87
+#define GCC_QUPV3_WRAP1_S3_CLK                                 88
+#define GCC_QUPV3_WRAP1_S3_CLK_SRC                             89
+#define GCC_QUPV3_WRAP1_S4_CLK                                 90
+#define GCC_QUPV3_WRAP1_S4_CLK_SRC                             91
+#define GCC_QUPV3_WRAP_0_M_AHB_CLK                             92
+#define GCC_QUPV3_WRAP_0_S_AHB_CLK                             93
+#define GCC_QUPV3_WRAP_1_M_AHB_CLK                             94
+#define GCC_QUPV3_WRAP_1_S_AHB_CLK                             95
+#define GCC_SDCC1_AHB_CLK                                      96
+#define GCC_SDCC1_APPS_CLK                                     97
+#define GCC_SDCC1_APPS_CLK_SRC                                 98
+#define GCC_SDCC1_ICE_CORE_CLK                                 99
+#define GCC_SDCC1_ICE_CORE_CLK_SRC                             100
+#define GCC_SDCC2_AHB_CLK                                      101
+#define GCC_SDCC2_APPS_CLK                                     102
+#define GCC_SDCC2_APPS_CLK_SRC                                 103
+#define GCC_UFS_0_CLKREF_EN                                    104
+#define GCC_UFS_PAD_CLKREF_EN                                  105
+#define GCC_UFS_PHY_AHB_CLK                                    106
+#define GCC_UFS_PHY_AXI_CLK                                    107
+#define GCC_UFS_PHY_AXI_CLK_SRC                                        108
+#define GCC_UFS_PHY_AXI_HW_CTL_CLK                             109
+#define GCC_UFS_PHY_ICE_CORE_CLK                               110
+#define GCC_UFS_PHY_ICE_CORE_CLK_SRC                           111
+#define GCC_UFS_PHY_ICE_CORE_HW_CTL_CLK                                112
+#define GCC_UFS_PHY_PHY_AUX_CLK                                        113
+#define GCC_UFS_PHY_PHY_AUX_CLK_SRC                            114
+#define GCC_UFS_PHY_PHY_AUX_HW_CTL_CLK                         115
+#define GCC_UFS_PHY_RX_SYMBOL_0_CLK                            116
+#define GCC_UFS_PHY_RX_SYMBOL_0_CLK_SRC                                117
+#define GCC_UFS_PHY_RX_SYMBOL_1_CLK                            118
+#define GCC_UFS_PHY_RX_SYMBOL_1_CLK_SRC                                119
+#define GCC_UFS_PHY_TX_SYMBOL_0_CLK                            120
+#define GCC_UFS_PHY_TX_SYMBOL_0_CLK_SRC                                121
+#define GCC_UFS_PHY_UNIPRO_CORE_CLK                            122
+#define GCC_UFS_PHY_UNIPRO_CORE_CLK_SRC                                123
+#define GCC_UFS_PHY_UNIPRO_CORE_HW_CTL_CLK                     124
+#define GCC_USB30_PRIM_MASTER_CLK                              125
+#define GCC_USB30_PRIM_MASTER_CLK_SRC                          126
+#define GCC_USB30_PRIM_MOCK_UTMI_CLK                           127
+#define GCC_USB30_PRIM_MOCK_UTMI_CLK_SRC                       128
+#define GCC_USB30_PRIM_MOCK_UTMI_POSTDIV_CLK_SRC               129
+#define GCC_USB30_PRIM_SLEEP_CLK                               130
+#define GCC_USB3_0_CLKREF_EN                                   131
+#define GCC_USB3_PRIM_PHY_AUX_CLK                              132
+#define GCC_USB3_PRIM_PHY_AUX_CLK_SRC                          133
+#define GCC_USB3_PRIM_PHY_COM_AUX_CLK                          134
+#define GCC_USB3_PRIM_PHY_PIPE_CLK                             135
+#define GCC_USB3_PRIM_PHY_PIPE_CLK_SRC                         136
+#define GCC_VCODEC0_AXI_CLK                                    137
+#define GCC_VENUS_CTL_AXI_CLK                                  138
+#define GCC_VIDEO_AHB_CLK                                      139
+#define GCC_VIDEO_THROTTLE_CORE_CLK                            140
+#define GCC_VIDEO_VCODEC0_SYS_CLK                              141
+#define GCC_VIDEO_VENUS_CLK_SRC                                        142
+#define GCC_VIDEO_VENUS_CTL_CLK                                        143
+#define GCC_VIDEO_XO_CLK                                       144
+
+/* GCC power domains */
+#define GCC_PCIE_0_GDSC                                                0
+#define GCC_UFS_PHY_GDSC                                       1
+#define GCC_USB30_PRIM_GDSC                                    2
+#define GCC_VCODEC0_GDSC                                       3
+#define GCC_VENUS_GDSC                                         4
+
+/* GCC resets */
+#define GCC_CAMERA_BCR                                         0
+#define GCC_DISPLAY_BCR                                                1
+#define GCC_GPU_BCR                                            2
+#define GCC_PCIE_0_BCR                                         3
+#define GCC_PCIE_0_LINK_DOWN_BCR                               4
+#define GCC_PCIE_0_NOCSR_COM_PHY_BCR                           5
+#define GCC_PCIE_0_PHY_BCR                                     6
+#define GCC_PCIE_0_PHY_NOCSR_COM_PHY_BCR                       7
+#define GCC_PCIE_PHY_BCR                                       8
+#define GCC_PCIE_PHY_CFG_AHB_BCR                               9
+#define GCC_PCIE_PHY_COM_BCR                                   10
+#define GCC_PDM_BCR                                            11
+#define GCC_QUPV3_WRAPPER_0_BCR                                        12
+#define GCC_QUPV3_WRAPPER_1_BCR                                        13
+#define GCC_QUSB2PHY_PRIM_BCR                                  14
+#define GCC_QUSB2PHY_SEC_BCR                                   15
+#define GCC_SDCC1_BCR                                          16
+#define GCC_SDCC2_BCR                                          17
+#define GCC_UFS_PHY_BCR                                                18
+#define GCC_USB30_PRIM_BCR                                     19
+#define GCC_USB3_DP_PHY_PRIM_BCR                               20
+#define GCC_USB3_DP_PHY_SEC_BCR                                        21
+#define GCC_USB3_PHY_PRIM_BCR                                  22
+#define GCC_USB3_PHY_SEC_BCR                                   23
+#define GCC_USB3PHY_PHY_PRIM_BCR                               24
+#define GCC_USB3PHY_PHY_SEC_BCR                                        25
+#define GCC_VCODEC0_BCR                                                26
+#define GCC_VENUS_BCR                                          27
+#define GCC_VIDEO_BCR                                          28
+#define GCC_VIDEO_VENUS_BCR                                    29
+#define GCC_VENUS_CTL_AXI_CLK_ARES                             30
+#define GCC_VIDEO_VENUS_CTL_CLK_ARES                           31
+
+#endif
diff --git a/include/dt-bindings/clock/qcom,sm8550-camcc.h b/include/dt-bindings/clock/qcom,sm8550-camcc.h
new file mode 100644 (file)
index 0000000..a2a2566
--- /dev/null
@@ -0,0 +1,187 @@
+/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
+/*
+ * Copyright (c) 2023, Qualcomm Innovation Center, Inc. All rights reserved.
+ */
+
+#ifndef _DT_BINDINGS_CLK_QCOM_CAM_CC_SM8550_H
+#define _DT_BINDINGS_CLK_QCOM_CAM_CC_SM8550_H
+
+/* CAM_CC clocks */
+#define CAM_CC_BPS_AHB_CLK                                     0
+#define CAM_CC_BPS_CLK                                         1
+#define CAM_CC_BPS_CLK_SRC                                     2
+#define CAM_CC_BPS_FAST_AHB_CLK                                        3
+#define CAM_CC_CAMNOC_AXI_CLK                                  4
+#define CAM_CC_CAMNOC_AXI_CLK_SRC                              5
+#define CAM_CC_CAMNOC_DCD_XO_CLK                               6
+#define CAM_CC_CAMNOC_XO_CLK                                   7
+#define CAM_CC_CCI_0_CLK                                       8
+#define CAM_CC_CCI_0_CLK_SRC                                   9
+#define CAM_CC_CCI_1_CLK                                       10
+#define CAM_CC_CCI_1_CLK_SRC                                   11
+#define CAM_CC_CCI_2_CLK                                       12
+#define CAM_CC_CCI_2_CLK_SRC                                   13
+#define CAM_CC_CORE_AHB_CLK                                    14
+#define CAM_CC_CPAS_AHB_CLK                                    15
+#define CAM_CC_CPAS_BPS_CLK                                    16
+#define CAM_CC_CPAS_CRE_CLK                                    17
+#define CAM_CC_CPAS_FAST_AHB_CLK                               18
+#define CAM_CC_CPAS_IFE_0_CLK                                  19
+#define CAM_CC_CPAS_IFE_1_CLK                                  20
+#define CAM_CC_CPAS_IFE_2_CLK                                  21
+#define CAM_CC_CPAS_IFE_LITE_CLK                               22
+#define CAM_CC_CPAS_IPE_NPS_CLK                                        23
+#define CAM_CC_CPAS_SBI_CLK                                    24
+#define CAM_CC_CPAS_SFE_0_CLK                                  25
+#define CAM_CC_CPAS_SFE_1_CLK                                  26
+#define CAM_CC_CPHY_RX_CLK_SRC                                 27
+#define CAM_CC_CRE_AHB_CLK                                     28
+#define CAM_CC_CRE_CLK                                         29
+#define CAM_CC_CRE_CLK_SRC                                     30
+#define CAM_CC_CSI0PHYTIMER_CLK                                        31
+#define CAM_CC_CSI0PHYTIMER_CLK_SRC                            32
+#define CAM_CC_CSI1PHYTIMER_CLK                                        33
+#define CAM_CC_CSI1PHYTIMER_CLK_SRC                            34
+#define CAM_CC_CSI2PHYTIMER_CLK                                        35
+#define CAM_CC_CSI2PHYTIMER_CLK_SRC                            36
+#define CAM_CC_CSI3PHYTIMER_CLK                                        37
+#define CAM_CC_CSI3PHYTIMER_CLK_SRC                            38
+#define CAM_CC_CSI4PHYTIMER_CLK                                        39
+#define CAM_CC_CSI4PHYTIMER_CLK_SRC                            40
+#define CAM_CC_CSI5PHYTIMER_CLK                                        41
+#define CAM_CC_CSI5PHYTIMER_CLK_SRC                            42
+#define CAM_CC_CSI6PHYTIMER_CLK                                        43
+#define CAM_CC_CSI6PHYTIMER_CLK_SRC                            44
+#define CAM_CC_CSI7PHYTIMER_CLK                                        45
+#define CAM_CC_CSI7PHYTIMER_CLK_SRC                            46
+#define CAM_CC_CSID_CLK                                                47
+#define CAM_CC_CSID_CLK_SRC                                    48
+#define CAM_CC_CSID_CSIPHY_RX_CLK                              49
+#define CAM_CC_CSIPHY0_CLK                                     50
+#define CAM_CC_CSIPHY1_CLK                                     51
+#define CAM_CC_CSIPHY2_CLK                                     52
+#define CAM_CC_CSIPHY3_CLK                                     53
+#define CAM_CC_CSIPHY4_CLK                                     54
+#define CAM_CC_CSIPHY5_CLK                                     55
+#define CAM_CC_CSIPHY6_CLK                                     56
+#define CAM_CC_CSIPHY7_CLK                                     57
+#define CAM_CC_DRV_AHB_CLK                                     58
+#define CAM_CC_DRV_XO_CLK                                      59
+#define CAM_CC_FAST_AHB_CLK_SRC                                        60
+#define CAM_CC_GDSC_CLK                                                61
+#define CAM_CC_ICP_AHB_CLK                                     62
+#define CAM_CC_ICP_CLK                                         63
+#define CAM_CC_ICP_CLK_SRC                                     64
+#define CAM_CC_IFE_0_CLK                                       65
+#define CAM_CC_IFE_0_CLK_SRC                                   66
+#define CAM_CC_IFE_0_DSP_CLK                                   67
+#define CAM_CC_IFE_0_DSP_CLK_SRC                               68
+#define CAM_CC_IFE_0_FAST_AHB_CLK                              69
+#define CAM_CC_IFE_1_CLK                                       70
+#define CAM_CC_IFE_1_CLK_SRC                                   71
+#define CAM_CC_IFE_1_DSP_CLK                                   72
+#define CAM_CC_IFE_1_DSP_CLK_SRC                               73
+#define CAM_CC_IFE_1_FAST_AHB_CLK                              74
+#define CAM_CC_IFE_2_CLK                                       75
+#define CAM_CC_IFE_2_CLK_SRC                                   76
+#define CAM_CC_IFE_2_DSP_CLK                                   77
+#define CAM_CC_IFE_2_DSP_CLK_SRC                               78
+#define CAM_CC_IFE_2_FAST_AHB_CLK                              79
+#define CAM_CC_IFE_LITE_AHB_CLK                                        80
+#define CAM_CC_IFE_LITE_CLK                                    81
+#define CAM_CC_IFE_LITE_CLK_SRC                                        82
+#define CAM_CC_IFE_LITE_CPHY_RX_CLK                            83
+#define CAM_CC_IFE_LITE_CSID_CLK                               84
+#define CAM_CC_IFE_LITE_CSID_CLK_SRC                           85
+#define CAM_CC_IPE_NPS_AHB_CLK                                 86
+#define CAM_CC_IPE_NPS_CLK                                     87
+#define CAM_CC_IPE_NPS_CLK_SRC                                 88
+#define CAM_CC_IPE_NPS_FAST_AHB_CLK                            89
+#define CAM_CC_IPE_PPS_CLK                                     90
+#define CAM_CC_IPE_PPS_FAST_AHB_CLK                            91
+#define CAM_CC_JPEG_1_CLK                                      92
+#define CAM_CC_JPEG_CLK                                                93
+#define CAM_CC_JPEG_CLK_SRC                                    94
+#define CAM_CC_MCLK0_CLK                                       95
+#define CAM_CC_MCLK0_CLK_SRC                                   96
+#define CAM_CC_MCLK1_CLK                                       97
+#define CAM_CC_MCLK1_CLK_SRC                                   98
+#define CAM_CC_MCLK2_CLK                                       99
+#define CAM_CC_MCLK2_CLK_SRC                                   100
+#define CAM_CC_MCLK3_CLK                                       101
+#define CAM_CC_MCLK3_CLK_SRC                                   102
+#define CAM_CC_MCLK4_CLK                                       103
+#define CAM_CC_MCLK4_CLK_SRC                                   104
+#define CAM_CC_MCLK5_CLK                                       105
+#define CAM_CC_MCLK5_CLK_SRC                                   106
+#define CAM_CC_MCLK6_CLK                                       107
+#define CAM_CC_MCLK6_CLK_SRC                                   108
+#define CAM_CC_MCLK7_CLK                                       109
+#define CAM_CC_MCLK7_CLK_SRC                                   110
+#define CAM_CC_PLL0                                            111
+#define CAM_CC_PLL0_OUT_EVEN                                   112
+#define CAM_CC_PLL0_OUT_ODD                                    113
+#define CAM_CC_PLL1                                            114
+#define CAM_CC_PLL1_OUT_EVEN                                   115
+#define CAM_CC_PLL2                                            116
+#define CAM_CC_PLL3                                            117
+#define CAM_CC_PLL3_OUT_EVEN                                   118
+#define CAM_CC_PLL4                                            119
+#define CAM_CC_PLL4_OUT_EVEN                                   120
+#define CAM_CC_PLL5                                            121
+#define CAM_CC_PLL5_OUT_EVEN                                   122
+#define CAM_CC_PLL6                                            123
+#define CAM_CC_PLL6_OUT_EVEN                                   124
+#define CAM_CC_PLL7                                            125
+#define CAM_CC_PLL7_OUT_EVEN                                   126
+#define CAM_CC_PLL8                                            127
+#define CAM_CC_PLL8_OUT_EVEN                                   128
+#define CAM_CC_PLL9                                            129
+#define CAM_CC_PLL9_OUT_EVEN                                   130
+#define CAM_CC_PLL10                                           131
+#define CAM_CC_PLL10_OUT_EVEN                                  132
+#define CAM_CC_PLL11                                           133
+#define CAM_CC_PLL11_OUT_EVEN                                  134
+#define CAM_CC_PLL12                                           135
+#define CAM_CC_PLL12_OUT_EVEN                                  136
+#define CAM_CC_QDSS_DEBUG_CLK                                  137
+#define CAM_CC_QDSS_DEBUG_CLK_SRC                              138
+#define CAM_CC_QDSS_DEBUG_XO_CLK                               139
+#define CAM_CC_SBI_CLK                                         140
+#define CAM_CC_SBI_FAST_AHB_CLK                                        141
+#define CAM_CC_SFE_0_CLK                                       142
+#define CAM_CC_SFE_0_CLK_SRC                                   143
+#define CAM_CC_SFE_0_FAST_AHB_CLK                              144
+#define CAM_CC_SFE_1_CLK                                       145
+#define CAM_CC_SFE_1_CLK_SRC                                   146
+#define CAM_CC_SFE_1_FAST_AHB_CLK                              147
+#define CAM_CC_SLEEP_CLK                                       148
+#define CAM_CC_SLEEP_CLK_SRC                                   149
+#define CAM_CC_SLOW_AHB_CLK_SRC                                        150
+#define CAM_CC_XO_CLK_SRC                                      151
+
+/* CAM_CC power domains */
+#define CAM_CC_BPS_GDSC                                                0
+#define CAM_CC_IFE_0_GDSC                                      1
+#define CAM_CC_IFE_1_GDSC                                      2
+#define CAM_CC_IFE_2_GDSC                                      3
+#define CAM_CC_IPE_0_GDSC                                      4
+#define CAM_CC_SBI_GDSC                                                5
+#define CAM_CC_SFE_0_GDSC                                      6
+#define CAM_CC_SFE_1_GDSC                                      7
+#define CAM_CC_TITAN_TOP_GDSC                                  8
+
+/* CAM_CC resets */
+#define CAM_CC_BPS_BCR                                         0
+#define CAM_CC_DRV_BCR                                         1
+#define CAM_CC_ICP_BCR                                         2
+#define CAM_CC_IFE_0_BCR                                       3
+#define CAM_CC_IFE_1_BCR                                       4
+#define CAM_CC_IFE_2_BCR                                       5
+#define CAM_CC_IPE_0_BCR                                       6
+#define CAM_CC_QDSS_DEBUG_BCR                                  7
+#define CAM_CC_SBI_BCR                                         8
+#define CAM_CC_SFE_0_BCR                                       9
+#define CAM_CC_SFE_1_BCR                                       10
+
+#endif