Tero Kristo | c82f895 | 2014-12-16 18:20:46 +0200 | [diff] [blame] | 1 | /* |
| 2 | * TI Clock driver internal definitions |
| 3 | * |
| 4 | * Copyright (C) 2014 Texas Instruments, Inc |
| 5 | * Tero Kristo (t-kristo@ti.com) |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation version 2. |
| 10 | * |
| 11 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 12 | * kind, whether express or implied; without even the implied warranty |
| 13 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | */ |
| 16 | #ifndef __DRIVERS_CLK_TI_CLOCK__ |
| 17 | #define __DRIVERS_CLK_TI_CLOCK__ |
| 18 | |
| 19 | enum { |
| 20 | TI_CLK_FIXED, |
| 21 | TI_CLK_MUX, |
| 22 | TI_CLK_DIVIDER, |
| 23 | TI_CLK_COMPOSITE, |
| 24 | TI_CLK_FIXED_FACTOR, |
| 25 | TI_CLK_GATE, |
| 26 | TI_CLK_DPLL, |
| 27 | }; |
| 28 | |
| 29 | /* Global flags */ |
| 30 | #define CLKF_INDEX_POWER_OF_TWO (1 << 0) |
| 31 | #define CLKF_INDEX_STARTS_AT_ONE (1 << 1) |
| 32 | #define CLKF_SET_RATE_PARENT (1 << 2) |
| 33 | #define CLKF_OMAP3 (1 << 3) |
| 34 | #define CLKF_AM35XX (1 << 4) |
| 35 | |
| 36 | /* Gate flags */ |
| 37 | #define CLKF_SET_BIT_TO_DISABLE (1 << 5) |
| 38 | #define CLKF_INTERFACE (1 << 6) |
| 39 | #define CLKF_SSI (1 << 7) |
| 40 | #define CLKF_DSS (1 << 8) |
| 41 | #define CLKF_HSOTGUSB (1 << 9) |
| 42 | #define CLKF_WAIT (1 << 10) |
| 43 | #define CLKF_NO_WAIT (1 << 11) |
| 44 | #define CLKF_HSDIV (1 << 12) |
| 45 | #define CLKF_CLKDM (1 << 13) |
| 46 | |
| 47 | /* DPLL flags */ |
| 48 | #define CLKF_LOW_POWER_STOP (1 << 5) |
| 49 | #define CLKF_LOCK (1 << 6) |
| 50 | #define CLKF_LOW_POWER_BYPASS (1 << 7) |
| 51 | #define CLKF_PER (1 << 8) |
| 52 | #define CLKF_CORE (1 << 9) |
| 53 | #define CLKF_J_TYPE (1 << 10) |
| 54 | |
| 55 | #define CLK(dev, con, ck) \ |
| 56 | { \ |
| 57 | .lk = { \ |
| 58 | .dev_id = dev, \ |
| 59 | .con_id = con, \ |
| 60 | }, \ |
| 61 | .clk = ck, \ |
| 62 | } |
| 63 | |
| 64 | struct ti_clk { |
| 65 | const char *name; |
| 66 | const char *clkdm_name; |
| 67 | int type; |
| 68 | void *data; |
| 69 | struct ti_clk *patch; |
| 70 | struct clk *clk; |
| 71 | }; |
| 72 | |
| 73 | struct ti_clk_alias { |
| 74 | struct ti_clk *clk; |
| 75 | struct clk_lookup lk; |
| 76 | struct list_head link; |
| 77 | }; |
| 78 | |
| 79 | struct ti_clk_fixed { |
| 80 | u32 frequency; |
| 81 | u16 flags; |
| 82 | }; |
| 83 | |
| 84 | struct ti_clk_mux { |
| 85 | u8 bit_shift; |
| 86 | int num_parents; |
| 87 | u16 reg; |
| 88 | u8 module; |
| 89 | const char **parents; |
| 90 | u16 flags; |
| 91 | }; |
| 92 | |
| 93 | struct ti_clk_divider { |
| 94 | const char *parent; |
| 95 | u8 bit_shift; |
| 96 | u16 max_div; |
| 97 | u16 reg; |
| 98 | u8 module; |
| 99 | int *dividers; |
| 100 | int num_dividers; |
| 101 | u16 flags; |
| 102 | }; |
| 103 | |
| 104 | struct ti_clk_fixed_factor { |
| 105 | const char *parent; |
| 106 | u16 div; |
| 107 | u16 mult; |
| 108 | u16 flags; |
| 109 | }; |
| 110 | |
| 111 | struct ti_clk_gate { |
| 112 | const char *parent; |
| 113 | u8 bit_shift; |
| 114 | u16 reg; |
| 115 | u8 module; |
| 116 | u16 flags; |
| 117 | }; |
| 118 | |
| 119 | struct ti_clk_composite { |
| 120 | struct ti_clk_divider *divider; |
| 121 | struct ti_clk_mux *mux; |
| 122 | struct ti_clk_gate *gate; |
| 123 | u16 flags; |
| 124 | }; |
| 125 | |
| 126 | struct ti_clk_clkdm_gate { |
| 127 | const char *parent; |
| 128 | u16 flags; |
| 129 | }; |
| 130 | |
| 131 | struct ti_clk_dpll { |
| 132 | int num_parents; |
| 133 | u16 control_reg; |
| 134 | u16 idlest_reg; |
| 135 | u16 autoidle_reg; |
| 136 | u16 mult_div1_reg; |
| 137 | u8 module; |
| 138 | const char **parents; |
| 139 | u16 flags; |
| 140 | u8 modes; |
| 141 | u32 mult_mask; |
| 142 | u32 div1_mask; |
| 143 | u32 enable_mask; |
| 144 | u32 autoidle_mask; |
| 145 | u32 freqsel_mask; |
| 146 | u32 idlest_mask; |
| 147 | u32 dco_mask; |
| 148 | u32 sddiv_mask; |
| 149 | u16 max_multiplier; |
| 150 | u16 max_divider; |
Tero Kristo | ed405a2 | 2015-01-29 22:24:28 +0200 | [diff] [blame] | 151 | u8 min_divider; |
Tero Kristo | c82f895 | 2014-12-16 18:20:46 +0200 | [diff] [blame] | 152 | u8 auto_recal_bit; |
| 153 | u8 recal_en_bit; |
| 154 | u8 recal_st_bit; |
| 155 | }; |
| 156 | |
Tero Kristo | a3314e9 | 2015-03-04 21:02:05 +0200 | [diff] [blame] | 157 | /* Composite clock component types */ |
| 158 | enum { |
| 159 | CLK_COMPONENT_TYPE_GATE = 0, |
| 160 | CLK_COMPONENT_TYPE_DIVIDER, |
| 161 | CLK_COMPONENT_TYPE_MUX, |
| 162 | CLK_COMPONENT_TYPE_MAX, |
| 163 | }; |
| 164 | |
| 165 | /** |
| 166 | * struct ti_dt_clk - OMAP DT clock alias declarations |
| 167 | * @lk: clock lookup definition |
| 168 | * @node_name: clock DT node to map to |
| 169 | */ |
| 170 | struct ti_dt_clk { |
| 171 | struct clk_lookup lk; |
| 172 | char *node_name; |
| 173 | }; |
| 174 | |
| 175 | #define DT_CLK(dev, con, name) \ |
| 176 | { \ |
| 177 | .lk = { \ |
| 178 | .dev_id = dev, \ |
| 179 | .con_id = con, \ |
| 180 | }, \ |
| 181 | .node_name = name, \ |
| 182 | } |
| 183 | |
| 184 | typedef void (*ti_of_clk_init_cb_t)(struct clk_hw *, struct device_node *); |
| 185 | |
Tero Kristo | f187616 | 2014-12-16 18:20:48 +0200 | [diff] [blame] | 186 | struct clk *ti_clk_register_gate(struct ti_clk *setup); |
Tero Kristo | 06524fa | 2014-12-16 18:20:49 +0200 | [diff] [blame] | 187 | struct clk *ti_clk_register_interface(struct ti_clk *setup); |
Tero Kristo | 7c18a65 | 2014-12-16 18:20:47 +0200 | [diff] [blame] | 188 | struct clk *ti_clk_register_mux(struct ti_clk *setup); |
Tero Kristo | d96f774 | 2014-12-16 18:20:50 +0200 | [diff] [blame] | 189 | struct clk *ti_clk_register_divider(struct ti_clk *setup); |
Tero Kristo | b26bcf9 | 2014-12-16 18:20:52 +0200 | [diff] [blame] | 190 | struct clk *ti_clk_register_composite(struct ti_clk *setup); |
Tero Kristo | ed405a2 | 2015-01-29 22:24:28 +0200 | [diff] [blame] | 191 | struct clk *ti_clk_register_dpll(struct ti_clk *setup); |
Tero Kristo | 7c18a65 | 2014-12-16 18:20:47 +0200 | [diff] [blame] | 192 | |
Tero Kristo | d96f774 | 2014-12-16 18:20:50 +0200 | [diff] [blame] | 193 | struct clk_hw *ti_clk_build_component_div(struct ti_clk_divider *setup); |
Tero Kristo | f187616 | 2014-12-16 18:20:48 +0200 | [diff] [blame] | 194 | struct clk_hw *ti_clk_build_component_gate(struct ti_clk_gate *setup); |
Tero Kristo | 7c18a65 | 2014-12-16 18:20:47 +0200 | [diff] [blame] | 195 | struct clk_hw *ti_clk_build_component_mux(struct ti_clk_mux *setup); |
| 196 | |
Tero Kristo | c82f895 | 2014-12-16 18:20:46 +0200 | [diff] [blame] | 197 | void ti_clk_patch_legacy_clks(struct ti_clk **patch); |
| 198 | struct clk *ti_clk_register_clk(struct ti_clk *setup); |
| 199 | int ti_clk_register_legacy_clks(struct ti_clk_alias *clks); |
| 200 | |
Tero Kristo | a3314e9 | 2015-03-04 21:02:05 +0200 | [diff] [blame] | 201 | void __iomem *ti_clk_get_reg_addr(struct device_node *node, int index); |
| 202 | void ti_dt_clocks_register(struct ti_dt_clk *oclks); |
| 203 | int ti_clk_retry_init(struct device_node *node, struct clk_hw *hw, |
| 204 | ti_of_clk_init_cb_t func); |
| 205 | int ti_clk_add_component(struct device_node *node, struct clk_hw *hw, int type); |
| 206 | |
Stephen Boyd | a53ad8e | 2015-07-30 17:20:57 -0700 | [diff] [blame] | 207 | void omap2_init_clk_hw_omap_clocks(struct clk_hw *hw); |
Tero Kristo | bf22bae | 2015-03-02 19:06:54 +0200 | [diff] [blame] | 208 | int of_ti_clk_autoidle_setup(struct device_node *node); |
Tero Kristo | a5aa8a6 | 2015-03-03 10:51:01 +0200 | [diff] [blame] | 209 | void omap2_clk_enable_init_clocks(const char **clk_names, u8 num_clocks); |
Tero Kristo | bf22bae | 2015-03-02 19:06:54 +0200 | [diff] [blame] | 210 | |
Tero Kristo | 0565fb1 | 2015-03-03 13:27:48 +0200 | [diff] [blame] | 211 | extern const struct clk_hw_omap_ops clkhwops_omap3_dpll; |
Tero Kristo | 59245ce | 2015-03-02 11:07:35 +0200 | [diff] [blame] | 212 | extern const struct clk_hw_omap_ops clkhwops_omap4_dpllmx; |
Tero Kristo | 9f37e90 | 2015-03-03 15:28:53 +0200 | [diff] [blame] | 213 | extern const struct clk_hw_omap_ops clkhwops_wait; |
Tero Kristo | ef14db0 | 2015-03-02 14:33:54 +0200 | [diff] [blame] | 214 | extern const struct clk_hw_omap_ops clkhwops_iclk; |
| 215 | extern const struct clk_hw_omap_ops clkhwops_iclk_wait; |
Tero Kristo | d5a04dd | 2015-03-03 16:08:42 +0200 | [diff] [blame] | 216 | extern const struct clk_hw_omap_ops clkhwops_omap2430_i2chs_wait; |
Tero Kristo | f2671d5 | 2015-03-03 17:28:12 +0200 | [diff] [blame] | 217 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_dss_usbhost_wait; |
| 218 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_hsotgusb_wait; |
| 219 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_dss_usbhost_wait; |
| 220 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_ssi_wait; |
Tero Kristo | c9a58b0 | 2015-03-03 21:19:25 +0200 | [diff] [blame] | 221 | extern const struct clk_hw_omap_ops clkhwops_am35xx_ipss_module_wait; |
| 222 | extern const struct clk_hw_omap_ops clkhwops_am35xx_ipss_wait; |
Tero Kristo | 59245ce | 2015-03-02 11:07:35 +0200 | [diff] [blame] | 223 | |
Tero Kristo | a3314e9 | 2015-03-04 21:02:05 +0200 | [diff] [blame] | 224 | extern const struct clk_ops ti_clk_divider_ops; |
| 225 | extern const struct clk_ops ti_clk_mux_ops; |
| 226 | |
Tero Kristo | bd86cfd | 2015-03-03 16:22:50 +0200 | [diff] [blame] | 227 | int omap2_clkops_enable_clkdm(struct clk_hw *hw); |
| 228 | void omap2_clkops_disable_clkdm(struct clk_hw *hw); |
| 229 | |
Tero Kristo | 9f37e90 | 2015-03-03 15:28:53 +0200 | [diff] [blame] | 230 | int omap2_dflt_clk_enable(struct clk_hw *hw); |
| 231 | void omap2_dflt_clk_disable(struct clk_hw *hw); |
| 232 | int omap2_dflt_clk_is_enabled(struct clk_hw *hw); |
Tero Kristo | a3314e9 | 2015-03-04 21:02:05 +0200 | [diff] [blame] | 233 | void omap2_clk_dflt_find_companion(struct clk_hw_omap *clk, |
| 234 | void __iomem **other_reg, |
| 235 | u8 *other_bit); |
| 236 | void omap2_clk_dflt_find_idlest(struct clk_hw_omap *clk, |
| 237 | void __iomem **idlest_reg, |
| 238 | u8 *idlest_bit, u8 *idlest_val); |
| 239 | |
| 240 | void omap2_clkt_iclk_allow_idle(struct clk_hw_omap *clk); |
| 241 | void omap2_clkt_iclk_deny_idle(struct clk_hw_omap *clk); |
Tero Kristo | 9f37e90 | 2015-03-03 15:28:53 +0200 | [diff] [blame] | 242 | |
Tero Kristo | b138b02 | 2015-03-02 09:57:28 +0200 | [diff] [blame] | 243 | u8 omap2_init_dpll_parent(struct clk_hw *hw); |
Tero Kristo | 0565fb1 | 2015-03-03 13:27:48 +0200 | [diff] [blame] | 244 | int omap3_noncore_dpll_enable(struct clk_hw *hw); |
| 245 | void omap3_noncore_dpll_disable(struct clk_hw *hw); |
| 246 | int omap3_noncore_dpll_set_parent(struct clk_hw *hw, u8 index); |
| 247 | int omap3_noncore_dpll_set_rate(struct clk_hw *hw, unsigned long rate, |
| 248 | unsigned long parent_rate); |
| 249 | int omap3_noncore_dpll_set_rate_and_parent(struct clk_hw *hw, |
| 250 | unsigned long rate, |
| 251 | unsigned long parent_rate, |
| 252 | u8 index); |
Stephen Boyd | 4d34105 | 2015-07-28 11:58:26 -0700 | [diff] [blame] | 253 | int omap3_noncore_dpll_determine_rate(struct clk_hw *hw, |
| 254 | struct clk_rate_request *req); |
Tero Kristo | 0565fb1 | 2015-03-03 13:27:48 +0200 | [diff] [blame] | 255 | long omap2_dpll_round_rate(struct clk_hw *hw, unsigned long target_rate, |
| 256 | unsigned long *parent_rate); |
| 257 | unsigned long omap3_clkoutx2_recalc(struct clk_hw *hw, |
| 258 | unsigned long parent_rate); |
| 259 | |
Richard Watts | 0de98ee | 2016-12-02 23:14:38 +0200 | [diff] [blame] | 260 | /* |
| 261 | * OMAP3_DPLL5_FREQ_FOR_USBHOST: USBHOST and USBTLL are the only clocks |
| 262 | * that are sourced by DPLL5, and both of these require this clock |
| 263 | * to be at 120 MHz for proper operation. |
| 264 | */ |
| 265 | #define OMAP3_DPLL5_FREQ_FOR_USBHOST 120000000 |
| 266 | |
Tero Kristo | 0565fb1 | 2015-03-03 13:27:48 +0200 | [diff] [blame] | 267 | unsigned long omap3_dpll_recalc(struct clk_hw *hw, unsigned long parent_rate); |
| 268 | int omap3_dpll4_set_rate(struct clk_hw *clk, unsigned long rate, |
| 269 | unsigned long parent_rate); |
| 270 | int omap3_dpll4_set_rate_and_parent(struct clk_hw *hw, unsigned long rate, |
| 271 | unsigned long parent_rate, u8 index); |
Richard Watts | 0de98ee | 2016-12-02 23:14:38 +0200 | [diff] [blame] | 272 | int omap3_dpll5_set_rate(struct clk_hw *hw, unsigned long rate, |
| 273 | unsigned long parent_rate); |
Tero Kristo | 0565fb1 | 2015-03-03 13:27:48 +0200 | [diff] [blame] | 274 | void omap3_clk_lock_dpll5(void); |
Tero Kristo | b138b02 | 2015-03-02 09:57:28 +0200 | [diff] [blame] | 275 | |
Tero Kristo | 59245ce | 2015-03-02 11:07:35 +0200 | [diff] [blame] | 276 | unsigned long omap4_dpll_regm4xen_recalc(struct clk_hw *hw, |
| 277 | unsigned long parent_rate); |
| 278 | long omap4_dpll_regm4xen_round_rate(struct clk_hw *hw, |
| 279 | unsigned long target_rate, |
| 280 | unsigned long *parent_rate); |
Stephen Boyd | 4d34105 | 2015-07-28 11:58:26 -0700 | [diff] [blame] | 281 | int omap4_dpll_regm4xen_determine_rate(struct clk_hw *hw, |
| 282 | struct clk_rate_request *req); |
Tero Kristo | 59245ce | 2015-03-02 11:07:35 +0200 | [diff] [blame] | 283 | |
Tero Kristo | e9e6308 | 2015-04-27 21:55:42 +0300 | [diff] [blame] | 284 | extern struct ti_clk_ll_ops *ti_clk_ll_ops; |
| 285 | |
Tero Kristo | c82f895 | 2014-12-16 18:20:46 +0200 | [diff] [blame] | 286 | #endif |