2 * Copyright (c) 2013 Samsung Electronics Co., Ltd.
3 * Copyright (c) 2013 Linaro Ltd.
4 * Author: Thomas Abraham <thomas.ab@samsung.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Common Clock Framework support for all Samsung platforms
13 #ifndef __SAMSUNG_CLK_H
14 #define __SAMSUNG_CLK_H
16 #include <linux/clk-provider.h>
22 * struct samsung_clk_provider: information about clock provider
23 * @reg_base: virtual address for the register base.
24 * @clk_data: holds clock related data like clk* and number of clocks.
25 * @lock: maintains exclusion between callbacks for a given clock-provider.
27 struct samsung_clk_provider
{
28 void __iomem
*reg_base
;
29 struct clk_onecell_data clk_data
;
34 * struct samsung_clock_alias: information about mux clock
35 * @id: platform specific id of the clock.
36 * @dev_name: name of the device to which this clock belongs.
37 * @alias: optional clock alias name to be assigned to this clock.
39 struct samsung_clock_alias
{
45 #define ALIAS(_id, dname, a) \
52 #define MHZ (1000 * 1000)
55 * struct samsung_fixed_rate_clock: information about fixed-rate clock
56 * @id: platform specific id of the clock.
57 * @name: name of this fixed-rate clock.
58 * @parent_name: optional parent clock name.
59 * @flags: optional fixed-rate clock flags.
60 * @fixed-rate: fixed clock rate of this clock.
62 struct samsung_fixed_rate_clock
{
65 const char *parent_name
;
67 unsigned long fixed_rate
;
70 #define FRATE(_id, cname, pname, f, frate) \
74 .parent_name = pname, \
76 .fixed_rate = frate, \
80 * struct samsung_fixed_factor_clock: information about fixed-factor clock
81 * @id: platform specific id of the clock.
82 * @name: name of this fixed-factor clock.
83 * @parent_name: parent clock name.
84 * @mult: fixed multiplication factor.
85 * @div: fixed division factor.
86 * @flags: optional fixed-factor clock flags.
88 struct samsung_fixed_factor_clock
{
91 const char *parent_name
;
97 #define FFACTOR(_id, cname, pname, m, d, f) \
101 .parent_name = pname, \
108 * struct samsung_mux_clock: information about mux clock
109 * @id: platform specific id of the clock.
110 * @dev_name: name of the device to which this clock belongs.
111 * @name: name of this mux clock.
112 * @parent_names: array of pointer to parent clock names.
113 * @num_parents: number of parents listed in @parent_names.
114 * @flags: optional flags for basic clock.
115 * @offset: offset of the register for configuring the mux.
116 * @shift: starting bit location of the mux control bit-field in @reg.
117 * @width: width of the mux control bit-field in @reg.
118 * @mux_flags: flags for mux-type clock.
119 * @alias: optional clock alias name to be assigned to this clock.
121 struct samsung_mux_clock
{
123 const char *dev_name
;
125 const char *const *parent_names
;
128 unsigned long offset
;
135 #define __MUX(_id, dname, cname, pnames, o, s, w, f, mf, a) \
140 .parent_names = pnames, \
141 .num_parents = ARRAY_SIZE(pnames), \
142 .flags = (f) | CLK_SET_RATE_NO_REPARENT, \
150 #define MUX(_id, cname, pnames, o, s, w) \
151 __MUX(_id, NULL, cname, pnames, o, s, w, 0, 0, NULL)
153 #define MUX_A(_id, cname, pnames, o, s, w, a) \
154 __MUX(_id, NULL, cname, pnames, o, s, w, 0, 0, a)
156 #define MUX_F(_id, cname, pnames, o, s, w, f, mf) \
157 __MUX(_id, NULL, cname, pnames, o, s, w, f, mf, NULL)
159 #define MUX_FA(_id, cname, pnames, o, s, w, f, mf, a) \
160 __MUX(_id, NULL, cname, pnames, o, s, w, f, mf, a)
163 * @id: platform specific id of the clock.
164 * struct samsung_div_clock: information about div clock
165 * @dev_name: name of the device to which this clock belongs.
166 * @name: name of this div clock.
167 * @parent_name: name of the parent clock.
168 * @flags: optional flags for basic clock.
169 * @offset: offset of the register for configuring the div.
170 * @shift: starting bit location of the div control bit-field in @reg.
171 * @div_flags: flags for div-type clock.
172 * @alias: optional clock alias name to be assigned to this clock.
174 struct samsung_div_clock
{
176 const char *dev_name
;
178 const char *parent_name
;
180 unsigned long offset
;
185 struct clk_div_table
*table
;
188 #define __DIV(_id, dname, cname, pname, o, s, w, f, df, a, t) \
193 .parent_name = pname, \
203 #define DIV(_id, cname, pname, o, s, w) \
204 __DIV(_id, NULL, cname, pname, o, s, w, 0, 0, NULL, NULL)
206 #define DIV_A(_id, cname, pname, o, s, w, a) \
207 __DIV(_id, NULL, cname, pname, o, s, w, 0, 0, a, NULL)
209 #define DIV_F(_id, cname, pname, o, s, w, f, df) \
210 __DIV(_id, NULL, cname, pname, o, s, w, f, df, NULL, NULL)
212 #define DIV_T(_id, cname, pname, o, s, w, t) \
213 __DIV(_id, NULL, cname, pname, o, s, w, 0, 0, NULL, t)
216 * struct samsung_gate_clock: information about gate clock
217 * @id: platform specific id of the clock.
218 * @dev_name: name of the device to which this clock belongs.
219 * @name: name of this gate clock.
220 * @parent_name: name of the parent clock.
221 * @flags: optional flags for basic clock.
222 * @offset: offset of the register for configuring the gate.
223 * @bit_idx: bit index of the gate control bit-field in @reg.
224 * @gate_flags: flags for gate-type clock.
225 * @alias: optional clock alias name to be assigned to this clock.
227 struct samsung_gate_clock
{
229 const char *dev_name
;
231 const char *parent_name
;
233 unsigned long offset
;
239 #define __GATE(_id, dname, cname, pname, o, b, f, gf, a) \
244 .parent_name = pname, \
252 #define GATE(_id, cname, pname, o, b, f, gf) \
253 __GATE(_id, NULL, cname, pname, o, b, f, gf, NULL)
255 #define GATE_A(_id, cname, pname, o, b, f, gf, a) \
256 __GATE(_id, NULL, cname, pname, o, b, f, gf, a)
258 #define GATE_D(_id, dname, cname, pname, o, b, f, gf) \
259 __GATE(_id, dname, cname, pname, o, b, f, gf, NULL)
261 #define GATE_DA(_id, dname, cname, pname, o, b, f, gf, a) \
262 __GATE(_id, dname, cname, pname, o, b, f, gf, a)
264 #define PNAME(x) static const char * const x[] __initconst
267 * struct samsung_clk_reg_dump: register dump of clock controller registers.
268 * @offset: clock register offset from the controller base address.
269 * @value: the value to be register at offset.
271 struct samsung_clk_reg_dump
{
277 * struct samsung_pll_clock: information about pll clock
278 * @id: platform specific id of the clock.
279 * @dev_name: name of the device to which this clock belongs.
280 * @name: name of this pll clock.
281 * @parent_name: name of the parent clock.
282 * @flags: optional flags for basic clock.
283 * @con_offset: offset of the register for configuring the PLL.
284 * @lock_offset: offset of the register for locking the PLL.
285 * @type: Type of PLL to be registered.
286 * @alias: optional clock alias name to be assigned to this clock.
288 struct samsung_pll_clock
{
290 const char *dev_name
;
292 const char *parent_name
;
296 enum samsung_pll_type type
;
297 const struct samsung_pll_rate_table
*rate_table
;
301 #define __PLL(_typ, _id, _dname, _name, _pname, _flags, _lock, _con, \
306 .dev_name = _dname, \
308 .parent_name = _pname, \
309 .flags = CLK_GET_RATE_NOCACHE, \
310 .con_offset = _con, \
311 .lock_offset = _lock, \
312 .rate_table = _rtable, \
316 #define PLL(_typ, _id, _name, _pname, _lock, _con, _rtable) \
317 __PLL(_typ, _id, NULL, _name, _pname, CLK_GET_RATE_NOCACHE, \
318 _lock, _con, _rtable, _name)
320 #define PLL_A(_typ, _id, _name, _pname, _lock, _con, _alias, _rtable) \
321 __PLL(_typ, _id, NULL, _name, _pname, CLK_GET_RATE_NOCACHE, \
322 _lock, _con, _rtable, _alias)
324 struct samsung_clock_reg_cache
{
325 struct list_head node
;
326 void __iomem
*reg_base
;
327 struct samsung_clk_reg_dump
*rdump
;
331 struct samsung_cmu_info
{
332 /* list of pll clocks and respective count */
333 const struct samsung_pll_clock
*pll_clks
;
334 unsigned int nr_pll_clks
;
335 /* list of mux clocks and respective count */
336 const struct samsung_mux_clock
*mux_clks
;
337 unsigned int nr_mux_clks
;
338 /* list of div clocks and respective count */
339 const struct samsung_div_clock
*div_clks
;
340 unsigned int nr_div_clks
;
341 /* list of gate clocks and respective count */
342 const struct samsung_gate_clock
*gate_clks
;
343 unsigned int nr_gate_clks
;
344 /* list of fixed clocks and respective count */
345 const struct samsung_fixed_rate_clock
*fixed_clks
;
346 unsigned int nr_fixed_clks
;
347 /* list of fixed factor clocks and respective count */
348 const struct samsung_fixed_factor_clock
*fixed_factor_clks
;
349 unsigned int nr_fixed_factor_clks
;
350 /* total number of clocks with IDs assigned*/
351 unsigned int nr_clk_ids
;
353 /* list and number of clocks registers */
354 const unsigned long *clk_regs
;
355 unsigned int nr_clk_regs
;
358 extern struct samsung_clk_provider
*__init
samsung_clk_init(
359 struct device_node
*np
, void __iomem
*base
,
360 unsigned long nr_clks
);
361 extern void __init
samsung_clk_of_add_provider(struct device_node
*np
,
362 struct samsung_clk_provider
*ctx
);
363 extern void __init
samsung_clk_of_register_fixed_ext(
364 struct samsung_clk_provider
*ctx
,
365 struct samsung_fixed_rate_clock
*fixed_rate_clk
,
366 unsigned int nr_fixed_rate_clk
,
367 const struct of_device_id
*clk_matches
);
369 extern void samsung_clk_add_lookup(struct samsung_clk_provider
*ctx
,
370 struct clk
*clk
, unsigned int id
);
372 extern void __init
samsung_clk_register_alias(struct samsung_clk_provider
*ctx
,
373 const struct samsung_clock_alias
*list
,
374 unsigned int nr_clk
);
375 extern void __init
samsung_clk_register_fixed_rate(
376 struct samsung_clk_provider
*ctx
,
377 const struct samsung_fixed_rate_clock
*clk_list
,
378 unsigned int nr_clk
);
379 extern void __init
samsung_clk_register_fixed_factor(
380 struct samsung_clk_provider
*ctx
,
381 const struct samsung_fixed_factor_clock
*list
,
382 unsigned int nr_clk
);
383 extern void __init
samsung_clk_register_mux(struct samsung_clk_provider
*ctx
,
384 const struct samsung_mux_clock
*clk_list
,
385 unsigned int nr_clk
);
386 extern void __init
samsung_clk_register_div(struct samsung_clk_provider
*ctx
,
387 const struct samsung_div_clock
*clk_list
,
388 unsigned int nr_clk
);
389 extern void __init
samsung_clk_register_gate(struct samsung_clk_provider
*ctx
,
390 const struct samsung_gate_clock
*clk_list
,
391 unsigned int nr_clk
);
392 extern void __init
samsung_clk_register_pll(struct samsung_clk_provider
*ctx
,
393 const struct samsung_pll_clock
*pll_list
,
394 unsigned int nr_clk
, void __iomem
*base
);
396 extern struct samsung_clk_provider __init
*samsung_cmu_register_one(
397 struct device_node
*,
398 const struct samsung_cmu_info
*);
400 extern unsigned long _get_rate(const char *clk_name
);
402 extern void samsung_clk_sleep_init(void __iomem
*reg_base
,
403 const unsigned long *rdump
,
404 unsigned long nr_rdump
);
406 extern void samsung_clk_save(void __iomem
*base
,
407 struct samsung_clk_reg_dump
*rd
,
408 unsigned int num_regs
);
409 extern void samsung_clk_restore(void __iomem
*base
,
410 const struct samsung_clk_reg_dump
*rd
,
411 unsigned int num_regs
);
412 extern struct samsung_clk_reg_dump
*samsung_clk_alloc_reg_dump(
413 const unsigned long *rdump
,
414 unsigned long nr_rdump
);
416 #endif /* __SAMSUNG_CLK_H */