2 * OMAP gate clock support
4 * Copyright (C) 2013 Texas Instruments, Inc.
6 * Tero Kristo <t-kristo@ti.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/clk-provider.h>
19 #include <linux/slab.h>
22 #include <linux/of_address.h>
23 #include <linux/clk/ti.h>
28 #define pr_fmt(fmt) "%s: " fmt, __func__
30 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw
*clk
);
32 static const struct clk_ops omap_gate_clkdm_clk_ops
= {
33 .init
= &omap2_init_clk_clkdm
,
34 .enable
= &omap2_clkops_enable_clkdm
,
35 .disable
= &omap2_clkops_disable_clkdm
,
36 .restore_context
= clk_gate_restore_context
,
39 const struct clk_ops omap_gate_clk_ops
= {
40 .init
= &omap2_init_clk_clkdm
,
41 .enable
= &omap2_dflt_clk_enable
,
42 .disable
= &omap2_dflt_clk_disable
,
43 .is_enabled
= &omap2_dflt_clk_is_enabled
,
44 .restore_context
= clk_gate_restore_context
,
47 static const struct clk_ops omap_gate_clk_hsdiv_restore_ops
= {
48 .init
= &omap2_init_clk_clkdm
,
49 .enable
= &omap36xx_gate_clk_enable_with_hsdiv_restore
,
50 .disable
= &omap2_dflt_clk_disable
,
51 .is_enabled
= &omap2_dflt_clk_is_enabled
,
52 .restore_context
= clk_gate_restore_context
,
56 * omap36xx_gate_clk_enable_with_hsdiv_restore - enable clocks suffering
57 * from HSDivider PWRDN problem Implements Errata ID: i556.
58 * @clk: DPLL output struct clk
60 * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
61 * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
62 * valueafter their respective PWRDN bits are set. Any dummy write
63 * (Any other value different from the Read value) to the
64 * corresponding CM_CLKSEL register will refresh the dividers.
66 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw
*hw
)
68 struct clk_omap_divider
*parent
;
69 struct clk_hw
*parent_hw
;
73 /* Clear PWRDN bit of HSDIVIDER */
74 ret
= omap2_dflt_clk_enable(hw
);
76 /* Parent is the x2 node, get parent of parent for the m2 div */
77 parent_hw
= clk_hw_get_parent(clk_hw_get_parent(hw
));
78 parent
= to_clk_omap_divider(parent_hw
);
80 /* Restore the dividers */
82 orig_v
= ti_clk_ll_ops
->clk_readl(&parent
->reg
);
85 /* Write any other value different from the Read value */
86 dummy_v
^= (1 << parent
->shift
);
87 ti_clk_ll_ops
->clk_writel(dummy_v
, &parent
->reg
);
89 /* Write the original divider */
90 ti_clk_ll_ops
->clk_writel(orig_v
, &parent
->reg
);
96 static struct clk
*_register_gate(struct device
*dev
, const char *name
,
97 const char *parent_name
, unsigned long flags
,
98 struct clk_omap_reg
*reg
, u8 bit_idx
,
99 u8 clk_gate_flags
, const struct clk_ops
*ops
,
100 const struct clk_hw_omap_ops
*hw_ops
)
102 struct clk_init_data init
= { NULL
};
103 struct clk_hw_omap
*clk_hw
;
106 clk_hw
= kzalloc(sizeof(*clk_hw
), GFP_KERNEL
);
108 return ERR_PTR(-ENOMEM
);
110 clk_hw
->hw
.init
= &init
;
115 memcpy(&clk_hw
->enable_reg
, reg
, sizeof(*reg
));
116 clk_hw
->enable_bit
= bit_idx
;
117 clk_hw
->ops
= hw_ops
;
119 clk_hw
->flags
= clk_gate_flags
;
121 init
.parent_names
= &parent_name
;
122 init
.num_parents
= 1;
126 clk
= ti_clk_register_omap_hw(NULL
, &clk_hw
->hw
, name
);
134 static void __init
_of_ti_gate_clk_setup(struct device_node
*node
,
135 const struct clk_ops
*ops
,
136 const struct clk_hw_omap_ops
*hw_ops
)
139 const char *parent_name
;
140 struct clk_omap_reg reg
;
144 u8 clk_gate_flags
= 0;
146 if (ops
!= &omap_gate_clkdm_clk_ops
) {
147 if (ti_clk_get_reg_addr(node
, 0, ®
))
150 if (!of_property_read_u32(node
, "ti,bit-shift", &val
))
154 if (of_clk_get_parent_count(node
) != 1) {
155 pr_err("%pOFn must have 1 parent\n", node
);
159 parent_name
= of_clk_get_parent_name(node
, 0);
161 if (of_property_read_bool(node
, "ti,set-rate-parent"))
162 flags
|= CLK_SET_RATE_PARENT
;
164 if (of_property_read_bool(node
, "ti,set-bit-to-disable"))
165 clk_gate_flags
|= INVERT_ENABLE
;
167 clk
= _register_gate(NULL
, node
->name
, parent_name
, flags
, ®
,
168 enable_bit
, clk_gate_flags
, ops
, hw_ops
);
171 of_clk_add_provider(node
, of_clk_src_simple_get
, clk
);
175 _of_ti_composite_gate_clk_setup(struct device_node
*node
,
176 const struct clk_hw_omap_ops
*hw_ops
)
178 struct clk_hw_omap
*gate
;
181 gate
= kzalloc(sizeof(*gate
), GFP_KERNEL
);
185 if (ti_clk_get_reg_addr(node
, 0, &gate
->enable_reg
))
188 of_property_read_u32(node
, "ti,bit-shift", &val
);
190 gate
->enable_bit
= val
;
193 if (!ti_clk_add_component(node
, &gate
->hw
, CLK_COMPONENT_TYPE_GATE
))
201 of_ti_composite_no_wait_gate_clk_setup(struct device_node
*node
)
203 _of_ti_composite_gate_clk_setup(node
, NULL
);
205 CLK_OF_DECLARE(ti_composite_no_wait_gate_clk
, "ti,composite-no-wait-gate-clock",
206 of_ti_composite_no_wait_gate_clk_setup
);
208 #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
209 static void __init
of_ti_composite_interface_clk_setup(struct device_node
*node
)
211 _of_ti_composite_gate_clk_setup(node
, &clkhwops_iclk_wait
);
213 CLK_OF_DECLARE(ti_composite_interface_clk
, "ti,composite-interface-clock",
214 of_ti_composite_interface_clk_setup
);
217 static void __init
of_ti_composite_gate_clk_setup(struct device_node
*node
)
219 _of_ti_composite_gate_clk_setup(node
, &clkhwops_wait
);
221 CLK_OF_DECLARE(ti_composite_gate_clk
, "ti,composite-gate-clock",
222 of_ti_composite_gate_clk_setup
);
225 static void __init
of_ti_clkdm_gate_clk_setup(struct device_node
*node
)
227 _of_ti_gate_clk_setup(node
, &omap_gate_clkdm_clk_ops
, NULL
);
229 CLK_OF_DECLARE(ti_clkdm_gate_clk
, "ti,clkdm-gate-clock",
230 of_ti_clkdm_gate_clk_setup
);
232 static void __init
of_ti_hsdiv_gate_clk_setup(struct device_node
*node
)
234 _of_ti_gate_clk_setup(node
, &omap_gate_clk_hsdiv_restore_ops
,
237 CLK_OF_DECLARE(ti_hsdiv_gate_clk
, "ti,hsdiv-gate-clock",
238 of_ti_hsdiv_gate_clk_setup
);
240 static void __init
of_ti_gate_clk_setup(struct device_node
*node
)
242 _of_ti_gate_clk_setup(node
, &omap_gate_clk_ops
, NULL
);
244 CLK_OF_DECLARE(ti_gate_clk
, "ti,gate-clock", of_ti_gate_clk_setup
);
246 static void __init
of_ti_wait_gate_clk_setup(struct device_node
*node
)
248 _of_ti_gate_clk_setup(node
, &omap_gate_clk_ops
, &clkhwops_wait
);
250 CLK_OF_DECLARE(ti_wait_gate_clk
, "ti,wait-gate-clock",
251 of_ti_wait_gate_clk_setup
);
253 #ifdef CONFIG_ARCH_OMAP3
254 static void __init
of_ti_am35xx_gate_clk_setup(struct device_node
*node
)
256 _of_ti_gate_clk_setup(node
, &omap_gate_clk_ops
,
257 &clkhwops_am35xx_ipss_module_wait
);
259 CLK_OF_DECLARE(ti_am35xx_gate_clk
, "ti,am35xx-gate-clock",
260 of_ti_am35xx_gate_clk_setup
);
262 static void __init
of_ti_dss_gate_clk_setup(struct device_node
*node
)
264 _of_ti_gate_clk_setup(node
, &omap_gate_clk_ops
,
265 &clkhwops_omap3430es2_dss_usbhost_wait
);
267 CLK_OF_DECLARE(ti_dss_gate_clk
, "ti,dss-gate-clock",
268 of_ti_dss_gate_clk_setup
);