clk.h (cdce35460f5bd929cbcb75a8f436776bd0112f49) | clk.h (4661fda10f8bd57fceef8349d10900e165a0a548) |
---|---|
1#ifndef __MACH_MMP_CLK_H 2#define __MACH_MMP_CLK_H 3 4#include <linux/clk-provider.h> 5#include <linux/clkdev.h> 6 7#define APBC_NO_BUS_CTRL BIT(0) 8#define APBC_POWER_CTRL BIT(1) --- 82 unchanged lines hidden (view full) --- 91 u8 mux_flags; 92 unsigned int type; 93 spinlock_t *lock; 94}; 95 96extern const struct clk_ops mmp_clk_mix_ops; 97extern struct clk *mmp_clk_register_mix(struct device *dev, 98 const char *name, | 1#ifndef __MACH_MMP_CLK_H 2#define __MACH_MMP_CLK_H 3 4#include <linux/clk-provider.h> 5#include <linux/clkdev.h> 6 7#define APBC_NO_BUS_CTRL BIT(0) 8#define APBC_POWER_CTRL BIT(1) --- 82 unchanged lines hidden (view full) --- 91 u8 mux_flags; 92 unsigned int type; 93 spinlock_t *lock; 94}; 95 96extern const struct clk_ops mmp_clk_mix_ops; 97extern struct clk *mmp_clk_register_mix(struct device *dev, 98 const char *name, |
99 u8 num_parents, | |
100 const char **parent_names, | 99 const char **parent_names, |
100 u8 num_parents, |
|
101 unsigned long flags, 102 struct mmp_clk_mix_config *config, 103 spinlock_t *lock); 104 105 106/* Clock type "gate". MMP private gate */ 107#define MMP_CLK_GATE_NEED_DELAY BIT(0) 108 --- 18 unchanged lines hidden (view full) --- 127extern struct clk *mmp_clk_register_pll2(const char *name, 128 const char *parent_name, unsigned long flags); 129extern struct clk *mmp_clk_register_apbc(const char *name, 130 const char *parent_name, void __iomem *base, 131 unsigned int delay, unsigned int apbc_flags, spinlock_t *lock); 132extern struct clk *mmp_clk_register_apmu(const char *name, 133 const char *parent_name, void __iomem *base, u32 enable_mask, 134 spinlock_t *lock); | 101 unsigned long flags, 102 struct mmp_clk_mix_config *config, 103 spinlock_t *lock); 104 105 106/* Clock type "gate". MMP private gate */ 107#define MMP_CLK_GATE_NEED_DELAY BIT(0) 108 --- 18 unchanged lines hidden (view full) --- 127extern struct clk *mmp_clk_register_pll2(const char *name, 128 const char *parent_name, unsigned long flags); 129extern struct clk *mmp_clk_register_apbc(const char *name, 130 const char *parent_name, void __iomem *base, 131 unsigned int delay, unsigned int apbc_flags, spinlock_t *lock); 132extern struct clk *mmp_clk_register_apmu(const char *name, 133 const char *parent_name, void __iomem *base, u32 enable_mask, 134 spinlock_t *lock); |
135 136struct mmp_clk_unit { 137 unsigned int nr_clks; 138 struct clk **clk_table; 139 struct clk_onecell_data clk_data; 140}; 141 142struct mmp_param_fixed_rate_clk { 143 unsigned int id; 144 char *name; 145 const char *parent_name; 146 unsigned long flags; 147 unsigned long fixed_rate; 148}; 149void mmp_register_fixed_rate_clks(struct mmp_clk_unit *unit, 150 struct mmp_param_fixed_rate_clk *clks, 151 int size); 152 153struct mmp_param_fixed_factor_clk { 154 unsigned int id; 155 char *name; 156 const char *parent_name; 157 unsigned long mult; 158 unsigned long div; 159 unsigned long flags; 160}; 161void mmp_register_fixed_factor_clks(struct mmp_clk_unit *unit, 162 struct mmp_param_fixed_factor_clk *clks, 163 int size); 164 165struct mmp_param_general_gate_clk { 166 unsigned int id; 167 const char *name; 168 const char *parent_name; 169 unsigned long flags; 170 unsigned long offset; 171 u8 bit_idx; 172 u8 gate_flags; 173 spinlock_t *lock; 174}; 175void mmp_register_general_gate_clks(struct mmp_clk_unit *unit, 176 struct mmp_param_general_gate_clk *clks, 177 void __iomem *base, int size); 178 179struct mmp_param_gate_clk { 180 unsigned int id; 181 char *name; 182 const char *parent_name; 183 unsigned long flags; 184 unsigned long offset; 185 u32 mask; 186 u32 val_enable; 187 u32 val_disable; 188 unsigned int gate_flags; 189 spinlock_t *lock; 190}; 191void mmp_register_gate_clks(struct mmp_clk_unit *unit, 192 struct mmp_param_gate_clk *clks, 193 void __iomem *base, int size); 194 195struct mmp_param_mux_clk { 196 unsigned int id; 197 char *name; 198 const char **parent_name; 199 u8 num_parents; 200 unsigned long flags; 201 unsigned long offset; 202 u8 shift; 203 u8 width; 204 u8 mux_flags; 205 spinlock_t *lock; 206}; 207void mmp_register_mux_clks(struct mmp_clk_unit *unit, 208 struct mmp_param_mux_clk *clks, 209 void __iomem *base, int size); 210 211struct mmp_param_div_clk { 212 unsigned int id; 213 char *name; 214 const char *parent_name; 215 unsigned long flags; 216 unsigned long offset; 217 u8 shift; 218 u8 width; 219 u8 div_flags; 220 spinlock_t *lock; 221}; 222void mmp_register_div_clks(struct mmp_clk_unit *unit, 223 struct mmp_param_div_clk *clks, 224 void __iomem *base, int size); 225 226#define DEFINE_MIX_REG_INFO(w_d, s_d, w_m, s_m, fc) \ 227{ \ 228 .width_div = (w_d), \ 229 .shift_div = (s_d), \ 230 .width_mux = (w_m), \ 231 .shift_mux = (s_m), \ 232 .bit_fc = (fc), \ 233} 234 235void mmp_clk_init(struct device_node *np, struct mmp_clk_unit *unit, 236 int nr_clks); 237void mmp_clk_add(struct mmp_clk_unit *unit, unsigned int id, 238 struct clk *clk); |
|
135#endif | 239#endif |