1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/clk-provider.h>
7 #include "ccu_common.h"
9 struct ccu_mux_fixed_prediv {
14 struct ccu_mux_var_prediv {
20 struct ccu_mux_internal {
25 const struct ccu_mux_fixed_prediv *fixed_predivs;
28 const struct ccu_mux_var_prediv *var_predivs;
32 #define _SUNXI_CCU_MUX_TABLE(_shift, _width, _table) \
39 #define _SUNXI_CCU_MUX(_shift, _width) \
40 _SUNXI_CCU_MUX_TABLE(_shift, _width, NULL)
45 struct ccu_mux_internal mux;
46 struct ccu_common common;
49 #define SUNXI_CCU_MUX_TABLE_WITH_GATE(_struct, _name, _parents, _table, \
50 _reg, _shift, _width, _gate, \
52 struct ccu_mux _struct = { \
54 .mux = _SUNXI_CCU_MUX_TABLE(_shift, _width, _table), \
57 .hw.init = CLK_HW_INIT_PARENTS(_name, \
64 #define SUNXI_CCU_MUX_WITH_GATE(_struct, _name, _parents, _reg, \
65 _shift, _width, _gate, _flags) \
66 SUNXI_CCU_MUX_TABLE_WITH_GATE(_struct, _name, _parents, NULL, \
67 _reg, _shift, _width, _gate, \
70 #define SUNXI_CCU_MUX(_struct, _name, _parents, _reg, _shift, _width, \
72 SUNXI_CCU_MUX_TABLE_WITH_GATE(_struct, _name, _parents, NULL, \
73 _reg, _shift, _width, 0, _flags)
75 #define SUNXI_CCU_MUX_DATA_WITH_GATE(_struct, _name, _parents, _reg, \
76 _shift, _width, _gate, _flags) \
77 struct ccu_mux _struct = { \
79 .mux = _SUNXI_CCU_MUX(_shift, _width), \
82 .hw.init = CLK_HW_INIT_PARENTS_DATA(_name, \
89 #define SUNXI_CCU_MUX_DATA(_struct, _name, _parents, _reg, \
90 _shift, _width, _flags) \
91 SUNXI_CCU_MUX_DATA_WITH_GATE(_struct, _name, _parents, _reg, \
92 _shift, _width, 0, _flags)
94 #define SUNXI_CCU_MUX_HW_WITH_GATE(_struct, _name, _parents, _reg, \
95 _shift, _width, _gate, _flags) \
96 struct ccu_mux _struct = { \
98 .mux = _SUNXI_CCU_MUX(_shift, _width), \
101 .hw.init = CLK_HW_INIT_PARENTS_HW(_name, \
108 static inline struct ccu_mux *hw_to_ccu_mux(struct clk_hw *hw)
110 struct ccu_common *common = hw_to_ccu_common(hw);
112 return container_of(common, struct ccu_mux, common);
115 extern const struct clk_ops ccu_mux_ops;
117 unsigned long ccu_mux_helper_apply_prediv(struct ccu_common *common,
118 struct ccu_mux_internal *cm,
120 unsigned long parent_rate);
121 int ccu_mux_helper_determine_rate(struct ccu_common *common,
122 struct ccu_mux_internal *cm,
123 struct clk_rate_request *req,
124 unsigned long (*round)(struct ccu_mux_internal *,
130 u8 ccu_mux_helper_get_parent(struct ccu_common *common,
131 struct ccu_mux_internal *cm);
132 int ccu_mux_helper_set_parent(struct ccu_common *common,
133 struct ccu_mux_internal *cm,
137 struct notifier_block clk_nb;
138 struct ccu_common *common;
139 struct ccu_mux_internal *cm;
141 u32 delay_us; /* How many us to wait after reparenting */
142 u8 bypass_index; /* Which parent to temporarily use */
143 u8 original_index; /* This is set by the notifier callback */
146 #define to_ccu_mux_nb(_nb) container_of(_nb, struct ccu_mux_nb, clk_nb)
148 int ccu_mux_notifier_register(struct clk *clk, struct ccu_mux_nb *mux_nb);
150 #endif /* _CCU_MUX_H_ */