mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 22:12:32 -04:00
s4 and c3 follow exactly the same structure when it comes to PWM clocks but differ in the way these clocks are described, for no obvious reason. Align the description of the pwm clocks of these SoCs with the composite clock helpers. Reviewed-by: Chuan Liu <chuan.liu@amlogic.com> Link: https://lore.kernel.org/r/20250825-meson-clk-cleanup-24-v2-11-0f402f01e117@baylibre.com Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
3062 lines
80 KiB
C
3062 lines
80 KiB
C
// 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 "meson-clkc-utils.h"
|
|
#include <dt-bindings/clock/amlogic,s4-peripherals-clkc.h>
|
|
|
|
#define CLKCTRL_RTC_BY_OSCIN_CTRL0 0x008
|
|
#define CLKCTRL_RTC_BY_OSCIN_CTRL1 0x00c
|
|
#define CLKCTRL_RTC_CTRL 0x010
|
|
#define CLKCTRL_SYS_CLK_CTRL0 0x040
|
|
#define CLKCTRL_SYS_CLK_EN0_REG0 0x044
|
|
#define CLKCTRL_SYS_CLK_EN0_REG1 0x048
|
|
#define CLKCTRL_SYS_CLK_EN0_REG2 0x04c
|
|
#define CLKCTRL_SYS_CLK_EN0_REG3 0x050
|
|
#define CLKCTRL_CECA_CTRL0 0x088
|
|
#define CLKCTRL_CECA_CTRL1 0x08c
|
|
#define CLKCTRL_CECB_CTRL0 0x090
|
|
#define CLKCTRL_CECB_CTRL1 0x094
|
|
#define CLKCTRL_SC_CLK_CTRL 0x098
|
|
#define CLKCTRL_CLK12_24_CTRL 0x0a8
|
|
#define CLKCTRL_VID_CLK_CTRL 0x0c0
|
|
#define CLKCTRL_VID_CLK_CTRL2 0x0c4
|
|
#define CLKCTRL_VID_CLK_DIV 0x0c8
|
|
#define CLKCTRL_VIID_CLK_DIV 0x0cc
|
|
#define CLKCTRL_VIID_CLK_CTRL 0x0d0
|
|
#define CLKCTRL_HDMI_CLK_CTRL 0x0e0
|
|
#define CLKCTRL_VID_PLL_CLK_DIV 0x0e4
|
|
#define CLKCTRL_VPU_CLK_CTRL 0x0e8
|
|
#define CLKCTRL_VPU_CLKB_CTRL 0x0ec
|
|
#define CLKCTRL_VPU_CLKC_CTRL 0x0f0
|
|
#define CLKCTRL_VID_LOCK_CLK_CTRL 0x0f4
|
|
#define CLKCTRL_VDIN_MEAS_CLK_CTRL 0x0f8
|
|
#define CLKCTRL_VAPBCLK_CTRL 0x0fc
|
|
#define CLKCTRL_HDCP22_CTRL 0x100
|
|
#define CLKCTRL_VDEC_CLK_CTRL 0x140
|
|
#define CLKCTRL_VDEC2_CLK_CTRL 0x144
|
|
#define CLKCTRL_VDEC3_CLK_CTRL 0x148
|
|
#define CLKCTRL_VDEC4_CLK_CTRL 0x14c
|
|
#define CLKCTRL_TS_CLK_CTRL 0x158
|
|
#define CLKCTRL_MALI_CLK_CTRL 0x15c
|
|
#define CLKCTRL_NAND_CLK_CTRL 0x168
|
|
#define CLKCTRL_SD_EMMC_CLK_CTRL 0x16c
|
|
#define CLKCTRL_SPICC_CLK_CTRL 0x174
|
|
#define CLKCTRL_GEN_CLK_CTRL 0x178
|
|
#define CLKCTRL_SAR_CLK_CTRL 0x17c
|
|
#define CLKCTRL_PWM_CLK_AB_CTRL 0x180
|
|
#define CLKCTRL_PWM_CLK_CD_CTRL 0x184
|
|
#define CLKCTRL_PWM_CLK_EF_CTRL 0x188
|
|
#define CLKCTRL_PWM_CLK_GH_CTRL 0x18c
|
|
#define CLKCTRL_PWM_CLK_IJ_CTRL 0x190
|
|
#define CLKCTRL_DEMOD_CLK_CTRL 0x200
|
|
|
|
#define S4_COMP_SEL(_name, _reg, _shift, _mask, _pdata) \
|
|
MESON_COMP_SEL(s4_, _name, _reg, _shift, _mask, _pdata, NULL, 0, 0)
|
|
|
|
#define S4_COMP_DIV(_name, _reg, _shift, _width) \
|
|
MESON_COMP_DIV(s4_, _name, _reg, _shift, _width, 0, CLK_SET_RATE_PARENT)
|
|
|
|
#define S4_COMP_GATE(_name, _reg, _bit) \
|
|
MESON_COMP_GATE(s4_, _name, _reg, _bit, CLK_SET_RATE_PARENT)
|
|
|
|
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 s4_sysclk_parents_val_table[] = { 0, 1, 2, 3, 4, 6, 7 };
|
|
static const struct clk_parent_data s4_sysclk_parents[] = {
|
|
{ .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 = s4_sysclk_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "sysclk_b_sel",
|
|
.ops = &clk_regmap_mux_ro_ops,
|
|
.parent_data = s4_sysclk_parents,
|
|
.num_parents = ARRAY_SIZE(s4_sysclk_parents),
|
|
},
|
|
};
|
|
|
|
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 = s4_sysclk_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "sysclk_a_sel",
|
|
.ops = &clk_regmap_mux_ro_ops,
|
|
.parent_data = s4_sysclk_parents,
|
|
.num_parents = ARRAY_SIZE(s4_sysclk_parents),
|
|
},
|
|
};
|
|
|
|
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_clk_parents[] = {
|
|
{ .fw_name = "fclk_div4" },
|
|
{ .fw_name = "fclk_div3" },
|
|
{ .fw_name = "fclk_div5" },
|
|
{ .fw_name = "xtal", }
|
|
};
|
|
|
|
static struct clk_regmap s4_sc_clk_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_SC_CLK_CTRL,
|
|
.mask = 0x3,
|
|
.shift = 9,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "sc_clk_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_sc_clk_parents,
|
|
.num_parents = ARRAY_SIZE(s4_sc_clk_parents),
|
|
.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_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_sc_clk = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_SC_CLK_CTRL,
|
|
.bit_idx = 8,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "sc_clk",
|
|
.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 = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_CLK12_24_CTRL,
|
|
.bit_idx = 11,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "12_24M",
|
|
.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_div = {
|
|
.mult = 1,
|
|
.div = 2,
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "12M_div",
|
|
.ops = &clk_fixed_factor_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_12_24M.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_12_24M_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_CLK12_24_CTRL,
|
|
.mask = 0x1,
|
|
.shift = 10,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "12_24M_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_12_24M.hw,
|
|
&s4_12M_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_parents[] = {
|
|
{ .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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vclk_parents),
|
|
.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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vclk_parents),
|
|
.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 s4_cts_parents_val_table[] = { 0, 1, 2, 3, 4, 8, 9, 10, 11, 12 };
|
|
static const struct clk_hw *s4_cts_parents[] = {
|
|
&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 = s4_cts_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "cts_enci_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = s4_cts_parents,
|
|
.num_parents = ARRAY_SIZE(s4_cts_parents),
|
|
.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 = s4_cts_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "cts_encp_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = s4_cts_parents,
|
|
.num_parents = ARRAY_SIZE(s4_cts_parents),
|
|
.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 = s4_cts_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "cts_vdac_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = s4_cts_parents,
|
|
.num_parents = ARRAY_SIZE(s4_cts_parents),
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
/* The 5,6,7 indexes corresponds to no real clock, so there are not used. */
|
|
static u32 s4_hdmi_tx_parents_val_table[] = { 0, 1, 2, 3, 4, 8, 9, 10, 11, 12 };
|
|
static const struct clk_hw *s4_hdmi_tx_parents[] = {
|
|
&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 = s4_hdmi_tx_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "hdmi_tx_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = s4_hdmi_tx_parents,
|
|
.num_parents = ARRAY_SIZE(s4_hdmi_tx_parents),
|
|
.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_parents[] = {
|
|
{ .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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_hdmi_parents),
|
|
.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 = {
|
|
.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_parents[] = {
|
|
{ .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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_mali_parents),
|
|
/*
|
|
* 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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_mali_parents),
|
|
.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 struct clk_regmap s4_mali_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_MALI_CLK_CTRL,
|
|
.mask = 1,
|
|
.shift = 31,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "mali_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_mali_0.hw,
|
|
&s4_mali_1.hw,
|
|
},
|
|
.num_parents = 2,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
/* VDEC clocks */
|
|
static const struct clk_parent_data s4_dec_parents[] = {
|
|
{ .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_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_dec_parents,
|
|
.num_parents = ARRAY_SIZE(s4_dec_parents),
|
|
.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_sel.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_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_dec_parents,
|
|
.num_parents = ARRAY_SIZE(s4_dec_parents),
|
|
.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_sel.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 struct clk_regmap s4_vdec_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_VDEC3_CLK_CTRL,
|
|
.mask = 0x1,
|
|
.shift = 15,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "vdec_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_vdec_p0.hw,
|
|
&s4_vdec_p1.hw,
|
|
},
|
|
.num_parents = 2,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_hevcf_p0_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_dec_parents,
|
|
.num_parents = ARRAY_SIZE(s4_dec_parents),
|
|
.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_sel.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",
|
|
.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_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_dec_parents,
|
|
.num_parents = ARRAY_SIZE(s4_dec_parents),
|
|
.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_sel.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 struct clk_regmap s4_hevcf_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_VDEC4_CLK_CTRL,
|
|
.mask = 0x1,
|
|
.shift = 15,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "hevcf_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_hevcf_p0.hw,
|
|
&s4_hevcf_p1.hw,
|
|
},
|
|
.num_parents = 2,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
/* VPU Clock */
|
|
static const struct clk_parent_data s4_vpu_parents[] = {
|
|
{ .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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vpu_parents),
|
|
.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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vpu_parents),
|
|
.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_parents[] = {
|
|
{ .hw = &s4_vpu.hw },
|
|
{ .fw_name = "fclk_div4", },
|
|
{ .fw_name = "fclk_div5", },
|
|
{ .fw_name = "fclk_div7", }
|
|
};
|
|
|
|
static struct clk_regmap s4_vpu_clkb_tmp_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = vpu_clkb_tmp_parents,
|
|
.num_parents = ARRAY_SIZE(vpu_clkb_tmp_parents),
|
|
.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_sel.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_parents[] = {
|
|
{ .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_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_vpu_clkc_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vpu_clkc_parents),
|
|
.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_sel.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_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_vpu_clkc_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vpu_clkc_parents),
|
|
.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_sel.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 struct clk_regmap s4_vpu_clkc_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_VPU_CLKC_CTRL,
|
|
.mask = 0x1,
|
|
.shift = 31,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "vpu_clkc_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_vpu_clkc_p0.hw,
|
|
&s4_vpu_clkc_p1.hw,
|
|
},
|
|
.num_parents = 2,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
/* VAPB Clock */
|
|
static const struct clk_parent_data s4_vapb_parents[] = {
|
|
{ .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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vapb_parents),
|
|
.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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vapb_parents),
|
|
.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 = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_VAPBCLK_CTRL,
|
|
.bit_idx = 30,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "ge2d",
|
|
.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_hdcp22_esmclk_parents[] = {
|
|
{ .fw_name = "fclk_div7", },
|
|
{ .fw_name = "fclk_div4", },
|
|
{ .fw_name = "fclk_div3", },
|
|
{ .fw_name = "fclk_div5", },
|
|
};
|
|
|
|
static struct clk_regmap s4_hdcp22_esmclk_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_HDCP22_CTRL,
|
|
.mask = 0x3,
|
|
.shift = 9,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "hdcp22_esmclk_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_hdcp22_esmclk_parents,
|
|
.num_parents = ARRAY_SIZE(s4_hdcp22_esmclk_parents),
|
|
.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_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_hdcp22_esmclk = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_HDCP22_CTRL,
|
|
.bit_idx = 8,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "hdcp22_esmclk",
|
|
.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_hdcp22_skpclk_parents[] = {
|
|
{ .fw_name = "xtal", },
|
|
{ .fw_name = "fclk_div4", },
|
|
{ .fw_name = "fclk_div3", },
|
|
{ .fw_name = "fclk_div5", },
|
|
};
|
|
|
|
static struct clk_regmap s4_hdcp22_skpclk_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_HDCP22_CTRL,
|
|
.mask = 0x3,
|
|
.shift = 25,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "hdcp22_skpclk_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_hdcp22_skpclk_parents,
|
|
.num_parents = ARRAY_SIZE(s4_hdcp22_skpclk_parents),
|
|
.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_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_hdcp22_skpclk = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_HDCP22_CTRL,
|
|
.bit_idx = 24,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "hdcp22_skpclk",
|
|
.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_parents[] = {
|
|
{ .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_sel = {
|
|
.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_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_vdin_parents,
|
|
.num_parents = ARRAY_SIZE(s4_vdin_parents),
|
|
.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_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_vdin_meas = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_VDIN_MEAS_CLK_CTRL,
|
|
.bit_idx = 8,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "vdin_meas",
|
|
.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_parents[] = {
|
|
{ .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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_sd_emmc_clk0_parents),
|
|
.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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_sd_emmc_clk0_parents),
|
|
.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_parents,
|
|
.num_parents = ARRAY_SIZE(s4_sd_emmc_clk0_parents),
|
|
.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_parents[] = {
|
|
{ .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_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_SPICC_CLK_CTRL,
|
|
.mask = 0x7,
|
|
.shift = 7,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "spicc0_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_spicc_parents,
|
|
.num_parents = ARRAY_SIZE(s4_spicc_parents),
|
|
.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_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_spicc0_en = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_SPICC_CLK_CTRL,
|
|
.bit_idx = 6,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "spicc0_en",
|
|
.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_parents[] = {
|
|
{ .fw_name = "xtal", },
|
|
{ .hw = &s4_vid_pll.hw },
|
|
{ .fw_name = "fclk_div4", },
|
|
{ .fw_name = "fclk_div3", },
|
|
};
|
|
|
|
static S4_COMP_SEL(pwm_a, CLKCTRL_PWM_CLK_AB_CTRL, 9, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_a, CLKCTRL_PWM_CLK_AB_CTRL, 0, 8);
|
|
static S4_COMP_GATE(pwm_a, CLKCTRL_PWM_CLK_AB_CTRL, 8);
|
|
|
|
static S4_COMP_SEL(pwm_b, CLKCTRL_PWM_CLK_AB_CTRL, 25, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_b, CLKCTRL_PWM_CLK_AB_CTRL, 16, 8);
|
|
static S4_COMP_GATE(pwm_b, CLKCTRL_PWM_CLK_AB_CTRL, 24);
|
|
|
|
static S4_COMP_SEL(pwm_c, CLKCTRL_PWM_CLK_CD_CTRL, 9, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_c, CLKCTRL_PWM_CLK_CD_CTRL, 0, 8);
|
|
static S4_COMP_GATE(pwm_c, CLKCTRL_PWM_CLK_CD_CTRL, 8);
|
|
|
|
static S4_COMP_SEL(pwm_d, CLKCTRL_PWM_CLK_CD_CTRL, 25, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_d, CLKCTRL_PWM_CLK_CD_CTRL, 16, 8);
|
|
static S4_COMP_GATE(pwm_d, CLKCTRL_PWM_CLK_CD_CTRL, 24);
|
|
|
|
static S4_COMP_SEL(pwm_e, CLKCTRL_PWM_CLK_EF_CTRL, 9, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_e, CLKCTRL_PWM_CLK_EF_CTRL, 0, 8);
|
|
static S4_COMP_GATE(pwm_e, CLKCTRL_PWM_CLK_EF_CTRL, 8);
|
|
|
|
static S4_COMP_SEL(pwm_f, CLKCTRL_PWM_CLK_EF_CTRL, 25, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_f, CLKCTRL_PWM_CLK_EF_CTRL, 16, 8);
|
|
static S4_COMP_GATE(pwm_f, CLKCTRL_PWM_CLK_EF_CTRL, 24);
|
|
|
|
static S4_COMP_SEL(pwm_g, CLKCTRL_PWM_CLK_GH_CTRL, 9, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_g, CLKCTRL_PWM_CLK_GH_CTRL, 0, 8);
|
|
static S4_COMP_GATE(pwm_g, CLKCTRL_PWM_CLK_GH_CTRL, 8);
|
|
|
|
static S4_COMP_SEL(pwm_h, CLKCTRL_PWM_CLK_GH_CTRL, 25, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_h, CLKCTRL_PWM_CLK_GH_CTRL, 16, 8);
|
|
static S4_COMP_GATE(pwm_h, CLKCTRL_PWM_CLK_GH_CTRL, 24);
|
|
|
|
static S4_COMP_SEL(pwm_i, CLKCTRL_PWM_CLK_IJ_CTRL, 9, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_i, CLKCTRL_PWM_CLK_IJ_CTRL, 0, 8);
|
|
static S4_COMP_GATE(pwm_i, CLKCTRL_PWM_CLK_IJ_CTRL, 8);
|
|
|
|
static S4_COMP_SEL(pwm_j, CLKCTRL_PWM_CLK_IJ_CTRL, 25, 0x3, s4_pwm_parents);
|
|
static S4_COMP_DIV(pwm_j, CLKCTRL_PWM_CLK_IJ_CTRL, 16, 8);
|
|
static S4_COMP_GATE(pwm_j, CLKCTRL_PWM_CLK_IJ_CTRL, 24);
|
|
|
|
static struct clk_regmap s4_saradc_sel = {
|
|
.data = &(struct clk_regmap_mux_data) {
|
|
.offset = CLKCTRL_SAR_CLK_CTRL,
|
|
.mask = 0x3,
|
|
.shift = 9,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "saradc_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = (const struct clk_parent_data []) {
|
|
{ .fw_name = "xtal", },
|
|
{ .hw = &s4_sys_clk.hw },
|
|
},
|
|
.num_parents = 2,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_saradc_div = {
|
|
.data = &(struct clk_regmap_div_data) {
|
|
.offset = CLKCTRL_SAR_CLK_CTRL,
|
|
.shift = 0,
|
|
.width = 8,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "saradc_div",
|
|
.ops = &clk_regmap_divider_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_saradc_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_saradc = {
|
|
.data = &(struct clk_regmap_gate_data) {
|
|
.offset = CLKCTRL_SAR_CLK_CTRL,
|
|
.bit_idx = 8,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "saradc",
|
|
.ops = &clk_regmap_gate_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_saradc_div.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
/*
|
|
* gen clk is designed for debug/monitor some internal clock quality. Some of the
|
|
* corresponding clock sources are not described in the clock tree and internal clock
|
|
* for debug, so they are skipped.
|
|
*/
|
|
static u32 s4_gen_clk_parents_val_table[] = { 0, 4, 5, 7, 19, 21, 22, 23, 24, 25, 26, 27, 28 };
|
|
static const struct clk_parent_data s4_gen_clk_parents[] = {
|
|
{ .fw_name = "xtal", },
|
|
{ .hw = &s4_vid_pll.hw },
|
|
{ .fw_name = "gp0_pll", },
|
|
{ .fw_name = "hifi_pll", },
|
|
{ .fw_name = "fclk_div2", },
|
|
{ .fw_name = "fclk_div3", },
|
|
{ .fw_name = "fclk_div4", },
|
|
{ .fw_name = "fclk_div5", },
|
|
{ .fw_name = "fclk_div7", },
|
|
{ .fw_name = "mpll0", },
|
|
{ .fw_name = "mpll1", },
|
|
{ .fw_name = "mpll2", },
|
|
{ .fw_name = "mpll3", },
|
|
};
|
|
|
|
static struct clk_regmap s4_gen_clk_sel = {
|
|
.data = &(struct clk_regmap_mux_data){
|
|
.offset = CLKCTRL_GEN_CLK_CTRL,
|
|
.mask = 0x1f,
|
|
.shift = 12,
|
|
.table = s4_gen_clk_parents_val_table,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "gen_clk_sel",
|
|
.ops = &clk_regmap_mux_ops,
|
|
.parent_data = s4_gen_clk_parents,
|
|
.num_parents = ARRAY_SIZE(s4_gen_clk_parents),
|
|
/*
|
|
* Because the GEN clock can be connected to an external pad
|
|
* and may be set up directly from the device tree. Don't
|
|
* really want to automatically reparent.
|
|
*/
|
|
.flags = CLK_SET_RATE_NO_REPARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_gen_clk_div = {
|
|
.data = &(struct clk_regmap_div_data){
|
|
.offset = CLKCTRL_GEN_CLK_CTRL,
|
|
.shift = 0,
|
|
.width = 11,
|
|
},
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "gen_clk_div",
|
|
.ops = &clk_regmap_divider_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_gen_clk_sel.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static struct clk_regmap s4_gen_clk = {
|
|
.data = &(struct clk_regmap_gate_data){
|
|
.offset = CLKCTRL_GEN_CLK_CTRL,
|
|
.bit_idx = 11,
|
|
},
|
|
.hw.init = &(struct clk_init_data) {
|
|
.name = "gen_clk",
|
|
.ops = &clk_regmap_gate_ops,
|
|
.parent_hws = (const struct clk_hw *[]) {
|
|
&s4_gen_clk_div.hw
|
|
},
|
|
.num_parents = 1,
|
|
.flags = CLK_SET_RATE_PARENT,
|
|
},
|
|
};
|
|
|
|
static const struct clk_parent_data s4_pclk_parents = { .hw = &s4_sys_clk.hw };
|
|
|
|
#define S4_PCLK(_name, _reg, _bit, _flags) \
|
|
MESON_PCLK(_name, _reg, _bit, &s4_pclk_parents, _flags)
|
|
|
|
/*
|
|
* NOTE: The gates below are marked with CLK_IGNORE_UNUSED for historic reasons
|
|
* Users are encouraged to test without it and submit changes to:
|
|
* - remove the flag if not necessary
|
|
* - replace the flag with something more adequate, such as CLK_IS_CRITICAL,
|
|
* if appropriate.
|
|
* - add a comment explaining why the use of CLK_IGNORE_UNUSED is desirable
|
|
* for a particular clock.
|
|
*/
|
|
static S4_PCLK(s4_ddr, CLKCTRL_SYS_CLK_EN0_REG0, 0, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_dos, CLKCTRL_SYS_CLK_EN0_REG0, 1, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_ethphy, CLKCTRL_SYS_CLK_EN0_REG0, 4, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_mali, CLKCTRL_SYS_CLK_EN0_REG0, 6, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_aocpu, CLKCTRL_SYS_CLK_EN0_REG0, 13, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_aucpu, CLKCTRL_SYS_CLK_EN0_REG0, 14, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_cec, CLKCTRL_SYS_CLK_EN0_REG0, 16, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_sdemmca, CLKCTRL_SYS_CLK_EN0_REG0, 24, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_sdemmcb, CLKCTRL_SYS_CLK_EN0_REG0, 25, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_nand, CLKCTRL_SYS_CLK_EN0_REG0, 26, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_smartcard, CLKCTRL_SYS_CLK_EN0_REG0, 27, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_acodec, CLKCTRL_SYS_CLK_EN0_REG0, 28, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_spifc, CLKCTRL_SYS_CLK_EN0_REG0, 29, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_msr_clk, CLKCTRL_SYS_CLK_EN0_REG0, 30, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_ir_ctrl, CLKCTRL_SYS_CLK_EN0_REG0, 31, CLK_IGNORE_UNUSED);
|
|
|
|
static S4_PCLK(s4_audio, CLKCTRL_SYS_CLK_EN0_REG1, 0, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_eth, CLKCTRL_SYS_CLK_EN0_REG1, 3, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_uart_a, CLKCTRL_SYS_CLK_EN0_REG1, 5, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_uart_b, CLKCTRL_SYS_CLK_EN0_REG1, 6, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_uart_c, CLKCTRL_SYS_CLK_EN0_REG1, 7, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_uart_d, CLKCTRL_SYS_CLK_EN0_REG1, 8, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_uart_e, CLKCTRL_SYS_CLK_EN0_REG1, 9, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_aififo, CLKCTRL_SYS_CLK_EN0_REG1, 11, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_ts_ddr, CLKCTRL_SYS_CLK_EN0_REG1, 15, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_ts_pll, CLKCTRL_SYS_CLK_EN0_REG1, 16, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_g2d, CLKCTRL_SYS_CLK_EN0_REG1, 20, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_spicc0, CLKCTRL_SYS_CLK_EN0_REG1, 21, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_usb, CLKCTRL_SYS_CLK_EN0_REG1, 26, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_i2c_m_a, CLKCTRL_SYS_CLK_EN0_REG1, 30, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_i2c_m_b, CLKCTRL_SYS_CLK_EN0_REG1, 31, CLK_IGNORE_UNUSED);
|
|
|
|
static S4_PCLK(s4_i2c_m_c, CLKCTRL_SYS_CLK_EN0_REG2, 0, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_i2c_m_d, CLKCTRL_SYS_CLK_EN0_REG2, 1, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_i2c_m_e, CLKCTRL_SYS_CLK_EN0_REG2, 2, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_hdmitx_apb, CLKCTRL_SYS_CLK_EN0_REG2, 4, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_i2c_s_a, CLKCTRL_SYS_CLK_EN0_REG2, 5, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_usb1_to_ddr, CLKCTRL_SYS_CLK_EN0_REG2, 8, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_hdcp22, CLKCTRL_SYS_CLK_EN0_REG2, 10, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_mmc_apb, CLKCTRL_SYS_CLK_EN0_REG2, 11, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_rsa, CLKCTRL_SYS_CLK_EN0_REG2, 18, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_cpu_debug, CLKCTRL_SYS_CLK_EN0_REG2, 19, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_vpu_intr, CLKCTRL_SYS_CLK_EN0_REG2, 25, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_demod, CLKCTRL_SYS_CLK_EN0_REG2, 27, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_sar_adc, CLKCTRL_SYS_CLK_EN0_REG2, 28, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_gic, CLKCTRL_SYS_CLK_EN0_REG2, 30, CLK_IGNORE_UNUSED);
|
|
|
|
static S4_PCLK(s4_pwm_ab, CLKCTRL_SYS_CLK_EN0_REG3, 7, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_pwm_cd, CLKCTRL_SYS_CLK_EN0_REG3, 8, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_pwm_ef, CLKCTRL_SYS_CLK_EN0_REG3, 9, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_pwm_gh, CLKCTRL_SYS_CLK_EN0_REG3, 10, CLK_IGNORE_UNUSED);
|
|
static S4_PCLK(s4_pwm_ij, CLKCTRL_SYS_CLK_EN0_REG3, 11, CLK_IGNORE_UNUSED);
|
|
|
|
/* Array of all clocks provided by this provider */
|
|
static struct clk_hw *s4_peripherals_hw_clks[] = {
|
|
[CLKID_RTC_32K_CLKIN] = &s4_rtc_32k_by_oscin_clkin.hw,
|
|
[CLKID_RTC_32K_DIV] = &s4_rtc_32k_by_oscin_div.hw,
|
|
[CLKID_RTC_32K_SEL] = &s4_rtc_32k_by_oscin_sel.hw,
|
|
[CLKID_RTC_32K_XATL] = &s4_rtc_32k_by_oscin.hw,
|
|
[CLKID_RTC] = &s4_rtc_clk.hw,
|
|
[CLKID_SYS_CLK_B_SEL] = &s4_sysclk_b_sel.hw,
|
|
[CLKID_SYS_CLK_B_DIV] = &s4_sysclk_b_div.hw,
|
|
[CLKID_SYS_CLK_B] = &s4_sysclk_b.hw,
|
|
[CLKID_SYS_CLK_A_SEL] = &s4_sysclk_a_sel.hw,
|
|
[CLKID_SYS_CLK_A_DIV] = &s4_sysclk_a_div.hw,
|
|
[CLKID_SYS_CLK_A] = &s4_sysclk_a.hw,
|
|
[CLKID_SYS] = &s4_sys_clk.hw,
|
|
[CLKID_CECA_32K_CLKIN] = &s4_ceca_32k_clkin.hw,
|
|
[CLKID_CECA_32K_DIV] = &s4_ceca_32k_div.hw,
|
|
[CLKID_CECA_32K_SEL_PRE] = &s4_ceca_32k_sel_pre.hw,
|
|
[CLKID_CECA_32K_SEL] = &s4_ceca_32k_sel.hw,
|
|
[CLKID_CECA_32K_CLKOUT] = &s4_ceca_32k_clkout.hw,
|
|
[CLKID_CECB_32K_CLKIN] = &s4_cecb_32k_clkin.hw,
|
|
[CLKID_CECB_32K_DIV] = &s4_cecb_32k_div.hw,
|
|
[CLKID_CECB_32K_SEL_PRE] = &s4_cecb_32k_sel_pre.hw,
|
|
[CLKID_CECB_32K_SEL] = &s4_cecb_32k_sel.hw,
|
|
[CLKID_CECB_32K_CLKOUT] = &s4_cecb_32k_clkout.hw,
|
|
[CLKID_SC_CLK_SEL] = &s4_sc_clk_sel.hw,
|
|
[CLKID_SC_CLK_DIV] = &s4_sc_clk_div.hw,
|
|
[CLKID_SC] = &s4_sc_clk.hw,
|
|
[CLKID_12_24M] = &s4_12_24M.hw,
|
|
[CLKID_12M_CLK_DIV] = &s4_12M_div.hw,
|
|
[CLKID_12_24M_CLK_SEL] = &s4_12_24M_sel.hw,
|
|
[CLKID_VID_PLL_DIV] = &s4_vid_pll_div.hw,
|
|
[CLKID_VID_PLL_SEL] = &s4_vid_pll_sel.hw,
|
|
[CLKID_VID_PLL] = &s4_vid_pll.hw,
|
|
[CLKID_VCLK_SEL] = &s4_vclk_sel.hw,
|
|
[CLKID_VCLK2_SEL] = &s4_vclk2_sel.hw,
|
|
[CLKID_VCLK_INPUT] = &s4_vclk_input.hw,
|
|
[CLKID_VCLK2_INPUT] = &s4_vclk2_input.hw,
|
|
[CLKID_VCLK_DIV] = &s4_vclk_div.hw,
|
|
[CLKID_VCLK2_DIV] = &s4_vclk2_div.hw,
|
|
[CLKID_VCLK] = &s4_vclk.hw,
|
|
[CLKID_VCLK2] = &s4_vclk2.hw,
|
|
[CLKID_VCLK_DIV1] = &s4_vclk_div1.hw,
|
|
[CLKID_VCLK_DIV2_EN] = &s4_vclk_div2_en.hw,
|
|
[CLKID_VCLK_DIV4_EN] = &s4_vclk_div4_en.hw,
|
|
[CLKID_VCLK_DIV6_EN] = &s4_vclk_div6_en.hw,
|
|
[CLKID_VCLK_DIV12_EN] = &s4_vclk_div12_en.hw,
|
|
[CLKID_VCLK2_DIV1] = &s4_vclk2_div1.hw,
|
|
[CLKID_VCLK2_DIV2_EN] = &s4_vclk2_div2_en.hw,
|
|
[CLKID_VCLK2_DIV4_EN] = &s4_vclk2_div4_en.hw,
|
|
[CLKID_VCLK2_DIV6_EN] = &s4_vclk2_div6_en.hw,
|
|
[CLKID_VCLK2_DIV12_EN] = &s4_vclk2_div12_en.hw,
|
|
[CLKID_VCLK_DIV2] = &s4_vclk_div2.hw,
|
|
[CLKID_VCLK_DIV4] = &s4_vclk_div4.hw,
|
|
[CLKID_VCLK_DIV6] = &s4_vclk_div6.hw,
|
|
[CLKID_VCLK_DIV12] = &s4_vclk_div12.hw,
|
|
[CLKID_VCLK2_DIV2] = &s4_vclk2_div2.hw,
|
|
[CLKID_VCLK2_DIV4] = &s4_vclk2_div4.hw,
|
|
[CLKID_VCLK2_DIV6] = &s4_vclk2_div6.hw,
|
|
[CLKID_VCLK2_DIV12] = &s4_vclk2_div12.hw,
|
|
[CLKID_CTS_ENCI_SEL] = &s4_cts_enci_sel.hw,
|
|
[CLKID_CTS_ENCP_SEL] = &s4_cts_encp_sel.hw,
|
|
[CLKID_CTS_VDAC_SEL] = &s4_cts_vdac_sel.hw,
|
|
[CLKID_HDMI_TX_SEL] = &s4_hdmi_tx_sel.hw,
|
|
[CLKID_CTS_ENCI] = &s4_cts_enci.hw,
|
|
[CLKID_CTS_ENCP] = &s4_cts_encp.hw,
|
|
[CLKID_CTS_VDAC] = &s4_cts_vdac.hw,
|
|
[CLKID_HDMI_TX] = &s4_hdmi_tx.hw,
|
|
[CLKID_HDMI_SEL] = &s4_hdmi_sel.hw,
|
|
[CLKID_HDMI_DIV] = &s4_hdmi_div.hw,
|
|
[CLKID_HDMI] = &s4_hdmi.hw,
|
|
[CLKID_TS_CLK_DIV] = &s4_ts_clk_div.hw,
|
|
[CLKID_TS] = &s4_ts_clk.hw,
|
|
[CLKID_MALI_0_SEL] = &s4_mali_0_sel.hw,
|
|
[CLKID_MALI_0_DIV] = &s4_mali_0_div.hw,
|
|
[CLKID_MALI_0] = &s4_mali_0.hw,
|
|
[CLKID_MALI_1_SEL] = &s4_mali_1_sel.hw,
|
|
[CLKID_MALI_1_DIV] = &s4_mali_1_div.hw,
|
|
[CLKID_MALI_1] = &s4_mali_1.hw,
|
|
[CLKID_MALI_SEL] = &s4_mali_sel.hw,
|
|
[CLKID_VDEC_P0_SEL] = &s4_vdec_p0_sel.hw,
|
|
[CLKID_VDEC_P0_DIV] = &s4_vdec_p0_div.hw,
|
|
[CLKID_VDEC_P0] = &s4_vdec_p0.hw,
|
|
[CLKID_VDEC_P1_SEL] = &s4_vdec_p1_sel.hw,
|
|
[CLKID_VDEC_P1_DIV] = &s4_vdec_p1_div.hw,
|
|
[CLKID_VDEC_P1] = &s4_vdec_p1.hw,
|
|
[CLKID_VDEC_SEL] = &s4_vdec_sel.hw,
|
|
[CLKID_HEVCF_P0_SEL] = &s4_hevcf_p0_sel.hw,
|
|
[CLKID_HEVCF_P0_DIV] = &s4_hevcf_p0_div.hw,
|
|
[CLKID_HEVCF_P0] = &s4_hevcf_p0.hw,
|
|
[CLKID_HEVCF_P1_SEL] = &s4_hevcf_p1_sel.hw,
|
|
[CLKID_HEVCF_P1_DIV] = &s4_hevcf_p1_div.hw,
|
|
[CLKID_HEVCF_P1] = &s4_hevcf_p1.hw,
|
|
[CLKID_HEVCF_SEL] = &s4_hevcf_sel.hw,
|
|
[CLKID_VPU_0_SEL] = &s4_vpu_0_sel.hw,
|
|
[CLKID_VPU_0_DIV] = &s4_vpu_0_div.hw,
|
|
[CLKID_VPU_0] = &s4_vpu_0.hw,
|
|
[CLKID_VPU_1_SEL] = &s4_vpu_1_sel.hw,
|
|
[CLKID_VPU_1_DIV] = &s4_vpu_1_div.hw,
|
|
[CLKID_VPU_1] = &s4_vpu_1.hw,
|
|
[CLKID_VPU] = &s4_vpu.hw,
|
|
[CLKID_VPU_CLKB_TMP_SEL] = &s4_vpu_clkb_tmp_sel.hw,
|
|
[CLKID_VPU_CLKB_TMP_DIV] = &s4_vpu_clkb_tmp_div.hw,
|
|
[CLKID_VPU_CLKB_TMP] = &s4_vpu_clkb_tmp.hw,
|
|
[CLKID_VPU_CLKB_DIV] = &s4_vpu_clkb_div.hw,
|
|
[CLKID_VPU_CLKB] = &s4_vpu_clkb.hw,
|
|
[CLKID_VPU_CLKC_P0_SEL] = &s4_vpu_clkc_p0_sel.hw,
|
|
[CLKID_VPU_CLKC_P0_DIV] = &s4_vpu_clkc_p0_div.hw,
|
|
[CLKID_VPU_CLKC_P0] = &s4_vpu_clkc_p0.hw,
|
|
[CLKID_VPU_CLKC_P1_SEL] = &s4_vpu_clkc_p1_sel.hw,
|
|
[CLKID_VPU_CLKC_P1_DIV] = &s4_vpu_clkc_p1_div.hw,
|
|
[CLKID_VPU_CLKC_P1] = &s4_vpu_clkc_p1.hw,
|
|
[CLKID_VPU_CLKC_SEL] = &s4_vpu_clkc_sel.hw,
|
|
[CLKID_VAPB_0_SEL] = &s4_vapb_0_sel.hw,
|
|
[CLKID_VAPB_0_DIV] = &s4_vapb_0_div.hw,
|
|
[CLKID_VAPB_0] = &s4_vapb_0.hw,
|
|
[CLKID_VAPB_1_SEL] = &s4_vapb_1_sel.hw,
|
|
[CLKID_VAPB_1_DIV] = &s4_vapb_1_div.hw,
|
|
[CLKID_VAPB_1] = &s4_vapb_1.hw,
|
|
[CLKID_VAPB] = &s4_vapb.hw,
|
|
[CLKID_GE2D] = &s4_ge2d.hw,
|
|
[CLKID_VDIN_MEAS_SEL] = &s4_vdin_meas_sel.hw,
|
|
[CLKID_VDIN_MEAS_DIV] = &s4_vdin_meas_div.hw,
|
|
[CLKID_VDIN_MEAS] = &s4_vdin_meas.hw,
|
|
[CLKID_SD_EMMC_C_CLK_SEL] = &s4_sd_emmc_c_clk0_sel.hw,
|
|
[CLKID_SD_EMMC_C_CLK_DIV] = &s4_sd_emmc_c_clk0_div.hw,
|
|
[CLKID_SD_EMMC_C] = &s4_sd_emmc_c_clk0.hw,
|
|
[CLKID_SD_EMMC_A_CLK_SEL] = &s4_sd_emmc_a_clk0_sel.hw,
|
|
[CLKID_SD_EMMC_A_CLK_DIV] = &s4_sd_emmc_a_clk0_div.hw,
|
|
[CLKID_SD_EMMC_A] = &s4_sd_emmc_a_clk0.hw,
|
|
[CLKID_SD_EMMC_B_CLK_SEL] = &s4_sd_emmc_b_clk0_sel.hw,
|
|
[CLKID_SD_EMMC_B_CLK_DIV] = &s4_sd_emmc_b_clk0_div.hw,
|
|
[CLKID_SD_EMMC_B] = &s4_sd_emmc_b_clk0.hw,
|
|
[CLKID_SPICC0_SEL] = &s4_spicc0_sel.hw,
|
|
[CLKID_SPICC0_DIV] = &s4_spicc0_div.hw,
|
|
[CLKID_SPICC0_EN] = &s4_spicc0_en.hw,
|
|
[CLKID_PWM_A_SEL] = &s4_pwm_a_sel.hw,
|
|
[CLKID_PWM_A_DIV] = &s4_pwm_a_div.hw,
|
|
[CLKID_PWM_A] = &s4_pwm_a.hw,
|
|
[CLKID_PWM_B_SEL] = &s4_pwm_b_sel.hw,
|
|
[CLKID_PWM_B_DIV] = &s4_pwm_b_div.hw,
|
|
[CLKID_PWM_B] = &s4_pwm_b.hw,
|
|
[CLKID_PWM_C_SEL] = &s4_pwm_c_sel.hw,
|
|
[CLKID_PWM_C_DIV] = &s4_pwm_c_div.hw,
|
|
[CLKID_PWM_C] = &s4_pwm_c.hw,
|
|
[CLKID_PWM_D_SEL] = &s4_pwm_d_sel.hw,
|
|
[CLKID_PWM_D_DIV] = &s4_pwm_d_div.hw,
|
|
[CLKID_PWM_D] = &s4_pwm_d.hw,
|
|
[CLKID_PWM_E_SEL] = &s4_pwm_e_sel.hw,
|
|
[CLKID_PWM_E_DIV] = &s4_pwm_e_div.hw,
|
|
[CLKID_PWM_E] = &s4_pwm_e.hw,
|
|
[CLKID_PWM_F_SEL] = &s4_pwm_f_sel.hw,
|
|
[CLKID_PWM_F_DIV] = &s4_pwm_f_div.hw,
|
|
[CLKID_PWM_F] = &s4_pwm_f.hw,
|
|
[CLKID_PWM_G_SEL] = &s4_pwm_g_sel.hw,
|
|
[CLKID_PWM_G_DIV] = &s4_pwm_g_div.hw,
|
|
[CLKID_PWM_G] = &s4_pwm_g.hw,
|
|
[CLKID_PWM_H_SEL] = &s4_pwm_h_sel.hw,
|
|
[CLKID_PWM_H_DIV] = &s4_pwm_h_div.hw,
|
|
[CLKID_PWM_H] = &s4_pwm_h.hw,
|
|
[CLKID_PWM_I_SEL] = &s4_pwm_i_sel.hw,
|
|
[CLKID_PWM_I_DIV] = &s4_pwm_i_div.hw,
|
|
[CLKID_PWM_I] = &s4_pwm_i.hw,
|
|
[CLKID_PWM_J_SEL] = &s4_pwm_j_sel.hw,
|
|
[CLKID_PWM_J_DIV] = &s4_pwm_j_div.hw,
|
|
[CLKID_PWM_J] = &s4_pwm_j.hw,
|
|
[CLKID_SARADC_SEL] = &s4_saradc_sel.hw,
|
|
[CLKID_SARADC_DIV] = &s4_saradc_div.hw,
|
|
[CLKID_SARADC] = &s4_saradc.hw,
|
|
[CLKID_GEN_SEL] = &s4_gen_clk_sel.hw,
|
|
[CLKID_GEN_DIV] = &s4_gen_clk_div.hw,
|
|
[CLKID_GEN] = &s4_gen_clk.hw,
|
|
[CLKID_DDR] = &s4_ddr.hw,
|
|
[CLKID_DOS] = &s4_dos.hw,
|
|
[CLKID_ETHPHY] = &s4_ethphy.hw,
|
|
[CLKID_MALI] = &s4_mali.hw,
|
|
[CLKID_AOCPU] = &s4_aocpu.hw,
|
|
[CLKID_AUCPU] = &s4_aucpu.hw,
|
|
[CLKID_CEC] = &s4_cec.hw,
|
|
[CLKID_SDEMMC_A] = &s4_sdemmca.hw,
|
|
[CLKID_SDEMMC_B] = &s4_sdemmcb.hw,
|
|
[CLKID_NAND] = &s4_nand.hw,
|
|
[CLKID_SMARTCARD] = &s4_smartcard.hw,
|
|
[CLKID_ACODEC] = &s4_acodec.hw,
|
|
[CLKID_SPIFC] = &s4_spifc.hw,
|
|
[CLKID_MSR] = &s4_msr_clk.hw,
|
|
[CLKID_IR_CTRL] = &s4_ir_ctrl.hw,
|
|
[CLKID_AUDIO] = &s4_audio.hw,
|
|
[CLKID_ETH] = &s4_eth.hw,
|
|
[CLKID_UART_A] = &s4_uart_a.hw,
|
|
[CLKID_UART_B] = &s4_uart_b.hw,
|
|
[CLKID_UART_C] = &s4_uart_c.hw,
|
|
[CLKID_UART_D] = &s4_uart_d.hw,
|
|
[CLKID_UART_E] = &s4_uart_e.hw,
|
|
[CLKID_AIFIFO] = &s4_aififo.hw,
|
|
[CLKID_TS_DDR] = &s4_ts_ddr.hw,
|
|
[CLKID_TS_PLL] = &s4_ts_pll.hw,
|
|
[CLKID_G2D] = &s4_g2d.hw,
|
|
[CLKID_SPICC0] = &s4_spicc0.hw,
|
|
[CLKID_USB] = &s4_usb.hw,
|
|
[CLKID_I2C_M_A] = &s4_i2c_m_a.hw,
|
|
[CLKID_I2C_M_B] = &s4_i2c_m_b.hw,
|
|
[CLKID_I2C_M_C] = &s4_i2c_m_c.hw,
|
|
[CLKID_I2C_M_D] = &s4_i2c_m_d.hw,
|
|
[CLKID_I2C_M_E] = &s4_i2c_m_e.hw,
|
|
[CLKID_HDMITX_APB] = &s4_hdmitx_apb.hw,
|
|
[CLKID_I2C_S_A] = &s4_i2c_s_a.hw,
|
|
[CLKID_USB1_TO_DDR] = &s4_usb1_to_ddr.hw,
|
|
[CLKID_HDCP22] = &s4_hdcp22.hw,
|
|
[CLKID_MMC_APB] = &s4_mmc_apb.hw,
|
|
[CLKID_RSA] = &s4_rsa.hw,
|
|
[CLKID_CPU_DEBUG] = &s4_cpu_debug.hw,
|
|
[CLKID_VPU_INTR] = &s4_vpu_intr.hw,
|
|
[CLKID_DEMOD] = &s4_demod.hw,
|
|
[CLKID_SAR_ADC] = &s4_sar_adc.hw,
|
|
[CLKID_GIC] = &s4_gic.hw,
|
|
[CLKID_PWM_AB] = &s4_pwm_ab.hw,
|
|
[CLKID_PWM_CD] = &s4_pwm_cd.hw,
|
|
[CLKID_PWM_EF] = &s4_pwm_ef.hw,
|
|
[CLKID_PWM_GH] = &s4_pwm_gh.hw,
|
|
[CLKID_PWM_IJ] = &s4_pwm_ij.hw,
|
|
[CLKID_HDCP22_ESMCLK_SEL] = &s4_hdcp22_esmclk_sel.hw,
|
|
[CLKID_HDCP22_ESMCLK_DIV] = &s4_hdcp22_esmclk_div.hw,
|
|
[CLKID_HDCP22_ESMCLK] = &s4_hdcp22_esmclk.hw,
|
|
[CLKID_HDCP22_SKPCLK_SEL] = &s4_hdcp22_skpclk_sel.hw,
|
|
[CLKID_HDCP22_SKPCLK_DIV] = &s4_hdcp22_skpclk_div.hw,
|
|
[CLKID_HDCP22_SKPCLK] = &s4_hdcp22_skpclk.hw,
|
|
};
|
|
|
|
static const struct meson_clkc_data s4_peripherals_clkc_data = {
|
|
.hw_clks = {
|
|
.hws = s4_peripherals_hw_clks,
|
|
.num = ARRAY_SIZE(s4_peripherals_hw_clks),
|
|
},
|
|
};
|
|
|
|
static const struct of_device_id s4_peripherals_clkc_match_table[] = {
|
|
{
|
|
.compatible = "amlogic,s4-peripherals-clkc",
|
|
.data = &s4_peripherals_clkc_data,
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(of, s4_peripherals_clkc_match_table);
|
|
|
|
static struct platform_driver s4_peripherals_clkc_driver = {
|
|
.probe = meson_clkc_mmio_probe,
|
|
.driver = {
|
|
.name = "s4-peripherals-clkc",
|
|
.of_match_table = s4_peripherals_clkc_match_table,
|
|
},
|
|
};
|
|
module_platform_driver(s4_peripherals_clkc_driver);
|
|
|
|
MODULE_DESCRIPTION("Amlogic S4 Peripherals Clock Controller driver");
|
|
MODULE_AUTHOR("Yu Tu <yu.tu@amlogic.com>");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_IMPORT_NS("CLK_MESON");
|