2022-09-21 02:13:03 +02:00
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright ( c ) 2021 , The Linux Foundation . All rights reserved .
* Copyright ( c ) 2022 , Konrad Dybcio < konrad . dybcio @ somainline . org >
*/
# include <linux/clk-provider.h>
# include <linux/module.h>
# include <linux/of_device.h>
# include <linux/regmap.h>
# include <dt-bindings/clock/qcom,sm6375-gcc.h>
# include "clk-alpha-pll.h"
# include "clk-branch.h"
# include "clk-rcg.h"
# include "clk-regmap.h"
# include "clk-regmap-divider.h"
# include "clk-regmap-mux.h"
# include "clk-regmap-phy-mux.h"
# include "gdsc.h"
# include "reset.h"
enum {
DT_BI_TCXO ,
DT_BI_TCXO_AO ,
DT_SLEEP_CLK
} ;
enum {
P_BI_TCXO ,
P_GPLL0_OUT_EVEN ,
P_GPLL0_OUT_MAIN ,
P_GPLL0_OUT_ODD ,
P_GPLL10_OUT_EVEN ,
P_GPLL11_OUT_EVEN ,
P_GPLL11_OUT_ODD ,
P_GPLL3_OUT_EVEN ,
P_GPLL3_OUT_MAIN ,
P_GPLL4_OUT_EVEN ,
P_GPLL5_OUT_EVEN ,
P_GPLL6_OUT_EVEN ,
P_GPLL6_OUT_MAIN ,
P_GPLL7_OUT_EVEN ,
P_GPLL8_OUT_EVEN ,
P_GPLL8_OUT_MAIN ,
P_GPLL9_OUT_EARLY ,
P_GPLL9_OUT_MAIN ,
P_SLEEP_CLK ,
} ;
static struct pll_vco lucid_vco [ ] = {
{ 249600000 , 2000000000 , 0 } ,
} ;
static struct pll_vco zonda_vco [ ] = {
2022-10-04 10:17:23 -07:00
{ 595200000 , 3600000000UL , 0 } ,
2022-09-21 02:13:03 +02:00
} ;
static struct clk_alpha_pll gpll0 = {
. offset = 0x0 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll0 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
static const struct clk_div_table post_div_table_gpll0_out_even [ ] = {
{ 0x1 , 2 } ,
{ }
} ;
static struct clk_alpha_pll_postdiv gpll0_out_even = {
. offset = 0x0 ,
. post_div_shift = 8 ,
. post_div_table = post_div_table_gpll0_out_even ,
. num_post_div = ARRAY_SIZE ( post_div_table_gpll0_out_even ) ,
. width = 4 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gpll0_out_even " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll0 . clkr . hw ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_postdiv_lucid_ops ,
} ,
} ;
static const struct clk_div_table post_div_table_gpll0_out_odd [ ] = {
{ 0x3 , 3 } ,
{ }
} ;
static struct clk_alpha_pll_postdiv gpll0_out_odd = {
. offset = 0x0 ,
. post_div_shift = 12 ,
. post_div_table = post_div_table_gpll0_out_odd ,
. num_post_div = ARRAY_SIZE ( post_div_table_gpll0_out_odd ) ,
. width = 4 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gpll0_out_odd " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll0 . clkr . hw ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_postdiv_lucid_ops ,
} ,
} ;
static struct clk_alpha_pll gpll1 = {
. offset = 0x1000 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 1 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll1 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_lucid_ops ,
} ,
} ,
} ;
/* 1152MHz Configuration */
static const struct alpha_pll_config gpll10_config = {
. l = 0x3c ,
. alpha = 0x0 ,
. config_ctl_val = 0x20485699 ,
. config_ctl_hi_val = 0x00002261 ,
. config_ctl_hi1_val = 0x329a299c ,
. user_ctl_val = 0x00000001 ,
. user_ctl_hi_val = 0x00000805 ,
. user_ctl_hi1_val = 0x00000000 ,
} ;
static struct clk_alpha_pll gpll10 = {
. offset = 0xa000 ,
. vco_table = lucid_vco ,
. num_vco = ARRAY_SIZE ( lucid_vco ) ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. flags = SUPPORTS_FSM_LEGACY_MODE ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 10 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll10 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
/* 532MHz Configuration */
static const struct alpha_pll_config gpll11_config = {
. l = 0x1b ,
. alpha = 0xb555 ,
. config_ctl_val = 0x20485699 ,
. config_ctl_hi_val = 0x00002261 ,
. config_ctl_hi1_val = 0x329a299c ,
. user_ctl_val = 0x00000001 ,
. user_ctl_hi_val = 0x00000805 ,
. user_ctl_hi1_val = 0x00000000 ,
} ;
static struct clk_alpha_pll gpll11 = {
. offset = 0xb000 ,
. vco_table = lucid_vco ,
. num_vco = ARRAY_SIZE ( lucid_vco ) ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. flags = SUPPORTS_FSM_LEGACY_MODE ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 11 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll11 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_lucid_ops ,
} ,
} ,
} ;
static struct clk_alpha_pll gpll3 = {
. offset = 0x3000 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 3 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll3 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
static const struct clk_div_table post_div_table_gpll3_out_even [ ] = {
{ 0x1 , 2 } ,
{ }
} ;
static struct clk_alpha_pll_postdiv gpll3_out_even = {
. offset = 0x3000 ,
. post_div_shift = 8 ,
. post_div_table = post_div_table_gpll3_out_even ,
. num_post_div = ARRAY_SIZE ( post_div_table_gpll3_out_even ) ,
. width = 4 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gpll3_out_even " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll3 . clkr . hw ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_postdiv_lucid_ops ,
} ,
} ;
static struct clk_alpha_pll gpll4 = {
. offset = 0x4000 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 4 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll4 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
static struct clk_alpha_pll gpll5 = {
. offset = 0x5000 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 5 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll5 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
static struct clk_alpha_pll gpll6 = {
. offset = 0x6000 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 6 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll6 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
static const struct clk_div_table post_div_table_gpll6_out_even [ ] = {
{ 0x1 , 2 } ,
{ }
} ;
static struct clk_alpha_pll_postdiv gpll6_out_even = {
. offset = 0x6000 ,
. post_div_shift = 8 ,
. post_div_table = post_div_table_gpll6_out_even ,
. num_post_div = ARRAY_SIZE ( post_div_table_gpll6_out_even ) ,
. width = 4 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gpll6_out_even " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll6 . clkr . hw ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_postdiv_lucid_ops ,
} ,
} ;
static struct clk_alpha_pll gpll7 = {
. offset = 0x7000 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 7 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll7 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_fixed_lucid_ops ,
} ,
} ,
} ;
/* 400MHz Configuration */
static const struct alpha_pll_config gpll8_config = {
. l = 0x14 ,
. alpha = 0xd555 ,
. config_ctl_val = 0x20485699 ,
. config_ctl_hi_val = 0x00002261 ,
. config_ctl_hi1_val = 0x329a299c ,
. user_ctl_val = 0x00000101 ,
. user_ctl_hi_val = 0x00000805 ,
. user_ctl_hi1_val = 0x00000000 ,
} ;
static struct clk_alpha_pll gpll8 = {
. offset = 0x8000 ,
. vco_table = lucid_vco ,
. num_vco = ARRAY_SIZE ( lucid_vco ) ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. flags = SUPPORTS_FSM_LEGACY_MODE ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 8 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll8 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_lucid_ops ,
} ,
} ,
} ;
static const struct clk_div_table post_div_table_gpll8_out_even [ ] = {
{ 0x1 , 2 } ,
{ }
} ;
static struct clk_alpha_pll_postdiv gpll8_out_even = {
. offset = 0x8000 ,
. post_div_shift = 8 ,
. post_div_table = post_div_table_gpll8_out_even ,
. num_post_div = ARRAY_SIZE ( post_div_table_gpll8_out_even ) ,
. width = 4 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_LUCID ] ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gpll8_out_even " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll8 . clkr . hw ,
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_alpha_pll_postdiv_lucid_ops ,
} ,
} ;
/* 1440MHz Configuration */
static const struct alpha_pll_config gpll9_config = {
. l = 0x4b ,
. alpha = 0x0 ,
. config_ctl_val = 0x08200800 ,
. config_ctl_hi_val = 0x05022011 ,
. config_ctl_hi1_val = 0x08000000 ,
. user_ctl_val = 0x00000301 ,
} ;
static struct clk_alpha_pll gpll9 = {
. offset = 0x9000 ,
. vco_table = zonda_vco ,
. num_vco = ARRAY_SIZE ( zonda_vco ) ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_ZONDA ] ,
. clkr = {
. enable_reg = 0x79000 ,
. enable_mask = BIT ( 9 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gpll9 " ,
. parent_data = & ( const struct clk_parent_data ) {
. index = DT_BI_TCXO ,
} ,
. num_parents = 1 ,
. ops = & clk_alpha_pll_zonda_ops ,
} ,
} ,
} ;
static const struct clk_div_table post_div_table_gpll9_out_main [ ] = {
{ 0x3 , 4 } ,
{ }
} ;
static struct clk_alpha_pll_postdiv gpll9_out_main = {
. offset = 0x9000 ,
. post_div_shift = 8 ,
. post_div_table = post_div_table_gpll9_out_main ,
. num_post_div = ARRAY_SIZE ( post_div_table_gpll9_out_main ) ,
. width = 2 ,
. regs = clk_alpha_pll_regs [ CLK_ALPHA_PLL_TYPE_ZONDA ] ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gpll9_out_main " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll9 . clkr . hw ,
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_alpha_pll_postdiv_zonda_ops ,
} ,
} ;
static const struct parent_map gcc_parent_map_0 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
} ;
static const struct clk_parent_data gcc_parent_data_0 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_1 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL6_OUT_EVEN , 4 } ,
} ;
static const struct clk_parent_data gcc_parent_data_1 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll6_out_even . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_2 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL0_OUT_ODD , 4 } ,
} ;
static const struct clk_parent_data gcc_parent_data_2 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll0_out_odd . clkr . hw } ,
} ;
static const struct clk_parent_data gcc_parent_data_2_ao [ ] = {
{ . index = DT_BI_TCXO_AO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll0_out_odd . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_3 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL9_OUT_EARLY , 2 } ,
{ P_GPLL10_OUT_EVEN , 3 } ,
{ P_GPLL9_OUT_MAIN , 4 } ,
{ P_GPLL3_OUT_EVEN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_3 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll9 . clkr . hw } ,
{ . hw = & gpll10 . clkr . hw } ,
{ . hw = & gpll9_out_main . clkr . hw } ,
{ . hw = & gpll3_out_even . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_4 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL0_OUT_ODD , 4 } ,
{ P_GPLL4_OUT_EVEN , 5 } ,
{ P_GPLL3_OUT_EVEN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_4 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll0_out_odd . clkr . hw } ,
{ . hw = & gpll4 . clkr . hw } ,
{ . hw = & gpll3_out_even . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_5 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL8_OUT_MAIN , 2 } ,
{ P_GPLL10_OUT_EVEN , 3 } ,
{ P_GPLL9_OUT_MAIN , 4 } ,
{ P_GPLL8_OUT_EVEN , 5 } ,
{ P_GPLL3_OUT_EVEN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_5 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll8 . clkr . hw } ,
{ . hw = & gpll10 . clkr . hw } ,
{ . hw = & gpll9_out_main . clkr . hw } ,
{ . hw = & gpll8_out_even . clkr . hw } ,
{ . hw = & gpll3_out_even . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_6 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL8_OUT_MAIN , 2 } ,
{ P_GPLL5_OUT_EVEN , 3 } ,
{ P_GPLL9_OUT_MAIN , 4 } ,
{ P_GPLL8_OUT_EVEN , 5 } ,
{ P_GPLL3_OUT_MAIN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_6 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll8 . clkr . hw } ,
{ . hw = & gpll5 . clkr . hw } ,
{ . hw = & gpll9_out_main . clkr . hw } ,
{ . hw = & gpll8_out_even . clkr . hw } ,
{ . hw = & gpll3 . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_7 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL0_OUT_ODD , 4 } ,
{ P_SLEEP_CLK , 5 } ,
} ;
static const struct clk_parent_data gcc_parent_data_7 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll0_out_odd . clkr . hw } ,
{ . index = DT_SLEEP_CLK } ,
} ;
static const struct parent_map gcc_parent_map_8 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL10_OUT_EVEN , 3 } ,
{ P_GPLL4_OUT_EVEN , 5 } ,
{ P_GPLL3_OUT_MAIN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_8 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll10 . clkr . hw } ,
{ . hw = & gpll4 . clkr . hw } ,
{ . hw = & gpll3 . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_9 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL10_OUT_EVEN , 3 } ,
{ P_GPLL9_OUT_MAIN , 4 } ,
{ P_GPLL8_OUT_EVEN , 5 } ,
{ P_GPLL3_OUT_MAIN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_9 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll10 . clkr . hw } ,
{ . hw = & gpll9_out_main . clkr . hw } ,
{ . hw = & gpll8_out_even . clkr . hw } ,
{ . hw = & gpll3 . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_10 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL8_OUT_MAIN , 2 } ,
{ P_GPLL10_OUT_EVEN , 3 } ,
{ P_GPLL9_OUT_MAIN , 4 } ,
{ P_GPLL8_OUT_EVEN , 5 } ,
{ P_GPLL3_OUT_MAIN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_10 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll8 . clkr . hw } ,
{ . hw = & gpll10 . clkr . hw } ,
{ . hw = & gpll9_out_main . clkr . hw } ,
{ . hw = & gpll8_out_even . clkr . hw } ,
{ . hw = & gpll3 . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_11 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL8_OUT_MAIN , 2 } ,
{ P_GPLL10_OUT_EVEN , 3 } ,
{ P_GPLL6_OUT_MAIN , 4 } ,
{ P_GPLL3_OUT_EVEN , 6 } ,
} ;
static const struct clk_parent_data gcc_parent_data_11 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll8 . clkr . hw } ,
{ . hw = & gpll10 . clkr . hw } ,
{ . hw = & gpll6 . clkr . hw } ,
{ . hw = & gpll3_out_even . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_12 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL0_OUT_MAIN , 1 } ,
{ P_GPLL0_OUT_EVEN , 2 } ,
{ P_GPLL7_OUT_EVEN , 3 } ,
{ P_GPLL4_OUT_EVEN , 5 } ,
} ;
static const struct clk_parent_data gcc_parent_data_12 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll0 . clkr . hw } ,
{ . hw = & gpll0_out_even . clkr . hw } ,
{ . hw = & gpll7 . clkr . hw } ,
{ . hw = & gpll4 . clkr . hw } ,
} ;
static const struct parent_map gcc_parent_map_13 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_SLEEP_CLK , 5 } ,
} ;
static const struct clk_parent_data gcc_parent_data_13 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . index = DT_SLEEP_CLK } ,
} ;
static const struct parent_map gcc_parent_map_14 [ ] = {
{ P_BI_TCXO , 0 } ,
{ P_GPLL11_OUT_ODD , 2 } ,
{ P_GPLL11_OUT_EVEN , 3 } ,
} ;
static const struct clk_parent_data gcc_parent_data_14 [ ] = {
{ . index = DT_BI_TCXO } ,
{ . hw = & gpll11 . clkr . hw } ,
{ . hw = & gpll11 . clkr . hw } ,
} ;
static const struct freq_tbl ftbl_gcc_camss_axi_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 150000000 , P_GPLL0_OUT_EVEN , 2 , 0 , 0 ) ,
F ( 240000000 , P_GPLL0_OUT_MAIN , 2.5 , 0 , 0 ) ,
F ( 300000000 , P_GPLL0_OUT_EVEN , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_axi_clk_src = {
. cmd_rcgr = 0x5802c ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_8 ,
. freq_tbl = ftbl_gcc_camss_axi_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_axi_clk_src " ,
. parent_data = gcc_parent_data_8 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_8 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_cci_0_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 37500000 , P_GPLL0_OUT_EVEN , 8 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_cci_0_clk_src = {
. cmd_rcgr = 0x56000 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_9 ,
. freq_tbl = ftbl_gcc_camss_cci_0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cci_0_clk_src " ,
. parent_data = gcc_parent_data_9 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_9 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_cci_1_clk_src = {
. cmd_rcgr = 0x5c000 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_9 ,
. freq_tbl = ftbl_gcc_camss_cci_0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cci_1_clk_src " ,
. parent_data = gcc_parent_data_9 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_9 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_csi0phytimer_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_ODD , 2 , 0 , 0 ) ,
F ( 300000000 , P_GPLL0_OUT_EVEN , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_csi0phytimer_clk_src = {
. cmd_rcgr = 0x59000 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_4 ,
. freq_tbl = ftbl_gcc_camss_csi0phytimer_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi0phytimer_clk_src " ,
. parent_data = gcc_parent_data_4 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_4 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_csi1phytimer_clk_src = {
. cmd_rcgr = 0x5901c ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_4 ,
. freq_tbl = ftbl_gcc_camss_csi0phytimer_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi1phytimer_clk_src " ,
. parent_data = gcc_parent_data_4 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_4 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_csi2phytimer_clk_src = {
. cmd_rcgr = 0x59038 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_4 ,
. freq_tbl = ftbl_gcc_camss_csi0phytimer_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi2phytimer_clk_src " ,
. parent_data = gcc_parent_data_4 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_4 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_csi3phytimer_clk_src = {
. cmd_rcgr = 0x59054 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_4 ,
. freq_tbl = ftbl_gcc_camss_csi0phytimer_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi3phytimer_clk_src " ,
. parent_data = gcc_parent_data_4 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_4 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_mclk0_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 24000000 , P_GPLL9_OUT_MAIN , 1 , 1 , 15 ) ,
F ( 65454545 , P_GPLL9_OUT_EARLY , 11 , 1 , 2 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_mclk0_clk_src = {
. cmd_rcgr = 0x51000 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_3 ,
. freq_tbl = ftbl_gcc_camss_mclk0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk0_clk_src " ,
. parent_data = gcc_parent_data_3 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_3 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_mclk1_clk_src = {
. cmd_rcgr = 0x5101c ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_3 ,
. freq_tbl = ftbl_gcc_camss_mclk0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk1_clk_src " ,
. parent_data = gcc_parent_data_3 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_3 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_mclk2_clk_src = {
. cmd_rcgr = 0x51038 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_3 ,
. freq_tbl = ftbl_gcc_camss_mclk0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk2_clk_src " ,
. parent_data = gcc_parent_data_3 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_3 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_mclk3_clk_src = {
. cmd_rcgr = 0x51054 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_3 ,
. freq_tbl = ftbl_gcc_camss_mclk0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk3_clk_src " ,
. parent_data = gcc_parent_data_3 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_3 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_mclk4_clk_src = {
. cmd_rcgr = 0x51070 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_3 ,
. freq_tbl = ftbl_gcc_camss_mclk0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk4_clk_src " ,
. parent_data = gcc_parent_data_3 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_3 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_ope_ahb_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 171428571 , P_GPLL0_OUT_MAIN , 3.5 , 0 , 0 ) ,
F ( 240000000 , P_GPLL0_OUT_MAIN , 2.5 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_ope_ahb_clk_src = {
. cmd_rcgr = 0x55024 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_10 ,
. freq_tbl = ftbl_gcc_camss_ope_ahb_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_ope_ahb_clk_src " ,
. parent_data = gcc_parent_data_10 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_10 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_ope_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 200000000 , P_GPLL8_OUT_EVEN , 1 , 0 , 0 ) ,
F ( 266600000 , P_GPLL8_OUT_EVEN , 1 , 0 , 0 ) ,
F ( 480000000 , P_GPLL8_OUT_EVEN , 1 , 0 , 0 ) ,
F ( 580000000 , P_GPLL8_OUT_EVEN , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_ope_clk_src = {
. cmd_rcgr = 0x55004 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_10 ,
. freq_tbl = ftbl_gcc_camss_ope_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_ope_clk_src " ,
. parent_data = gcc_parent_data_10 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_10 ) ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_tfe_0_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 120000000 , P_GPLL0_OUT_MAIN , 5 , 0 , 0 ) ,
F ( 133333333 , P_GPLL0_OUT_MAIN , 4.5 , 0 , 0 ) ,
F ( 144000000 , P_GPLL9_OUT_MAIN , 2.5 , 0 , 0 ) ,
F ( 150000000 , P_GPLL0_OUT_MAIN , 4 , 0 , 0 ) ,
F ( 171428571 , P_GPLL0_OUT_MAIN , 3.5 , 0 , 0 ) ,
F ( 180000000 , P_GPLL9_OUT_MAIN , 2 , 0 , 0 ) ,
F ( 200000000 , P_GPLL0_OUT_MAIN , 3 , 0 , 0 ) ,
F ( 240000000 , P_GPLL0_OUT_MAIN , 2.5 , 0 , 0 ) ,
F ( 300000000 , P_GPLL0_OUT_MAIN , 2 , 0 , 0 ) ,
F ( 329142857 , P_GPLL10_OUT_EVEN , 3.5 , 0 , 0 ) ,
F ( 384000000 , P_GPLL10_OUT_EVEN , 3 , 0 , 0 ) ,
F ( 460800000 , P_GPLL10_OUT_EVEN , 2.5 , 0 , 0 ) ,
F ( 576000000 , P_GPLL10_OUT_EVEN , 2 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_tfe_0_clk_src = {
. cmd_rcgr = 0x52004 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_5 ,
. freq_tbl = ftbl_gcc_camss_tfe_0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_0_clk_src " ,
. parent_data = gcc_parent_data_5 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_5 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_tfe_0_csid_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 120000000 , P_GPLL0_OUT_MAIN , 5 , 0 , 0 ) ,
F ( 266571429 , P_GPLL5_OUT_EVEN , 3.5 , 0 , 0 ) ,
F ( 426400000 , P_GPLL3_OUT_MAIN , 2.5 , 0 , 0 ) ,
F ( 466500000 , P_GPLL5_OUT_EVEN , 2 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_tfe_0_csid_clk_src = {
. cmd_rcgr = 0x52094 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_6 ,
. freq_tbl = ftbl_gcc_camss_tfe_0_csid_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_0_csid_clk_src " ,
. parent_data = gcc_parent_data_6 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_6 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_tfe_1_clk_src = {
. cmd_rcgr = 0x52024 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_5 ,
. freq_tbl = ftbl_gcc_camss_tfe_0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_1_clk_src " ,
. parent_data = gcc_parent_data_5 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_5 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_tfe_1_csid_clk_src = {
. cmd_rcgr = 0x520b4 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_6 ,
. freq_tbl = ftbl_gcc_camss_tfe_0_csid_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_1_csid_clk_src " ,
. parent_data = gcc_parent_data_6 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_6 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_tfe_2_clk_src = {
. cmd_rcgr = 0x52044 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_5 ,
. freq_tbl = ftbl_gcc_camss_tfe_0_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_2_clk_src " ,
. parent_data = gcc_parent_data_5 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_5 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_camss_tfe_2_csid_clk_src = {
. cmd_rcgr = 0x520d4 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_6 ,
. freq_tbl = ftbl_gcc_camss_tfe_0_csid_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_2_csid_clk_src " ,
. parent_data = gcc_parent_data_6 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_6 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_tfe_cphy_rx_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 256000000 , P_GPLL6_OUT_MAIN , 3 , 0 , 0 ) ,
F ( 384000000 , P_GPLL6_OUT_MAIN , 2 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_tfe_cphy_rx_clk_src = {
. cmd_rcgr = 0x52064 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_11 ,
. freq_tbl = ftbl_gcc_camss_tfe_cphy_rx_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_cphy_rx_clk_src " ,
. parent_data = gcc_parent_data_11 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_11 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_camss_top_ahb_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 40000000 , P_GPLL0_OUT_EVEN , 7.5 , 0 , 0 ) ,
F ( 80000000 , P_GPLL0_OUT_MAIN , 7.5 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_camss_top_ahb_clk_src = {
. cmd_rcgr = 0x58010 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_8 ,
. freq_tbl = ftbl_gcc_camss_top_ahb_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_top_ahb_clk_src " ,
. parent_data = gcc_parent_data_8 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_8 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_cpuss_ahb_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 50000000 , P_GPLL0_OUT_ODD , 4 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_ODD , 2 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_cpuss_ahb_clk_src = {
. cmd_rcgr = 0x2b13c ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_2 ,
. freq_tbl = ftbl_gcc_cpuss_ahb_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_cpuss_ahb_clk_src " ,
. parent_data = gcc_parent_data_2_ao ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_2_ao ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_gp1_clk_src [ ] = {
F ( 25000000 , P_GPLL0_OUT_EVEN , 12 , 0 , 0 ) ,
F ( 50000000 , P_GPLL0_OUT_ODD , 4 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_ODD , 2 , 0 , 0 ) ,
F ( 200000000 , P_GPLL0_OUT_ODD , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_gp1_clk_src = {
. cmd_rcgr = 0x4d004 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_7 ,
. freq_tbl = ftbl_gcc_gp1_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_gp1_clk_src " ,
. parent_data = gcc_parent_data_7 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_7 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_gp2_clk_src = {
. cmd_rcgr = 0x4e004 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_7 ,
. freq_tbl = ftbl_gcc_gp1_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_gp2_clk_src " ,
. parent_data = gcc_parent_data_7 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_7 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_gp3_clk_src = {
. cmd_rcgr = 0x4f004 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_7 ,
. freq_tbl = ftbl_gcc_gp1_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_gp3_clk_src " ,
. parent_data = gcc_parent_data_7 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_7 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_pdm2_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 60000000 , P_GPLL0_OUT_EVEN , 5 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_pdm2_clk_src = {
. cmd_rcgr = 0x20010 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_0 ,
. freq_tbl = ftbl_gcc_pdm2_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_pdm2_clk_src " ,
. parent_data = gcc_parent_data_0 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_0 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_qupv3_wrap0_s0_clk_src [ ] = {
F ( 7372800 , P_GPLL0_OUT_EVEN , 1 , 384 , 15625 ) ,
F ( 14745600 , P_GPLL0_OUT_EVEN , 1 , 768 , 15625 ) ,
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 29491200 , P_GPLL0_OUT_EVEN , 1 , 1536 , 15625 ) ,
F ( 32000000 , P_GPLL0_OUT_EVEN , 1 , 8 , 75 ) ,
F ( 48000000 , P_GPLL0_OUT_EVEN , 1 , 4 , 25 ) ,
F ( 64000000 , P_GPLL0_OUT_EVEN , 1 , 16 , 75 ) ,
F ( 75000000 , P_GPLL0_OUT_EVEN , 4 , 0 , 0 ) ,
F ( 80000000 , P_GPLL0_OUT_EVEN , 1 , 4 , 15 ) ,
F ( 96000000 , P_GPLL0_OUT_EVEN , 1 , 8 , 25 ) ,
F ( 100000000 , P_GPLL0_OUT_EVEN , 3 , 0 , 0 ) ,
F ( 102400000 , P_GPLL0_OUT_EVEN , 1 , 128 , 375 ) ,
F ( 112000000 , P_GPLL0_OUT_EVEN , 1 , 28 , 75 ) ,
F ( 117964800 , P_GPLL0_OUT_EVEN , 1 , 6144 , 15625 ) ,
F ( 120000000 , P_GPLL0_OUT_EVEN , 2.5 , 0 , 0 ) ,
F ( 128000000 , P_GPLL6_OUT_EVEN , 3 , 0 , 0 ) ,
{ }
} ;
static struct clk_init_data gcc_qupv3_wrap0_s0_clk_src_init = {
. name = " gcc_qupv3_wrap0_s0_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap0_s0_clk_src = {
. cmd_rcgr = 0x1f148 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap0_s0_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap0_s1_clk_src_init = {
. name = " gcc_qupv3_wrap0_s1_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap0_s1_clk_src = {
. cmd_rcgr = 0x1f278 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap0_s1_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap0_s2_clk_src_init = {
. name = " gcc_qupv3_wrap0_s2_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap0_s2_clk_src = {
. cmd_rcgr = 0x1f3a8 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap0_s2_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap0_s3_clk_src_init = {
. name = " gcc_qupv3_wrap0_s3_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap0_s3_clk_src = {
. cmd_rcgr = 0x1f4d8 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap0_s3_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap0_s4_clk_src_init = {
. name = " gcc_qupv3_wrap0_s4_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap0_s4_clk_src = {
. cmd_rcgr = 0x1f608 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap0_s4_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap0_s5_clk_src_init = {
. name = " gcc_qupv3_wrap0_s5_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap0_s5_clk_src = {
. cmd_rcgr = 0x1f738 ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap0_s5_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap1_s0_clk_src_init = {
. name = " gcc_qupv3_wrap1_s0_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap1_s0_clk_src = {
. cmd_rcgr = 0x5301c ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap1_s0_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap1_s1_clk_src_init = {
. name = " gcc_qupv3_wrap1_s1_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap1_s1_clk_src = {
. cmd_rcgr = 0x5314c ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap1_s1_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap1_s2_clk_src_init = {
. name = " gcc_qupv3_wrap1_s2_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap1_s2_clk_src = {
. cmd_rcgr = 0x5327c ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap1_s2_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap1_s3_clk_src_init = {
. name = " gcc_qupv3_wrap1_s3_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap1_s3_clk_src = {
. cmd_rcgr = 0x533ac ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap1_s3_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap1_s4_clk_src_init = {
. name = " gcc_qupv3_wrap1_s4_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap1_s4_clk_src = {
. cmd_rcgr = 0x534dc ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap1_s4_clk_src_init ,
} ;
static struct clk_init_data gcc_qupv3_wrap1_s5_clk_src_init = {
. name = " gcc_qupv3_wrap1_s5_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ;
static struct clk_rcg2 gcc_qupv3_wrap1_s5_clk_src = {
. cmd_rcgr = 0x5360c ,
. mnd_width = 16 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_qupv3_wrap0_s0_clk_src ,
. clkr . hw . init = & gcc_qupv3_wrap1_s5_clk_src_init ,
} ;
static const struct freq_tbl ftbl_gcc_sdcc1_apps_clk_src [ ] = {
F ( 144000 , P_BI_TCXO , 16 , 3 , 25 ) ,
F ( 400000 , P_BI_TCXO , 12 , 1 , 4 ) ,
F ( 20000000 , P_GPLL0_OUT_EVEN , 5 , 1 , 3 ) ,
F ( 25000000 , P_GPLL0_OUT_EVEN , 6 , 1 , 2 ) ,
F ( 50000000 , P_GPLL0_OUT_EVEN , 6 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_EVEN , 3 , 0 , 0 ) ,
F ( 192000000 , P_GPLL6_OUT_EVEN , 2 , 0 , 0 ) ,
F ( 384000000 , P_GPLL6_OUT_EVEN , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_sdcc1_apps_clk_src = {
. cmd_rcgr = 0x38028 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_1 ,
. freq_tbl = ftbl_gcc_sdcc1_apps_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc1_apps_clk_src " ,
. parent_data = gcc_parent_data_1 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_1 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_sdcc1_ice_core_clk_src [ ] = {
F ( 75000000 , P_GPLL0_OUT_EVEN , 4 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_EVEN , 3 , 0 , 0 ) ,
F ( 150000000 , P_GPLL0_OUT_EVEN , 2 , 0 , 0 ) ,
F ( 200000000 , P_GPLL0_OUT_MAIN , 3 , 0 , 0 ) ,
F ( 300000000 , P_GPLL0_OUT_EVEN , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_sdcc1_ice_core_clk_src = {
. cmd_rcgr = 0x38010 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_0 ,
. freq_tbl = ftbl_gcc_sdcc1_ice_core_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc1_ice_core_clk_src " ,
. parent_data = gcc_parent_data_0 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_0 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_sdcc2_apps_clk_src [ ] = {
F ( 400000 , P_BI_TCXO , 12 , 1 , 4 ) ,
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
F ( 25000000 , P_GPLL0_OUT_EVEN , 12 , 0 , 0 ) ,
F ( 50000000 , P_GPLL0_OUT_EVEN , 6 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_EVEN , 3 , 0 , 0 ) ,
F ( 202000000 , P_GPLL7_OUT_EVEN , 4 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_sdcc2_apps_clk_src = {
. cmd_rcgr = 0x1e00c ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_12 ,
. freq_tbl = ftbl_gcc_sdcc2_apps_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc2_apps_clk_src " ,
. parent_data = gcc_parent_data_12 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_12 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_ufs_phy_axi_clk_src [ ] = {
F ( 25000000 , P_GPLL0_OUT_EVEN , 12 , 0 , 0 ) ,
F ( 50000000 , P_GPLL0_OUT_ODD , 4 , 0 , 0 ) ,
F ( 100000000 , P_GPLL0_OUT_ODD , 2 , 0 , 0 ) ,
F ( 200000000 , P_GPLL0_OUT_ODD , 1 , 0 , 0 ) ,
F ( 240000000 , P_GPLL0_OUT_MAIN , 2.5 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_ufs_phy_axi_clk_src = {
. cmd_rcgr = 0x45020 ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_2 ,
. freq_tbl = ftbl_gcc_ufs_phy_axi_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_axi_clk_src " ,
. parent_data = gcc_parent_data_2 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_2 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_ufs_phy_ice_core_clk_src [ ] = {
F ( 37500000 , P_GPLL0_OUT_EVEN , 8 , 0 , 0 ) ,
F ( 75000000 , P_GPLL0_OUT_EVEN , 4 , 0 , 0 ) ,
F ( 150000000 , P_GPLL0_OUT_EVEN , 2 , 0 , 0 ) ,
F ( 300000000 , P_GPLL0_OUT_EVEN , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_ufs_phy_ice_core_clk_src = {
. cmd_rcgr = 0x45048 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_0 ,
. freq_tbl = ftbl_gcc_ufs_phy_ice_core_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_ice_core_clk_src " ,
. parent_data = gcc_parent_data_0 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_0 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_ufs_phy_phy_aux_clk_src [ ] = {
F ( 9600000 , P_BI_TCXO , 2 , 0 , 0 ) ,
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_ufs_phy_phy_aux_clk_src = {
. cmd_rcgr = 0x4507c ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_0 ,
. freq_tbl = ftbl_gcc_ufs_phy_phy_aux_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_phy_aux_clk_src " ,
. parent_data = gcc_parent_data_0 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_0 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_ufs_phy_unipro_core_clk_src [ ] = {
F ( 37500000 , P_GPLL0_OUT_EVEN , 8 , 0 , 0 ) ,
F ( 75000000 , P_GPLL0_OUT_EVEN , 4 , 0 , 0 ) ,
F ( 150000000 , P_GPLL0_OUT_EVEN , 2 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_ufs_phy_unipro_core_clk_src = {
. cmd_rcgr = 0x45060 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_0 ,
. freq_tbl = ftbl_gcc_ufs_phy_unipro_core_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_unipro_core_clk_src " ,
. parent_data = gcc_parent_data_0 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_0 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_usb30_prim_master_clk_src [ ] = {
F ( 66666667 , P_GPLL0_OUT_EVEN , 4.5 , 0 , 0 ) ,
F ( 133333333 , P_GPLL0_OUT_MAIN , 4.5 , 0 , 0 ) ,
F ( 200000000 , P_GPLL0_OUT_ODD , 1 , 0 , 0 ) ,
F ( 240000000 , P_GPLL0_OUT_MAIN , 2.5 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_usb30_prim_master_clk_src = {
. cmd_rcgr = 0x1a01c ,
. mnd_width = 8 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_2 ,
. freq_tbl = ftbl_gcc_usb30_prim_master_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb30_prim_master_clk_src " ,
. parent_data = gcc_parent_data_2 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_2 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_usb30_prim_mock_utmi_clk_src [ ] = {
F ( 19200000 , P_BI_TCXO , 1 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_usb30_prim_mock_utmi_clk_src = {
. cmd_rcgr = 0x1a034 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_0 ,
. freq_tbl = ftbl_gcc_usb30_prim_mock_utmi_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb30_prim_mock_utmi_clk_src " ,
. parent_data = gcc_parent_data_0 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_0 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_rcg2 gcc_usb3_prim_phy_aux_clk_src = {
. cmd_rcgr = 0x1a060 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_13 ,
. freq_tbl = ftbl_gcc_usb30_prim_mock_utmi_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb3_prim_phy_aux_clk_src " ,
. parent_data = gcc_parent_data_13 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_13 ) ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static const struct freq_tbl ftbl_gcc_video_venus_clk_src [ ] = {
F ( 133000000 , P_GPLL11_OUT_EVEN , 4 , 0 , 0 ) ,
F ( 240000000 , P_GPLL11_OUT_EVEN , 2.5 , 0 , 0 ) ,
F ( 300000000 , P_GPLL11_OUT_EVEN , 2 , 0 , 0 ) ,
F ( 384000000 , P_GPLL11_OUT_EVEN , 2 , 0 , 0 ) ,
{ }
} ;
static struct clk_rcg2 gcc_video_venus_clk_src = {
. cmd_rcgr = 0x58060 ,
. mnd_width = 0 ,
. hid_width = 5 ,
. parent_map = gcc_parent_map_14 ,
. freq_tbl = ftbl_gcc_video_venus_clk_src ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_venus_clk_src " ,
. parent_data = gcc_parent_data_14 ,
. num_parents = ARRAY_SIZE ( gcc_parent_data_14 ) ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_rcg2_shared_ops ,
} ,
} ;
static struct clk_regmap_div gcc_cpuss_ahb_postdiv_clk_src = {
. reg = 0x2b154 ,
. shift = 0 ,
. width = 4 ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_cpuss_ahb_postdiv_clk_src " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_cpuss_ahb_clk_src . clkr . hw ,
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_regmap_div_ro_ops ,
} ,
} ;
static struct clk_regmap_div gcc_usb30_prim_mock_utmi_postdiv_clk_src = {
. reg = 0x1a04c ,
. shift = 0 ,
. width = 4 ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb30_prim_mock_utmi_postdiv_clk_src " ,
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_usb30_prim_mock_utmi_clk_src . clkr . hw ,
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_regmap_div_ro_ops ,
} ,
} ;
static struct clk_branch gcc_ahb2phy_csi_clk = {
. halt_reg = 0x1d004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1d004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1d004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ahb2phy_csi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ahb2phy_usb_clk = {
. halt_reg = 0x1d008 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1d008 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1d008 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ahb2phy_usb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_bimc_gpu_axi_clk = {
. halt_reg = 0x71154 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x71154 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x71154 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_bimc_gpu_axi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_boot_rom_ahb_clk = {
. halt_reg = 0x23004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x23004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 10 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_boot_rom_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_cam_throttle_nrt_clk = {
. halt_reg = 0x17070 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17070 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 27 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_cam_throttle_nrt_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_cam_throttle_rt_clk = {
. halt_reg = 0x1706c ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1706c ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 26 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_cam_throttle_rt_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camera_ahb_clk = {
. halt_reg = 0x17008 ,
. halt_check = BRANCH_HALT_DELAY ,
. hwcg_reg = 0x17008 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x17008 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camera_ahb_clk " ,
. flags = CLK_IS_CRITICAL ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_axi_clk = {
. halt_reg = 0x58044 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x58044 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_axi_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_axi_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_cci_0_clk = {
. halt_reg = 0x56018 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x56018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cci_0_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_cci_0_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_cci_1_clk = {
. halt_reg = 0x5c018 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5c018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cci_1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_cci_1_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_cphy_0_clk = {
. halt_reg = 0x52088 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x52088 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cphy_0_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_cphy_1_clk = {
. halt_reg = 0x5208c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5208c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cphy_1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_cphy_2_clk = {
. halt_reg = 0x52090 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x52090 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cphy_2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_cphy_3_clk = {
. halt_reg = 0x520f8 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x520f8 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_cphy_3_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_csi0phytimer_clk = {
. halt_reg = 0x59018 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x59018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi0phytimer_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_csi0phytimer_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_csi1phytimer_clk = {
. halt_reg = 0x59034 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x59034 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi1phytimer_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_csi1phytimer_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_csi2phytimer_clk = {
. halt_reg = 0x59050 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x59050 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi2phytimer_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_csi2phytimer_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_csi3phytimer_clk = {
. halt_reg = 0x5906c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5906c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_csi3phytimer_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_csi3phytimer_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_mclk0_clk = {
. halt_reg = 0x51018 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x51018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk0_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_mclk0_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_mclk1_clk = {
. halt_reg = 0x51034 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x51034 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_mclk1_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_mclk2_clk = {
. halt_reg = 0x51050 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x51050 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_mclk2_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_mclk3_clk = {
. halt_reg = 0x5106c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5106c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk3_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_mclk3_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_mclk4_clk = {
. halt_reg = 0x51088 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x51088 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_mclk4_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_mclk4_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_nrt_axi_clk = {
. halt_reg = 0x58054 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x58054 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_nrt_axi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_ope_ahb_clk = {
. halt_reg = 0x5503c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5503c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_ope_ahb_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_ope_ahb_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_ope_clk = {
. halt_reg = 0x5501c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5501c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_ope_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_ope_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_rt_axi_clk = {
. halt_reg = 0x5805c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5805c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_rt_axi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_0_clk = {
. halt_reg = 0x5201c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5201c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_0_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_0_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_0_cphy_rx_clk = {
. halt_reg = 0x5207c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5207c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_0_cphy_rx_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_0_csid_clk = {
. halt_reg = 0x520ac ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x520ac ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_0_csid_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_0_csid_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_1_clk = {
. halt_reg = 0x5203c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5203c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_1_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_1_cphy_rx_clk = {
. halt_reg = 0x52080 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x52080 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_1_cphy_rx_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_1_csid_clk = {
. halt_reg = 0x520cc ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x520cc ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_1_csid_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_1_csid_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_2_clk = {
. halt_reg = 0x5205c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5205c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_2_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_2_cphy_rx_clk = {
. halt_reg = 0x52084 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x52084 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_2_cphy_rx_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_cphy_rx_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_tfe_2_csid_clk = {
. halt_reg = 0x520ec ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x520ec ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_tfe_2_csid_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_tfe_2_csid_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_camss_top_ahb_clk = {
. halt_reg = 0x58028 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x58028 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_camss_top_ahb_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_camss_top_ahb_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_cfg_noc_usb3_prim_axi_clk = {
. halt_reg = 0x1a084 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1a084 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1a084 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_cfg_noc_usb3_prim_axi_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_usb30_prim_master_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_disp_ahb_clk = {
. halt_reg = 0x1700c ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1700c ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1700c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_disp_ahb_clk " ,
. flags = CLK_IS_CRITICAL ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_regmap_div gcc_disp_gpll0_clk_src = {
. reg = 0x17058 ,
. shift = 0 ,
. width = 2 ,
. clkr . hw . init = & ( struct clk_init_data ) {
. name = " gcc_disp_gpll0_clk_src " ,
2022-12-10 22:07:11 +03:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll0 . clkr . hw ,
} ,
2022-09-21 02:13:03 +02:00
. num_parents = 1 ,
. ops = & clk_regmap_div_ops ,
} ,
} ;
static struct clk_branch gcc_disp_gpll0_div_clk_src = {
. halt_check = BRANCH_HALT_DELAY ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 20 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_disp_gpll0_div_clk_src " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_disp_gpll0_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_disp_hf_axi_clk = {
. halt_reg = 0x17020 ,
. halt_check = BRANCH_VOTED ,
. hwcg_reg = 0x17020 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x17020 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_disp_hf_axi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_disp_sleep_clk = {
. halt_reg = 0x17074 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17074 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x17074 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_disp_sleep_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_disp_throttle_core_clk = {
. halt_reg = 0x17064 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17064 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 5 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_disp_throttle_core_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gp1_clk = {
. halt_reg = 0x4d000 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x4d000 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gp1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_gp1_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gp2_clk = {
. halt_reg = 0x4e000 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x4e000 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gp2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_gp2_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gp3_clk = {
. halt_reg = 0x4f000 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x4f000 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gp3_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_gp3_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gpu_cfg_ahb_clk = {
. halt_reg = 0x36004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x36004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x36004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gpu_cfg_ahb_clk " ,
. flags = CLK_IS_CRITICAL ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gpu_gpll0_clk_src = {
. halt_check = BRANCH_HALT_DELAY ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 15 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gpu_gpll0_clk_src " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll0 . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gpu_gpll0_div_clk_src = {
. halt_check = BRANCH_HALT_DELAY ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 16 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gpu_gpll0_div_clk_src " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gpll0_out_even . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gpu_memnoc_gfx_clk = {
. halt_reg = 0x3600c ,
. halt_check = BRANCH_VOTED ,
. hwcg_reg = 0x3600c ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x3600c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gpu_memnoc_gfx_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gpu_snoc_dvm_gfx_clk = {
. halt_reg = 0x36018 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x36018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gpu_snoc_dvm_gfx_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_gpu_throttle_core_clk = {
. halt_reg = 0x36048 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x36048 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 31 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_gpu_throttle_core_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_pdm2_clk = {
. halt_reg = 0x2000c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x2000c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_pdm2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_pdm2_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_pdm_ahb_clk = {
. halt_reg = 0x20004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x20004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x20004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_pdm_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_pdm_xo4_clk = {
. halt_reg = 0x20008 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x20008 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_pdm_xo4_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_prng_ahb_clk = {
. halt_reg = 0x21004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x21004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 13 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_prng_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qmip_camera_nrt_ahb_clk = {
. halt_reg = 0x17014 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17014 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qmip_camera_nrt_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qmip_camera_rt_ahb_clk = {
. halt_reg = 0x17060 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17060 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 2 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qmip_camera_rt_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qmip_disp_ahb_clk = {
. halt_reg = 0x17018 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17018 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 1 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qmip_disp_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qmip_gpu_cfg_ahb_clk = {
. halt_reg = 0x36040 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x36040 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 4 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qmip_gpu_cfg_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qmip_video_vcodec_ahb_clk = {
. halt_reg = 0x17010 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17010 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 25 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qmip_video_vcodec_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_core_2x_clk = {
. halt_reg = 0x1f014 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 9 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_core_2x_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_core_clk = {
. halt_reg = 0x1f00c ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 8 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_core_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_s0_clk = {
. halt_reg = 0x1f144 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 10 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_s0_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap0_s0_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_s1_clk = {
. halt_reg = 0x1f274 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 11 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_s1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap0_s1_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_s2_clk = {
. halt_reg = 0x1f3a4 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 12 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_s2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap0_s2_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_s3_clk = {
. halt_reg = 0x1f4d4 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 13 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_s3_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap0_s3_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_s4_clk = {
. halt_reg = 0x1f604 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 14 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_s4_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap0_s4_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap0_s5_clk = {
. halt_reg = 0x1f734 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 15 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap0_s5_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap0_s5_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_core_2x_clk = {
. halt_reg = 0x53014 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 20 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_core_2x_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_core_clk = {
. halt_reg = 0x5300c ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 19 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_core_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_s0_clk = {
. halt_reg = 0x53018 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 21 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_s0_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap1_s0_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_s1_clk = {
. halt_reg = 0x53148 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 22 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_s1_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap1_s1_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_s2_clk = {
. halt_reg = 0x53278 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 23 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_s2_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap1_s2_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_s3_clk = {
. halt_reg = 0x533a8 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 24 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_s3_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap1_s3_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_s4_clk = {
. halt_reg = 0x534d8 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 25 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_s4_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap1_s4_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap1_s5_clk = {
. halt_reg = 0x53608 ,
. halt_check = BRANCH_HALT_VOTED ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 26 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap1_s5_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_qupv3_wrap1_s5_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap_0_m_ahb_clk = {
. halt_reg = 0x1f004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1f004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 6 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap_0_m_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap_0_s_ahb_clk = {
. halt_reg = 0x1f008 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1f008 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 7 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap_0_s_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap_1_m_ahb_clk = {
. halt_reg = 0x53004 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x53004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 17 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap_1_m_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_qupv3_wrap_1_s_ahb_clk = {
. halt_reg = 0x53008 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x53008 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x7900c ,
. enable_mask = BIT ( 18 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_qupv3_wrap_1_s_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sdcc1_ahb_clk = {
. halt_reg = 0x38008 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x38008 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc1_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sdcc1_apps_clk = {
. halt_reg = 0x38004 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x38004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc1_apps_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_sdcc1_apps_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sdcc1_ice_core_clk = {
. halt_reg = 0x3800c ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x3800c ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x3800c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc1_ice_core_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_sdcc1_ice_core_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sdcc2_ahb_clk = {
. halt_reg = 0x1e008 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x1e008 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc2_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sdcc2_apps_clk = {
. halt_reg = 0x1e004 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x1e004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sdcc2_apps_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_sdcc2_apps_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sys_noc_cpuss_ahb_clk = {
. halt_reg = 0x2b06c ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x2b06c ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sys_noc_cpuss_ahb_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_cpuss_ahb_postdiv_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_IS_CRITICAL | CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sys_noc_ufs_phy_axi_clk = {
. halt_reg = 0x45098 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x45098 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sys_noc_ufs_phy_axi_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_ufs_phy_axi_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_sys_noc_usb3_prim_axi_clk = {
. halt_reg = 0x1a080 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1a080 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1a080 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_sys_noc_usb3_prim_axi_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_usb30_prim_master_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_ahb_clk = {
. halt_reg = 0x45014 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x45014 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x45014 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_axi_clk = {
. halt_reg = 0x45010 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x45010 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x45010 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_axi_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_ufs_phy_axi_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_ice_core_clk = {
. halt_reg = 0x45044 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x45044 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x45044 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_ice_core_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_ufs_phy_ice_core_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_phy_aux_clk = {
. halt_reg = 0x45078 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x45078 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x45078 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_phy_aux_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_ufs_phy_phy_aux_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_rx_symbol_0_clk = {
. halt_reg = 0x4501c ,
. halt_check = BRANCH_HALT_SKIP ,
. clkr = {
. enable_reg = 0x4501c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_rx_symbol_0_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_tx_symbol_0_clk = {
. halt_reg = 0x45018 ,
. halt_check = BRANCH_HALT_SKIP ,
. clkr = {
. enable_reg = 0x45018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_tx_symbol_0_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_phy_unipro_core_clk = {
. halt_reg = 0x45040 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x45040 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x45040 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_phy_unipro_core_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_ufs_phy_unipro_core_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_usb30_prim_master_clk = {
. halt_reg = 0x1a010 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x1a010 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb30_prim_master_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_usb30_prim_master_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_usb30_prim_mock_utmi_clk = {
. halt_reg = 0x1a018 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x1a018 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb30_prim_mock_utmi_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_usb30_prim_mock_utmi_postdiv_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_usb30_prim_sleep_clk = {
. halt_reg = 0x1a014 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x1a014 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb30_prim_sleep_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_ufs_mem_clkref_clk = {
. halt_reg = 0x8c000 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x8c000 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_ufs_mem_clkref_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_rx5_pcie_clkref_en_clk = {
. halt_reg = 0x8c00c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x8c00c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_rx5_pcie_clkref_en_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_usb3_prim_clkref_clk = {
. halt_reg = 0x8c010 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x8c010 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb3_prim_clkref_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_usb3_prim_phy_com_aux_clk = {
. halt_reg = 0x1a054 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x1a054 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb3_prim_phy_com_aux_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_usb3_prim_phy_aux_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_usb3_prim_phy_pipe_clk = {
. halt_reg = 0x1a058 ,
. halt_check = BRANCH_HALT_SKIP ,
. hwcg_reg = 0x1a058 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1a058 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_usb3_prim_phy_pipe_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_vcodec0_axi_clk = {
. halt_reg = 0x6e008 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x6e008 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_vcodec0_axi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_venus_ahb_clk = {
. halt_reg = 0x6e010 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x6e010 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_venus_ahb_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_venus_ctl_axi_clk = {
. halt_reg = 0x6e004 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x6e004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_venus_ctl_axi_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_video_ahb_clk = {
. halt_reg = 0x17004 ,
. halt_check = BRANCH_HALT_DELAY ,
. hwcg_reg = 0x17004 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x17004 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_ahb_clk " ,
. flags = CLK_IS_CRITICAL ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_video_axi0_clk = {
. halt_reg = 0x1701c ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x1701c ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x1701c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_axi0_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_video_throttle_core_clk = {
. halt_reg = 0x17068 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x17068 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x79004 ,
. enable_mask = BIT ( 28 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_throttle_core_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_video_vcodec0_sys_clk = {
. halt_reg = 0x580a4 ,
. halt_check = BRANCH_HALT_VOTED ,
. hwcg_reg = 0x580a4 ,
. hwcg_bit = 1 ,
. clkr = {
. enable_reg = 0x580a4 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_vcodec0_sys_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_video_venus_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_video_venus_ctl_clk = {
. halt_reg = 0x5808c ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x5808c ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_venus_ctl_clk " ,
2023-01-03 16:55:05 +02:00
. parent_hws = ( const struct clk_hw * [ ] ) {
& gcc_video_venus_clk_src . clkr . hw ,
2022-09-21 02:13:03 +02:00
} ,
. num_parents = 1 ,
. flags = CLK_SET_RATE_PARENT ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct clk_branch gcc_video_xo_clk = {
. halt_reg = 0x17024 ,
. halt_check = BRANCH_HALT ,
. clkr = {
. enable_reg = 0x17024 ,
. enable_mask = BIT ( 0 ) ,
. hw . init = & ( struct clk_init_data ) {
. name = " gcc_video_xo_clk " ,
. ops = & clk_branch2_ops ,
} ,
} ,
} ;
static struct gdsc usb30_prim_gdsc = {
. gdscr = 0x1a004 ,
. pd = {
. name = " usb30_prim_gdsc " ,
} ,
2023-03-07 13:31:57 +01:00
/* TODO: Change to OFF_ON when USB drivers get proper suspend support */
. pwrsts = PWRSTS_RET_ON ,
2022-09-21 02:13:03 +02:00
} ;
static struct gdsc ufs_phy_gdsc = {
. gdscr = 0x45004 ,
. pd = {
. name = " ufs_phy_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
} ;
static struct gdsc camss_top_gdsc = {
. gdscr = 0x58004 ,
. pd = {
. name = " camss_top_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
} ;
static struct gdsc venus_gdsc = {
. gdscr = 0x5807c ,
. pd = {
. name = " venus_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
} ;
static struct gdsc vcodec0_gdsc = {
. gdscr = 0x58098 ,
. pd = {
. name = " vcodec0_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
. flags = HW_CTRL ,
} ;
static struct gdsc hlos1_vote_mm_snoc_mmu_tbu_rt_gdsc = {
. gdscr = 0x7d074 ,
. pd = {
. name = " hlos1_vote_mm_snoc_mmu_tbu_rt_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
. flags = VOTABLE ,
} ;
static struct gdsc hlos1_vote_mm_snoc_mmu_tbu_nrt_gdsc = {
. gdscr = 0x7d078 ,
. pd = {
. name = " hlos1_vote_mm_snoc_mmu_tbu_nrt_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
. flags = VOTABLE ,
} ;
static struct gdsc hlos1_vote_turing_mmu_tbu1_gdsc = {
. gdscr = 0x7d060 ,
. pd = {
. name = " hlos1_vote_turing_mmu_tbu1_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
. flags = VOTABLE ,
} ;
static struct gdsc hlos1_vote_turing_mmu_tbu0_gdsc = {
. gdscr = 0x7d07c ,
. pd = {
. name = " hlos1_vote_turing_mmu_tbu0_gdsc " ,
} ,
. pwrsts = PWRSTS_OFF_ON ,
. flags = VOTABLE ,
} ;
static struct clk_regmap * gcc_sm6375_clocks [ ] = {
[ GCC_AHB2PHY_CSI_CLK ] = & gcc_ahb2phy_csi_clk . clkr ,
[ GCC_AHB2PHY_USB_CLK ] = & gcc_ahb2phy_usb_clk . clkr ,
[ GCC_BIMC_GPU_AXI_CLK ] = & gcc_bimc_gpu_axi_clk . clkr ,
[ GCC_BOOT_ROM_AHB_CLK ] = & gcc_boot_rom_ahb_clk . clkr ,
[ GCC_CAM_THROTTLE_NRT_CLK ] = & gcc_cam_throttle_nrt_clk . clkr ,
[ GCC_CAM_THROTTLE_RT_CLK ] = & gcc_cam_throttle_rt_clk . clkr ,
[ GCC_CAMERA_AHB_CLK ] = & gcc_camera_ahb_clk . clkr ,
[ GCC_CAMSS_AXI_CLK ] = & gcc_camss_axi_clk . clkr ,
[ GCC_CAMSS_AXI_CLK_SRC ] = & gcc_camss_axi_clk_src . clkr ,
[ GCC_CAMSS_CCI_0_CLK ] = & gcc_camss_cci_0_clk . clkr ,
[ GCC_CAMSS_CCI_0_CLK_SRC ] = & gcc_camss_cci_0_clk_src . clkr ,
[ GCC_CAMSS_CCI_1_CLK ] = & gcc_camss_cci_1_clk . clkr ,
[ GCC_CAMSS_CCI_1_CLK_SRC ] = & gcc_camss_cci_1_clk_src . clkr ,
[ GCC_CAMSS_CPHY_0_CLK ] = & gcc_camss_cphy_0_clk . clkr ,
[ GCC_CAMSS_CPHY_1_CLK ] = & gcc_camss_cphy_1_clk . clkr ,
[ GCC_CAMSS_CPHY_2_CLK ] = & gcc_camss_cphy_2_clk . clkr ,
[ GCC_CAMSS_CPHY_3_CLK ] = & gcc_camss_cphy_3_clk . clkr ,
[ GCC_CAMSS_CSI0PHYTIMER_CLK ] = & gcc_camss_csi0phytimer_clk . clkr ,
[ GCC_CAMSS_CSI0PHYTIMER_CLK_SRC ] = & gcc_camss_csi0phytimer_clk_src . clkr ,
[ GCC_CAMSS_CSI1PHYTIMER_CLK ] = & gcc_camss_csi1phytimer_clk . clkr ,
[ GCC_CAMSS_CSI1PHYTIMER_CLK_SRC ] = & gcc_camss_csi1phytimer_clk_src . clkr ,
[ GCC_CAMSS_CSI2PHYTIMER_CLK ] = & gcc_camss_csi2phytimer_clk . clkr ,
[ GCC_CAMSS_CSI2PHYTIMER_CLK_SRC ] = & gcc_camss_csi2phytimer_clk_src . clkr ,
[ GCC_CAMSS_CSI3PHYTIMER_CLK ] = & gcc_camss_csi3phytimer_clk . clkr ,
[ GCC_CAMSS_CSI3PHYTIMER_CLK_SRC ] = & gcc_camss_csi3phytimer_clk_src . clkr ,
[ GCC_CAMSS_MCLK0_CLK ] = & gcc_camss_mclk0_clk . clkr ,
[ GCC_CAMSS_MCLK0_CLK_SRC ] = & gcc_camss_mclk0_clk_src . clkr ,
[ GCC_CAMSS_MCLK1_CLK ] = & gcc_camss_mclk1_clk . clkr ,
[ GCC_CAMSS_MCLK1_CLK_SRC ] = & gcc_camss_mclk1_clk_src . clkr ,
[ GCC_CAMSS_MCLK2_CLK ] = & gcc_camss_mclk2_clk . clkr ,
[ GCC_CAMSS_MCLK2_CLK_SRC ] = & gcc_camss_mclk2_clk_src . clkr ,
[ GCC_CAMSS_MCLK3_CLK ] = & gcc_camss_mclk3_clk . clkr ,
[ GCC_CAMSS_MCLK3_CLK_SRC ] = & gcc_camss_mclk3_clk_src . clkr ,
[ GCC_CAMSS_MCLK4_CLK ] = & gcc_camss_mclk4_clk . clkr ,
[ GCC_CAMSS_MCLK4_CLK_SRC ] = & gcc_camss_mclk4_clk_src . clkr ,
[ GCC_CAMSS_NRT_AXI_CLK ] = & gcc_camss_nrt_axi_clk . clkr ,
[ GCC_CAMSS_OPE_AHB_CLK ] = & gcc_camss_ope_ahb_clk . clkr ,
[ GCC_CAMSS_OPE_AHB_CLK_SRC ] = & gcc_camss_ope_ahb_clk_src . clkr ,
[ GCC_CAMSS_OPE_CLK ] = & gcc_camss_ope_clk . clkr ,
[ GCC_CAMSS_OPE_CLK_SRC ] = & gcc_camss_ope_clk_src . clkr ,
[ GCC_CAMSS_RT_AXI_CLK ] = & gcc_camss_rt_axi_clk . clkr ,
[ GCC_CAMSS_TFE_0_CLK ] = & gcc_camss_tfe_0_clk . clkr ,
[ GCC_CAMSS_TFE_0_CLK_SRC ] = & gcc_camss_tfe_0_clk_src . clkr ,
[ GCC_CAMSS_TFE_0_CPHY_RX_CLK ] = & gcc_camss_tfe_0_cphy_rx_clk . clkr ,
[ GCC_CAMSS_TFE_0_CSID_CLK ] = & gcc_camss_tfe_0_csid_clk . clkr ,
[ GCC_CAMSS_TFE_0_CSID_CLK_SRC ] = & gcc_camss_tfe_0_csid_clk_src . clkr ,
[ GCC_CAMSS_TFE_1_CLK ] = & gcc_camss_tfe_1_clk . clkr ,
[ GCC_CAMSS_TFE_1_CLK_SRC ] = & gcc_camss_tfe_1_clk_src . clkr ,
[ GCC_CAMSS_TFE_1_CPHY_RX_CLK ] = & gcc_camss_tfe_1_cphy_rx_clk . clkr ,
[ GCC_CAMSS_TFE_1_CSID_CLK ] = & gcc_camss_tfe_1_csid_clk . clkr ,
[ GCC_CAMSS_TFE_1_CSID_CLK_SRC ] = & gcc_camss_tfe_1_csid_clk_src . clkr ,
[ GCC_CAMSS_TFE_2_CLK ] = & gcc_camss_tfe_2_clk . clkr ,
[ GCC_CAMSS_TFE_2_CLK_SRC ] = & gcc_camss_tfe_2_clk_src . clkr ,
[ GCC_CAMSS_TFE_2_CPHY_RX_CLK ] = & gcc_camss_tfe_2_cphy_rx_clk . clkr ,
[ GCC_CAMSS_TFE_2_CSID_CLK ] = & gcc_camss_tfe_2_csid_clk . clkr ,
[ GCC_CAMSS_TFE_2_CSID_CLK_SRC ] = & gcc_camss_tfe_2_csid_clk_src . clkr ,
[ GCC_CAMSS_TFE_CPHY_RX_CLK_SRC ] = & gcc_camss_tfe_cphy_rx_clk_src . clkr ,
[ GCC_CAMSS_TOP_AHB_CLK ] = & gcc_camss_top_ahb_clk . clkr ,
[ GCC_CAMSS_TOP_AHB_CLK_SRC ] = & gcc_camss_top_ahb_clk_src . clkr ,
[ GCC_CFG_NOC_USB3_PRIM_AXI_CLK ] = & gcc_cfg_noc_usb3_prim_axi_clk . clkr ,
[ GCC_CPUSS_AHB_CLK_SRC ] = & gcc_cpuss_ahb_clk_src . clkr ,
[ GCC_CPUSS_AHB_POSTDIV_CLK_SRC ] = & gcc_cpuss_ahb_postdiv_clk_src . clkr ,
[ GCC_DISP_AHB_CLK ] = & gcc_disp_ahb_clk . clkr ,
[ GCC_DISP_GPLL0_CLK_SRC ] = & gcc_disp_gpll0_clk_src . clkr ,
[ GCC_DISP_GPLL0_DIV_CLK_SRC ] = & gcc_disp_gpll0_div_clk_src . clkr ,
[ GCC_DISP_HF_AXI_CLK ] = & gcc_disp_hf_axi_clk . clkr ,
[ GCC_DISP_SLEEP_CLK ] = & gcc_disp_sleep_clk . clkr ,
[ GCC_DISP_THROTTLE_CORE_CLK ] = & gcc_disp_throttle_core_clk . clkr ,
[ GCC_GP1_CLK ] = & gcc_gp1_clk . clkr ,
[ GCC_GP1_CLK_SRC ] = & gcc_gp1_clk_src . clkr ,
[ GCC_GP2_CLK ] = & gcc_gp2_clk . clkr ,
[ GCC_GP2_CLK_SRC ] = & gcc_gp2_clk_src . clkr ,
[ GCC_GP3_CLK ] = & gcc_gp3_clk . clkr ,
[ GCC_GP3_CLK_SRC ] = & gcc_gp3_clk_src . clkr ,
[ GCC_GPU_CFG_AHB_CLK ] = & gcc_gpu_cfg_ahb_clk . clkr ,
[ GCC_GPU_GPLL0_CLK_SRC ] = & gcc_gpu_gpll0_clk_src . clkr ,
[ GCC_GPU_GPLL0_DIV_CLK_SRC ] = & gcc_gpu_gpll0_div_clk_src . clkr ,
[ GCC_GPU_MEMNOC_GFX_CLK ] = & gcc_gpu_memnoc_gfx_clk . clkr ,
[ GCC_GPU_SNOC_DVM_GFX_CLK ] = & gcc_gpu_snoc_dvm_gfx_clk . clkr ,
[ GCC_GPU_THROTTLE_CORE_CLK ] = & gcc_gpu_throttle_core_clk . clkr ,
[ GCC_PDM2_CLK ] = & gcc_pdm2_clk . clkr ,
[ GCC_PDM2_CLK_SRC ] = & gcc_pdm2_clk_src . clkr ,
[ GCC_PDM_AHB_CLK ] = & gcc_pdm_ahb_clk . clkr ,
[ GCC_PDM_XO4_CLK ] = & gcc_pdm_xo4_clk . clkr ,
[ GCC_PRNG_AHB_CLK ] = & gcc_prng_ahb_clk . clkr ,
[ GCC_QMIP_CAMERA_NRT_AHB_CLK ] = & gcc_qmip_camera_nrt_ahb_clk . clkr ,
[ GCC_QMIP_CAMERA_RT_AHB_CLK ] = & gcc_qmip_camera_rt_ahb_clk . clkr ,
[ GCC_QMIP_DISP_AHB_CLK ] = & gcc_qmip_disp_ahb_clk . clkr ,
[ GCC_QMIP_GPU_CFG_AHB_CLK ] = & gcc_qmip_gpu_cfg_ahb_clk . clkr ,
[ GCC_QMIP_VIDEO_VCODEC_AHB_CLK ] = & gcc_qmip_video_vcodec_ahb_clk . clkr ,
[ GCC_QUPV3_WRAP0_CORE_2X_CLK ] = & gcc_qupv3_wrap0_core_2x_clk . clkr ,
[ GCC_QUPV3_WRAP0_CORE_CLK ] = & gcc_qupv3_wrap0_core_clk . clkr ,
[ GCC_QUPV3_WRAP0_S0_CLK ] = & gcc_qupv3_wrap0_s0_clk . clkr ,
[ GCC_QUPV3_WRAP0_S0_CLK_SRC ] = & gcc_qupv3_wrap0_s0_clk_src . clkr ,
[ GCC_QUPV3_WRAP0_S1_CLK ] = & gcc_qupv3_wrap0_s1_clk . clkr ,
[ GCC_QUPV3_WRAP0_S1_CLK_SRC ] = & gcc_qupv3_wrap0_s1_clk_src . clkr ,
[ GCC_QUPV3_WRAP0_S2_CLK ] = & gcc_qupv3_wrap0_s2_clk . clkr ,
[ GCC_QUPV3_WRAP0_S2_CLK_SRC ] = & gcc_qupv3_wrap0_s2_clk_src . clkr ,
[ GCC_QUPV3_WRAP0_S3_CLK ] = & gcc_qupv3_wrap0_s3_clk . clkr ,
[ GCC_QUPV3_WRAP0_S3_CLK_SRC ] = & gcc_qupv3_wrap0_s3_clk_src . clkr ,
[ GCC_QUPV3_WRAP0_S4_CLK ] = & gcc_qupv3_wrap0_s4_clk . clkr ,
[ GCC_QUPV3_WRAP0_S4_CLK_SRC ] = & gcc_qupv3_wrap0_s4_clk_src . clkr ,
[ GCC_QUPV3_WRAP0_S5_CLK ] = & gcc_qupv3_wrap0_s5_clk . clkr ,
[ GCC_QUPV3_WRAP0_S5_CLK_SRC ] = & gcc_qupv3_wrap0_s5_clk_src . clkr ,
[ GCC_QUPV3_WRAP1_CORE_2X_CLK ] = & gcc_qupv3_wrap1_core_2x_clk . clkr ,
[ GCC_QUPV3_WRAP1_CORE_CLK ] = & gcc_qupv3_wrap1_core_clk . clkr ,
[ GCC_QUPV3_WRAP1_S0_CLK ] = & gcc_qupv3_wrap1_s0_clk . clkr ,
[ GCC_QUPV3_WRAP1_S0_CLK_SRC ] = & gcc_qupv3_wrap1_s0_clk_src . clkr ,
[ GCC_QUPV3_WRAP1_S1_CLK ] = & gcc_qupv3_wrap1_s1_clk . clkr ,
[ GCC_QUPV3_WRAP1_S1_CLK_SRC ] = & gcc_qupv3_wrap1_s1_clk_src . clkr ,
[ GCC_QUPV3_WRAP1_S2_CLK ] = & gcc_qupv3_wrap1_s2_clk . clkr ,
[ GCC_QUPV3_WRAP1_S2_CLK_SRC ] = & gcc_qupv3_wrap1_s2_clk_src . clkr ,
[ GCC_QUPV3_WRAP1_S3_CLK ] = & gcc_qupv3_wrap1_s3_clk . clkr ,
[ GCC_QUPV3_WRAP1_S3_CLK_SRC ] = & gcc_qupv3_wrap1_s3_clk_src . clkr ,
[ GCC_QUPV3_WRAP1_S4_CLK ] = & gcc_qupv3_wrap1_s4_clk . clkr ,
[ GCC_QUPV3_WRAP1_S4_CLK_SRC ] = & gcc_qupv3_wrap1_s4_clk_src . clkr ,
[ GCC_QUPV3_WRAP1_S5_CLK ] = & gcc_qupv3_wrap1_s5_clk . clkr ,
[ GCC_QUPV3_WRAP1_S5_CLK_SRC ] = & gcc_qupv3_wrap1_s5_clk_src . clkr ,
[ GCC_QUPV3_WRAP_0_M_AHB_CLK ] = & gcc_qupv3_wrap_0_m_ahb_clk . clkr ,
[ GCC_QUPV3_WRAP_0_S_AHB_CLK ] = & gcc_qupv3_wrap_0_s_ahb_clk . clkr ,
[ GCC_QUPV3_WRAP_1_M_AHB_CLK ] = & gcc_qupv3_wrap_1_m_ahb_clk . clkr ,
[ GCC_QUPV3_WRAP_1_S_AHB_CLK ] = & gcc_qupv3_wrap_1_s_ahb_clk . clkr ,
[ GCC_SDCC1_AHB_CLK ] = & gcc_sdcc1_ahb_clk . clkr ,
[ GCC_SDCC1_APPS_CLK ] = & gcc_sdcc1_apps_clk . clkr ,
[ GCC_SDCC1_APPS_CLK_SRC ] = & gcc_sdcc1_apps_clk_src . clkr ,
[ GCC_SDCC1_ICE_CORE_CLK ] = & gcc_sdcc1_ice_core_clk . clkr ,
[ GCC_SDCC1_ICE_CORE_CLK_SRC ] = & gcc_sdcc1_ice_core_clk_src . clkr ,
[ GCC_SDCC2_AHB_CLK ] = & gcc_sdcc2_ahb_clk . clkr ,
[ GCC_SDCC2_APPS_CLK ] = & gcc_sdcc2_apps_clk . clkr ,
[ GCC_SDCC2_APPS_CLK_SRC ] = & gcc_sdcc2_apps_clk_src . clkr ,
[ GCC_SYS_NOC_CPUSS_AHB_CLK ] = & gcc_sys_noc_cpuss_ahb_clk . clkr ,
[ GCC_SYS_NOC_UFS_PHY_AXI_CLK ] = & gcc_sys_noc_ufs_phy_axi_clk . clkr ,
[ GCC_SYS_NOC_USB3_PRIM_AXI_CLK ] = & gcc_sys_noc_usb3_prim_axi_clk . clkr ,
[ GCC_UFS_PHY_AHB_CLK ] = & gcc_ufs_phy_ahb_clk . clkr ,
[ GCC_UFS_PHY_AXI_CLK ] = & gcc_ufs_phy_axi_clk . clkr ,
[ GCC_UFS_PHY_AXI_CLK_SRC ] = & gcc_ufs_phy_axi_clk_src . clkr ,
[ GCC_UFS_PHY_ICE_CORE_CLK ] = & gcc_ufs_phy_ice_core_clk . clkr ,
[ GCC_UFS_PHY_ICE_CORE_CLK_SRC ] = & gcc_ufs_phy_ice_core_clk_src . clkr ,
[ GCC_UFS_PHY_PHY_AUX_CLK ] = & gcc_ufs_phy_phy_aux_clk . clkr ,
[ GCC_UFS_PHY_PHY_AUX_CLK_SRC ] = & gcc_ufs_phy_phy_aux_clk_src . clkr ,
[ GCC_UFS_PHY_RX_SYMBOL_0_CLK ] = & gcc_ufs_phy_rx_symbol_0_clk . clkr ,
[ GCC_UFS_PHY_TX_SYMBOL_0_CLK ] = & gcc_ufs_phy_tx_symbol_0_clk . clkr ,
[ GCC_UFS_PHY_UNIPRO_CORE_CLK ] = & gcc_ufs_phy_unipro_core_clk . clkr ,
[ GCC_UFS_PHY_UNIPRO_CORE_CLK_SRC ] = & gcc_ufs_phy_unipro_core_clk_src . clkr ,
[ GCC_USB30_PRIM_MASTER_CLK ] = & gcc_usb30_prim_master_clk . clkr ,
[ GCC_USB30_PRIM_MASTER_CLK_SRC ] = & gcc_usb30_prim_master_clk_src . clkr ,
[ GCC_USB30_PRIM_MOCK_UTMI_CLK ] = & gcc_usb30_prim_mock_utmi_clk . clkr ,
[ GCC_USB30_PRIM_MOCK_UTMI_CLK_SRC ] = & gcc_usb30_prim_mock_utmi_clk_src . clkr ,
[ GCC_USB30_PRIM_MOCK_UTMI_POSTDIV_CLK_SRC ] = & gcc_usb30_prim_mock_utmi_postdiv_clk_src . clkr ,
[ GCC_USB30_PRIM_SLEEP_CLK ] = & gcc_usb30_prim_sleep_clk . clkr ,
[ GCC_USB3_PRIM_CLKREF_CLK ] = & gcc_usb3_prim_clkref_clk . clkr ,
[ GCC_USB3_PRIM_PHY_AUX_CLK_SRC ] = & gcc_usb3_prim_phy_aux_clk_src . clkr ,
[ GCC_USB3_PRIM_PHY_COM_AUX_CLK ] = & gcc_usb3_prim_phy_com_aux_clk . clkr ,
[ GCC_USB3_PRIM_PHY_PIPE_CLK ] = & gcc_usb3_prim_phy_pipe_clk . clkr ,
[ GCC_VCODEC0_AXI_CLK ] = & gcc_vcodec0_axi_clk . clkr ,
[ GCC_VENUS_AHB_CLK ] = & gcc_venus_ahb_clk . clkr ,
[ GCC_VENUS_CTL_AXI_CLK ] = & gcc_venus_ctl_axi_clk . clkr ,
[ GCC_VIDEO_AHB_CLK ] = & gcc_video_ahb_clk . clkr ,
[ GCC_VIDEO_AXI0_CLK ] = & gcc_video_axi0_clk . clkr ,
[ GCC_VIDEO_THROTTLE_CORE_CLK ] = & gcc_video_throttle_core_clk . clkr ,
[ GCC_VIDEO_VCODEC0_SYS_CLK ] = & gcc_video_vcodec0_sys_clk . clkr ,
[ GCC_VIDEO_VENUS_CLK_SRC ] = & gcc_video_venus_clk_src . clkr ,
[ GCC_VIDEO_VENUS_CTL_CLK ] = & gcc_video_venus_ctl_clk . clkr ,
[ GCC_VIDEO_XO_CLK ] = & gcc_video_xo_clk . clkr ,
[ GCC_UFS_MEM_CLKREF_CLK ] = & gcc_ufs_mem_clkref_clk . clkr ,
[ GCC_RX5_PCIE_CLKREF_EN_CLK ] = & gcc_rx5_pcie_clkref_en_clk . clkr ,
[ GPLL0 ] = & gpll0 . clkr ,
[ GPLL0_OUT_EVEN ] = & gpll0_out_even . clkr ,
[ GPLL0_OUT_ODD ] = & gpll0_out_odd . clkr ,
[ GPLL1 ] = & gpll1 . clkr ,
[ GPLL10 ] = & gpll10 . clkr ,
[ GPLL11 ] = & gpll11 . clkr ,
[ GPLL3 ] = & gpll3 . clkr ,
[ GPLL3_OUT_EVEN ] = & gpll3_out_even . clkr ,
[ GPLL4 ] = & gpll4 . clkr ,
[ GPLL5 ] = & gpll5 . clkr ,
[ GPLL6 ] = & gpll6 . clkr ,
[ GPLL6_OUT_EVEN ] = & gpll6_out_even . clkr ,
[ GPLL7 ] = & gpll7 . clkr ,
[ GPLL8 ] = & gpll8 . clkr ,
[ GPLL8_OUT_EVEN ] = & gpll8_out_even . clkr ,
[ GPLL9 ] = & gpll9 . clkr ,
[ GPLL9_OUT_MAIN ] = & gpll9_out_main . clkr ,
} ;
static const struct qcom_reset_map gcc_sm6375_resets [ ] = {
[ GCC_MMSS_BCR ] = { 0x17000 } ,
[ GCC_USB30_PRIM_BCR ] = { 0x1a000 } ,
[ GCC_USB3_PHY_PRIM_SP0_BCR ] = { 0x1b000 } ,
[ GCC_USB3_DP_PHY_PRIM_BCR ] = { 0x1b020 } ,
[ GCC_QUSB2PHY_PRIM_BCR ] = { 0x1c000 } ,
[ GCC_QUSB2PHY_SEC_BCR ] = { 0x1c004 } ,
[ GCC_USB_PHY_CFG_AHB2PHY_BCR ] = { 0x1d000 } ,
[ GCC_SDCC2_BCR ] = { 0x1e000 } ,
[ GCC_QUPV3_WRAPPER_0_BCR ] = { 0x1f000 } ,
[ GCC_PDM_BCR ] = { 0x20000 } ,
[ GCC_GPU_BCR ] = { 0x36000 } ,
[ GCC_SDCC1_BCR ] = { 0x38000 } ,
[ GCC_UFS_PHY_BCR ] = { 0x45000 } ,
[ GCC_CAMSS_TFE_BCR ] = { 0x52000 } ,
[ GCC_QUPV3_WRAPPER_1_BCR ] = { 0x53000 } ,
[ GCC_CAMSS_OPE_BCR ] = { 0x55000 } ,
[ GCC_CAMSS_TOP_BCR ] = { 0x58000 } ,
[ GCC_VENUS_BCR ] = { 0x58078 } ,
[ GCC_VCODEC0_BCR ] = { 0x58094 } ,
[ GCC_VIDEO_INTERFACE_BCR ] = { 0x6e000 } ,
} ;
static const struct clk_rcg_dfs_data gcc_dfs_clocks [ ] = {
DEFINE_RCG_DFS ( gcc_qupv3_wrap0_s0_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap0_s1_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap0_s2_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap0_s3_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap0_s4_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap0_s5_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap1_s0_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap1_s1_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap1_s2_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap1_s3_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap1_s4_clk_src ) ,
DEFINE_RCG_DFS ( gcc_qupv3_wrap1_s5_clk_src ) ,
} ;
static struct gdsc * gcc_sm6375_gdscs [ ] = {
[ USB30_PRIM_GDSC ] = & usb30_prim_gdsc ,
[ UFS_PHY_GDSC ] = & ufs_phy_gdsc ,
[ CAMSS_TOP_GDSC ] = & camss_top_gdsc ,
[ VENUS_GDSC ] = & venus_gdsc ,
[ VCODEC0_GDSC ] = & vcodec0_gdsc ,
[ HLOS1_VOTE_MM_SNOC_MMU_TBU_NRT_GDSC ] = & hlos1_vote_mm_snoc_mmu_tbu_nrt_gdsc ,
[ HLOS1_VOTE_MM_SNOC_MMU_TBU_RT_GDSC ] = & hlos1_vote_mm_snoc_mmu_tbu_rt_gdsc ,
[ HLOS1_VOTE_TURING_MMU_TBU0_GDSC ] = & hlos1_vote_turing_mmu_tbu0_gdsc ,
[ HLOS1_VOTE_TURING_MMU_TBU1_GDSC ] = & hlos1_vote_turing_mmu_tbu1_gdsc ,
} ;
static const struct regmap_config gcc_sm6375_regmap_config = {
. reg_bits = 32 ,
. reg_stride = 4 ,
. val_bits = 32 ,
. max_register = 0xc7000 ,
. fast_io = true ,
} ;
static const struct qcom_cc_desc gcc_sm6375_desc = {
. config = & gcc_sm6375_regmap_config ,
. clks = gcc_sm6375_clocks ,
. num_clks = ARRAY_SIZE ( gcc_sm6375_clocks ) ,
. resets = gcc_sm6375_resets ,
. num_resets = ARRAY_SIZE ( gcc_sm6375_resets ) ,
. gdscs = gcc_sm6375_gdscs ,
. num_gdscs = ARRAY_SIZE ( gcc_sm6375_gdscs ) ,
} ;
static const struct of_device_id gcc_sm6375_match_table [ ] = {
{ . compatible = " qcom,sm6375-gcc " } ,
{ }
} ;
MODULE_DEVICE_TABLE ( of , gcc_sm6375_match_table ) ;
static int gcc_sm6375_probe ( struct platform_device * pdev )
{
struct regmap * regmap ;
int ret ;
regmap = qcom_cc_map ( pdev , & gcc_sm6375_desc ) ;
if ( IS_ERR ( regmap ) )
return PTR_ERR ( regmap ) ;
ret = qcom_cc_register_rcg_dfs ( regmap , gcc_dfs_clocks , ARRAY_SIZE ( gcc_dfs_clocks ) ) ;
if ( ret )
return ret ;
/*
* Keep the following clocks always on :
* GCC_CAMERA_XO_CLK , GCC_CPUSS_GNOC_CLK , GCC_DISP_XO_CLK
*/
regmap_update_bits ( regmap , 0x17028 , BIT ( 0 ) , BIT ( 0 ) ) ;
regmap_update_bits ( regmap , 0x2b004 , BIT ( 0 ) , BIT ( 0 ) ) ;
regmap_update_bits ( regmap , 0x1702c , BIT ( 0 ) , BIT ( 0 ) ) ;
clk_lucid_pll_configure ( & gpll10 , regmap , & gpll10_config ) ;
clk_lucid_pll_configure ( & gpll11 , regmap , & gpll11_config ) ;
clk_lucid_pll_configure ( & gpll8 , regmap , & gpll8_config ) ;
clk_zonda_pll_configure ( & gpll9 , regmap , & gpll9_config ) ;
return qcom_cc_really_probe ( pdev , & gcc_sm6375_desc , regmap ) ;
}
static struct platform_driver gcc_sm6375_driver = {
. probe = gcc_sm6375_probe ,
. driver = {
. name = " gcc-sm6375 " ,
. of_match_table = gcc_sm6375_match_table ,
} ,
} ;
static int __init gcc_sm6375_init ( void )
{
return platform_driver_register ( & gcc_sm6375_driver ) ;
}
subsys_initcall ( gcc_sm6375_init ) ;
static void __exit gcc_sm6375_exit ( void )
{
platform_driver_unregister ( & gcc_sm6375_driver ) ;
}
module_exit ( gcc_sm6375_exit ) ;
MODULE_DESCRIPTION ( " QTI GCC SM6375 Driver " ) ;
MODULE_LICENSE ( " GPL " ) ;