1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#include <linux/kernel.h>
17#include <linux/err.h>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/interrupt.h>
21#include <linux/platform_device.h>
22#include <linux/io.h>
23#include <linux/iio/iio.h>
24#include <linux/of.h>
25#include <linux/of_device.h>
26#include <linux/iio/machine.h>
27#include <linux/iio/driver.h>
28
29#include <linux/mfd/ti_am335x_tscadc.h>
30#include <linux/iio/buffer.h>
31#include <linux/iio/kfifo_buf.h>
32
33#include <linux/dmaengine.h>
34#include <linux/dma-mapping.h>
35
36#define DMA_BUFFER_SIZE SZ_2K
37
38struct tiadc_dma {
39 struct dma_slave_config conf;
40 struct dma_chan *chan;
41 dma_addr_t addr;
42 dma_cookie_t cookie;
43 u8 *buf;
44 int current_period;
45 int period_size;
46 u8 fifo_thresh;
47};
48
49struct tiadc_device {
50 struct ti_tscadc_dev *mfd_tscadc;
51 struct tiadc_dma dma;
52 struct mutex fifo1_lock;
53 int channels;
54 int total_ch_enabled;
55 u8 channel_line[8];
56 u8 channel_step[8];
57 int buffer_en_ch_steps;
58 u16 data[8];
59 u32 open_delay[8], sample_delay[8], step_avg[8];
60};
61
62static unsigned int tiadc_readl(struct tiadc_device *adc, unsigned int reg)
63{
64 return readl(adc->mfd_tscadc->tscadc_base + reg);
65}
66
67static void tiadc_writel(struct tiadc_device *adc, unsigned int reg,
68 unsigned int val)
69{
70 writel(val, adc->mfd_tscadc->tscadc_base + reg);
71}
72
73static u32 get_adc_step_mask(struct tiadc_device *adc_dev)
74{
75 u32 step_en;
76
77 step_en = ((1 << adc_dev->channels) - 1);
78 step_en <<= TOTAL_STEPS - adc_dev->channels + 1;
79 return step_en;
80}
81
82static u32 get_adc_chan_step_mask(struct tiadc_device *adc_dev,
83 struct iio_chan_spec const *chan)
84{
85 int i;
86
87 for (i = 0; i < ARRAY_SIZE(adc_dev->channel_step); i++) {
88 if (chan->channel == adc_dev->channel_line[i]) {
89 u32 step;
90
91 step = adc_dev->channel_step[i];
92
93 return 1 << (step + 1);
94 }
95 }
96 WARN_ON(1);
97 return 0;
98}
99
100static u32 get_adc_step_bit(struct tiadc_device *adc_dev, int chan)
101{
102 return 1 << adc_dev->channel_step[chan];
103}
104
105static void tiadc_step_config(struct iio_dev *indio_dev)
106{
107 struct tiadc_device *adc_dev = iio_priv(indio_dev);
108 struct device *dev = adc_dev->mfd_tscadc->dev;
109 unsigned int stepconfig;
110 int i, steps = 0;
111
112
113
114
115
116
117
118
119
120
121
122
123 for (i = 0; i < adc_dev->channels; i++) {
124 int chan;
125
126 chan = adc_dev->channel_line[i];
127
128 if (adc_dev->step_avg[i] > STEPCONFIG_AVG_16) {
129 dev_warn(dev, "chan %d step_avg truncating to %d\n",
130 chan, STEPCONFIG_AVG_16);
131 adc_dev->step_avg[i] = STEPCONFIG_AVG_16;
132 }
133
134 if (adc_dev->step_avg[i])
135 stepconfig =
136 STEPCONFIG_AVG(ffs(adc_dev->step_avg[i]) - 1) |
137 STEPCONFIG_FIFO1;
138 else
139 stepconfig = STEPCONFIG_FIFO1;
140
141 if (iio_buffer_enabled(indio_dev))
142 stepconfig |= STEPCONFIG_MODE_SWCNT;
143
144 tiadc_writel(adc_dev, REG_STEPCONFIG(steps),
145 stepconfig | STEPCONFIG_INP(chan));
146
147 if (adc_dev->open_delay[i] > STEPDELAY_OPEN_MASK) {
148 dev_warn(dev, "chan %d open delay truncating to 0x3FFFF\n",
149 chan);
150 adc_dev->open_delay[i] = STEPDELAY_OPEN_MASK;
151 }
152
153 if (adc_dev->sample_delay[i] > 0xFF) {
154 dev_warn(dev, "chan %d sample delay truncating to 0xFF\n",
155 chan);
156 adc_dev->sample_delay[i] = 0xFF;
157 }
158
159 tiadc_writel(adc_dev, REG_STEPDELAY(steps),
160 STEPDELAY_OPEN(adc_dev->open_delay[i]) |
161 STEPDELAY_SAMPLE(adc_dev->sample_delay[i]));
162
163 adc_dev->channel_step[i] = steps;
164 steps++;
165 }
166}
167
168static irqreturn_t tiadc_irq_h(int irq, void *private)
169{
170 struct iio_dev *indio_dev = private;
171 struct tiadc_device *adc_dev = iio_priv(indio_dev);
172 unsigned int status, config, adc_fsm;
173 unsigned short count = 0;
174
175 status = tiadc_readl(adc_dev, REG_IRQSTATUS);
176
177
178
179
180
181 if (status & IRQENB_FIFO1OVRRUN) {
182
183 config = tiadc_readl(adc_dev, REG_CTRL);
184 config &= ~(CNTRLREG_TSCSSENB);
185 tiadc_writel(adc_dev, REG_CTRL, config);
186 tiadc_writel(adc_dev, REG_IRQSTATUS, IRQENB_FIFO1OVRRUN
187 | IRQENB_FIFO1UNDRFLW | IRQENB_FIFO1THRES);
188
189
190
191
192
193 do {
194 adc_fsm = tiadc_readl(adc_dev, REG_ADCFSM);
195 } while (adc_fsm != 0x10 && count++ < 100);
196
197 tiadc_writel(adc_dev, REG_CTRL, (config | CNTRLREG_TSCSSENB));
198 return IRQ_HANDLED;
199 } else if (status & IRQENB_FIFO1THRES) {
200
201 tiadc_writel(adc_dev, REG_IRQCLR, IRQENB_FIFO1THRES);
202 return IRQ_WAKE_THREAD;
203 }
204
205 return IRQ_NONE;
206}
207
208static irqreturn_t tiadc_worker_h(int irq, void *private)
209{
210 struct iio_dev *indio_dev = private;
211 struct tiadc_device *adc_dev = iio_priv(indio_dev);
212 int i, k, fifo1count, read;
213 u16 *data = adc_dev->data;
214
215 fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
216 for (k = 0; k < fifo1count; k = k + i) {
217 for (i = 0; i < (indio_dev->scan_bytes)/2; i++) {
218 read = tiadc_readl(adc_dev, REG_FIFO1);
219 data[i] = read & FIFOREAD_DATA_MASK;
220 }
221 iio_push_to_buffers(indio_dev, (u8 *) data);
222 }
223
224 tiadc_writel(adc_dev, REG_IRQSTATUS, IRQENB_FIFO1THRES);
225 tiadc_writel(adc_dev, REG_IRQENABLE, IRQENB_FIFO1THRES);
226
227 return IRQ_HANDLED;
228}
229
230static void tiadc_dma_rx_complete(void *param)
231{
232 struct iio_dev *indio_dev = param;
233 struct tiadc_device *adc_dev = iio_priv(indio_dev);
234 struct tiadc_dma *dma = &adc_dev->dma;
235 u8 *data;
236 int i;
237
238 data = dma->buf + dma->current_period * dma->period_size;
239 dma->current_period = 1 - dma->current_period;
240
241 for (i = 0; i < dma->period_size; i += indio_dev->scan_bytes) {
242 iio_push_to_buffers(indio_dev, data);
243 data += indio_dev->scan_bytes;
244 }
245}
246
247static int tiadc_start_dma(struct iio_dev *indio_dev)
248{
249 struct tiadc_device *adc_dev = iio_priv(indio_dev);
250 struct tiadc_dma *dma = &adc_dev->dma;
251 struct dma_async_tx_descriptor *desc;
252
253 dma->current_period = 0;
254
255
256
257
258
259
260
261 dma->fifo_thresh = rounddown(FIFO1_THRESHOLD + 1,
262 adc_dev->total_ch_enabled) - 1;
263
264 dma->period_size = rounddown(DMA_BUFFER_SIZE / 2,
265 (dma->fifo_thresh + 1) * sizeof(u16));
266
267 dma->conf.src_maxburst = dma->fifo_thresh + 1;
268 dmaengine_slave_config(dma->chan, &dma->conf);
269
270 desc = dmaengine_prep_dma_cyclic(dma->chan, dma->addr,
271 dma->period_size * 2,
272 dma->period_size, DMA_DEV_TO_MEM,
273 DMA_PREP_INTERRUPT);
274 if (!desc)
275 return -EBUSY;
276
277 desc->callback = tiadc_dma_rx_complete;
278 desc->callback_param = indio_dev;
279
280 dma->cookie = dmaengine_submit(desc);
281
282 dma_async_issue_pending(dma->chan);
283
284 tiadc_writel(adc_dev, REG_FIFO1THR, dma->fifo_thresh);
285 tiadc_writel(adc_dev, REG_DMA1REQ, dma->fifo_thresh);
286 tiadc_writel(adc_dev, REG_DMAENABLE_SET, DMA_FIFO1);
287
288 return 0;
289}
290
291static int tiadc_buffer_preenable(struct iio_dev *indio_dev)
292{
293 struct tiadc_device *adc_dev = iio_priv(indio_dev);
294 int i, fifo1count, read;
295
296 tiadc_writel(adc_dev, REG_IRQCLR, (IRQENB_FIFO1THRES |
297 IRQENB_FIFO1OVRRUN |
298 IRQENB_FIFO1UNDRFLW));
299
300
301 fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
302 for (i = 0; i < fifo1count; i++)
303 read = tiadc_readl(adc_dev, REG_FIFO1);
304
305 return 0;
306}
307
308static int tiadc_buffer_postenable(struct iio_dev *indio_dev)
309{
310 struct tiadc_device *adc_dev = iio_priv(indio_dev);
311 struct tiadc_dma *dma = &adc_dev->dma;
312 unsigned int irq_enable;
313 unsigned int enb = 0;
314 u8 bit;
315
316 tiadc_step_config(indio_dev);
317 for_each_set_bit(bit, indio_dev->active_scan_mask, adc_dev->channels) {
318 enb |= (get_adc_step_bit(adc_dev, bit) << 1);
319 adc_dev->total_ch_enabled++;
320 }
321 adc_dev->buffer_en_ch_steps = enb;
322
323 if (dma->chan)
324 tiadc_start_dma(indio_dev);
325
326 am335x_tsc_se_set_cache(adc_dev->mfd_tscadc, enb);
327
328 tiadc_writel(adc_dev, REG_IRQSTATUS, IRQENB_FIFO1THRES
329 | IRQENB_FIFO1OVRRUN | IRQENB_FIFO1UNDRFLW);
330
331 irq_enable = IRQENB_FIFO1OVRRUN;
332 if (!dma->chan)
333 irq_enable |= IRQENB_FIFO1THRES;
334 tiadc_writel(adc_dev, REG_IRQENABLE, irq_enable);
335
336 return 0;
337}
338
339static int tiadc_buffer_predisable(struct iio_dev *indio_dev)
340{
341 struct tiadc_device *adc_dev = iio_priv(indio_dev);
342 struct tiadc_dma *dma = &adc_dev->dma;
343 int fifo1count, i, read;
344
345 tiadc_writel(adc_dev, REG_IRQCLR, (IRQENB_FIFO1THRES |
346 IRQENB_FIFO1OVRRUN | IRQENB_FIFO1UNDRFLW));
347 am335x_tsc_se_clr(adc_dev->mfd_tscadc, adc_dev->buffer_en_ch_steps);
348 adc_dev->buffer_en_ch_steps = 0;
349 adc_dev->total_ch_enabled = 0;
350 if (dma->chan) {
351 tiadc_writel(adc_dev, REG_DMAENABLE_CLEAR, 0x2);
352 dmaengine_terminate_async(dma->chan);
353 }
354
355
356 fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
357 for (i = 0; i < fifo1count; i++)
358 read = tiadc_readl(adc_dev, REG_FIFO1);
359
360 return 0;
361}
362
363static int tiadc_buffer_postdisable(struct iio_dev *indio_dev)
364{
365 tiadc_step_config(indio_dev);
366
367 return 0;
368}
369
370static const struct iio_buffer_setup_ops tiadc_buffer_setup_ops = {
371 .preenable = &tiadc_buffer_preenable,
372 .postenable = &tiadc_buffer_postenable,
373 .predisable = &tiadc_buffer_predisable,
374 .postdisable = &tiadc_buffer_postdisable,
375};
376
377static int tiadc_iio_buffered_hardware_setup(struct iio_dev *indio_dev,
378 irqreturn_t (*pollfunc_bh)(int irq, void *p),
379 irqreturn_t (*pollfunc_th)(int irq, void *p),
380 int irq,
381 unsigned long flags,
382 const struct iio_buffer_setup_ops *setup_ops)
383{
384 struct iio_buffer *buffer;
385 int ret;
386
387 buffer = iio_kfifo_allocate();
388 if (!buffer)
389 return -ENOMEM;
390
391 iio_device_attach_buffer(indio_dev, buffer);
392
393 ret = request_threaded_irq(irq, pollfunc_th, pollfunc_bh,
394 flags, indio_dev->name, indio_dev);
395 if (ret)
396 goto error_kfifo_free;
397
398 indio_dev->setup_ops = setup_ops;
399 indio_dev->modes |= INDIO_BUFFER_SOFTWARE;
400
401 return 0;
402
403error_kfifo_free:
404 iio_kfifo_free(indio_dev->buffer);
405 return ret;
406}
407
408static void tiadc_iio_buffered_hardware_remove(struct iio_dev *indio_dev)
409{
410 struct tiadc_device *adc_dev = iio_priv(indio_dev);
411
412 free_irq(adc_dev->mfd_tscadc->irq, indio_dev);
413 iio_kfifo_free(indio_dev->buffer);
414}
415
416
417static const char * const chan_name_ain[] = {
418 "AIN0",
419 "AIN1",
420 "AIN2",
421 "AIN3",
422 "AIN4",
423 "AIN5",
424 "AIN6",
425 "AIN7",
426};
427
428static int tiadc_channel_init(struct iio_dev *indio_dev, int channels)
429{
430 struct tiadc_device *adc_dev = iio_priv(indio_dev);
431 struct iio_chan_spec *chan_array;
432 struct iio_chan_spec *chan;
433 int i;
434
435 indio_dev->num_channels = channels;
436 chan_array = kcalloc(channels, sizeof(*chan_array), GFP_KERNEL);
437 if (chan_array == NULL)
438 return -ENOMEM;
439
440 chan = chan_array;
441 for (i = 0; i < channels; i++, chan++) {
442
443 chan->type = IIO_VOLTAGE;
444 chan->indexed = 1;
445 chan->channel = adc_dev->channel_line[i];
446 chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
447 chan->datasheet_name = chan_name_ain[chan->channel];
448 chan->scan_index = i;
449 chan->scan_type.sign = 'u';
450 chan->scan_type.realbits = 12;
451 chan->scan_type.storagebits = 16;
452 }
453
454 indio_dev->channels = chan_array;
455
456 return 0;
457}
458
459static void tiadc_channels_remove(struct iio_dev *indio_dev)
460{
461 kfree(indio_dev->channels);
462}
463
464static int tiadc_read_raw(struct iio_dev *indio_dev,
465 struct iio_chan_spec const *chan,
466 int *val, int *val2, long mask)
467{
468 struct tiadc_device *adc_dev = iio_priv(indio_dev);
469 int ret = IIO_VAL_INT;
470 int i, map_val;
471 unsigned int fifo1count, read, stepid;
472 bool found = false;
473 u32 step_en;
474 unsigned long timeout;
475
476 if (iio_buffer_enabled(indio_dev))
477 return -EBUSY;
478
479 step_en = get_adc_chan_step_mask(adc_dev, chan);
480 if (!step_en)
481 return -EINVAL;
482
483 mutex_lock(&adc_dev->fifo1_lock);
484 fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
485 while (fifo1count--)
486 tiadc_readl(adc_dev, REG_FIFO1);
487
488 am335x_tsc_se_set_once(adc_dev->mfd_tscadc, step_en);
489
490 timeout = jiffies + msecs_to_jiffies
491 (IDLE_TIMEOUT * adc_dev->channels);
492
493 while (1) {
494 fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
495 if (fifo1count)
496 break;
497
498 if (time_after(jiffies, timeout)) {
499 am335x_tsc_se_adc_done(adc_dev->mfd_tscadc);
500 ret = -EAGAIN;
501 goto err_unlock;
502 }
503 }
504 map_val = adc_dev->channel_step[chan->scan_index];
505
506
507
508
509
510
511
512
513 for (i = 0; i < fifo1count; i++) {
514 read = tiadc_readl(adc_dev, REG_FIFO1);
515 stepid = read & FIFOREAD_CHNLID_MASK;
516 stepid = stepid >> 0x10;
517
518 if (stepid == map_val) {
519 read = read & FIFOREAD_DATA_MASK;
520 found = true;
521 *val = (u16) read;
522 }
523 }
524 am335x_tsc_se_adc_done(adc_dev->mfd_tscadc);
525
526 if (!found)
527 ret = -EBUSY;
528
529err_unlock:
530 mutex_unlock(&adc_dev->fifo1_lock);
531 return ret;
532}
533
534static const struct iio_info tiadc_info = {
535 .read_raw = &tiadc_read_raw,
536};
537
538static int tiadc_request_dma(struct platform_device *pdev,
539 struct tiadc_device *adc_dev)
540{
541 struct tiadc_dma *dma = &adc_dev->dma;
542 dma_cap_mask_t mask;
543
544
545 dma->conf.direction = DMA_DEV_TO_MEM;
546 dma->conf.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
547 dma->conf.src_addr = adc_dev->mfd_tscadc->tscadc_phys_base + REG_FIFO1;
548
549 dma_cap_zero(mask);
550 dma_cap_set(DMA_CYCLIC, mask);
551
552
553 dma->chan = dma_request_chan(adc_dev->mfd_tscadc->dev, "fifo1");
554 if (IS_ERR(dma->chan)) {
555 int ret = PTR_ERR(dma->chan);
556
557 dma->chan = NULL;
558 return ret;
559 }
560
561
562 dma->buf = dma_alloc_coherent(dma->chan->device->dev, DMA_BUFFER_SIZE,
563 &dma->addr, GFP_KERNEL);
564 if (!dma->buf)
565 goto err;
566
567 return 0;
568err:
569 dma_release_channel(dma->chan);
570 return -ENOMEM;
571}
572
573static int tiadc_parse_dt(struct platform_device *pdev,
574 struct tiadc_device *adc_dev)
575{
576 struct device_node *node = pdev->dev.of_node;
577 struct property *prop;
578 const __be32 *cur;
579 int channels = 0;
580 u32 val;
581
582 of_property_for_each_u32(node, "ti,adc-channels", prop, cur, val) {
583 adc_dev->channel_line[channels] = val;
584
585
586 adc_dev->open_delay[channels] = STEPCONFIG_OPENDLY;
587 adc_dev->sample_delay[channels] = STEPCONFIG_SAMPLEDLY;
588 adc_dev->step_avg[channels] = 16;
589
590 channels++;
591 }
592
593 of_property_read_u32_array(node, "ti,chan-step-avg",
594 adc_dev->step_avg, channels);
595 of_property_read_u32_array(node, "ti,chan-step-opendelay",
596 adc_dev->open_delay, channels);
597 of_property_read_u32_array(node, "ti,chan-step-sampledelay",
598 adc_dev->sample_delay, channels);
599
600 adc_dev->channels = channels;
601 return 0;
602}
603
604static int tiadc_probe(struct platform_device *pdev)
605{
606 struct iio_dev *indio_dev;
607 struct tiadc_device *adc_dev;
608 struct device_node *node = pdev->dev.of_node;
609 int err;
610
611 if (!node) {
612 dev_err(&pdev->dev, "Could not find valid DT data.\n");
613 return -EINVAL;
614 }
615
616 indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*adc_dev));
617 if (indio_dev == NULL) {
618 dev_err(&pdev->dev, "failed to allocate iio device\n");
619 return -ENOMEM;
620 }
621 adc_dev = iio_priv(indio_dev);
622
623 adc_dev->mfd_tscadc = ti_tscadc_dev_get(pdev);
624 tiadc_parse_dt(pdev, adc_dev);
625
626 indio_dev->dev.parent = &pdev->dev;
627 indio_dev->name = dev_name(&pdev->dev);
628 indio_dev->modes = INDIO_DIRECT_MODE;
629 indio_dev->info = &tiadc_info;
630
631 tiadc_step_config(indio_dev);
632 tiadc_writel(adc_dev, REG_FIFO1THR, FIFO1_THRESHOLD);
633 mutex_init(&adc_dev->fifo1_lock);
634
635 err = tiadc_channel_init(indio_dev, adc_dev->channels);
636 if (err < 0)
637 return err;
638
639 err = tiadc_iio_buffered_hardware_setup(indio_dev,
640 &tiadc_worker_h,
641 &tiadc_irq_h,
642 adc_dev->mfd_tscadc->irq,
643 IRQF_SHARED,
644 &tiadc_buffer_setup_ops);
645
646 if (err)
647 goto err_free_channels;
648
649 err = iio_device_register(indio_dev);
650 if (err)
651 goto err_buffer_unregister;
652
653 platform_set_drvdata(pdev, indio_dev);
654
655 err = tiadc_request_dma(pdev, adc_dev);
656 if (err && err == -EPROBE_DEFER)
657 goto err_dma;
658
659 return 0;
660
661err_dma:
662 iio_device_unregister(indio_dev);
663err_buffer_unregister:
664 tiadc_iio_buffered_hardware_remove(indio_dev);
665err_free_channels:
666 tiadc_channels_remove(indio_dev);
667 return err;
668}
669
670static int tiadc_remove(struct platform_device *pdev)
671{
672 struct iio_dev *indio_dev = platform_get_drvdata(pdev);
673 struct tiadc_device *adc_dev = iio_priv(indio_dev);
674 struct tiadc_dma *dma = &adc_dev->dma;
675 u32 step_en;
676
677 if (dma->chan) {
678 dma_free_coherent(dma->chan->device->dev, DMA_BUFFER_SIZE,
679 dma->buf, dma->addr);
680 dma_release_channel(dma->chan);
681 }
682 iio_device_unregister(indio_dev);
683 tiadc_iio_buffered_hardware_remove(indio_dev);
684 tiadc_channels_remove(indio_dev);
685
686 step_en = get_adc_step_mask(adc_dev);
687 am335x_tsc_se_clr(adc_dev->mfd_tscadc, step_en);
688
689 return 0;
690}
691
692static int __maybe_unused tiadc_suspend(struct device *dev)
693{
694 struct iio_dev *indio_dev = dev_get_drvdata(dev);
695 struct tiadc_device *adc_dev = iio_priv(indio_dev);
696 struct ti_tscadc_dev *tscadc_dev;
697 unsigned int idle;
698
699 tscadc_dev = ti_tscadc_dev_get(to_platform_device(dev));
700 if (!device_may_wakeup(tscadc_dev->dev)) {
701 idle = tiadc_readl(adc_dev, REG_CTRL);
702 idle &= ~(CNTRLREG_TSCSSENB);
703 tiadc_writel(adc_dev, REG_CTRL, (idle |
704 CNTRLREG_POWERDOWN));
705 }
706
707 return 0;
708}
709
710static int __maybe_unused tiadc_resume(struct device *dev)
711{
712 struct iio_dev *indio_dev = dev_get_drvdata(dev);
713 struct tiadc_device *adc_dev = iio_priv(indio_dev);
714 unsigned int restore;
715
716
717 restore = tiadc_readl(adc_dev, REG_CTRL);
718 restore &= ~(CNTRLREG_POWERDOWN);
719 tiadc_writel(adc_dev, REG_CTRL, restore);
720
721 tiadc_step_config(indio_dev);
722 am335x_tsc_se_set_cache(adc_dev->mfd_tscadc,
723 adc_dev->buffer_en_ch_steps);
724 return 0;
725}
726
727static SIMPLE_DEV_PM_OPS(tiadc_pm_ops, tiadc_suspend, tiadc_resume);
728
729static const struct of_device_id ti_adc_dt_ids[] = {
730 { .compatible = "ti,am3359-adc", },
731 { }
732};
733MODULE_DEVICE_TABLE(of, ti_adc_dt_ids);
734
735static struct platform_driver tiadc_driver = {
736 .driver = {
737 .name = "TI-am335x-adc",
738 .pm = &tiadc_pm_ops,
739 .of_match_table = ti_adc_dt_ids,
740 },
741 .probe = tiadc_probe,
742 .remove = tiadc_remove,
743};
744module_platform_driver(tiadc_driver);
745
746MODULE_DESCRIPTION("TI ADC controller driver");
747MODULE_AUTHOR("Rachna Patil <rachna@ti.com>");
748MODULE_LICENSE("GPL");
749