Merge remote-tracking branch 'clk/clk-next'
[deliverable/linux.git] / drivers / clk / clk-max77686.c
CommitLineData
73118e61 1/*
8ad313fe 2 * clk-max77686.c - Clock driver for Maxim 77686/MAX77802
73118e61
JL
3 *
4 * Copyright (C) 2012 Samsung Electornics
5 * Jonghwa Lee <jonghwa3.lee@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <linux/kernel.h>
24#include <linux/slab.h>
25#include <linux/err.h>
a0c4dfee 26#include <linux/module.h>
73118e61 27#include <linux/platform_device.h>
5a227cd1 28#include <linux/mfd/max77620.h>
73118e61
JL
29#include <linux/mfd/max77686.h>
30#include <linux/mfd/max77686-private.h>
31#include <linux/clk-provider.h>
32#include <linux/mutex.h>
33#include <linux/clkdev.h>
8ad313fe
LD
34#include <linux/of.h>
35#include <linux/regmap.h>
73118e61 36
a8a76f56 37#include <dt-bindings/clock/maxim,max77686.h>
8ad313fe 38#include <dt-bindings/clock/maxim,max77802.h>
5a227cd1 39#include <dt-bindings/clock/maxim,max77620.h>
73118e61 40
8ad313fe
LD
41#define MAX77802_CLOCK_LOW_JITTER_SHIFT 0x3
42
43enum max77686_chip_name {
44 CHIP_MAX77686,
45 CHIP_MAX77802,
5a227cd1 46 CHIP_MAX77620,
8ad313fe
LD
47};
48
49struct max77686_hw_clk_info {
50 const char *name;
51 u32 clk_reg;
52 u32 clk_enable_mask;
53 u32 flags;
54};
55
56struct max77686_clk_init_data {
57 struct regmap *regmap;
58 struct clk_hw hw;
59 struct clk_init_data clk_idata;
60 const struct max77686_hw_clk_info *clk_info;
61};
62
63struct max77686_clk_driver_data {
64 enum max77686_chip_name chip;
8ad313fe 65 struct max77686_clk_init_data *max_clk_data;
9b4cac33 66 size_t num_clks;
8ad313fe
LD
67};
68
69static const struct
70max77686_hw_clk_info max77686_hw_clks_info[MAX77686_CLKS_NUM] = {
73118e61
JL
71 [MAX77686_CLK_AP] = {
72 .name = "32khz_ap",
8ad313fe
LD
73 .clk_reg = MAX77686_REG_32KHZ,
74 .clk_enable_mask = BIT(MAX77686_CLK_AP),
73118e61
JL
75 },
76 [MAX77686_CLK_CP] = {
77 .name = "32khz_cp",
8ad313fe
LD
78 .clk_reg = MAX77686_REG_32KHZ,
79 .clk_enable_mask = BIT(MAX77686_CLK_CP),
73118e61
JL
80 },
81 [MAX77686_CLK_PMIC] = {
82 .name = "32khz_pmic",
8ad313fe
LD
83 .clk_reg = MAX77686_REG_32KHZ,
84 .clk_enable_mask = BIT(MAX77686_CLK_PMIC),
85 },
86};
87
88static const struct
89max77686_hw_clk_info max77802_hw_clks_info[MAX77802_CLKS_NUM] = {
90 [MAX77802_CLK_32K_AP] = {
91 .name = "32khz_ap",
92 .clk_reg = MAX77802_REG_32KHZ,
93 .clk_enable_mask = BIT(MAX77802_CLK_32K_AP),
94 },
95 [MAX77802_CLK_32K_CP] = {
96 .name = "32khz_cp",
97 .clk_reg = MAX77802_REG_32KHZ,
98 .clk_enable_mask = BIT(MAX77802_CLK_32K_CP),
73118e61
JL
99 },
100};
101
5a227cd1
LD
102static const struct
103max77686_hw_clk_info max77620_hw_clks_info[MAX77620_CLKS_NUM] = {
104 [MAX77620_CLK_32K_OUT0] = {
105 .name = "32khz_out0",
106 .clk_reg = MAX77620_REG_CNFG1_32K,
107 .clk_enable_mask = MAX77620_CNFG1_32K_OUT0_EN,
108 },
109};
110
8ad313fe
LD
111static struct max77686_clk_init_data *to_max77686_clk_init_data(
112 struct clk_hw *hw)
113{
114 return container_of(hw, struct max77686_clk_init_data, hw);
115}
116
117static int max77686_clk_prepare(struct clk_hw *hw)
118{
119 struct max77686_clk_init_data *max77686 = to_max77686_clk_init_data(hw);
120
121 return regmap_update_bits(max77686->regmap, max77686->clk_info->clk_reg,
122 max77686->clk_info->clk_enable_mask,
123 max77686->clk_info->clk_enable_mask);
124}
125
126static void max77686_clk_unprepare(struct clk_hw *hw)
127{
128 struct max77686_clk_init_data *max77686 = to_max77686_clk_init_data(hw);
129
130 regmap_update_bits(max77686->regmap, max77686->clk_info->clk_reg,
131 max77686->clk_info->clk_enable_mask,
132 ~max77686->clk_info->clk_enable_mask);
133}
134
135static int max77686_clk_is_prepared(struct clk_hw *hw)
136{
137 struct max77686_clk_init_data *max77686 = to_max77686_clk_init_data(hw);
138 int ret;
139 u32 val;
140
141 ret = regmap_read(max77686->regmap, max77686->clk_info->clk_reg, &val);
142
143 if (ret < 0)
144 return -EINVAL;
145
146 return val & max77686->clk_info->clk_enable_mask;
147}
148
149static unsigned long max77686_recalc_rate(struct clk_hw *hw,
150 unsigned long parent_rate)
151{
152 return 32768;
153}
154
155static struct clk_ops max77686_clk_ops = {
156 .prepare = max77686_clk_prepare,
157 .unprepare = max77686_clk_unprepare,
158 .is_prepared = max77686_clk_is_prepared,
159 .recalc_rate = max77686_recalc_rate,
160};
161
9b4cac33
SB
162static struct clk_hw *
163of_clk_max77686_get(struct of_phandle_args *clkspec, void *data)
164{
165 struct max77686_clk_driver_data *drv_data = data;
166 unsigned int idx = clkspec->args[0];
167
168 if (idx >= drv_data->num_clks) {
169 pr_err("%s: invalid index %u\n", __func__, idx);
170 return ERR_PTR(-EINVAL);
171 }
172
173 return &drv_data->max_clk_data[idx].hw;
174}
175
018ae93f 176static int max77686_clk_probe(struct platform_device *pdev)
73118e61 177{
8ad313fe
LD
178 struct device *dev = &pdev->dev;
179 struct device *parent = dev->parent;
180 const struct platform_device_id *id = platform_get_device_id(pdev);
181 struct max77686_clk_driver_data *drv_data;
182 const struct max77686_hw_clk_info *hw_clks;
183 struct regmap *regmap;
184 int i, ret, num_clks;
185
186 drv_data = devm_kzalloc(dev, sizeof(*drv_data), GFP_KERNEL);
187 if (!drv_data)
188 return -ENOMEM;
189
190 regmap = dev_get_regmap(parent, NULL);
191 if (!regmap) {
192 dev_err(dev, "Failed to get rtc regmap\n");
193 return -ENODEV;
194 }
195
196 drv_data->chip = id->driver_data;
197
198 switch (drv_data->chip) {
199 case CHIP_MAX77686:
200 num_clks = MAX77686_CLKS_NUM;
201 hw_clks = max77686_hw_clks_info;
202 break;
203
204 case CHIP_MAX77802:
205 num_clks = MAX77802_CLKS_NUM;
206 hw_clks = max77802_hw_clks_info;
207 break;
208
5a227cd1
LD
209 case CHIP_MAX77620:
210 num_clks = MAX77620_CLKS_NUM;
211 hw_clks = max77620_hw_clks_info;
212 break;
213
8ad313fe
LD
214 default:
215 dev_err(dev, "Unknown Chip ID\n");
216 return -EINVAL;
217 }
218
219 drv_data->max_clk_data = devm_kcalloc(dev, num_clks,
220 sizeof(*drv_data->max_clk_data),
221 GFP_KERNEL);
222 if (!drv_data->max_clk_data)
223 return -ENOMEM;
224
8ad313fe
LD
225 for (i = 0; i < num_clks; i++) {
226 struct max77686_clk_init_data *max_clk_data;
8ad313fe
LD
227 const char *clk_name;
228
229 max_clk_data = &drv_data->max_clk_data[i];
230
231 max_clk_data->regmap = regmap;
232 max_clk_data->clk_info = &hw_clks[i];
233 max_clk_data->clk_idata.flags = hw_clks[i].flags;
234 max_clk_data->clk_idata.ops = &max77686_clk_ops;
235
236 if (parent->of_node &&
237 !of_property_read_string_index(parent->of_node,
238 "clock-output-names",
239 i, &clk_name))
240 max_clk_data->clk_idata.name = clk_name;
241 else
242 max_clk_data->clk_idata.name = hw_clks[i].name;
243
244 max_clk_data->hw.init = &max_clk_data->clk_idata;
245
9b4cac33
SB
246 ret = devm_clk_hw_register(dev, &max_clk_data->hw);
247 if (ret) {
8ad313fe
LD
248 dev_err(dev, "Failed to clock register: %d\n", ret);
249 return ret;
250 }
251
9b4cac33
SB
252 ret = clk_hw_register_clkdev(&max_clk_data->hw,
253 max_clk_data->clk_idata.name, NULL);
8ad313fe
LD
254 if (ret < 0) {
255 dev_err(dev, "Failed to clkdev register: %d\n", ret);
256 return ret;
257 }
8ad313fe
LD
258 }
259
8ad313fe 260 if (parent->of_node) {
9b4cac33
SB
261 ret = of_clk_add_hw_provider(parent->of_node, of_clk_max77686_get,
262 drv_data);
8ad313fe
LD
263
264 if (ret < 0) {
265 dev_err(dev, "Failed to register OF clock provider: %d\n",
266 ret);
267 return ret;
268 }
269 }
270
271 /* MAX77802: Enable low-jitter mode on the 32khz clocks. */
272 if (drv_data->chip == CHIP_MAX77802) {
273 ret = regmap_update_bits(regmap, MAX77802_REG_32KHZ,
274 1 << MAX77802_CLOCK_LOW_JITTER_SHIFT,
275 1 << MAX77802_CLOCK_LOW_JITTER_SHIFT);
276 if (ret < 0) {
277 dev_err(dev, "Failed to config low-jitter: %d\n", ret);
278 goto remove_of_clk_provider;
279 }
280 }
281
282 return 0;
283
284remove_of_clk_provider:
285 if (parent->of_node)
286 of_clk_del_provider(parent->of_node);
287
288 return ret;
73118e61
JL
289}
290
1fc7ad5d 291static int max77686_clk_remove(struct platform_device *pdev)
73118e61 292{
8ad313fe
LD
293 struct device *parent = pdev->dev.parent;
294
295 if (parent->of_node)
296 of_clk_del_provider(parent->of_node);
297
298 return 0;
73118e61
JL
299}
300
301static const struct platform_device_id max77686_clk_id[] = {
8ad313fe
LD
302 { "max77686-clk", .driver_data = CHIP_MAX77686, },
303 { "max77802-clk", .driver_data = CHIP_MAX77802, },
5a227cd1 304 { "max77620-clock", .driver_data = CHIP_MAX77620, },
8ad313fe 305 {},
73118e61
JL
306};
307MODULE_DEVICE_TABLE(platform, max77686_clk_id);
308
309static struct platform_driver max77686_clk_driver = {
310 .driver = {
311 .name = "max77686-clk",
73118e61
JL
312 },
313 .probe = max77686_clk_probe,
f9cfa630 314 .remove = max77686_clk_remove,
73118e61
JL
315 .id_table = max77686_clk_id,
316};
317
1887d693 318module_platform_driver(max77686_clk_driver);
73118e61
JL
319
320MODULE_DESCRIPTION("MAXIM 77686 Clock Driver");
321MODULE_AUTHOR("Jonghwa Lee <jonghwa3.lee@samsung.com>");
322MODULE_LICENSE("GPL");
This page took 0.213728 seconds and 5 git commands to generate.