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 const struct regmap_config tscadc_regmap_config
= {
37 void am335x_tsc_se_set_cache(struct ti_tscadc_dev
*tscadc
, u32 val
)
41 spin_lock_irqsave(&tscadc
->reg_lock
, flags
);
42 tscadc
->reg_se_cache
|= val
;
43 if (tscadc
->adc_waiting
)
44 wake_up(&tscadc
->reg_se_wait
);
45 else if (!tscadc
->adc_in_use
)
46 regmap_write(tscadc
->regmap
, REG_SE
, tscadc
->reg_se_cache
);
48 spin_unlock_irqrestore(&tscadc
->reg_lock
, flags
);
50 EXPORT_SYMBOL_GPL(am335x_tsc_se_set_cache
);
52 static void am335x_tscadc_need_adc(struct ti_tscadc_dev
*tscadc
)
57 regmap_read(tscadc
->regmap
, REG_ADCFSM
, ®
);
58 if (reg
& SEQ_STATUS
) {
59 tscadc
->adc_waiting
= true;
60 prepare_to_wait(&tscadc
->reg_se_wait
, &wait
,
61 TASK_UNINTERRUPTIBLE
);
62 spin_unlock_irq(&tscadc
->reg_lock
);
66 spin_lock_irq(&tscadc
->reg_lock
);
67 finish_wait(&tscadc
->reg_se_wait
, &wait
);
70 * Sequencer should either be idle or
71 * busy applying the charge step.
73 regmap_read(tscadc
->regmap
, REG_ADCFSM
, ®
);
74 WARN_ON((reg
& SEQ_STATUS
) && !(reg
& CHARGE_STEP
));
75 tscadc
->adc_waiting
= false;
77 tscadc
->adc_in_use
= true;
80 void am335x_tsc_se_set_once(struct ti_tscadc_dev
*tscadc
, u32 val
)
82 spin_lock_irq(&tscadc
->reg_lock
);
83 am335x_tscadc_need_adc(tscadc
);
85 regmap_write(tscadc
->regmap
, REG_SE
, val
);
86 spin_unlock_irq(&tscadc
->reg_lock
);
88 EXPORT_SYMBOL_GPL(am335x_tsc_se_set_once
);
90 void am335x_tsc_se_adc_done(struct ti_tscadc_dev
*tscadc
)
94 spin_lock_irqsave(&tscadc
->reg_lock
, flags
);
95 tscadc
->adc_in_use
= false;
96 regmap_write(tscadc
->regmap
, REG_SE
, tscadc
->reg_se_cache
);
97 spin_unlock_irqrestore(&tscadc
->reg_lock
, flags
);
99 EXPORT_SYMBOL_GPL(am335x_tsc_se_adc_done
);
101 void am335x_tsc_se_clr(struct ti_tscadc_dev
*tscadc
, u32 val
)
105 spin_lock_irqsave(&tscadc
->reg_lock
, flags
);
106 tscadc
->reg_se_cache
&= ~val
;
107 regmap_write(tscadc
->regmap
, REG_SE
, tscadc
->reg_se_cache
);
108 spin_unlock_irqrestore(&tscadc
->reg_lock
, flags
);
110 EXPORT_SYMBOL_GPL(am335x_tsc_se_clr
);
112 static void tscadc_idle_config(struct ti_tscadc_dev
*tscadc
)
114 unsigned int idleconfig
;
116 idleconfig
= STEPCONFIG_YNN
| STEPCONFIG_INM_ADCREFM
|
117 STEPCONFIG_INP_ADCREFM
| STEPCONFIG_YPN
;
119 regmap_write(tscadc
->regmap
, REG_IDLECONFIG
, idleconfig
);
122 static int ti_tscadc_probe(struct platform_device
*pdev
)
124 struct ti_tscadc_dev
*tscadc
;
125 struct resource
*res
;
127 struct device_node
*node
= pdev
->dev
.of_node
;
128 struct mfd_cell
*cell
;
129 struct property
*prop
;
134 int tsc_wires
= 0, adc_channels
= 0, total_channels
;
137 if (!pdev
->dev
.of_node
) {
138 dev_err(&pdev
->dev
, "Could not find valid DT data.\n");
142 node
= of_get_child_by_name(pdev
->dev
.of_node
, "tsc");
143 of_property_read_u32(node
, "ti,wires", &tsc_wires
);
144 of_property_read_u32(node
, "ti,coordiante-readouts", &readouts
);
146 node
= of_get_child_by_name(pdev
->dev
.of_node
, "adc");
147 of_property_for_each_u32(node
, "ti,adc-channels", prop
, cur
, val
) {
150 dev_err(&pdev
->dev
, " PIN numbers are 0..7 (not %d)\n",
155 total_channels
= tsc_wires
+ adc_channels
;
156 if (total_channels
> 8) {
157 dev_err(&pdev
->dev
, "Number of i/p channels more than 8\n");
160 if (total_channels
== 0) {
161 dev_err(&pdev
->dev
, "Need atleast one channel.\n");
165 if (readouts
* 2 + 2 + adc_channels
> 16) {
166 dev_err(&pdev
->dev
, "Too many step configurations requested\n");
170 /* Allocate memory for device */
171 tscadc
= devm_kzalloc(&pdev
->dev
, sizeof(*tscadc
), GFP_KERNEL
);
173 dev_err(&pdev
->dev
, "failed to allocate memory.\n");
176 tscadc
->dev
= &pdev
->dev
;
178 err
= platform_get_irq(pdev
, 0);
180 dev_err(&pdev
->dev
, "no irq ID is specified.\n");
185 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
186 tscadc
->tscadc_phys_base
= res
->start
;
187 tscadc
->tscadc_base
= devm_ioremap_resource(&pdev
->dev
, res
);
188 if (IS_ERR(tscadc
->tscadc_base
))
189 return PTR_ERR(tscadc
->tscadc_base
);
191 tscadc
->regmap
= devm_regmap_init_mmio(&pdev
->dev
,
192 tscadc
->tscadc_base
, &tscadc_regmap_config
);
193 if (IS_ERR(tscadc
->regmap
)) {
194 dev_err(&pdev
->dev
, "regmap init failed\n");
195 err
= PTR_ERR(tscadc
->regmap
);
199 spin_lock_init(&tscadc
->reg_lock
);
200 init_waitqueue_head(&tscadc
->reg_se_wait
);
202 pm_runtime_enable(&pdev
->dev
);
203 pm_runtime_get_sync(&pdev
->dev
);
206 * The TSC_ADC_Subsystem has 2 clock domains
207 * OCP_CLK and ADC_CLK.
208 * The ADC clock is expected to run at target of 3MHz,
209 * and expected to capture 12-bit data at a rate of 200 KSPS.
210 * The TSC_ADC_SS controller design assumes the OCP clock is
211 * at least 6x faster than the ADC clock.
213 clk
= clk_get(&pdev
->dev
, "adc_tsc_fck");
215 dev_err(&pdev
->dev
, "failed to get TSC fck\n");
217 goto err_disable_clk
;
219 clock_rate
= clk_get_rate(clk
);
221 tscadc
->clk_div
= clock_rate
/ ADC_CLK
;
223 /* TSCADC_CLKDIV needs to be configured to the value minus 1 */
225 regmap_write(tscadc
->regmap
, REG_CLKDIV
, tscadc
->clk_div
);
227 /* Set the control register bits */
228 ctrl
= CNTRLREG_STEPCONFIGWRT
| CNTRLREG_STEPID
;
229 regmap_write(tscadc
->regmap
, REG_CTRL
, ctrl
);
231 /* Set register bits for Idle Config Mode */
233 tscadc
->tsc_wires
= tsc_wires
;
235 ctrl
|= CNTRLREG_5WIRE
| CNTRLREG_TSCENB
;
237 ctrl
|= CNTRLREG_4WIRE
| CNTRLREG_TSCENB
;
238 tscadc_idle_config(tscadc
);
241 /* Enable the TSC module enable bit */
242 ctrl
|= CNTRLREG_TSCSSENB
;
243 regmap_write(tscadc
->regmap
, REG_CTRL
, ctrl
);
245 tscadc
->used_cells
= 0;
246 tscadc
->tsc_cell
= -1;
247 tscadc
->adc_cell
= -1;
251 tscadc
->tsc_cell
= tscadc
->used_cells
;
252 cell
= &tscadc
->cells
[tscadc
->used_cells
++];
253 cell
->name
= "TI-am335x-tsc";
254 cell
->of_compatible
= "ti,am3359-tsc";
255 cell
->platform_data
= &tscadc
;
256 cell
->pdata_size
= sizeof(tscadc
);
260 if (adc_channels
> 0) {
261 tscadc
->adc_cell
= tscadc
->used_cells
;
262 cell
= &tscadc
->cells
[tscadc
->used_cells
++];
263 cell
->name
= "TI-am335x-adc";
264 cell
->of_compatible
= "ti,am3359-adc";
265 cell
->platform_data
= &tscadc
;
266 cell
->pdata_size
= sizeof(tscadc
);
269 err
= mfd_add_devices(&pdev
->dev
, pdev
->id
, tscadc
->cells
,
270 tscadc
->used_cells
, NULL
, 0, NULL
);
272 goto err_disable_clk
;
274 device_init_wakeup(&pdev
->dev
, true);
275 platform_set_drvdata(pdev
, tscadc
);
279 pm_runtime_put_sync(&pdev
->dev
);
280 pm_runtime_disable(&pdev
->dev
);
285 static int ti_tscadc_remove(struct platform_device
*pdev
)
287 struct ti_tscadc_dev
*tscadc
= platform_get_drvdata(pdev
);
289 regmap_write(tscadc
->regmap
, REG_SE
, 0x00);
291 pm_runtime_put_sync(&pdev
->dev
);
292 pm_runtime_disable(&pdev
->dev
);
294 mfd_remove_devices(tscadc
->dev
);
299 static int __maybe_unused
tscadc_suspend(struct device
*dev
)
301 struct ti_tscadc_dev
*tscadc
= dev_get_drvdata(dev
);
303 regmap_write(tscadc
->regmap
, REG_SE
, 0x00);
304 pm_runtime_put_sync(dev
);
309 static int __maybe_unused
tscadc_resume(struct device
*dev
)
311 struct ti_tscadc_dev
*tscadc
= dev_get_drvdata(dev
);
314 pm_runtime_get_sync(dev
);
316 /* context restore */
317 ctrl
= CNTRLREG_STEPCONFIGWRT
| CNTRLREG_STEPID
;
318 regmap_write(tscadc
->regmap
, REG_CTRL
, ctrl
);
320 if (tscadc
->tsc_cell
!= -1) {
321 if (tscadc
->tsc_wires
== 5)
322 ctrl
|= CNTRLREG_5WIRE
| CNTRLREG_TSCENB
;
324 ctrl
|= CNTRLREG_4WIRE
| CNTRLREG_TSCENB
;
325 tscadc_idle_config(tscadc
);
327 ctrl
|= CNTRLREG_TSCSSENB
;
328 regmap_write(tscadc
->regmap
, REG_CTRL
, ctrl
);
330 regmap_write(tscadc
->regmap
, REG_CLKDIV
, tscadc
->clk_div
);
335 static SIMPLE_DEV_PM_OPS(tscadc_pm_ops
, tscadc_suspend
, tscadc_resume
);
337 static const struct of_device_id ti_tscadc_dt_ids
[] = {
338 { .compatible
= "ti,am3359-tscadc", },
341 MODULE_DEVICE_TABLE(of
, ti_tscadc_dt_ids
);
343 static struct platform_driver ti_tscadc_driver
= {
345 .name
= "ti_am3359-tscadc",
346 .pm
= &tscadc_pm_ops
,
347 .of_match_table
= ti_tscadc_dt_ids
,
349 .probe
= ti_tscadc_probe
,
350 .remove
= ti_tscadc_remove
,
354 module_platform_driver(ti_tscadc_driver
);
356 MODULE_DESCRIPTION("TI touchscreen / ADC MFD controller driver");
357 MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
358 MODULE_LICENSE("GPL");