2 * TI Touch Screen / ADC MFD driver
4 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
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.
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.
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/err.h>
20 #include <linux/clk.h>
21 #include <linux/regmap.h>
22 #include <linux/mfd/core.h>
23 #include <linux/pm_runtime.h>
25 #include <linux/of_device.h>
26 #include <linux/sched.h>
28 #include <linux/mfd/ti_am335x_tscadc.h>
30 static unsigned int tscadc_readl(struct ti_tscadc_dev
*tsadc
, unsigned int reg
)
34 regmap_read(tsadc
->regmap_tscadc
, reg
, &val
);
38 static void tscadc_writel(struct ti_tscadc_dev
*tsadc
, unsigned int reg
,
41 regmap_write(tsadc
->regmap_tscadc
, reg
, val
);
44 static const struct regmap_config tscadc_regmap_config
= {
51 void am335x_tsc_se_set_cache(struct ti_tscadc_dev
*tsadc
, u32 val
)
55 spin_lock_irqsave(&tsadc
->reg_lock
, flags
);
56 tsadc
->reg_se_cache
= val
;
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
);
62 spin_unlock_irqrestore(&tsadc
->reg_lock
, flags
);
64 EXPORT_SYMBOL_GPL(am335x_tsc_se_set_cache
);
66 static void am335x_tscadc_need_adc(struct ti_tscadc_dev
*tsadc
)
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.
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
);
86 spin_lock_irq(&tsadc
->reg_lock
);
87 finish_wait(&tsadc
->reg_se_wait
, &wait
);
89 reg
= tscadc_readl(tsadc
, REG_ADCFSM
);
90 WARN_ON(reg
& SEQ_STATUS
);
91 tsadc
->adc_waiting
= false;
93 tsadc
->adc_in_use
= true;
96 void am335x_tsc_se_set_once(struct ti_tscadc_dev
*tsadc
, u32 val
)
98 spin_lock_irq(&tsadc
->reg_lock
);
99 am335x_tscadc_need_adc(tsadc
);
101 tscadc_writel(tsadc
, REG_SE
, val
);
102 spin_unlock_irq(&tsadc
->reg_lock
);
104 EXPORT_SYMBOL_GPL(am335x_tsc_se_set_once
);
106 void am335x_tsc_se_adc_done(struct ti_tscadc_dev
*tsadc
)
110 spin_lock_irqsave(&tsadc
->reg_lock
, flags
);
111 tsadc
->adc_in_use
= false;
112 tscadc_writel(tsadc
, REG_SE
, tsadc
->reg_se_cache
);
113 spin_unlock_irqrestore(&tsadc
->reg_lock
, flags
);
115 EXPORT_SYMBOL_GPL(am335x_tsc_se_adc_done
);
117 void am335x_tsc_se_clr(struct ti_tscadc_dev
*tsadc
, u32 val
)
121 spin_lock_irqsave(&tsadc
->reg_lock
, flags
);
122 tsadc
->reg_se_cache
&= ~val
;
123 tscadc_writel(tsadc
, REG_SE
, tsadc
->reg_se_cache
);
124 spin_unlock_irqrestore(&tsadc
->reg_lock
, flags
);
126 EXPORT_SYMBOL_GPL(am335x_tsc_se_clr
);
128 static void tscadc_idle_config(struct ti_tscadc_dev
*config
)
130 unsigned int idleconfig
;
132 idleconfig
= STEPCONFIG_YNN
| STEPCONFIG_INM_ADCREFM
|
133 STEPCONFIG_INP_ADCREFM
| STEPCONFIG_YPN
;
135 tscadc_writel(config
, REG_IDLECONFIG
, idleconfig
);
138 static int ti_tscadc_probe(struct platform_device
*pdev
)
140 struct ti_tscadc_dev
*tscadc
;
141 struct resource
*res
;
143 struct device_node
*node
= pdev
->dev
.of_node
;
144 struct mfd_cell
*cell
;
145 struct property
*prop
;
150 int tsc_wires
= 0, adc_channels
= 0, total_channels
;
153 if (!pdev
->dev
.of_node
) {
154 dev_err(&pdev
->dev
, "Could not find valid DT data.\n");
158 node
= of_get_child_by_name(pdev
->dev
.of_node
, "tsc");
159 of_property_read_u32(node
, "ti,wires", &tsc_wires
);
160 of_property_read_u32(node
, "ti,coordiante-readouts", &readouts
);
162 node
= of_get_child_by_name(pdev
->dev
.of_node
, "adc");
163 of_property_for_each_u32(node
, "ti,adc-channels", prop
, cur
, val
) {
166 dev_err(&pdev
->dev
, " PIN numbers are 0..7 (not %d)\n",
171 total_channels
= tsc_wires
+ adc_channels
;
172 if (total_channels
> 8) {
173 dev_err(&pdev
->dev
, "Number of i/p channels more than 8\n");
176 if (total_channels
== 0) {
177 dev_err(&pdev
->dev
, "Need atleast one channel.\n");
181 if (readouts
* 2 + 2 + adc_channels
> 16) {
182 dev_err(&pdev
->dev
, "Too many step configurations requested\n");
186 /* Allocate memory for device */
187 tscadc
= devm_kzalloc(&pdev
->dev
,
188 sizeof(struct ti_tscadc_dev
), GFP_KERNEL
);
190 dev_err(&pdev
->dev
, "failed to allocate memory.\n");
193 tscadc
->dev
= &pdev
->dev
;
195 err
= platform_get_irq(pdev
, 0);
197 dev_err(&pdev
->dev
, "no irq ID is specified.\n");
202 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
203 tscadc
->tscadc_base
= devm_ioremap_resource(&pdev
->dev
, res
);
204 if (IS_ERR(tscadc
->tscadc_base
))
205 return PTR_ERR(tscadc
->tscadc_base
);
207 tscadc
->regmap_tscadc
= devm_regmap_init_mmio(&pdev
->dev
,
208 tscadc
->tscadc_base
, &tscadc_regmap_config
);
209 if (IS_ERR(tscadc
->regmap_tscadc
)) {
210 dev_err(&pdev
->dev
, "regmap init failed\n");
211 err
= PTR_ERR(tscadc
->regmap_tscadc
);
215 spin_lock_init(&tscadc
->reg_lock
);
216 init_waitqueue_head(&tscadc
->reg_se_wait
);
218 pm_runtime_enable(&pdev
->dev
);
219 pm_runtime_get_sync(&pdev
->dev
);
222 * The TSC_ADC_Subsystem has 2 clock domains
223 * OCP_CLK and ADC_CLK.
224 * The ADC clock is expected to run at target of 3MHz,
225 * and expected to capture 12-bit data at a rate of 200 KSPS.
226 * The TSC_ADC_SS controller design assumes the OCP clock is
227 * at least 6x faster than the ADC clock.
229 clk
= clk_get(&pdev
->dev
, "adc_tsc_fck");
231 dev_err(&pdev
->dev
, "failed to get TSC fck\n");
233 goto err_disable_clk
;
235 clock_rate
= clk_get_rate(clk
);
237 tscadc
->clk_div
= clock_rate
/ ADC_CLK
;
239 /* TSCADC_CLKDIV needs to be configured to the value minus 1 */
241 tscadc_writel(tscadc
, REG_CLKDIV
, tscadc
->clk_div
);
243 /* Set the control register bits */
244 ctrl
= CNTRLREG_STEPCONFIGWRT
|
247 ctrl
|= CNTRLREG_4WIRE
| CNTRLREG_TSCENB
;
248 tscadc_writel(tscadc
, REG_CTRL
, ctrl
);
250 /* Set register bits for Idle Config Mode */
252 tscadc_idle_config(tscadc
);
254 /* Enable the TSC module enable bit */
255 ctrl
= tscadc_readl(tscadc
, REG_CTRL
);
256 ctrl
|= CNTRLREG_TSCSSENB
;
257 tscadc_writel(tscadc
, REG_CTRL
, ctrl
);
259 tscadc
->used_cells
= 0;
260 tscadc
->tsc_cell
= -1;
261 tscadc
->adc_cell
= -1;
265 tscadc
->tsc_cell
= tscadc
->used_cells
;
266 cell
= &tscadc
->cells
[tscadc
->used_cells
++];
267 cell
->name
= "TI-am335x-tsc";
268 cell
->of_compatible
= "ti,am3359-tsc";
269 cell
->platform_data
= &tscadc
;
270 cell
->pdata_size
= sizeof(tscadc
);
274 if (adc_channels
> 0) {
275 tscadc
->adc_cell
= tscadc
->used_cells
;
276 cell
= &tscadc
->cells
[tscadc
->used_cells
++];
277 cell
->name
= "TI-am335x-adc";
278 cell
->of_compatible
= "ti,am3359-adc";
279 cell
->platform_data
= &tscadc
;
280 cell
->pdata_size
= sizeof(tscadc
);
283 err
= mfd_add_devices(&pdev
->dev
, pdev
->id
, tscadc
->cells
,
284 tscadc
->used_cells
, NULL
, 0, NULL
);
286 goto err_disable_clk
;
288 device_init_wakeup(&pdev
->dev
, true);
289 platform_set_drvdata(pdev
, tscadc
);
293 pm_runtime_put_sync(&pdev
->dev
);
294 pm_runtime_disable(&pdev
->dev
);
299 static int ti_tscadc_remove(struct platform_device
*pdev
)
301 struct ti_tscadc_dev
*tscadc
= platform_get_drvdata(pdev
);
303 tscadc_writel(tscadc
, REG_SE
, 0x00);
305 pm_runtime_put_sync(&pdev
->dev
);
306 pm_runtime_disable(&pdev
->dev
);
308 mfd_remove_devices(tscadc
->dev
);
314 static int tscadc_suspend(struct device
*dev
)
316 struct ti_tscadc_dev
*tscadc_dev
= dev_get_drvdata(dev
);
318 tscadc_writel(tscadc_dev
, REG_SE
, 0x00);
319 pm_runtime_put_sync(dev
);
324 static int tscadc_resume(struct device
*dev
)
326 struct ti_tscadc_dev
*tscadc_dev
= dev_get_drvdata(dev
);
327 unsigned int restore
, ctrl
;
329 pm_runtime_get_sync(dev
);
331 /* context restore */
332 ctrl
= CNTRLREG_STEPCONFIGWRT
| CNTRLREG_STEPID
;
333 if (tscadc_dev
->tsc_cell
!= -1)
334 ctrl
|= CNTRLREG_TSCENB
| CNTRLREG_4WIRE
;
335 tscadc_writel(tscadc_dev
, REG_CTRL
, ctrl
);
337 if (tscadc_dev
->tsc_cell
!= -1)
338 tscadc_idle_config(tscadc_dev
);
339 restore
= tscadc_readl(tscadc_dev
, REG_CTRL
);
340 tscadc_writel(tscadc_dev
, REG_CTRL
,
341 (restore
| CNTRLREG_TSCSSENB
));
343 tscadc_writel(tscadc_dev
, REG_CLKDIV
, tscadc_dev
->clk_div
);
348 static const struct dev_pm_ops tscadc_pm_ops
= {
349 .suspend
= tscadc_suspend
,
350 .resume
= tscadc_resume
,
352 #define TSCADC_PM_OPS (&tscadc_pm_ops)
354 #define TSCADC_PM_OPS NULL
357 static const struct of_device_id ti_tscadc_dt_ids
[] = {
358 { .compatible
= "ti,am3359-tscadc", },
361 MODULE_DEVICE_TABLE(of
, ti_tscadc_dt_ids
);
363 static struct platform_driver ti_tscadc_driver
= {
365 .name
= "ti_am3359-tscadc",
366 .owner
= THIS_MODULE
,
368 .of_match_table
= ti_tscadc_dt_ids
,
370 .probe
= ti_tscadc_probe
,
371 .remove
= ti_tscadc_remove
,
375 module_platform_driver(ti_tscadc_driver
);
377 MODULE_DESCRIPTION("TI touchscreen / ADC MFD controller driver");
378 MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
379 MODULE_LICENSE("GPL");