1 // SPDX-License-Identifier: GPL-2.0-only
3 * OMAP gate clock support
5 * Copyright (C) 2013 Texas Instruments, Inc.
10 #include <linux/clk-provider.h>
11 #include <linux/slab.h>
14 #include <linux/of_address.h>
15 #include <linux/clk/ti.h>
20 #define pr_fmt(fmt) "%s: " fmt, __func__
22 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *clk);
24 static const struct clk_ops omap_gate_clkdm_clk_ops = {
25 .init = &omap2_init_clk_clkdm,
26 .enable = &omap2_clkops_enable_clkdm,
27 .disable = &omap2_clkops_disable_clkdm,
28 .restore_context = clk_gate_restore_context,
31 const struct clk_ops omap_gate_clk_ops = {
32 .init = &omap2_init_clk_clkdm,
33 .enable = &omap2_dflt_clk_enable,
34 .disable = &omap2_dflt_clk_disable,
35 .is_enabled = &omap2_dflt_clk_is_enabled,
36 .restore_context = clk_gate_restore_context,
39 static const struct clk_ops omap_gate_clk_hsdiv_restore_ops = {
40 .init = &omap2_init_clk_clkdm,
41 .enable = &omap36xx_gate_clk_enable_with_hsdiv_restore,
42 .disable = &omap2_dflt_clk_disable,
43 .is_enabled = &omap2_dflt_clk_is_enabled,
44 .restore_context = clk_gate_restore_context,
48 * omap36xx_gate_clk_enable_with_hsdiv_restore - enable clocks suffering
49 * from HSDivider PWRDN problem Implements Errata ID: i556.
50 * @hw: DPLL output struct clk_hw
52 * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
53 * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
54 * valueafter their respective PWRDN bits are set. Any dummy write
55 * (Any other value different from the Read value) to the
56 * corresponding CM_CLKSEL register will refresh the dividers.
58 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *hw)
60 struct clk_omap_divider *parent;
61 struct clk_hw *parent_hw;
65 /* Clear PWRDN bit of HSDIVIDER */
66 ret = omap2_dflt_clk_enable(hw);
68 /* Parent is the x2 node, get parent of parent for the m2 div */
69 parent_hw = clk_hw_get_parent(clk_hw_get_parent(hw));
70 parent = to_clk_omap_divider(parent_hw);
72 /* Restore the dividers */
74 orig_v = ti_clk_ll_ops->clk_readl(&parent->reg);
77 /* Write any other value different from the Read value */
78 dummy_v ^= (1 << parent->shift);
79 ti_clk_ll_ops->clk_writel(dummy_v, &parent->reg);
81 /* Write the original divider */
82 ti_clk_ll_ops->clk_writel(orig_v, &parent->reg);
88 static struct clk *_register_gate(struct device *dev, const char *name,
89 const char *parent_name, unsigned long flags,
90 struct clk_omap_reg *reg, u8 bit_idx,
91 u8 clk_gate_flags, const struct clk_ops *ops,
92 const struct clk_hw_omap_ops *hw_ops)
94 struct clk_init_data init = { NULL };
95 struct clk_hw_omap *clk_hw;
98 clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
100 return ERR_PTR(-ENOMEM);
102 clk_hw->hw.init = &init;
107 memcpy(&clk_hw->enable_reg, reg, sizeof(*reg));
108 clk_hw->enable_bit = bit_idx;
109 clk_hw->ops = hw_ops;
111 clk_hw->flags = clk_gate_flags;
113 init.parent_names = &parent_name;
114 init.num_parents = 1;
118 clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, name);
126 static void __init _of_ti_gate_clk_setup(struct device_node *node,
127 const struct clk_ops *ops,
128 const struct clk_hw_omap_ops *hw_ops)
131 const char *parent_name;
132 struct clk_omap_reg reg;
137 u8 clk_gate_flags = 0;
139 if (ops != &omap_gate_clkdm_clk_ops) {
140 if (ti_clk_get_reg_addr(node, 0, ®))
143 if (!of_property_read_u32(node, "ti,bit-shift", &val))
147 if (of_clk_get_parent_count(node) != 1) {
148 pr_err("%pOFn must have 1 parent\n", node);
152 parent_name = of_clk_get_parent_name(node, 0);
154 if (of_property_read_bool(node, "ti,set-rate-parent"))
155 flags |= CLK_SET_RATE_PARENT;
157 if (of_property_read_bool(node, "ti,set-bit-to-disable"))
158 clk_gate_flags |= INVERT_ENABLE;
160 name = ti_dt_clk_name(node);
161 clk = _register_gate(NULL, name, parent_name, flags, ®,
162 enable_bit, clk_gate_flags, ops, hw_ops);
165 of_clk_add_provider(node, of_clk_src_simple_get, clk);
169 _of_ti_composite_gate_clk_setup(struct device_node *node,
170 const struct clk_hw_omap_ops *hw_ops)
172 struct clk_hw_omap *gate;
175 gate = kzalloc(sizeof(*gate), GFP_KERNEL);
179 if (ti_clk_get_reg_addr(node, 0, &gate->enable_reg))
182 of_property_read_u32(node, "ti,bit-shift", &val);
184 gate->enable_bit = val;
187 if (!ti_clk_add_component(node, &gate->hw, CLK_COMPONENT_TYPE_GATE))
195 of_ti_composite_no_wait_gate_clk_setup(struct device_node *node)
197 _of_ti_composite_gate_clk_setup(node, NULL);
199 CLK_OF_DECLARE(ti_composite_no_wait_gate_clk, "ti,composite-no-wait-gate-clock",
200 of_ti_composite_no_wait_gate_clk_setup);
202 #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
203 static void __init of_ti_composite_interface_clk_setup(struct device_node *node)
205 _of_ti_composite_gate_clk_setup(node, &clkhwops_iclk_wait);
207 CLK_OF_DECLARE(ti_composite_interface_clk, "ti,composite-interface-clock",
208 of_ti_composite_interface_clk_setup);
211 static void __init of_ti_composite_gate_clk_setup(struct device_node *node)
213 _of_ti_composite_gate_clk_setup(node, &clkhwops_wait);
215 CLK_OF_DECLARE(ti_composite_gate_clk, "ti,composite-gate-clock",
216 of_ti_composite_gate_clk_setup);
219 static void __init of_ti_clkdm_gate_clk_setup(struct device_node *node)
221 _of_ti_gate_clk_setup(node, &omap_gate_clkdm_clk_ops, NULL);
223 CLK_OF_DECLARE(ti_clkdm_gate_clk, "ti,clkdm-gate-clock",
224 of_ti_clkdm_gate_clk_setup);
226 static void __init of_ti_hsdiv_gate_clk_setup(struct device_node *node)
228 _of_ti_gate_clk_setup(node, &omap_gate_clk_hsdiv_restore_ops,
231 CLK_OF_DECLARE(ti_hsdiv_gate_clk, "ti,hsdiv-gate-clock",
232 of_ti_hsdiv_gate_clk_setup);
234 static void __init of_ti_gate_clk_setup(struct device_node *node)
236 _of_ti_gate_clk_setup(node, &omap_gate_clk_ops, NULL);
238 CLK_OF_DECLARE(ti_gate_clk, "ti,gate-clock", of_ti_gate_clk_setup);
240 static void __init of_ti_wait_gate_clk_setup(struct device_node *node)
242 _of_ti_gate_clk_setup(node, &omap_gate_clk_ops, &clkhwops_wait);
244 CLK_OF_DECLARE(ti_wait_gate_clk, "ti,wait-gate-clock",
245 of_ti_wait_gate_clk_setup);
247 #ifdef CONFIG_ARCH_OMAP3
248 static void __init of_ti_am35xx_gate_clk_setup(struct device_node *node)
250 _of_ti_gate_clk_setup(node, &omap_gate_clk_ops,
251 &clkhwops_am35xx_ipss_module_wait);
253 CLK_OF_DECLARE(ti_am35xx_gate_clk, "ti,am35xx-gate-clock",
254 of_ti_am35xx_gate_clk_setup);
256 static void __init of_ti_dss_gate_clk_setup(struct device_node *node)
258 _of_ti_gate_clk_setup(node, &omap_gate_clk_ops,
259 &clkhwops_omap3430es2_dss_usbhost_wait);
261 CLK_OF_DECLARE(ti_dss_gate_clk, "ti,dss-gate-clock",
262 of_ti_dss_gate_clk_setup);