blob: 23ffd89c4023bb918e896b6017f21a4bafc067e3 [file] [log] [blame]
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +05301/*
2 * clk-s2mps11.c - Clock driver for S2MPS11.
3 *
4 * Copyright (C) 2013 Samsung Electornics
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/err.h>
24#include <linux/of.h>
25#include <linux/clkdev.h>
26#include <linux/regmap.h>
27#include <linux/clk-provider.h>
28#include <linux/platform_device.h>
29#include <linux/mfd/samsung/s2mps11.h>
Tushar Beherae8e6b842013-12-26 15:48:59 +053030#include <linux/mfd/samsung/s5m8767.h>
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +053031#include <linux/mfd/samsung/core.h>
32
33#define s2mps11_name(a) (a->hw.init->name)
34
35static struct clk **clk_table;
36static struct clk_onecell_data clk_data;
37
38enum {
39 S2MPS11_CLK_AP = 0,
40 S2MPS11_CLK_CP,
41 S2MPS11_CLK_BT,
42 S2MPS11_CLKS_NUM,
43};
44
45struct s2mps11_clk {
46 struct sec_pmic_dev *iodev;
Krzysztof Kozlowskibf416bd2014-05-21 13:22:59 +020047 struct device_node *clk_np;
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +053048 struct clk_hw hw;
49 struct clk *clk;
50 struct clk_lookup *lookup;
51 u32 mask;
52 bool enabled;
Tushar Behera64d64c32013-12-26 15:48:58 +053053 unsigned int reg;
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +053054};
55
56static struct s2mps11_clk *to_s2mps11_clk(struct clk_hw *hw)
57{
58 return container_of(hw, struct s2mps11_clk, hw);
59}
60
61static int s2mps11_clk_prepare(struct clk_hw *hw)
62{
63 struct s2mps11_clk *s2mps11 = to_s2mps11_clk(hw);
64 int ret;
65
Krzysztof Kozlowski1b1ccee2013-12-11 15:07:43 +010066 ret = regmap_update_bits(s2mps11->iodev->regmap_pmic,
Tushar Behera64d64c32013-12-26 15:48:58 +053067 s2mps11->reg,
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +053068 s2mps11->mask, s2mps11->mask);
69 if (!ret)
70 s2mps11->enabled = true;
71
72 return ret;
73}
74
75static void s2mps11_clk_unprepare(struct clk_hw *hw)
76{
77 struct s2mps11_clk *s2mps11 = to_s2mps11_clk(hw);
78 int ret;
79
Tushar Behera64d64c32013-12-26 15:48:58 +053080 ret = regmap_update_bits(s2mps11->iodev->regmap_pmic, s2mps11->reg,
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +053081 s2mps11->mask, ~s2mps11->mask);
82
83 if (!ret)
84 s2mps11->enabled = false;
85}
86
87static int s2mps11_clk_is_enabled(struct clk_hw *hw)
88{
89 struct s2mps11_clk *s2mps11 = to_s2mps11_clk(hw);
90
91 return s2mps11->enabled;
92}
93
94static unsigned long s2mps11_clk_recalc_rate(struct clk_hw *hw,
95 unsigned long parent_rate)
96{
97 struct s2mps11_clk *s2mps11 = to_s2mps11_clk(hw);
98 if (s2mps11->enabled)
99 return 32768;
100 else
101 return 0;
102}
103
104static struct clk_ops s2mps11_clk_ops = {
105 .prepare = s2mps11_clk_prepare,
106 .unprepare = s2mps11_clk_unprepare,
107 .is_enabled = s2mps11_clk_is_enabled,
108 .recalc_rate = s2mps11_clk_recalc_rate,
109};
110
111static struct clk_init_data s2mps11_clks_init[S2MPS11_CLKS_NUM] = {
112 [S2MPS11_CLK_AP] = {
113 .name = "s2mps11_ap",
114 .ops = &s2mps11_clk_ops,
115 .flags = CLK_IS_ROOT,
116 },
117 [S2MPS11_CLK_CP] = {
118 .name = "s2mps11_cp",
119 .ops = &s2mps11_clk_ops,
120 .flags = CLK_IS_ROOT,
121 },
122 [S2MPS11_CLK_BT] = {
123 .name = "s2mps11_bt",
124 .ops = &s2mps11_clk_ops,
125 .flags = CLK_IS_ROOT,
126 },
127};
128
129static struct device_node *s2mps11_clk_parse_dt(struct platform_device *pdev)
130{
131 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
132 struct device_node *clk_np;
133 int i;
134
135 if (!iodev->dev->of_node)
Krzysztof Kozlowski238e1402014-03-21 13:18:17 +0100136 return ERR_PTR(-EINVAL);
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530137
Krzysztof Kozlowskiafbd1a02014-03-21 13:39:20 +0100138 clk_np = of_get_child_by_name(iodev->dev->of_node, "clocks");
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530139 if (!clk_np) {
140 dev_err(&pdev->dev, "could not find clock sub-node\n");
141 return ERR_PTR(-EINVAL);
142 }
143
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530144 for (i = 0; i < S2MPS11_CLKS_NUM; i++)
145 of_property_read_string_index(clk_np, "clock-output-names", i,
146 &s2mps11_clks_init[i].name);
147
148 return clk_np;
149}
150
151static int s2mps11_clk_probe(struct platform_device *pdev)
152{
153 struct sec_pmic_dev *iodev = dev_get_drvdata(pdev->dev.parent);
154 struct s2mps11_clk *s2mps11_clks, *s2mps11_clk;
Tushar Behera64d64c32013-12-26 15:48:58 +0530155 unsigned int s2mps11_reg;
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530156 int i, ret = 0;
157 u32 val;
158
159 s2mps11_clks = devm_kzalloc(&pdev->dev, sizeof(*s2mps11_clk) *
160 S2MPS11_CLKS_NUM, GFP_KERNEL);
161 if (!s2mps11_clks)
162 return -ENOMEM;
163
164 s2mps11_clk = s2mps11_clks;
165
Krzysztof Kozlowski70024832014-05-21 13:23:00 +0200166 clk_table = devm_kzalloc(&pdev->dev, sizeof(struct clk *) *
167 S2MPS11_CLKS_NUM, GFP_KERNEL);
168 if (!clk_table)
169 return -ENOMEM;
170
Krzysztof Kozlowskibf416bd2014-05-21 13:22:59 +0200171 /* Store clocks of_node in first element of s2mps11_clks array */
172 s2mps11_clks->clk_np = s2mps11_clk_parse_dt(pdev);
173 if (IS_ERR(s2mps11_clks->clk_np))
174 return PTR_ERR(s2mps11_clks->clk_np);
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530175
Tushar Behera64d64c32013-12-26 15:48:58 +0530176 switch(platform_get_device_id(pdev)->driver_data) {
177 case S2MPS11X:
178 s2mps11_reg = S2MPS11_REG_RTC_CTRL;
179 break;
Tushar Beherae8e6b842013-12-26 15:48:59 +0530180 case S5M8767X:
181 s2mps11_reg = S5M8767_REG_CTRL1;
182 break;
Tushar Behera64d64c32013-12-26 15:48:58 +0530183 default:
184 dev_err(&pdev->dev, "Invalid device type\n");
185 return -EINVAL;
186 };
187
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530188 for (i = 0; i < S2MPS11_CLKS_NUM; i++, s2mps11_clk++) {
189 s2mps11_clk->iodev = iodev;
190 s2mps11_clk->hw.init = &s2mps11_clks_init[i];
191 s2mps11_clk->mask = 1 << i;
Tushar Behera64d64c32013-12-26 15:48:58 +0530192 s2mps11_clk->reg = s2mps11_reg;
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530193
Krzysztof Kozlowski1b1ccee2013-12-11 15:07:43 +0100194 ret = regmap_read(s2mps11_clk->iodev->regmap_pmic,
Tushar Behera64d64c32013-12-26 15:48:58 +0530195 s2mps11_clk->reg, &val);
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530196 if (ret < 0)
197 goto err_reg;
198
199 s2mps11_clk->enabled = val & s2mps11_clk->mask;
200
201 s2mps11_clk->clk = devm_clk_register(&pdev->dev,
202 &s2mps11_clk->hw);
203 if (IS_ERR(s2mps11_clk->clk)) {
204 dev_err(&pdev->dev, "Fail to register : %s\n",
205 s2mps11_name(s2mps11_clk));
206 ret = PTR_ERR(s2mps11_clk->clk);
207 goto err_reg;
208 }
209
210 s2mps11_clk->lookup = devm_kzalloc(&pdev->dev,
211 sizeof(struct clk_lookup), GFP_KERNEL);
212 if (!s2mps11_clk->lookup) {
213 ret = -ENOMEM;
214 goto err_lup;
215 }
216
217 s2mps11_clk->lookup->con_id = s2mps11_name(s2mps11_clk);
218 s2mps11_clk->lookup->clk = s2mps11_clk->clk;
219
220 clkdev_add(s2mps11_clk->lookup);
221 }
222
Krzysztof Kozlowski70024832014-05-21 13:23:00 +0200223 for (i = 0; i < S2MPS11_CLKS_NUM; i++)
224 clk_table[i] = s2mps11_clks[i].clk;
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530225
Krzysztof Kozlowski70024832014-05-21 13:23:00 +0200226 clk_data.clks = clk_table;
227 clk_data.clk_num = S2MPS11_CLKS_NUM;
228 of_clk_add_provider(s2mps11_clks->clk_np, of_clk_src_onecell_get,
229 &clk_data);
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530230
231 platform_set_drvdata(pdev, s2mps11_clks);
232
233 return ret;
234err_lup:
235 devm_clk_unregister(&pdev->dev, s2mps11_clk->clk);
236err_reg:
237 while (s2mps11_clk > s2mps11_clks) {
238 if (s2mps11_clk->lookup) {
239 clkdev_drop(s2mps11_clk->lookup);
240 devm_clk_unregister(&pdev->dev, s2mps11_clk->clk);
241 }
242 s2mps11_clk--;
243 }
244
245 return ret;
246}
247
248static int s2mps11_clk_remove(struct platform_device *pdev)
249{
250 struct s2mps11_clk *s2mps11_clks = platform_get_drvdata(pdev);
251 int i;
252
Krzysztof Kozlowskibf416bd2014-05-21 13:22:59 +0200253 of_clk_del_provider(s2mps11_clks[0].clk_np);
254 /* Drop the reference obtained in s2mps11_clk_parse_dt */
255 of_node_put(s2mps11_clks[0].clk_np);
256
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530257 for (i = 0; i < S2MPS11_CLKS_NUM; i++)
258 clkdev_drop(s2mps11_clks[i].lookup);
259
260 return 0;
261}
262
263static const struct platform_device_id s2mps11_clk_id[] = {
Tushar Behera64d64c32013-12-26 15:48:58 +0530264 { "s2mps11-clk", S2MPS11X},
Tushar Beherae8e6b842013-12-26 15:48:59 +0530265 { "s5m8767-clk", S5M8767X},
Yadwinder Singh Brar7cc560d2013-07-07 17:14:20 +0530266 { },
267};
268MODULE_DEVICE_TABLE(platform, s2mps11_clk_id);
269
270static struct platform_driver s2mps11_clk_driver = {
271 .driver = {
272 .name = "s2mps11-clk",
273 .owner = THIS_MODULE,
274 },
275 .probe = s2mps11_clk_probe,
276 .remove = s2mps11_clk_remove,
277 .id_table = s2mps11_clk_id,
278};
279
280static int __init s2mps11_clk_init(void)
281{
282 return platform_driver_register(&s2mps11_clk_driver);
283}
284subsys_initcall(s2mps11_clk_init);
285
286static void __init s2mps11_clk_cleanup(void)
287{
288 platform_driver_unregister(&s2mps11_clk_driver);
289}
290module_exit(s2mps11_clk_cleanup);
291
292MODULE_DESCRIPTION("S2MPS11 Clock Driver");
293MODULE_AUTHOR("Yadwinder Singh Brar <yadi.brar@samsung.com>");
294MODULE_LICENSE("GPL");