2 * Copyright (c) 2014 MediaTek Inc.
3 * Author: James Liao <jamesjj.liao@mediatek.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #ifndef __DRV_CLK_MTK_H
16 #define __DRV_CLK_MTK_H
18 #include <linux/regmap.h>
19 #include <linux/bitops.h>
20 #include <linux/clk-provider.h>
23 struct clk_onecell_data
;
25 #define MAX_MUX_GATE_BIT 31
26 #define INVALID_MUX_GATE_BIT (MAX_MUX_GATE_BIT + 1)
28 #define MHZ (1000 * 1000)
30 struct mtk_fixed_clk
{
37 #define FIXED_CLK(_id, _name, _parent, _rate) { \
44 void mtk_clk_register_fixed_clks(const struct mtk_fixed_clk
*clks
,
45 int num
, struct clk_onecell_data
*clk_data
);
47 struct mtk_fixed_factor
{
50 const char *parent_name
;
55 #define FACTOR(_id, _name, _parent, _mult, _div) { \
58 .parent_name = _parent, \
63 void mtk_clk_register_factors(const struct mtk_fixed_factor
*clks
,
64 int num
, struct clk_onecell_data
*clk_data
);
66 struct mtk_composite
{
69 const char * const *parent_names
;
77 signed char mux_shift
;
78 signed char mux_width
;
79 signed char gate_shift
;
81 signed char divider_shift
;
82 signed char divider_width
;
84 signed char num_parents
;
88 * In case the rate change propagation to parent clocks is undesirable,
89 * this macro allows to specify the clock flags manually.
91 #define MUX_GATE_FLAGS(_id, _name, _parents, _reg, _shift, _width, \
96 .mux_shift = _shift, \
97 .mux_width = _width, \
99 .gate_shift = _gate, \
100 .divider_shift = -1, \
101 .parent_names = _parents, \
102 .num_parents = ARRAY_SIZE(_parents), \
107 * Unless necessary, all MUX_GATE clocks propagate rate changes to their
108 * parent clock by default.
110 #define MUX_GATE(_id, _name, _parents, _reg, _shift, _width, _gate) \
111 MUX_GATE_FLAGS(_id, _name, _parents, _reg, _shift, _width, \
112 _gate, CLK_SET_RATE_PARENT)
114 #define MUX(_id, _name, _parents, _reg, _shift, _width) { \
118 .mux_shift = _shift, \
119 .mux_width = _width, \
121 .divider_shift = -1, \
122 .parent_names = _parents, \
123 .num_parents = ARRAY_SIZE(_parents), \
124 .flags = CLK_SET_RATE_PARENT, \
127 #define DIV_GATE(_id, _name, _parent, _gate_reg, _gate_shift, _div_reg, \
128 _div_width, _div_shift) { \
132 .divider_reg = _div_reg, \
133 .divider_shift = _div_shift, \
134 .divider_width = _div_width, \
135 .gate_reg = _gate_reg, \
136 .gate_shift = _gate_shift, \
141 struct clk
*mtk_clk_register_composite(const struct mtk_composite
*mc
,
142 void __iomem
*base
, spinlock_t
*lock
);
144 void mtk_clk_register_composites(const struct mtk_composite
*mcs
,
145 int num
, void __iomem
*base
, spinlock_t
*lock
,
146 struct clk_onecell_data
*clk_data
);
148 struct mtk_gate_regs
{
157 const char *parent_name
;
158 const struct mtk_gate_regs
*regs
;
160 const struct clk_ops
*ops
;
163 int mtk_clk_register_gates(struct device_node
*node
,
164 const struct mtk_gate
*clks
, int num
,
165 struct clk_onecell_data
*clk_data
);
167 struct mtk_clk_divider
{
170 const char *parent_name
;
174 unsigned char div_shift
;
175 unsigned char div_width
;
176 unsigned char clk_divider_flags
;
177 const struct clk_div_table
*clk_div_table
;
180 #define DIV_ADJ(_id, _name, _parent, _reg, _shift, _width) { \
183 .parent_name = _parent, \
185 .div_shift = _shift, \
186 .div_width = _width, \
189 void mtk_clk_register_dividers(const struct mtk_clk_divider
*mcds
,
190 int num
, void __iomem
*base
, spinlock_t
*lock
,
191 struct clk_onecell_data
*clk_data
);
193 struct clk_onecell_data
*mtk_alloc_clk_data(unsigned int clk_num
);
195 #define HAVE_RST_BAR BIT(0)
196 #define PLL_AO BIT(1)
198 struct mtk_pll_div_table
{
203 struct mtk_pll_data
{
211 uint32_t tuner_en_reg
;
212 uint8_t tuner_en_bit
;
215 const struct clk_ops
*ops
;
221 const struct mtk_pll_div_table
*div_table
;
222 const char *parent_name
;
225 void mtk_clk_register_plls(struct device_node
*node
,
226 const struct mtk_pll_data
*plls
, int num_plls
,
227 struct clk_onecell_data
*clk_data
);
229 struct clk
*mtk_clk_register_ref2usb_tx(const char *name
,
230 const char *parent_name
, void __iomem
*reg
);
232 void mtk_register_reset_controller(struct device_node
*np
,
233 unsigned int num_regs
, int regofs
);
235 #endif /* __DRV_CLK_MTK_H */