2 * Copyright (c) 2014 MundoReader S.L.
3 * Author: Heiko Stuebner <heiko@sntech.de>
8 * Copyright (c) 2013 Samsung Electronics Co., Ltd.
9 * Copyright (c) 2013 Linaro Ltd.
10 * Author: Thomas Abraham <thomas.ab@samsung.com>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
23 #ifndef CLK_ROCKCHIP_CLK_H
24 #define CLK_ROCKCHIP_CLK_H
30 #define HIWORD_UPDATE(val, mask, shift) \
31 ((val) << (shift) | (mask) << ((shift) + 16))
33 /* register positions shared by RK2928, RK3066 and RK3188 */
34 #define RK2928_PLL_CON(x) ((x) * 0x4)
35 #define RK2928_MODE_CON 0x40
36 #define RK2928_CLKSEL_CON(x) ((x) * 0x4 + 0x44)
37 #define RK2928_CLKGATE_CON(x) ((x) * 0x4 + 0xd0)
38 #define RK2928_GLB_SRST_FST 0x100
39 #define RK2928_GLB_SRST_SND 0x104
40 #define RK2928_SOFTRST_CON(x) ((x) * 0x4 + 0x110)
41 #define RK2928_MISC_CON 0x134
43 #define RK3288_PLL_CON(x) RK2928_PLL_CON(x)
44 #define RK3288_MODE_CON 0x50
45 #define RK3288_CLKSEL_CON(x) ((x) * 0x4 + 0x60)
46 #define RK3288_CLKGATE_CON(x) ((x) * 0x4 + 0x160)
47 #define RK3288_GLB_SRST_FST 0x1b0
48 #define RK3288_GLB_SRST_SND 0x1b4
49 #define RK3288_SOFTRST_CON(x) ((x) * 0x4 + 0x1b8)
50 #define RK3288_MISC_CON 0x1e8
51 #define RK3288_SDMMC_CON0 0x200
52 #define RK3288_SDMMC_CON1 0x204
53 #define RK3288_SDIO0_CON0 0x208
54 #define RK3288_SDIO0_CON1 0x20c
55 #define RK3288_SDIO1_CON0 0x210
56 #define RK3288_SDIO1_CON1 0x214
57 #define RK3288_EMMC_CON0 0x218
58 #define RK3288_EMMC_CON1 0x21c
60 #define RK3368_PLL_CON(x) RK2928_PLL_CON(x)
61 #define RK3368_CLKSEL_CON(x) ((x) * 0x4 + 0x100)
62 #define RK3368_CLKGATE_CON(x) ((x) * 0x4 + 0x200)
63 #define RK3368_GLB_SRST_FST 0x280
64 #define RK3368_GLB_SRST_SND 0x284
65 #define RK3368_SOFTRST_CON(x) ((x) * 0x4 + 0x300)
66 #define RK3368_MISC_CON 0x380
67 #define RK3368_SDMMC_CON0 0x400
68 #define RK3368_SDMMC_CON1 0x404
69 #define RK3368_SDIO0_CON0 0x408
70 #define RK3368_SDIO0_CON1 0x40c
71 #define RK3368_SDIO1_CON0 0x410
72 #define RK3368_SDIO1_CON1 0x414
73 #define RK3368_EMMC_CON0 0x418
74 #define RK3368_EMMC_CON1 0x41c
76 enum rockchip_pll_type {
80 #define RK3066_PLL_RATE(_rate, _nr, _nf, _no) \
86 .nb = ((_nf) < 2) ? 1 : (_nf) >> 1, \
89 #define RK3066_PLL_RATE_NB(_rate, _nr, _nf, _no, _nb) \
98 struct rockchip_pll_rate_table {
107 * struct rockchip_pll_clock: information about pll clock
108 * @id: platform specific id of the clock.
109 * @name: name of this pll clock.
110 * @parent_name: name of the parent clock.
111 * @flags: optional flags for basic clock.
112 * @con_offset: offset of the register for configuring the PLL.
113 * @mode_offset: offset of the register for configuring the PLL-mode.
114 * @mode_shift: offset inside the mode-register for the mode of this pll.
115 * @lock_shift: offset inside the lock register for the lock status.
116 * @type: Type of PLL to be registered.
117 * @pll_flags: hardware-specific flags
118 * @rate_table: Table of usable pll rates
121 * ROCKCHIP_PLL_SYNC_RATE - check rate parameters to match against the
122 * rate_table parameters and ajust them if necessary.
124 struct rockchip_pll_clock {
127 const char *const *parent_names;
134 enum rockchip_pll_type type;
136 struct rockchip_pll_rate_table *rate_table;
139 #define ROCKCHIP_PLL_SYNC_RATE BIT(0)
141 #define PLL(_type, _id, _name, _pnames, _flags, _con, _mode, _mshift, \
142 _lshift, _pflags, _rtable) \
147 .parent_names = _pnames, \
148 .num_parents = ARRAY_SIZE(_pnames), \
149 .flags = CLK_GET_RATE_NOCACHE | _flags, \
150 .con_offset = _con, \
151 .mode_offset = _mode, \
152 .mode_shift = _mshift, \
153 .lock_shift = _lshift, \
154 .pll_flags = _pflags, \
155 .rate_table = _rtable, \
158 struct clk *rockchip_clk_register_pll(enum rockchip_pll_type pll_type,
159 const char *name, const char *const *parent_names,
160 u8 num_parents, void __iomem *base, int con_offset,
161 int grf_lock_offset, int lock_shift, int reg_mode,
162 int mode_shift, struct rockchip_pll_rate_table *rate_table,
163 u8 clk_pll_flags, spinlock_t *lock);
165 struct rockchip_cpuclk_clksel {
170 #define ROCKCHIP_CPUCLK_NUM_DIVIDERS 2
171 struct rockchip_cpuclk_rate_table {
173 struct rockchip_cpuclk_clksel divs[ROCKCHIP_CPUCLK_NUM_DIVIDERS];
177 * struct rockchip_cpuclk_reg_data: describes register offsets and masks of the cpuclock
178 * @core_reg: register offset of the core settings register
179 * @div_core_shift: core divider offset used to divide the pll value
180 * @div_core_mask: core divider mask
181 * @mux_core_shift: offset of the core multiplexer
183 struct rockchip_cpuclk_reg_data {
191 struct clk *rockchip_clk_register_cpuclk(const char *name,
192 const char *const *parent_names, u8 num_parents,
193 const struct rockchip_cpuclk_reg_data *reg_data,
194 const struct rockchip_cpuclk_rate_table *rates,
195 int nrates, void __iomem *reg_base, spinlock_t *lock);
197 struct clk *rockchip_clk_register_mmc(const char *name,
198 const char *const *parent_names, u8 num_parents,
199 void __iomem *reg, int shift);
201 #define ROCKCHIP_INVERTER_HIWORD_MASK BIT(0)
203 struct clk *rockchip_clk_register_inverter(const char *name,
204 const char *const *parent_names, u8 num_parents,
205 void __iomem *reg, int shift, int flags,
208 #define PNAME(x) static const char *const x[] __initconst
210 enum rockchip_clk_branch_type {
214 branch_fraction_divider,
220 struct rockchip_clk_branch {
222 enum rockchip_clk_branch_type branch_type;
224 const char *const *parent_names;
234 struct clk_div_table *div_table;
240 #define COMPOSITE(_id, cname, pnames, f, mo, ms, mw, mf, ds, dw,\
244 .branch_type = branch_composite, \
246 .parent_names = pnames, \
247 .num_parents = ARRAY_SIZE(pnames), \
249 .muxdiv_offset = mo, \
261 #define COMPOSITE_NOMUX(_id, cname, pname, f, mo, ds, dw, df, \
265 .branch_type = branch_composite, \
267 .parent_names = (const char *[]){ pname }, \
270 .muxdiv_offset = mo, \
279 #define COMPOSITE_NOMUX_DIVTBL(_id, cname, pname, f, mo, ds, dw,\
280 df, dt, go, gs, gf) \
283 .branch_type = branch_composite, \
285 .parent_names = (const char *[]){ pname }, \
288 .muxdiv_offset = mo, \
298 #define COMPOSITE_NODIV(_id, cname, pnames, f, mo, ms, mw, mf, \
302 .branch_type = branch_composite, \
304 .parent_names = pnames, \
305 .num_parents = ARRAY_SIZE(pnames), \
307 .muxdiv_offset = mo, \
316 #define COMPOSITE_NOGATE(_id, cname, pnames, f, mo, ms, mw, mf, \
320 .branch_type = branch_composite, \
322 .parent_names = pnames, \
323 .num_parents = ARRAY_SIZE(pnames), \
325 .muxdiv_offset = mo, \
335 #define COMPOSITE_NOGATE_DIVTBL(_id, cname, pnames, f, mo, ms, \
336 mw, mf, ds, dw, df, dt) \
339 .branch_type = branch_composite, \
341 .parent_names = pnames, \
342 .num_parents = ARRAY_SIZE(pnames), \
344 .muxdiv_offset = mo, \
355 #define COMPOSITE_FRAC(_id, cname, pname, f, mo, df, go, gs, gf)\
358 .branch_type = branch_fraction_divider, \
360 .parent_names = (const char *[]){ pname }, \
363 .muxdiv_offset = mo, \
372 #define MUX(_id, cname, pnames, f, o, s, w, mf) \
375 .branch_type = branch_mux, \
377 .parent_names = pnames, \
378 .num_parents = ARRAY_SIZE(pnames), \
380 .muxdiv_offset = o, \
387 #define DIV(_id, cname, pname, f, o, s, w, df) \
390 .branch_type = branch_divider, \
392 .parent_names = (const char *[]){ pname }, \
395 .muxdiv_offset = o, \
402 #define DIVTBL(_id, cname, pname, f, o, s, w, df, dt) \
405 .branch_type = branch_divider, \
407 .parent_names = (const char *[]){ pname }, \
410 .muxdiv_offset = o, \
417 #define GATE(_id, cname, pname, f, o, b, gf) \
420 .branch_type = branch_gate, \
422 .parent_names = (const char *[]){ pname }, \
430 #define MMC(_id, cname, pname, offset, shift) \
433 .branch_type = branch_mmc, \
435 .parent_names = (const char *[]){ pname }, \
437 .muxdiv_offset = offset, \
438 .div_shift = shift, \
441 #define INVERTER(_id, cname, pname, io, is, if) \
444 .branch_type = branch_inverter, \
446 .parent_names = (const char *[]){ pname }, \
448 .muxdiv_offset = io, \
453 void rockchip_clk_init(struct device_node *np, void __iomem *base,
454 unsigned long nr_clks);
455 struct regmap *rockchip_clk_get_grf(void);
456 void rockchip_clk_add_lookup(struct clk *clk, unsigned int id);
457 void rockchip_clk_register_branches(struct rockchip_clk_branch *clk_list,
458 unsigned int nr_clk);
459 void rockchip_clk_register_plls(struct rockchip_pll_clock *pll_list,
460 unsigned int nr_pll, int grf_lock_offset);
461 void rockchip_clk_register_armclk(unsigned int lookup_id, const char *name,
462 const char *const *parent_names, u8 num_parents,
463 const struct rockchip_cpuclk_reg_data *reg_data,
464 const struct rockchip_cpuclk_rate_table *rates,
466 void rockchip_clk_protect_critical(const char *const clocks[], int nclocks);
467 void rockchip_register_restart_notifier(unsigned int reg);
469 #define ROCKCHIP_SOFTRST_HIWORD_MASK BIT(0)
471 #ifdef CONFIG_RESET_CONTROLLER
472 void rockchip_register_softrst(struct device_node *np,
473 unsigned int num_regs,
474 void __iomem *base, u8 flags);
476 static inline void rockchip_register_softrst(struct device_node *np,
477 unsigned int num_regs,
478 void __iomem *base, u8 flags)