| // SPDX-License-Identifier: (GPL-2.0-only OR MIT) |
| /* |
| * Amlogic S4 Peripherals Clock Controller Driver |
| * |
| * Copyright (c) 2022-2023 Amlogic, inc. All rights reserved |
| * Author: Yu Tu <yu.tu@amlogic.com> |
| */ |
| |
| #include <linux/clk-provider.h> |
| #include <linux/of_device.h> |
| #include <linux/platform_device.h> |
| |
| #include "clk-regmap.h" |
| #include "vid-pll-div.h" |
| #include "clk-dualdiv.h" |
| #include "s4-peripherals.h" |
| #include "meson-clkc-utils.h" |
| #include <dt-bindings/clock/amlogic,s4-peripherals-clkc.h> |
| |
| static struct clk_regmap s4_rtc_32k_by_oscin_clkin = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_RTC_BY_OSCIN_CTRL0, |
| .bit_idx = 31, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "rtc_32k_by_oscin_clkin", |
| .ops = &clk_regmap_gate_ops, |
| .parent_data = (const struct clk_parent_data []) { |
| { .fw_name = "xtal", } |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static const struct meson_clk_dualdiv_param s4_32k_div_table[] = { |
| { |
| .dual = 1, |
| .n1 = 733, |
| .m1 = 8, |
| .n2 = 732, |
| .m2 = 11, |
| }, |
| {} |
| }; |
| |
| static struct clk_regmap s4_rtc_32k_by_oscin_div = { |
| .data = &(struct meson_clk_dualdiv_data){ |
| .n1 = { |
| .reg_off = CLKCTRL_RTC_BY_OSCIN_CTRL0, |
| .shift = 0, |
| .width = 12, |
| }, |
| .n2 = { |
| .reg_off = CLKCTRL_RTC_BY_OSCIN_CTRL0, |
| .shift = 12, |
| .width = 12, |
| }, |
| .m1 = { |
| .reg_off = CLKCTRL_RTC_BY_OSCIN_CTRL1, |
| .shift = 0, |
| .width = 12, |
| }, |
| .m2 = { |
| .reg_off = CLKCTRL_RTC_BY_OSCIN_CTRL1, |
| .shift = 12, |
| .width = 12, |
| }, |
| .dual = { |
| .reg_off = CLKCTRL_RTC_BY_OSCIN_CTRL0, |
| .shift = 28, |
| .width = 1, |
| }, |
| .table = s4_32k_div_table, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "rtc_32k_by_oscin_div", |
| .ops = &meson_clk_dualdiv_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_rtc_32k_by_oscin_clkin.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_rtc_32k_by_oscin_sel = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_RTC_BY_OSCIN_CTRL1, |
| .mask = 0x1, |
| .shift = 24, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "rtc_32k_by_oscin_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_rtc_32k_by_oscin_div.hw, |
| &s4_rtc_32k_by_oscin_clkin.hw, |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_rtc_32k_by_oscin = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_RTC_BY_OSCIN_CTRL0, |
| .bit_idx = 30, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "rtc_32k_by_oscin", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_rtc_32k_by_oscin_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_rtc_clk = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_RTC_CTRL, |
| .mask = 0x3, |
| .shift = 0, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "rtc_clk_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_rtc_32k_by_oscin.hw, |
| &s4_rtc_32k_by_oscin_div.hw, |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* The index 5 is AXI_CLK, which is dedicated to AXI. So skip it. */ |
| static u32 mux_table_sys_ab_clk_sel[] = { 0, 1, 2, 3, 4, 6, 7 }; |
| static const struct clk_parent_data sys_ab_clk_parent_data[] = { |
| { .fw_name = "xtal" }, |
| { .fw_name = "fclk_div2" }, |
| { .fw_name = "fclk_div3" }, |
| { .fw_name = "fclk_div4" }, |
| { .fw_name = "fclk_div5" }, |
| { .fw_name = "fclk_div7" }, |
| { .hw = &s4_rtc_clk.hw } |
| }; |
| |
| /* |
| * This clock is initialized by ROMcode. |
| * The chip was changed SYS CLK for security reasons. SYS CLK registers are not writable |
| * in the kernel phase. Write of SYS related register will cause the system to crash. |
| * Meanwhile, these clock won't ever change at runtime. |
| * For the above reasons, we can only use ro_ops for SYS related clocks. |
| */ |
| static struct clk_regmap s4_sysclk_b_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .mask = 0x7, |
| .shift = 26, |
| .table = mux_table_sys_ab_clk_sel, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sysclk_b_sel", |
| .ops = &clk_regmap_mux_ro_ops, |
| .parent_data = sys_ab_clk_parent_data, |
| .num_parents = ARRAY_SIZE(sys_ab_clk_parent_data), |
| }, |
| }; |
| |
| static struct clk_regmap s4_sysclk_b_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .shift = 16, |
| .width = 10, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sysclk_b_div", |
| .ops = &clk_regmap_divider_ro_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sysclk_b_sel.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sysclk_b = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .bit_idx = 29, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sysclk_b", |
| .ops = &clk_regmap_gate_ro_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sysclk_b_div.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sysclk_a_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .mask = 0x7, |
| .shift = 10, |
| .table = mux_table_sys_ab_clk_sel, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sysclk_a_sel", |
| .ops = &clk_regmap_mux_ro_ops, |
| .parent_data = sys_ab_clk_parent_data, |
| .num_parents = ARRAY_SIZE(sys_ab_clk_parent_data), |
| }, |
| }; |
| |
| static struct clk_regmap s4_sysclk_a_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .shift = 0, |
| .width = 10, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sysclk_a_div", |
| .ops = &clk_regmap_divider_ro_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sysclk_a_sel.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sysclk_a = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .bit_idx = 13, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sysclk_a", |
| .ops = &clk_regmap_gate_ro_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sysclk_a_div.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sys_clk = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SYS_CLK_CTRL0, |
| .mask = 0x1, |
| .shift = 31, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sys_clk", |
| .ops = &clk_regmap_mux_ro_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sysclk_a.hw, |
| &s4_sysclk_b.hw |
| }, |
| .num_parents = 2, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ceca_32k_clkin = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_CECA_CTRL0, |
| .bit_idx = 31, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "ceca_32k_clkin", |
| .ops = &clk_regmap_gate_ops, |
| .parent_data = (const struct clk_parent_data []) { |
| { .fw_name = "xtal", } |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ceca_32k_div = { |
| .data = &(struct meson_clk_dualdiv_data){ |
| .n1 = { |
| .reg_off = CLKCTRL_CECA_CTRL0, |
| .shift = 0, |
| .width = 12, |
| }, |
| .n2 = { |
| .reg_off = CLKCTRL_CECA_CTRL0, |
| .shift = 12, |
| .width = 12, |
| }, |
| .m1 = { |
| .reg_off = CLKCTRL_CECA_CTRL1, |
| .shift = 0, |
| .width = 12, |
| }, |
| .m2 = { |
| .reg_off = CLKCTRL_CECA_CTRL1, |
| .shift = 12, |
| .width = 12, |
| }, |
| .dual = { |
| .reg_off = CLKCTRL_CECA_CTRL0, |
| .shift = 28, |
| .width = 1, |
| }, |
| .table = s4_32k_div_table, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "ceca_32k_div", |
| .ops = &meson_clk_dualdiv_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_ceca_32k_clkin.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ceca_32k_sel_pre = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_CECA_CTRL1, |
| .mask = 0x1, |
| .shift = 24, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "ceca_32k_sel_pre", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_ceca_32k_div.hw, |
| &s4_ceca_32k_clkin.hw |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ceca_32k_sel = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_CECA_CTRL1, |
| .mask = 0x1, |
| .shift = 31, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "ceca_32k_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_ceca_32k_sel_pre.hw, |
| &s4_rtc_clk.hw |
| }, |
| .num_parents = 2, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ceca_32k_clkout = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_CECA_CTRL0, |
| .bit_idx = 30, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "ceca_32k_clkout", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_ceca_32k_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cecb_32k_clkin = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_CECB_CTRL0, |
| .bit_idx = 31, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "cecb_32k_clkin", |
| .ops = &clk_regmap_gate_ops, |
| .parent_data = (const struct clk_parent_data []) { |
| { .fw_name = "xtal", } |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cecb_32k_div = { |
| .data = &(struct meson_clk_dualdiv_data){ |
| .n1 = { |
| .reg_off = CLKCTRL_CECB_CTRL0, |
| .shift = 0, |
| .width = 12, |
| }, |
| .n2 = { |
| .reg_off = CLKCTRL_CECB_CTRL0, |
| .shift = 12, |
| .width = 12, |
| }, |
| .m1 = { |
| .reg_off = CLKCTRL_CECB_CTRL1, |
| .shift = 0, |
| .width = 12, |
| }, |
| .m2 = { |
| .reg_off = CLKCTRL_CECB_CTRL1, |
| .shift = 12, |
| .width = 12, |
| }, |
| .dual = { |
| .reg_off = CLKCTRL_CECB_CTRL0, |
| .shift = 28, |
| .width = 1, |
| }, |
| .table = s4_32k_div_table, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cecb_32k_div", |
| .ops = &meson_clk_dualdiv_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cecb_32k_clkin.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cecb_32k_sel_pre = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_CECB_CTRL1, |
| .mask = 0x1, |
| .shift = 24, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cecb_32k_sel_pre", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cecb_32k_div.hw, |
| &s4_cecb_32k_clkin.hw |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cecb_32k_sel = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_CECB_CTRL1, |
| .mask = 0x1, |
| .shift = 31, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cecb_32k_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cecb_32k_sel_pre.hw, |
| &s4_rtc_clk.hw |
| }, |
| .num_parents = 2, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cecb_32k_clkout = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_CECB_CTRL0, |
| .bit_idx = 30, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cecb_32k_clkout", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cecb_32k_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data s4_sc_parent_data[] = { |
| { .fw_name = "fclk_div4" }, |
| { .fw_name = "fclk_div3" }, |
| { .fw_name = "fclk_div5" }, |
| { .fw_name = "xtal", } |
| }; |
| |
| static struct clk_regmap s4_sc_clk_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SC_CLK_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sc_clk_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_sc_parent_data, |
| .num_parents = ARRAY_SIZE(s4_sc_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sc_clk_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_SC_CLK_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sc_clk_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sc_clk_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sc_clk_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_SC_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sc_clk_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sc_clk_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_12_24M_clk_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_CLK12_24_CTRL, |
| .bit_idx = 11, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "12_24m_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_data = (const struct clk_parent_data []) { |
| { .fw_name = "xtal", } |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_12M_clk_div = { |
| .mult = 1, |
| .div = 2, |
| .hw.init = &(struct clk_init_data){ |
| .name = "12M", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_12_24M_clk_gate.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_12_24M_clk = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_CLK12_24_CTRL, |
| .mask = 0x1, |
| .shift = 10, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "12_24m", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_12_24M_clk_gate.hw, |
| &s4_12M_clk_div.hw, |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* Video Clocks */ |
| static struct clk_regmap s4_vid_pll_div = { |
| .data = &(struct meson_vid_pll_div_data){ |
| .val = { |
| .reg_off = CLKCTRL_VID_PLL_CLK_DIV, |
| .shift = 0, |
| .width = 15, |
| }, |
| .sel = { |
| .reg_off = CLKCTRL_VID_PLL_CLK_DIV, |
| .shift = 16, |
| .width = 2, |
| }, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vid_pll_div", |
| /* |
| * TODO meson_vid_pll_div_ro_ops to meson_vid_pll_div_ops |
| */ |
| .ops = &meson_vid_pll_div_ro_ops, |
| .parent_data = (const struct clk_parent_data []) { |
| { .fw_name = "hdmi_pll", } |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vid_pll_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VID_PLL_CLK_DIV, |
| .mask = 0x1, |
| .shift = 18, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vid_pll_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = (const struct clk_parent_data []) { |
| { .hw = &s4_vid_pll_div.hw }, |
| { .fw_name = "hdmi_pll", } |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vid_pll = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_PLL_CLK_DIV, |
| .bit_idx = 19, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vid_pll", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vid_pll_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data s4_vclk_parent_data[] = { |
| { .hw = &s4_vid_pll.hw }, |
| { .fw_name = "gp0_pll", }, |
| { .fw_name = "hifi_pll", }, |
| { .fw_name = "mpll1", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", }, |
| }; |
| |
| static struct clk_regmap s4_vclk_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 16, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vclk_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vclk_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 16, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk2_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vclk_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vclk_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_input = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_DIV, |
| .bit_idx = 16, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk_input", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk_sel.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_input = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_DIV, |
| .bit_idx = 16, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2_input", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2_sel.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VID_CLK_DIV, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk_input.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VIID_CLK_DIV, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk2_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk2_input.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .bit_idx = 19, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk_div.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .bit_idx = 19, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2_div.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_div1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .bit_idx = 0, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk_div1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_div2_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .bit_idx = 1, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk_div2_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_div4_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .bit_idx = 2, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk_div4_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_div6_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .bit_idx = 3, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk_div6_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk_div12_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL, |
| .bit_idx = 4, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk_div12_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_div1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .bit_idx = 0, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2_div1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_div2_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .bit_idx = 1, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2_div2_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_div4_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .bit_idx = 2, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2_div4_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_div6_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .bit_idx = 3, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2_div6_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vclk2_div12_en = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VIID_CLK_CTRL, |
| .bit_idx = 4, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vclk2_div12_en", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vclk2.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk_div2 = { |
| .mult = 1, |
| .div = 2, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk_div2", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk_div2_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk_div4 = { |
| .mult = 1, |
| .div = 4, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk_div4", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk_div4_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk_div6 = { |
| .mult = 1, |
| .div = 6, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk_div6", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk_div6_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk_div12 = { |
| .mult = 1, |
| .div = 12, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk_div12", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk_div12_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk2_div2 = { |
| .mult = 1, |
| .div = 2, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk2_div2", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk2_div2_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk2_div4 = { |
| .mult = 1, |
| .div = 4, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk2_div4", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk2_div4_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk2_div6 = { |
| .mult = 1, |
| .div = 6, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk2_div6", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk2_div6_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_fixed_factor s4_vclk2_div12 = { |
| .mult = 1, |
| .div = 12, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vclk2_div12", |
| .ops = &clk_fixed_factor_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vclk2_div12_en.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* The 5,6,7 indexes corresponds to no real clock, so there are not used. */ |
| static u32 mux_table_cts_sel[] = { 0, 1, 2, 3, 4, 8, 9, 10, 11, 12 }; |
| static const struct clk_hw *s4_cts_parent_hws[] = { |
| &s4_vclk_div1.hw, |
| &s4_vclk_div2.hw, |
| &s4_vclk_div4.hw, |
| &s4_vclk_div6.hw, |
| &s4_vclk_div12.hw, |
| &s4_vclk2_div1.hw, |
| &s4_vclk2_div2.hw, |
| &s4_vclk2_div4.hw, |
| &s4_vclk2_div6.hw, |
| &s4_vclk2_div12.hw |
| }; |
| |
| static struct clk_regmap s4_cts_enci_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VID_CLK_DIV, |
| .mask = 0xf, |
| .shift = 28, |
| .table = mux_table_cts_sel, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cts_enci_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_cts_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_cts_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cts_encp_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VID_CLK_DIV, |
| .mask = 0xf, |
| .shift = 20, |
| .table = mux_table_cts_sel, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cts_encp_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_cts_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_cts_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cts_vdac_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VIID_CLK_DIV, |
| .mask = 0xf, |
| .shift = 28, |
| .table = mux_table_cts_sel, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "cts_vdac_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_cts_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_cts_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* The 5,6,7 indexes corresponds to no real clock, so there are not used. */ |
| static u32 mux_table_hdmi_tx_sel[] = { 0, 1, 2, 3, 4, 8, 9, 10, 11, 12 }; |
| static const struct clk_hw *s4_cts_hdmi_tx_parent_hws[] = { |
| &s4_vclk_div1.hw, |
| &s4_vclk_div2.hw, |
| &s4_vclk_div4.hw, |
| &s4_vclk_div6.hw, |
| &s4_vclk_div12.hw, |
| &s4_vclk2_div1.hw, |
| &s4_vclk2_div2.hw, |
| &s4_vclk2_div4.hw, |
| &s4_vclk2_div6.hw, |
| &s4_vclk2_div12.hw |
| }; |
| |
| static struct clk_regmap s4_hdmi_tx_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_HDMI_CLK_CTRL, |
| .mask = 0xf, |
| .shift = 16, |
| .table = mux_table_hdmi_tx_sel, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hdmi_tx_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_cts_hdmi_tx_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_cts_hdmi_tx_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cts_enci = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL2, |
| .bit_idx = 0, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "cts_enci", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cts_enci_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cts_encp = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL2, |
| .bit_idx = 2, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "cts_encp", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cts_encp_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_cts_vdac = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL2, |
| .bit_idx = 4, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "cts_vdac", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_cts_vdac_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdmi_tx = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VID_CLK_CTRL2, |
| .bit_idx = 5, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hdmi_tx", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hdmi_tx_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* HDMI Clocks */ |
| static const struct clk_parent_data s4_hdmi_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div5", } |
| }; |
| |
| static struct clk_regmap s4_hdmi_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_HDMI_CLK_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hdmi_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_hdmi_parent_data, |
| .num_parents = ARRAY_SIZE(s4_hdmi_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdmi_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_HDMI_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hdmi_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_hdmi_sel.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdmi = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_HDMI_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hdmi", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_hdmi_div.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ts_clk_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_TS_CLK_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "ts_clk_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_data = &(const struct clk_parent_data) { |
| .fw_name = "xtal", |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ts_clk_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_TS_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "ts_clk", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_ts_clk_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* |
| * The MALI IP is clocked by two identical clocks (mali_0 and mali_1) |
| * muxed by a glitch-free switch. The CCF can manage this glitch-free |
| * mux because it does top-to-bottom updates the each clock tree and |
| * switches to the "inactive" one when CLK_SET_RATE_GATE is set. |
| */ |
| static const struct clk_parent_data s4_mali_0_1_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .fw_name = "gp0_pll", }, |
| { .fw_name = "hifi_pll", }, |
| { .fw_name = "fclk_div2p5", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", } |
| }; |
| |
| static struct clk_regmap s4_mali_0_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali_0_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_mali_0_1_parent_data, |
| .num_parents = ARRAY_SIZE(s4_mali_0_1_parent_data), |
| /* |
| * Don't request the parent to change the rate because |
| * all GPU frequencies can be derived from the fclk_* |
| * clocks and one special GP0_PLL setting. This is |
| * important because we need the HIFI PLL clock for audio. |
| */ |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_mali_0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali_0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_mali_0_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_mali_0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali_0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_mali_0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_GATE | CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_mali_1_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali_1_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_mali_0_1_parent_data, |
| .num_parents = ARRAY_SIZE(s4_mali_0_1_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_mali_1_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .shift = 16, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali_1_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_mali_1_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_mali_1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali_1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_mali_1_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_GATE | CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_hw *s4_mali_parent_hws[] = { |
| &s4_mali_0.hw, |
| &s4_mali_1.hw |
| }; |
| |
| static struct clk_regmap s4_mali_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_MALI_CLK_CTRL, |
| .mask = 1, |
| .shift = 31, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "mali", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_mali_parent_hws, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* VDEC clocks */ |
| static const struct clk_parent_data s4_dec_parent_data[] = { |
| { .fw_name = "fclk_div2p5", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", }, |
| { .fw_name = "hifi_pll", }, |
| { .fw_name = "gp0_pll", }, |
| { .fw_name = "xtal", } |
| }; |
| |
| static struct clk_regmap s4_vdec_p0_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDEC_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdec_p0_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_dec_parent_data, |
| .num_parents = ARRAY_SIZE(s4_dec_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdec_p0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VDEC_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| .flags = CLK_DIVIDER_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdec_p0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vdec_p0_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdec_p0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VDEC_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vdec_p0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vdec_p0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdec_p1_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDEC3_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdec_p1_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_dec_parent_data, |
| .num_parents = ARRAY_SIZE(s4_dec_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdec_p1_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VDEC3_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| .flags = CLK_DIVIDER_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdec_p1_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vdec_p1_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdec_p1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VDEC3_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vdec_p1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vdec_p1_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_hw *s4_vdec_mux_parent_hws[] = { |
| &s4_vdec_p0.hw, |
| &s4_vdec_p1.hw |
| }; |
| |
| static struct clk_regmap s4_vdec_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDEC3_CLK_CTRL, |
| .mask = 0x1, |
| .shift = 15, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdec_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_vdec_mux_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_vdec_mux_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hevcf_p0_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDEC2_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hevcf_p0_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_dec_parent_data, |
| .num_parents = ARRAY_SIZE(s4_dec_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hevcf_p0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VDEC2_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| .flags = CLK_DIVIDER_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hevcf_p0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hevcf_p0_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hevcf_p0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VDEC2_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hevcf_p0_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hevcf_p0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hevcf_p1_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDEC4_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| .flags = CLK_MUX_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hevcf_p1_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_dec_parent_data, |
| .num_parents = ARRAY_SIZE(s4_dec_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hevcf_p1_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VDEC4_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| .flags = CLK_DIVIDER_ROUND_CLOSEST, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hevcf_p1_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hevcf_p1_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hevcf_p1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VDEC4_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hevcf_p1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hevcf_p1_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_hw *s4_hevcf_mux_parent_hws[] = { |
| &s4_hevcf_p0.hw, |
| &s4_hevcf_p1.hw |
| }; |
| |
| static struct clk_regmap s4_hevcf_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDEC4_CLK_CTRL, |
| .mask = 0x1, |
| .shift = 15, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hevcf", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_hevcf_mux_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_hevcf_mux_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* VPU Clock */ |
| static const struct clk_parent_data s4_vpu_parent_data[] = { |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", }, |
| { .fw_name = "mpll1", }, |
| { .hw = &s4_vid_pll.hw }, |
| { .fw_name = "hifi_pll", }, |
| { .fw_name = "gp0_pll", }, |
| }; |
| |
| static struct clk_regmap s4_vpu_0_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_0_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vpu_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vpu_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vpu_0_sel.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vpu_0_div.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_1_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_1_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vpu_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vpu_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_1_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .shift = 16, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_1_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vpu_1_sel.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vpu_1_div.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLK_CTRL, |
| .mask = 1, |
| .shift = 31, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_0.hw, |
| &s4_vpu_1.hw, |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data vpu_clkb_tmp_parent_data[] = { |
| { .hw = &s4_vpu.hw }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", } |
| }; |
| |
| static struct clk_regmap s4_vpu_clkb_tmp_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLKB_CTRL, |
| .mask = 0x3, |
| .shift = 20, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkb_tmp_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = vpu_clkb_tmp_parent_data, |
| .num_parents = ARRAY_SIZE(vpu_clkb_tmp_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkb_tmp_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VPU_CLKB_CTRL, |
| .shift = 16, |
| .width = 4, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkb_tmp_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkb_tmp_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkb_tmp = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VPU_CLKB_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_clkb_tmp", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkb_tmp_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkb_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VPU_CLKB_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkb_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkb_tmp.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkb = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VPU_CLKB_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_clkb", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkb_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data s4_vpu_clkc_parent_data[] = { |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", }, |
| { .fw_name = "mpll1", }, |
| { .hw = &s4_vid_pll.hw }, |
| { .fw_name = "mpll2", }, |
| { .fw_name = "gp0_pll", }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_p0_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkc_p0_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vpu_clkc_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vpu_clkc_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_p0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkc_p0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkc_p0_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_p0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_clkc_p0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkc_p0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_p1_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .mask = 0x7, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkc_p1_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vpu_clkc_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vpu_clkc_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_p1_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .shift = 16, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkc_p1_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkc_p1_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_p1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vpu_clkc_p1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vpu_clkc_p1_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_hw *s4_vpu_mux_parent_hws[] = { |
| &s4_vpu_clkc_p0.hw, |
| &s4_vpu_clkc_p1.hw |
| }; |
| |
| static struct clk_regmap s4_vpu_clkc_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VPU_CLKC_CTRL, |
| .mask = 0x1, |
| .shift = 31, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vpu_clkc_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = s4_vpu_mux_parent_hws, |
| .num_parents = ARRAY_SIZE(s4_vpu_mux_parent_hws), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* VAPB Clock */ |
| static const struct clk_parent_data s4_vapb_parent_data[] = { |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", }, |
| { .fw_name = "mpll1", }, |
| { .hw = &s4_vid_pll.hw }, |
| { .fw_name = "mpll2", }, |
| { .fw_name = "fclk_div2p5", }, |
| }; |
| |
| static struct clk_regmap s4_vapb_0_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vapb_0_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vapb_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vapb_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vapb_0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vapb_0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vapb_0_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vapb_0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vapb_0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vapb_0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vapb_1_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .mask = 0x7, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vapb_1_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vapb_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vapb_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vapb_1_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .shift = 16, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vapb_1_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vapb_1_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vapb_1 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vapb_1", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vapb_1_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vapb = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .mask = 1, |
| .shift = 31, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vapb_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vapb_0.hw, |
| &s4_vapb_1.hw |
| }, |
| .num_parents = 2, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_ge2d_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VAPBCLK_CTRL, |
| .bit_idx = 30, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "ge2d_clk", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { &s4_vapb.hw }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data s4_esmclk_parent_data[] = { |
| { .fw_name = "fclk_div7", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div5", }, |
| }; |
| |
| static struct clk_regmap s4_hdcp22_esmclk_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_HDCP22_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hdcp22_esmclk_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_esmclk_parent_data, |
| .num_parents = ARRAY_SIZE(s4_esmclk_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdcp22_esmclk_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_HDCP22_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hdcp22_esmclk_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hdcp22_esmclk_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdcp22_esmclk_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_HDCP22_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hdcp22_esmclk_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hdcp22_esmclk_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data s4_skpclk_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div5", }, |
| }; |
| |
| static struct clk_regmap s4_hdcp22_skpclk_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_HDCP22_CTRL, |
| .mask = 0x3, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hdcp22_skpclk_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_skpclk_parent_data, |
| .num_parents = ARRAY_SIZE(s4_skpclk_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdcp22_skpclk_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_HDCP22_CTRL, |
| .shift = 16, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "hdcp22_skpclk_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hdcp22_skpclk_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_hdcp22_skpclk_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_HDCP22_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "hdcp22_skpclk_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_hdcp22_skpclk_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static const struct clk_parent_data s4_vdin_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div5", }, |
| { .hw = &s4_vid_pll.hw } |
| }; |
| |
| static struct clk_regmap s4_vdin_meas_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_VDIN_MEAS_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdin_meas_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_vdin_parent_data, |
| .num_parents = ARRAY_SIZE(s4_vdin_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdin_meas_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_VDIN_MEAS_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "vdin_meas_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vdin_meas_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_vdin_meas_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_VDIN_MEAS_CLK_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "vdin_meas_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_vdin_meas_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* EMMC/NAND clock */ |
| static const struct clk_parent_data s4_sd_emmc_clk0_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .fw_name = "fclk_div2", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "hifi_pll", }, |
| { .fw_name = "fclk_div2p5", }, |
| { .fw_name = "mpll2", }, |
| { .fw_name = "mpll3", }, |
| { .fw_name = "gp0_pll", }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_c_clk0_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_NAND_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sd_emmc_c_clk0_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_sd_emmc_clk0_parent_data, |
| .num_parents = ARRAY_SIZE(s4_sd_emmc_clk0_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_c_clk0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_NAND_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sd_emmc_c_clk0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sd_emmc_c_clk0_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_c_clk0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_NAND_CLK_CTRL, |
| .bit_idx = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sd_emmc_c_clk0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sd_emmc_c_clk0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_a_clk0_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SD_EMMC_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sd_emmc_a_clk0_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_sd_emmc_clk0_parent_data, |
| .num_parents = ARRAY_SIZE(s4_sd_emmc_clk0_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_a_clk0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_SD_EMMC_CLK_CTRL, |
| .shift = 0, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sd_emmc_a_clk0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sd_emmc_a_clk0_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_a_clk0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_SD_EMMC_CLK_CTRL, |
| .bit_idx = 7, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sd_emmc_a_clk0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sd_emmc_a_clk0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_b_clk0_sel = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SD_EMMC_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sd_emmc_b_clk0_sel", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_sd_emmc_clk0_parent_data, |
| .num_parents = ARRAY_SIZE(s4_sd_emmc_clk0_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_b_clk0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_SD_EMMC_CLK_CTRL, |
| .shift = 16, |
| .width = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "sd_emmc_b_clk0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sd_emmc_b_clk0_sel.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_sd_emmc_b_clk0 = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_SD_EMMC_CLK_CTRL, |
| .bit_idx = 23, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "sd_emmc_b_clk0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_sd_emmc_b_clk0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* SPICC Clock */ |
| static const struct clk_parent_data s4_spicc_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .hw = &s4_sys_clk.hw }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| { .fw_name = "fclk_div2", }, |
| { .fw_name = "fclk_div5", }, |
| { .fw_name = "fclk_div7", }, |
| }; |
| |
| static struct clk_regmap s4_spicc0_mux = { |
| .data = &(struct clk_regmap_mux_data){ |
| .offset = CLKCTRL_SPICC_CLK_CTRL, |
| .mask = 0x7, |
| .shift = 7, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "spicc0_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_spicc_parent_data, |
| .num_parents = ARRAY_SIZE(s4_spicc_parent_data), |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_spicc0_div = { |
| .data = &(struct clk_regmap_div_data){ |
| .offset = CLKCTRL_SPICC_CLK_CTRL, |
| .shift = 0, |
| .width = 6, |
| }, |
| .hw.init = &(struct clk_init_data) { |
| .name = "spicc0_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_spicc0_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_spicc0_gate = { |
| .data = &(struct clk_regmap_gate_data){ |
| .offset = CLKCTRL_SPICC_CLK_CTRL, |
| .bit_idx = 6, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "spicc0", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_spicc0_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| /* PWM Clock */ |
| static const struct clk_parent_data s4_pwm_parent_data[] = { |
| { .fw_name = "xtal", }, |
| { .hw = &s4_vid_pll.hw }, |
| { .fw_name = "fclk_div4", }, |
| { .fw_name = "fclk_div3", }, |
| }; |
| |
| static struct clk_regmap s4_pwm_a_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_AB_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_a_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_a_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_AB_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_a_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_a_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_a_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_AB_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_a_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_a_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_b_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_AB_CTRL, |
| .mask = 0x3, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_b_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_b_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_AB_CTRL, |
| .shift = 16, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_b_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_b_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_b_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_AB_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_b_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_b_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_c_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_CD_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_c_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_c_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_CD_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_c_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_c_mux.hw |
| }, |
| .num_parents = 1, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_c_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_CD_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_c_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_c_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_d_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_CD_CTRL, |
| .mask = 0x3, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_d_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_d_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_CD_CTRL, |
| .shift = 16, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_d_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_d_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_d_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_CD_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_d_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_d_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_e_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_EF_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_e_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_e_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_EF_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_e_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_e_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_e_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_EF_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_e_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_e_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_f_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_EF_CTRL, |
| .mask = 0x3, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_f_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_f_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_EF_CTRL, |
| .shift = 16, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_f_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_f_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_f_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_EF_CTRL, |
| .bit_idx = 24, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_f_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_f_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_g_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_GH_CTRL, |
| .mask = 0x3, |
| .shift = 9, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_g_mux", |
| .ops = &clk_regmap_mux_ops, |
| .parent_data = s4_pwm_parent_data, |
| .num_parents = ARRAY_SIZE(s4_pwm_parent_data), |
| .flags = 0, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_g_div = { |
| .data = &(struct clk_regmap_div_data) { |
| .offset = CLKCTRL_PWM_CLK_GH_CTRL, |
| .shift = 0, |
| .width = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_g_div", |
| .ops = &clk_regmap_divider_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_g_mux.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_g_gate = { |
| .data = &(struct clk_regmap_gate_data) { |
| .offset = CLKCTRL_PWM_CLK_GH_CTRL, |
| .bit_idx = 8, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| .name = "pwm_g_gate", |
| .ops = &clk_regmap_gate_ops, |
| .parent_hws = (const struct clk_hw *[]) { |
| &s4_pwm_g_div.hw |
| }, |
| .num_parents = 1, |
| .flags = CLK_SET_RATE_PARENT, |
| }, |
| }; |
| |
| static struct clk_regmap s4_pwm_h_mux = { |
| .data = &(struct clk_regmap_mux_data) { |
| .offset = CLKCTRL_PWM_CLK_GH_CTRL, |
| .mask = 0x3, |
| .shift = 25, |
| }, |
| .hw.init = &(struct clk_init_data){ |
| |