mfd: tps65217: Tell regmap what registers are valid
[linux-2.6-block.git] / drivers / mfd / ti_am335x_tscadc.c
CommitLineData
01636eb9
PR
1/*
2 * TI Touch Screen / ADC MFD driver
3 *
4 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/module.h>
01636eb9
PR
17#include <linux/slab.h>
18#include <linux/err.h>
19#include <linux/io.h>
20#include <linux/clk.h>
21#include <linux/regmap.h>
22#include <linux/mfd/core.h>
23#include <linux/pm_runtime.h>
a6543a1c
PR
24#include <linux/of.h>
25#include <linux/of_device.h>
7ca6740c 26#include <linux/sched.h>
01636eb9
PR
27
28#include <linux/mfd/ti_am335x_tscadc.h>
29
30static unsigned int tscadc_readl(struct ti_tscadc_dev *tsadc, unsigned int reg)
31{
32 unsigned int val;
33
34 regmap_read(tsadc->regmap_tscadc, reg, &val);
35 return val;
36}
37
38static void tscadc_writel(struct ti_tscadc_dev *tsadc, unsigned int reg,
39 unsigned int val)
40{
41 regmap_write(tsadc->regmap_tscadc, reg, val);
42}
43
44static const struct regmap_config tscadc_regmap_config = {
45 .name = "ti_tscadc",
46 .reg_bits = 32,
47 .reg_stride = 4,
48 .val_bits = 32,
49};
50
7e170c6e 51void am335x_tsc_se_set_cache(struct ti_tscadc_dev *tsadc, u32 val)
abeccee4 52{
317b2099
SAS
53 unsigned long flags;
54
55 spin_lock_irqsave(&tsadc->reg_lock, flags);
6ac734d2 56 tsadc->reg_se_cache |= val;
7ca6740c
SAS
57 if (tsadc->adc_waiting)
58 wake_up(&tsadc->reg_se_wait);
59 else if (!tsadc->adc_in_use)
60 tscadc_writel(tsadc, REG_SE, val);
61
317b2099 62 spin_unlock_irqrestore(&tsadc->reg_lock, flags);
abeccee4 63}
7e170c6e
SAS
64EXPORT_SYMBOL_GPL(am335x_tsc_se_set_cache);
65
7ca6740c
SAS
66static void am335x_tscadc_need_adc(struct ti_tscadc_dev *tsadc)
67{
68 DEFINE_WAIT(wait);
69 u32 reg;
70
71 /*
72 * disable TSC steps so it does not run while the ADC is using it. If
73 * write 0 while it is running (it just started or was already running)
74 * then it completes all steps that were enabled and stops then.
75 */
76 tscadc_writel(tsadc, REG_SE, 0);
77 reg = tscadc_readl(tsadc, REG_ADCFSM);
78 if (reg & SEQ_STATUS) {
79 tsadc->adc_waiting = true;
80 prepare_to_wait(&tsadc->reg_se_wait, &wait,
81 TASK_UNINTERRUPTIBLE);
82 spin_unlock_irq(&tsadc->reg_lock);
83
84 schedule();
85
86 spin_lock_irq(&tsadc->reg_lock);
87 finish_wait(&tsadc->reg_se_wait, &wait);
88
89 reg = tscadc_readl(tsadc, REG_ADCFSM);
90 WARN_ON(reg & SEQ_STATUS);
91 tsadc->adc_waiting = false;
92 }
93 tsadc->adc_in_use = true;
94}
95
7e170c6e 96void am335x_tsc_se_set_once(struct ti_tscadc_dev *tsadc, u32 val)
7ca6740c
SAS
97{
98 spin_lock_irq(&tsadc->reg_lock);
6ac734d2 99 tsadc->reg_se_cache |= val;
7ca6740c
SAS
100 am335x_tscadc_need_adc(tsadc);
101
102 tscadc_writel(tsadc, REG_SE, val);
103 spin_unlock_irq(&tsadc->reg_lock);
104}
105EXPORT_SYMBOL_GPL(am335x_tsc_se_set_once);
106
107void am335x_tsc_se_adc_done(struct ti_tscadc_dev *tsadc)
7e170c6e
SAS
108{
109 unsigned long flags;
110
111 spin_lock_irqsave(&tsadc->reg_lock, flags);
7ca6740c
SAS
112 tsadc->adc_in_use = false;
113 tscadc_writel(tsadc, REG_SE, tsadc->reg_se_cache);
7e170c6e
SAS
114 spin_unlock_irqrestore(&tsadc->reg_lock, flags);
115}
7ca6740c 116EXPORT_SYMBOL_GPL(am335x_tsc_se_adc_done);
abeccee4
PR
117
118void am335x_tsc_se_clr(struct ti_tscadc_dev *tsadc, u32 val)
119{
317b2099
SAS
120 unsigned long flags;
121
122 spin_lock_irqsave(&tsadc->reg_lock, flags);
abeccee4 123 tsadc->reg_se_cache &= ~val;
7ca6740c 124 tscadc_writel(tsadc, REG_SE, tsadc->reg_se_cache);
317b2099 125 spin_unlock_irqrestore(&tsadc->reg_lock, flags);
abeccee4
PR
126}
127EXPORT_SYMBOL_GPL(am335x_tsc_se_clr);
128
01636eb9
PR
129static void tscadc_idle_config(struct ti_tscadc_dev *config)
130{
131 unsigned int idleconfig;
132
133 idleconfig = STEPCONFIG_YNN | STEPCONFIG_INM_ADCREFM |
134 STEPCONFIG_INP_ADCREFM | STEPCONFIG_YPN;
135
136 tscadc_writel(config, REG_IDLECONFIG, idleconfig);
137}
138
612b95cd 139static int ti_tscadc_probe(struct platform_device *pdev)
01636eb9
PR
140{
141 struct ti_tscadc_dev *tscadc;
142 struct resource *res;
143 struct clk *clk;
a6543a1c 144 struct device_node *node = pdev->dev.of_node;
2b99bafa 145 struct mfd_cell *cell;
18926ede
SAS
146 struct property *prop;
147 const __be32 *cur;
148 u32 val;
01636eb9 149 int err, ctrl;
e90f8754 150 int clock_rate;
a6543a1c 151 int tsc_wires = 0, adc_channels = 0, total_channels;
18926ede 152 int readouts = 0;
01636eb9 153
9e5775f3
SAS
154 if (!pdev->dev.of_node) {
155 dev_err(&pdev->dev, "Could not find valid DT data.\n");
01636eb9
PR
156 return -EINVAL;
157 }
158
9e5775f3
SAS
159 node = of_get_child_by_name(pdev->dev.of_node, "tsc");
160 of_property_read_u32(node, "ti,wires", &tsc_wires);
18926ede 161 of_property_read_u32(node, "ti,coordiante-readouts", &readouts);
a6543a1c 162
9e5775f3 163 node = of_get_child_by_name(pdev->dev.of_node, "adc");
18926ede
SAS
164 of_property_for_each_u32(node, "ti,adc-channels", prop, cur, val) {
165 adc_channels++;
166 if (val > 7) {
167 dev_err(&pdev->dev, " PIN numbers are 0..7 (not %d)\n",
168 val);
169 return -EINVAL;
170 }
171 }
5e53a69b 172 total_channels = tsc_wires + adc_channels;
5e53a69b
PR
173 if (total_channels > 8) {
174 dev_err(&pdev->dev, "Number of i/p channels more than 8\n");
175 return -EINVAL;
176 }
24d5c82f
PA
177 if (total_channels == 0) {
178 dev_err(&pdev->dev, "Need atleast one channel.\n");
179 return -EINVAL;
180 }
2b99bafa 181
18926ede
SAS
182 if (readouts * 2 + 2 + adc_channels > 16) {
183 dev_err(&pdev->dev, "Too many step configurations requested\n");
184 return -EINVAL;
185 }
186
01636eb9
PR
187 /* Allocate memory for device */
188 tscadc = devm_kzalloc(&pdev->dev,
189 sizeof(struct ti_tscadc_dev), GFP_KERNEL);
190 if (!tscadc) {
191 dev_err(&pdev->dev, "failed to allocate memory.\n");
192 return -ENOMEM;
193 }
194 tscadc->dev = &pdev->dev;
3c39c9c6
PR
195
196 err = platform_get_irq(pdev, 0);
197 if (err < 0) {
198 dev_err(&pdev->dev, "no irq ID is specified.\n");
199 goto ret;
200 } else
201 tscadc->irq = err;
01636eb9 202
924ff918
JH
203 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
204 tscadc->tscadc_base = devm_ioremap_resource(&pdev->dev, res);
205 if (IS_ERR(tscadc->tscadc_base))
206 return PTR_ERR(tscadc->tscadc_base);
01636eb9
PR
207
208 tscadc->regmap_tscadc = devm_regmap_init_mmio(&pdev->dev,
209 tscadc->tscadc_base, &tscadc_regmap_config);
210 if (IS_ERR(tscadc->regmap_tscadc)) {
211 dev_err(&pdev->dev, "regmap init failed\n");
212 err = PTR_ERR(tscadc->regmap_tscadc);
3c39c9c6 213 goto ret;
01636eb9
PR
214 }
215
abeccee4 216 spin_lock_init(&tscadc->reg_lock);
7ca6740c
SAS
217 init_waitqueue_head(&tscadc->reg_se_wait);
218
01636eb9
PR
219 pm_runtime_enable(&pdev->dev);
220 pm_runtime_get_sync(&pdev->dev);
221
222 /*
223 * The TSC_ADC_Subsystem has 2 clock domains
224 * OCP_CLK and ADC_CLK.
225 * The ADC clock is expected to run at target of 3MHz,
226 * and expected to capture 12-bit data at a rate of 200 KSPS.
227 * The TSC_ADC_SS controller design assumes the OCP clock is
228 * at least 6x faster than the ADC clock.
229 */
230 clk = clk_get(&pdev->dev, "adc_tsc_fck");
231 if (IS_ERR(clk)) {
232 dev_err(&pdev->dev, "failed to get TSC fck\n");
233 err = PTR_ERR(clk);
234 goto err_disable_clk;
235 }
236 clock_rate = clk_get_rate(clk);
237 clk_put(clk);
e90f8754 238 tscadc->clk_div = clock_rate / ADC_CLK;
efe3126a 239
01636eb9 240 /* TSCADC_CLKDIV needs to be configured to the value minus 1 */
e90f8754
MK
241 tscadc->clk_div--;
242 tscadc_writel(tscadc, REG_CLKDIV, tscadc->clk_div);
01636eb9
PR
243
244 /* Set the control register bits */
245 ctrl = CNTRLREG_STEPCONFIGWRT |
b5f8b763
PR
246 CNTRLREG_STEPID;
247 if (tsc_wires > 0)
248 ctrl |= CNTRLREG_4WIRE | CNTRLREG_TSCENB;
01636eb9
PR
249 tscadc_writel(tscadc, REG_CTRL, ctrl);
250
251 /* Set register bits for Idle Config Mode */
b5f8b763
PR
252 if (tsc_wires > 0)
253 tscadc_idle_config(tscadc);
01636eb9
PR
254
255 /* Enable the TSC module enable bit */
256 ctrl = tscadc_readl(tscadc, REG_CTRL);
257 ctrl |= CNTRLREG_TSCSSENB;
258 tscadc_writel(tscadc, REG_CTRL, ctrl);
259
24d5c82f
PA
260 tscadc->used_cells = 0;
261 tscadc->tsc_cell = -1;
262 tscadc->adc_cell = -1;
263
2b99bafa 264 /* TSC Cell */
24d5c82f
PA
265 if (tsc_wires > 0) {
266 tscadc->tsc_cell = tscadc->used_cells;
267 cell = &tscadc->cells[tscadc->used_cells++];
5f184e63 268 cell->name = "TI-am335x-tsc";
24d5c82f
PA
269 cell->of_compatible = "ti,am3359-tsc";
270 cell->platform_data = &tscadc;
271 cell->pdata_size = sizeof(tscadc);
272 }
2b99bafa 273
5e53a69b 274 /* ADC Cell */
24d5c82f
PA
275 if (adc_channels > 0) {
276 tscadc->adc_cell = tscadc->used_cells;
277 cell = &tscadc->cells[tscadc->used_cells++];
9f99928f 278 cell->name = "TI-am335x-adc";
24d5c82f
PA
279 cell->of_compatible = "ti,am3359-adc";
280 cell->platform_data = &tscadc;
281 cell->pdata_size = sizeof(tscadc);
282 }
5e53a69b 283
01636eb9 284 err = mfd_add_devices(&pdev->dev, pdev->id, tscadc->cells,
24d5c82f 285 tscadc->used_cells, NULL, 0, NULL);
01636eb9
PR
286 if (err < 0)
287 goto err_disable_clk;
288
289 device_init_wakeup(&pdev->dev, true);
290 platform_set_drvdata(pdev, tscadc);
01636eb9
PR
291 return 0;
292
293err_disable_clk:
294 pm_runtime_put_sync(&pdev->dev);
295 pm_runtime_disable(&pdev->dev);
3c39c9c6 296ret:
01636eb9
PR
297 return err;
298}
299
612b95cd 300static int ti_tscadc_remove(struct platform_device *pdev)
01636eb9
PR
301{
302 struct ti_tscadc_dev *tscadc = platform_get_drvdata(pdev);
303
304 tscadc_writel(tscadc, REG_SE, 0x00);
305
306 pm_runtime_put_sync(&pdev->dev);
307 pm_runtime_disable(&pdev->dev);
308
309 mfd_remove_devices(tscadc->dev);
310
311 return 0;
312}
313
314#ifdef CONFIG_PM
315static int tscadc_suspend(struct device *dev)
316{
317 struct ti_tscadc_dev *tscadc_dev = dev_get_drvdata(dev);
318
319 tscadc_writel(tscadc_dev, REG_SE, 0x00);
320 pm_runtime_put_sync(dev);
321
322 return 0;
323}
324
325static int tscadc_resume(struct device *dev)
326{
327 struct ti_tscadc_dev *tscadc_dev = dev_get_drvdata(dev);
328 unsigned int restore, ctrl;
329
330 pm_runtime_get_sync(dev);
331
332 /* context restore */
b5f8b763
PR
333 ctrl = CNTRLREG_STEPCONFIGWRT | CNTRLREG_STEPID;
334 if (tscadc_dev->tsc_cell != -1)
335 ctrl |= CNTRLREG_TSCENB | CNTRLREG_4WIRE;
01636eb9 336 tscadc_writel(tscadc_dev, REG_CTRL, ctrl);
b5f8b763
PR
337
338 if (tscadc_dev->tsc_cell != -1)
339 tscadc_idle_config(tscadc_dev);
01636eb9
PR
340 restore = tscadc_readl(tscadc_dev, REG_CTRL);
341 tscadc_writel(tscadc_dev, REG_CTRL,
342 (restore | CNTRLREG_TSCSSENB));
343
e90f8754
MK
344 tscadc_writel(tscadc_dev, REG_CLKDIV, tscadc_dev->clk_div);
345
01636eb9
PR
346 return 0;
347}
348
349static const struct dev_pm_ops tscadc_pm_ops = {
350 .suspend = tscadc_suspend,
351 .resume = tscadc_resume,
352};
353#define TSCADC_PM_OPS (&tscadc_pm_ops)
354#else
355#define TSCADC_PM_OPS NULL
356#endif
357
a6543a1c
PR
358static const struct of_device_id ti_tscadc_dt_ids[] = {
359 { .compatible = "ti,am3359-tscadc", },
360 { }
361};
362MODULE_DEVICE_TABLE(of, ti_tscadc_dt_ids);
363
01636eb9
PR
364static struct platform_driver ti_tscadc_driver = {
365 .driver = {
a6543a1c 366 .name = "ti_am3359-tscadc",
01636eb9
PR
367 .owner = THIS_MODULE,
368 .pm = TSCADC_PM_OPS,
131221bc 369 .of_match_table = ti_tscadc_dt_ids,
01636eb9
PR
370 },
371 .probe = ti_tscadc_probe,
612b95cd 372 .remove = ti_tscadc_remove,
01636eb9
PR
373
374};
375
376module_platform_driver(ti_tscadc_driver);
377
378MODULE_DESCRIPTION("TI touchscreen / ADC MFD controller driver");
379MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
380MODULE_LICENSE("GPL");