Merge tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm
[linux-block.git] / drivers / iio / adc / at91-sama5d2_adc.c
CommitLineData
9c92ab61 1// SPDX-License-Identifier: GPL-2.0-only
27e17719
LD
2/*
3 * Atmel ADC driver for SAMA5D2 devices and compatible.
4 *
5 * Copyright (C) 2015 Atmel,
6 * 2015 Ludovic Desroches <ludovic.desroches@atmel.com>
874b4912
EH
7 * 2021 Microchip Technology, Inc. and its subsidiaries
8 * 2021 Eugen Hristev <eugen.hristev@microchip.com>
27e17719
LD
9 */
10
11#include <linux/bitops.h>
12#include <linux/clk.h>
97c54cf2 13#include <linux/delay.h>
073c6620
EH
14#include <linux/dma-mapping.h>
15#include <linux/dmaengine.h>
27e17719
LD
16#include <linux/interrupt.h>
17#include <linux/io.h>
18#include <linux/module.h>
34b6eb89 19#include <linux/mod_devicetable.h>
27e17719 20#include <linux/platform_device.h>
34b6eb89 21#include <linux/property.h>
27e17719 22#include <linux/sched.h>
5ab38b81 23#include <linux/units.h>
27e17719
LD
24#include <linux/wait.h>
25#include <linux/iio/iio.h>
26#include <linux/iio/sysfs.h>
5e1a1da0
EH
27#include <linux/iio/buffer.h>
28#include <linux/iio/trigger.h>
29#include <linux/iio/trigger_consumer.h>
30#include <linux/iio/triggered_buffer.h>
5ab38b81 31#include <linux/nvmem-consumer.h>
500a2eef 32#include <linux/pinctrl/consumer.h>
75d7556a 33#include <linux/pm_runtime.h>
27e17719
LD
34#include <linux/regulator/consumer.h>
35
5ab38b81
CB
36#include <dt-bindings/iio/adc/at91-sama5d2_adc.h>
37
8940de2e 38struct at91_adc_reg_layout {
27e17719 39/* Control Register */
8940de2e 40 u16 CR;
27e17719
LD
41/* Software Reset */
42#define AT91_SAMA5D2_CR_SWRST BIT(0)
43/* Start Conversion */
44#define AT91_SAMA5D2_CR_START BIT(1)
45/* Touchscreen Calibration */
46#define AT91_SAMA5D2_CR_TSCALIB BIT(2)
47/* Comparison Restart */
48#define AT91_SAMA5D2_CR_CMPRST BIT(4)
49
50/* Mode Register */
8940de2e 51 u16 MR;
27e17719
LD
52/* Trigger Selection */
53#define AT91_SAMA5D2_MR_TRGSEL(v) ((v) << 1)
54/* ADTRG */
55#define AT91_SAMA5D2_MR_TRGSEL_TRIG0 0
56/* TIOA0 */
57#define AT91_SAMA5D2_MR_TRGSEL_TRIG1 1
58/* TIOA1 */
59#define AT91_SAMA5D2_MR_TRGSEL_TRIG2 2
60/* TIOA2 */
61#define AT91_SAMA5D2_MR_TRGSEL_TRIG3 3
62/* PWM event line 0 */
63#define AT91_SAMA5D2_MR_TRGSEL_TRIG4 4
64/* PWM event line 1 */
65#define AT91_SAMA5D2_MR_TRGSEL_TRIG5 5
66/* TIOA3 */
67#define AT91_SAMA5D2_MR_TRGSEL_TRIG6 6
68/* RTCOUT0 */
69#define AT91_SAMA5D2_MR_TRGSEL_TRIG7 7
70/* Sleep Mode */
71#define AT91_SAMA5D2_MR_SLEEP BIT(5)
72/* Fast Wake Up */
73#define AT91_SAMA5D2_MR_FWUP BIT(6)
74/* Prescaler Rate Selection */
75#define AT91_SAMA5D2_MR_PRESCAL(v) ((v) << AT91_SAMA5D2_MR_PRESCAL_OFFSET)
76#define AT91_SAMA5D2_MR_PRESCAL_OFFSET 8
77#define AT91_SAMA5D2_MR_PRESCAL_MAX 0xff
94b24230 78#define AT91_SAMA5D2_MR_PRESCAL_MASK GENMASK(15, 8)
27e17719
LD
79/* Startup Time */
80#define AT91_SAMA5D2_MR_STARTUP(v) ((v) << 16)
94b24230 81#define AT91_SAMA5D2_MR_STARTUP_MASK GENMASK(19, 16)
5ab38b81
CB
82/* Minimum startup time for temperature sensor */
83#define AT91_SAMA5D2_MR_STARTUP_TS_MIN (50)
27e17719
LD
84/* Analog Change */
85#define AT91_SAMA5D2_MR_ANACH BIT(23)
86/* Tracking Time */
87#define AT91_SAMA5D2_MR_TRACKTIM(v) ((v) << 24)
5ab38b81 88#define AT91_SAMA5D2_MR_TRACKTIM_TS 6
bb73d5d9 89#define AT91_SAMA5D2_MR_TRACKTIM_MAX 0xf
27e17719
LD
90/* Transfer Time */
91#define AT91_SAMA5D2_MR_TRANSFER(v) ((v) << 28)
92#define AT91_SAMA5D2_MR_TRANSFER_MAX 0x3
93/* Use Sequence Enable */
94#define AT91_SAMA5D2_MR_USEQ BIT(31)
95
96/* Channel Sequence Register 1 */
8940de2e 97 u16 SEQR1;
27e17719 98/* Channel Sequence Register 2 */
8940de2e 99 u16 SEQR2;
27e17719 100/* Channel Enable Register */
8940de2e 101 u16 CHER;
27e17719 102/* Channel Disable Register */
8940de2e 103 u16 CHDR;
27e17719 104/* Channel Status Register */
8940de2e 105 u16 CHSR;
27e17719 106/* Last Converted Data Register */
8940de2e 107 u16 LCDR;
27e17719 108/* Interrupt Enable Register */
8940de2e 109 u16 IER;
23ec2774
EH
110/* Interrupt Enable Register - TS X measurement ready */
111#define AT91_SAMA5D2_IER_XRDY BIT(20)
112/* Interrupt Enable Register - TS Y measurement ready */
113#define AT91_SAMA5D2_IER_YRDY BIT(21)
114/* Interrupt Enable Register - TS pressure measurement ready */
115#define AT91_SAMA5D2_IER_PRDY BIT(22)
97c54cf2
EH
116/* Interrupt Enable Register - Data ready */
117#define AT91_SAMA5D2_IER_DRDY BIT(24)
073c6620
EH
118/* Interrupt Enable Register - general overrun error */
119#define AT91_SAMA5D2_IER_GOVRE BIT(25)
23ec2774
EH
120/* Interrupt Enable Register - Pen detect */
121#define AT91_SAMA5D2_IER_PEN BIT(29)
122/* Interrupt Enable Register - No pen detect */
123#define AT91_SAMA5D2_IER_NOPEN BIT(30)
8940de2e 124
27e17719 125/* Interrupt Disable Register */
8940de2e 126 u16 IDR;
27e17719 127/* Interrupt Mask Register */
8940de2e 128 u16 IMR;
27e17719 129/* Interrupt Status Register */
8940de2e 130 u16 ISR;
e6d5eee4
EH
131/* End of Conversion Interrupt Enable Register */
132 u16 EOC_IER;
133/* End of Conversion Interrupt Disable Register */
134 u16 EOC_IDR;
135/* End of Conversion Interrupt Mask Register */
136 u16 EOC_IMR;
137/* End of Conversion Interrupt Status Register */
138 u16 EOC_ISR;
23ec2774
EH
139/* Interrupt Status Register - Pen touching sense status */
140#define AT91_SAMA5D2_ISR_PENS BIT(31)
27e17719 141/* Last Channel Trigger Mode Register */
8940de2e 142 u16 LCTMR;
27e17719 143/* Last Channel Compare Window Register */
8940de2e 144 u16 LCCWR;
27e17719 145/* Overrun Status Register */
8940de2e 146 u16 OVER;
27e17719 147/* Extended Mode Register */
8940de2e 148 u16 EMR;
6794e23f 149/* Extended Mode Register - Oversampling rate */
287c271d 150#define AT91_SAMA5D2_EMR_OSR(V, M) (((V) << 16) & (M))
6794e23f
EH
151#define AT91_SAMA5D2_EMR_OSR_1SAMPLES 0
152#define AT91_SAMA5D2_EMR_OSR_4SAMPLES 1
153#define AT91_SAMA5D2_EMR_OSR_16SAMPLES 2
5fc30713
CB
154#define AT91_SAMA5D2_EMR_OSR_64SAMPLES 3
155#define AT91_SAMA5D2_EMR_OSR_256SAMPLES 4
6794e23f 156
04227f95
CB
157/* Extended Mode Register - TRACKX */
158#define AT91_SAMA5D2_TRACKX_MASK GENMASK(23, 22)
159#define AT91_SAMA5D2_TRACKX(x) (((x) << 22) & \
160 AT91_SAMA5D2_TRACKX_MASK)
5ab38b81
CB
161/* TRACKX for temperature sensor. */
162#define AT91_SAMA5D2_TRACKX_TS (1)
163
6794e23f
EH
164/* Extended Mode Register - Averaging on single trigger event */
165#define AT91_SAMA5D2_EMR_ASTE(V) ((V) << 20)
8940de2e 166
27e17719 167/* Compare Window Register */
8940de2e 168 u16 CWR;
27e17719 169/* Channel Gain Register */
8940de2e 170 u16 CGR;
27e17719 171/* Channel Offset Register */
8940de2e 172 u16 COR;
d8004c5f
EH
173/* Channel Offset Register differential offset - constant, not a register */
174 u16 COR_diff_offset;
27e17719 175/* Analog Control Register */
8940de2e 176 u16 ACR;
23ec2774
EH
177/* Analog Control Register - Pen detect sensitivity mask */
178#define AT91_SAMA5D2_ACR_PENDETSENS_MASK GENMASK(1, 0)
5ab38b81
CB
179/* Analog Control Register - Source last channel */
180#define AT91_SAMA5D2_ACR_SRCLCH BIT(16)
23ec2774 181
27e17719 182/* Touchscreen Mode Register */
8940de2e 183 u16 TSMR;
23ec2774
EH
184/* Touchscreen Mode Register - No touch mode */
185#define AT91_SAMA5D2_TSMR_TSMODE_NONE 0
186/* Touchscreen Mode Register - 4 wire screen, no pressure measurement */
187#define AT91_SAMA5D2_TSMR_TSMODE_4WIRE_NO_PRESS 1
188/* Touchscreen Mode Register - 4 wire screen, pressure measurement */
189#define AT91_SAMA5D2_TSMR_TSMODE_4WIRE_PRESS 2
190/* Touchscreen Mode Register - 5 wire screen */
191#define AT91_SAMA5D2_TSMR_TSMODE_5WIRE 3
192/* Touchscreen Mode Register - Average samples mask */
193#define AT91_SAMA5D2_TSMR_TSAV_MASK GENMASK(5, 4)
194/* Touchscreen Mode Register - Average samples */
195#define AT91_SAMA5D2_TSMR_TSAV(x) ((x) << 4)
196/* Touchscreen Mode Register - Touch/trigger frequency ratio mask */
197#define AT91_SAMA5D2_TSMR_TSFREQ_MASK GENMASK(11, 8)
198/* Touchscreen Mode Register - Touch/trigger frequency ratio */
199#define AT91_SAMA5D2_TSMR_TSFREQ(x) ((x) << 8)
200/* Touchscreen Mode Register - Pen Debounce Time mask */
201#define AT91_SAMA5D2_TSMR_PENDBC_MASK GENMASK(31, 28)
202/* Touchscreen Mode Register - Pen Debounce Time */
203#define AT91_SAMA5D2_TSMR_PENDBC(x) ((x) << 28)
204/* Touchscreen Mode Register - No DMA for touch measurements */
205#define AT91_SAMA5D2_TSMR_NOTSDMA BIT(22)
206/* Touchscreen Mode Register - Disable pen detection */
207#define AT91_SAMA5D2_TSMR_PENDET_DIS (0 << 24)
208/* Touchscreen Mode Register - Enable pen detection */
209#define AT91_SAMA5D2_TSMR_PENDET_ENA BIT(24)
210
27e17719 211/* Touchscreen X Position Register */
8940de2e 212 u16 XPOSR;
27e17719 213/* Touchscreen Y Position Register */
8940de2e 214 u16 YPOSR;
27e17719 215/* Touchscreen Pressure Register */
8940de2e 216 u16 PRESSR;
27e17719 217/* Trigger Register */
8940de2e 218 u16 TRGR;
5e1a1da0
EH
219/* Mask for TRGMOD field of TRGR register */
220#define AT91_SAMA5D2_TRGR_TRGMOD_MASK GENMASK(2, 0)
221/* No trigger, only software trigger can start conversions */
222#define AT91_SAMA5D2_TRGR_TRGMOD_NO_TRIGGER 0
223/* Trigger Mode external trigger rising edge */
224#define AT91_SAMA5D2_TRGR_TRGMOD_EXT_TRIG_RISE 1
225/* Trigger Mode external trigger falling edge */
226#define AT91_SAMA5D2_TRGR_TRGMOD_EXT_TRIG_FALL 2
227/* Trigger Mode external trigger any edge */
228#define AT91_SAMA5D2_TRGR_TRGMOD_EXT_TRIG_ANY 3
23ec2774
EH
229/* Trigger Mode internal periodic */
230#define AT91_SAMA5D2_TRGR_TRGMOD_PERIODIC 5
231/* Trigger Mode - trigger period mask */
232#define AT91_SAMA5D2_TRGR_TRGPER_MASK GENMASK(31, 16)
233/* Trigger Mode - trigger period */
234#define AT91_SAMA5D2_TRGR_TRGPER(x) ((x) << 16)
5e1a1da0 235
27e17719 236/* Correction Select Register */
8940de2e 237 u16 COSR;
27e17719 238/* Correction Value Register */
8940de2e 239 u16 CVR;
27e17719 240/* Channel Error Correction Register */
8940de2e 241 u16 CECR;
27e17719 242/* Write Protection Mode Register */
8940de2e 243 u16 WPMR;
27e17719 244/* Write Protection Status Register */
8940de2e 245 u16 WPSR;
27e17719 246/* Version Register */
8940de2e 247 u16 VERSION;
5ab38b81
CB
248/* Temperature Sensor Mode Register */
249 u16 TEMPMR;
250/* Temperature Sensor Mode - Temperature sensor on */
251#define AT91_SAMA5D2_TEMPMR_TEMPON BIT(0)
8940de2e 252};
23ec2774 253
8940de2e
EH
254static const struct at91_adc_reg_layout sama5d2_layout = {
255 .CR = 0x00,
256 .MR = 0x04,
257 .SEQR1 = 0x08,
258 .SEQR2 = 0x0c,
259 .CHER = 0x10,
260 .CHDR = 0x14,
261 .CHSR = 0x18,
262 .LCDR = 0x20,
263 .IER = 0x24,
264 .IDR = 0x28,
265 .IMR = 0x2c,
266 .ISR = 0x30,
267 .LCTMR = 0x34,
268 .LCCWR = 0x38,
269 .OVER = 0x3c,
270 .EMR = 0x40,
271 .CWR = 0x44,
272 .CGR = 0x48,
273 .COR = 0x4c,
d8004c5f 274 .COR_diff_offset = 16,
8940de2e
EH
275 .ACR = 0x94,
276 .TSMR = 0xb0,
277 .XPOSR = 0xb4,
278 .YPOSR = 0xb8,
279 .PRESSR = 0xbc,
280 .TRGR = 0xc0,
281 .COSR = 0xd0,
282 .CVR = 0xd4,
283 .CECR = 0xd8,
284 .WPMR = 0xe4,
285 .WPSR = 0xe8,
286 .VERSION = 0xfc,
287};
23ec2774 288
840bf6cb
EH
289static const struct at91_adc_reg_layout sama7g5_layout = {
290 .CR = 0x00,
291 .MR = 0x04,
292 .SEQR1 = 0x08,
293 .SEQR2 = 0x0c,
294 .CHER = 0x10,
295 .CHDR = 0x14,
296 .CHSR = 0x18,
297 .LCDR = 0x20,
298 .IER = 0x24,
299 .IDR = 0x28,
300 .IMR = 0x2c,
301 .ISR = 0x30,
302 .EOC_IER = 0x34,
303 .EOC_IDR = 0x38,
304 .EOC_IMR = 0x3c,
305 .EOC_ISR = 0x40,
5ab38b81 306 .TEMPMR = 0x44,
840bf6cb
EH
307 .OVER = 0x4c,
308 .EMR = 0x50,
309 .CWR = 0x54,
310 .COR = 0x5c,
311 .COR_diff_offset = 0,
312 .ACR = 0xe0,
313 .TRGR = 0x100,
314 .COSR = 0x104,
315 .CVR = 0x108,
316 .CECR = 0x10c,
317 .WPMR = 0x118,
318 .WPSR = 0x11c,
319 .VERSION = 0x130,
320};
321
23ec2774
EH
322#define AT91_SAMA5D2_TOUCH_SAMPLE_PERIOD_US 2000 /* 2ms */
323#define AT91_SAMA5D2_TOUCH_PEN_DETECT_DEBOUNCE_US 200
324
325#define AT91_SAMA5D2_XYZ_MASK GENMASK(11, 0)
326
327#define AT91_SAMA5D2_MAX_POS_BITS 12
328
073c6620
EH
329#define AT91_HWFIFO_MAX_SIZE_STR "128"
330#define AT91_HWFIFO_MAX_SIZE 128
331
8940de2e 332#define AT91_SAMA5D2_CHAN_SINGLE(index, num, addr) \
27e17719
LD
333 { \
334 .type = IIO_VOLTAGE, \
335 .channel = num, \
336 .address = addr, \
8940de2e 337 .scan_index = index, \
27e17719
LD
338 .scan_type = { \
339 .sign = 'u', \
6794e23f 340 .realbits = 14, \
5e1a1da0 341 .storagebits = 16, \
27e17719
LD
342 }, \
343 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
344 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
6794e23f
EH
345 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ)|\
346 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
3c5d62a1
CB
347 .info_mask_shared_by_all_available = \
348 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
27e17719
LD
349 .datasheet_name = "CH"#num, \
350 .indexed = 1, \
351 }
352
8940de2e 353#define AT91_SAMA5D2_CHAN_DIFF(index, num, num2, addr) \
d6511322
LD
354 { \
355 .type = IIO_VOLTAGE, \
356 .differential = 1, \
357 .channel = num, \
358 .channel2 = num2, \
359 .address = addr, \
8940de2e 360 .scan_index = index, \
d6511322
LD
361 .scan_type = { \
362 .sign = 's', \
6794e23f 363 .realbits = 14, \
5e1a1da0 364 .storagebits = 16, \
d6511322
LD
365 }, \
366 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
367 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
6794e23f
EH
368 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ)|\
369 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
3c5d62a1
CB
370 .info_mask_shared_by_all_available = \
371 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
d6511322
LD
372 .datasheet_name = "CH"#num"-CH"#num2, \
373 .indexed = 1, \
374 }
375
23ec2774
EH
376#define AT91_SAMA5D2_CHAN_TOUCH(num, name, mod) \
377 { \
378 .type = IIO_POSITIONRELATIVE, \
379 .modified = 1, \
380 .channel = num, \
381 .channel2 = mod, \
382 .scan_index = num, \
383 .scan_type = { \
384 .sign = 'u', \
385 .realbits = 12, \
386 .storagebits = 16, \
387 }, \
388 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
6794e23f
EH
389 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ)|\
390 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
3c5d62a1
CB
391 .info_mask_shared_by_all_available = \
392 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
23ec2774
EH
393 .datasheet_name = name, \
394 }
395#define AT91_SAMA5D2_CHAN_PRESSURE(num, name) \
396 { \
397 .type = IIO_PRESSURE, \
398 .channel = num, \
399 .scan_index = num, \
400 .scan_type = { \
401 .sign = 'u', \
402 .realbits = 12, \
403 .storagebits = 16, \
404 }, \
405 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
6794e23f
EH
406 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ)|\
407 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
3c5d62a1
CB
408 .info_mask_shared_by_all_available = \
409 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
23ec2774
EH
410 .datasheet_name = name, \
411 }
412
5ab38b81
CB
413#define AT91_SAMA5D2_CHAN_TEMP(num, name, addr) \
414 { \
415 .type = IIO_TEMP, \
416 .channel = num, \
417 .address = addr, \
418 .scan_index = num, \
419 .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED), \
420 .info_mask_shared_by_all = \
421 BIT(IIO_CHAN_INFO_PROCESSED) | \
422 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
423 .info_mask_shared_by_all_available = \
424 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
425 .datasheet_name = name, \
426 }
427
8940de2e
EH
428#define at91_adc_readl(st, reg) \
429 readl_relaxed((st)->base + (st)->soc_info.platform->layout->reg)
430#define at91_adc_read_chan(st, reg) \
431 readl_relaxed((st)->base + reg)
432#define at91_adc_writel(st, reg, val) \
433 writel_relaxed(val, (st)->base + (st)->soc_info.platform->layout->reg)
434
435/**
436 * struct at91_adc_platform - at91-sama5d2 platform information struct
437 * @layout: pointer to the reg layout struct
438 * @adc_channels: pointer to an array of channels for registering in
439 * the iio subsystem
440 * @nr_channels: number of physical channels available
441 * @touch_chan_x: index of the touchscreen X channel
442 * @touch_chan_y: index of the touchscreen Y channel
443 * @touch_chan_p: index of the touchscreen P channel
444 * @max_channels: number of total channels
445 * @max_index: highest channel index (highest index may be higher
446 * than the total channel number)
447 * @hw_trig_cnt: number of possible hardware triggers
287c271d 448 * @osr_mask: oversampling ratio bitmask on EMR register
3c5d62a1
CB
449 * @oversampling_avail: available oversampling values
450 * @oversampling_avail_no: number of available oversampling values
00ee4add 451 * @chan_realbits: realbits for registered channels
5ab38b81
CB
452 * @temp_chan: temperature channel index
453 * @temp_sensor: temperature sensor supported
8940de2e
EH
454 */
455struct at91_adc_platform {
456 const struct at91_adc_reg_layout *layout;
457 const struct iio_chan_spec (*adc_channels)[];
458 unsigned int nr_channels;
459 unsigned int touch_chan_x;
460 unsigned int touch_chan_y;
461 unsigned int touch_chan_p;
462 unsigned int max_channels;
463 unsigned int max_index;
464 unsigned int hw_trig_cnt;
287c271d 465 unsigned int osr_mask;
5fc30713 466 unsigned int oversampling_avail[5];
3c5d62a1 467 unsigned int oversampling_avail_no;
00ee4add 468 unsigned int chan_realbits;
5ab38b81
CB
469 unsigned int temp_chan;
470 bool temp_sensor;
471};
472
473/**
474 * struct at91_adc_temp_sensor_clb - at91-sama5d2 temperature sensor
475 * calibration data structure
476 * @p1: P1 calibration temperature
477 * @p4: P4 calibration voltage
478 * @p6: P6 calibration voltage
479 */
480struct at91_adc_temp_sensor_clb {
481 u32 p1;
482 u32 p4;
483 u32 p6;
8940de2e 484};
27e17719 485
5ab38b81
CB
486/**
487 * enum at91_adc_ts_clb_idx - calibration indexes in NVMEM buffer
488 * @AT91_ADC_TS_CLB_IDX_P1: index for P1
489 * @AT91_ADC_TS_CLB_IDX_P4: index for P4
490 * @AT91_ADC_TS_CLB_IDX_P6: index for P6
491 * @AT91_ADC_TS_CLB_IDX_MAX: max index for temperature calibration packet in OTP
492 */
493enum at91_adc_ts_clb_idx {
494 AT91_ADC_TS_CLB_IDX_P1 = 2,
495 AT91_ADC_TS_CLB_IDX_P4 = 5,
496 AT91_ADC_TS_CLB_IDX_P6 = 7,
497 AT91_ADC_TS_CLB_IDX_MAX = 19,
498};
499
500/* Temperature sensor calibration - Vtemp voltage sensitivity to temperature. */
501#define AT91_ADC_TS_VTEMP_DT (2080U)
502
8940de2e
EH
503/**
504 * struct at91_adc_soc_info - at91-sama5d2 soc information struct
505 * @startup_time: device startup time
506 * @min_sample_rate: minimum sample rate in Hz
507 * @max_sample_rate: maximum sample rate in Hz
508 * @platform: pointer to the platform structure
5ab38b81 509 * @temp_sensor_clb: temperature sensor calibration data structure
8940de2e 510 */
27e17719
LD
511struct at91_adc_soc_info {
512 unsigned startup_time;
513 unsigned min_sample_rate;
514 unsigned max_sample_rate;
8940de2e 515 const struct at91_adc_platform *platform;
5ab38b81 516 struct at91_adc_temp_sensor_clb temp_sensor_clb;
27e17719
LD
517};
518
5e1a1da0
EH
519struct at91_adc_trigger {
520 char *name;
521 unsigned int trgmod_value;
522 unsigned int edge_type;
ca4c3023 523 bool hw_trig;
5e1a1da0
EH
524};
525
073c6620 526/**
62eebcb6 527 * struct at91_adc_dma - at91-sama5d2 dma information struct
073c6620
EH
528 * @dma_chan: the dma channel acquired
529 * @rx_buf: dma coherent allocated area
530 * @rx_dma_buf: dma handler for the buffer
531 * @phys_addr: physical address of the ADC base register
532 * @buf_idx: index inside the dma buffer where reading was last done
533 * @rx_buf_sz: size of buffer used by DMA operation
534 * @watermark: number of conversions to copy before DMA triggers irq
535 * @dma_ts: hold the start timestamp of dma operation
536 */
537struct at91_adc_dma {
538 struct dma_chan *dma_chan;
539 u8 *rx_buf;
540 dma_addr_t rx_dma_buf;
541 phys_addr_t phys_addr;
542 int buf_idx;
543 int rx_buf_sz;
544 int watermark;
545 s64 dma_ts;
546};
547
23ec2774 548/**
62eebcb6 549 * struct at91_adc_touch - at91-sama5d2 touchscreen information struct
23ec2774
EH
550 * @sample_period_val: the value for periodic trigger interval
551 * @touching: is the pen touching the screen or not
552 * @x_pos: temporary placeholder for pressure computation
553 * @channels_bitmask: bitmask with the touchscreen channels enabled
554 * @workq: workqueue for buffer data pushing
555 */
556struct at91_adc_touch {
557 u16 sample_period_val;
558 bool touching;
559 u16 x_pos;
560 unsigned long channels_bitmask;
561 struct work_struct workq;
562};
563
5ab38b81
CB
564/**
565 * struct at91_adc_temp - at91-sama5d2 temperature information structure
566 * @sample_period_val: sample period value
567 * @saved_sample_rate: saved sample rate
568 * @saved_oversampling: saved oversampling
569 */
570struct at91_adc_temp {
571 u16 sample_period_val;
572 u16 saved_sample_rate;
573 u16 saved_oversampling;
574};
575
8940de2e
EH
576/*
577 * Buffer size requirements:
578 * No channels * bytes_per_channel(2) + timestamp bytes (8)
579 * Divided by 2 because we need half words.
580 * We assume 32 channels for now, has to be increased if needed.
581 * Nobody minds a buffer being too big.
582 */
583#define AT91_BUFFER_MAX_HWORDS ((32 * 2 + 8) / 2)
584
27e17719
LD
585struct at91_adc_state {
586 void __iomem *base;
587 int irq;
588 struct clk *per_clk;
589 struct regulator *reg;
590 struct regulator *vref;
d7bdcc3f 591 int vref_uv;
23ec2774 592 unsigned int current_sample_rate;
5e1a1da0
EH
593 struct iio_trigger *trig;
594 const struct at91_adc_trigger *selected_trig;
27e17719
LD
595 const struct iio_chan_spec *chan;
596 bool conversion_done;
597 u32 conversion_value;
6794e23f 598 unsigned int oversampling_ratio;
27e17719
LD
599 struct at91_adc_soc_info soc_info;
600 wait_queue_head_t wq_data_available;
073c6620 601 struct at91_adc_dma dma_st;
23ec2774 602 struct at91_adc_touch touch_st;
5ab38b81 603 struct at91_adc_temp temp_st;
ebf35aad 604 struct iio_dev *indio_dev;
75d7556a 605 struct device *dev;
8f884758
JC
606 /* Ensure naturally aligned timestamp */
607 u16 buffer[AT91_BUFFER_MAX_HWORDS] __aligned(8);
27e17719
LD
608 /*
609 * lock to prevent concurrent 'single conversion' requests through
610 * sysfs.
611 */
612 struct mutex lock;
613};
614
5e1a1da0
EH
615static const struct at91_adc_trigger at91_adc_trigger_list[] = {
616 {
617 .name = "external_rising",
618 .trgmod_value = AT91_SAMA5D2_TRGR_TRGMOD_EXT_TRIG_RISE,
619 .edge_type = IRQ_TYPE_EDGE_RISING,
ca4c3023 620 .hw_trig = true,
5e1a1da0
EH
621 },
622 {
623 .name = "external_falling",
624 .trgmod_value = AT91_SAMA5D2_TRGR_TRGMOD_EXT_TRIG_FALL,
625 .edge_type = IRQ_TYPE_EDGE_FALLING,
ca4c3023 626 .hw_trig = true,
5e1a1da0
EH
627 },
628 {
629 .name = "external_any",
630 .trgmod_value = AT91_SAMA5D2_TRGR_TRGMOD_EXT_TRIG_ANY,
631 .edge_type = IRQ_TYPE_EDGE_BOTH,
ca4c3023
EH
632 .hw_trig = true,
633 },
634 {
635 .name = "software",
636 .trgmod_value = AT91_SAMA5D2_TRGR_TRGMOD_NO_TRIGGER,
637 .edge_type = IRQ_TYPE_NONE,
638 .hw_trig = false,
5e1a1da0
EH
639 },
640};
641
8940de2e
EH
642static const struct iio_chan_spec at91_sama5d2_adc_channels[] = {
643 AT91_SAMA5D2_CHAN_SINGLE(0, 0, 0x50),
644 AT91_SAMA5D2_CHAN_SINGLE(1, 1, 0x54),
645 AT91_SAMA5D2_CHAN_SINGLE(2, 2, 0x58),
646 AT91_SAMA5D2_CHAN_SINGLE(3, 3, 0x5c),
647 AT91_SAMA5D2_CHAN_SINGLE(4, 4, 0x60),
648 AT91_SAMA5D2_CHAN_SINGLE(5, 5, 0x64),
649 AT91_SAMA5D2_CHAN_SINGLE(6, 6, 0x68),
650 AT91_SAMA5D2_CHAN_SINGLE(7, 7, 0x6c),
651 AT91_SAMA5D2_CHAN_SINGLE(8, 8, 0x70),
652 AT91_SAMA5D2_CHAN_SINGLE(9, 9, 0x74),
653 AT91_SAMA5D2_CHAN_SINGLE(10, 10, 0x78),
654 AT91_SAMA5D2_CHAN_SINGLE(11, 11, 0x7c),
655 /* original ABI has the differential channels with a gap in between */
656 AT91_SAMA5D2_CHAN_DIFF(12, 0, 1, 0x50),
657 AT91_SAMA5D2_CHAN_DIFF(14, 2, 3, 0x58),
658 AT91_SAMA5D2_CHAN_DIFF(16, 4, 5, 0x60),
659 AT91_SAMA5D2_CHAN_DIFF(18, 6, 7, 0x68),
660 AT91_SAMA5D2_CHAN_DIFF(20, 8, 9, 0x70),
661 AT91_SAMA5D2_CHAN_DIFF(22, 10, 11, 0x78),
662 IIO_CHAN_SOFT_TIMESTAMP(23),
663 AT91_SAMA5D2_CHAN_TOUCH(24, "x", IIO_MOD_X),
664 AT91_SAMA5D2_CHAN_TOUCH(25, "y", IIO_MOD_Y),
665 AT91_SAMA5D2_CHAN_PRESSURE(26, "pressure"),
666};
667
840bf6cb
EH
668static const struct iio_chan_spec at91_sama7g5_adc_channels[] = {
669 AT91_SAMA5D2_CHAN_SINGLE(0, 0, 0x60),
670 AT91_SAMA5D2_CHAN_SINGLE(1, 1, 0x64),
671 AT91_SAMA5D2_CHAN_SINGLE(2, 2, 0x68),
672 AT91_SAMA5D2_CHAN_SINGLE(3, 3, 0x6c),
673 AT91_SAMA5D2_CHAN_SINGLE(4, 4, 0x70),
674 AT91_SAMA5D2_CHAN_SINGLE(5, 5, 0x74),
675 AT91_SAMA5D2_CHAN_SINGLE(6, 6, 0x78),
676 AT91_SAMA5D2_CHAN_SINGLE(7, 7, 0x7c),
677 AT91_SAMA5D2_CHAN_SINGLE(8, 8, 0x80),
678 AT91_SAMA5D2_CHAN_SINGLE(9, 9, 0x84),
679 AT91_SAMA5D2_CHAN_SINGLE(10, 10, 0x88),
680 AT91_SAMA5D2_CHAN_SINGLE(11, 11, 0x8c),
681 AT91_SAMA5D2_CHAN_SINGLE(12, 12, 0x90),
682 AT91_SAMA5D2_CHAN_SINGLE(13, 13, 0x94),
683 AT91_SAMA5D2_CHAN_SINGLE(14, 14, 0x98),
684 AT91_SAMA5D2_CHAN_SINGLE(15, 15, 0x9c),
685 AT91_SAMA5D2_CHAN_DIFF(16, 0, 1, 0x60),
686 AT91_SAMA5D2_CHAN_DIFF(17, 2, 3, 0x68),
687 AT91_SAMA5D2_CHAN_DIFF(18, 4, 5, 0x70),
688 AT91_SAMA5D2_CHAN_DIFF(19, 6, 7, 0x78),
689 AT91_SAMA5D2_CHAN_DIFF(20, 8, 9, 0x80),
690 AT91_SAMA5D2_CHAN_DIFF(21, 10, 11, 0x88),
691 AT91_SAMA5D2_CHAN_DIFF(22, 12, 13, 0x90),
692 AT91_SAMA5D2_CHAN_DIFF(23, 14, 15, 0x98),
693 IIO_CHAN_SOFT_TIMESTAMP(24),
5ab38b81 694 AT91_SAMA5D2_CHAN_TEMP(AT91_SAMA7G5_ADC_TEMP_CHANNEL, "temp", 0xdc),
840bf6cb
EH
695};
696
8940de2e
EH
697static const struct at91_adc_platform sama5d2_platform = {
698 .layout = &sama5d2_layout,
699 .adc_channels = &at91_sama5d2_adc_channels,
700#define AT91_SAMA5D2_SINGLE_CHAN_CNT 12
701#define AT91_SAMA5D2_DIFF_CHAN_CNT 6
702 .nr_channels = AT91_SAMA5D2_SINGLE_CHAN_CNT +
703 AT91_SAMA5D2_DIFF_CHAN_CNT,
704#define AT91_SAMA5D2_TOUCH_X_CHAN_IDX (AT91_SAMA5D2_SINGLE_CHAN_CNT + \
705 AT91_SAMA5D2_DIFF_CHAN_CNT * 2)
706 .touch_chan_x = AT91_SAMA5D2_TOUCH_X_CHAN_IDX,
707#define AT91_SAMA5D2_TOUCH_Y_CHAN_IDX (AT91_SAMA5D2_TOUCH_X_CHAN_IDX + 1)
708 .touch_chan_y = AT91_SAMA5D2_TOUCH_Y_CHAN_IDX,
709#define AT91_SAMA5D2_TOUCH_P_CHAN_IDX (AT91_SAMA5D2_TOUCH_Y_CHAN_IDX + 1)
710 .touch_chan_p = AT91_SAMA5D2_TOUCH_P_CHAN_IDX,
711#define AT91_SAMA5D2_MAX_CHAN_IDX AT91_SAMA5D2_TOUCH_P_CHAN_IDX
712 .max_channels = ARRAY_SIZE(at91_sama5d2_adc_channels),
713 .max_index = AT91_SAMA5D2_MAX_CHAN_IDX,
714#define AT91_SAMA5D2_HW_TRIG_CNT 3
715 .hw_trig_cnt = AT91_SAMA5D2_HW_TRIG_CNT,
287c271d 716 .osr_mask = GENMASK(17, 16),
3c5d62a1
CB
717 .oversampling_avail = { 1, 4, 16, },
718 .oversampling_avail_no = 3,
00ee4add 719 .chan_realbits = 14,
27e17719
LD
720};
721
840bf6cb
EH
722static const struct at91_adc_platform sama7g5_platform = {
723 .layout = &sama7g5_layout,
724 .adc_channels = &at91_sama7g5_adc_channels,
725#define AT91_SAMA7G5_SINGLE_CHAN_CNT 16
726#define AT91_SAMA7G5_DIFF_CHAN_CNT 8
5ab38b81 727#define AT91_SAMA7G5_TEMP_CHAN_CNT 1
840bf6cb 728 .nr_channels = AT91_SAMA7G5_SINGLE_CHAN_CNT +
5ab38b81
CB
729 AT91_SAMA7G5_DIFF_CHAN_CNT +
730 AT91_SAMA7G5_TEMP_CHAN_CNT,
840bf6cb 731#define AT91_SAMA7G5_MAX_CHAN_IDX (AT91_SAMA7G5_SINGLE_CHAN_CNT + \
5ab38b81
CB
732 AT91_SAMA7G5_DIFF_CHAN_CNT + \
733 AT91_SAMA7G5_TEMP_CHAN_CNT)
840bf6cb
EH
734 .max_channels = ARRAY_SIZE(at91_sama7g5_adc_channels),
735 .max_index = AT91_SAMA7G5_MAX_CHAN_IDX,
736#define AT91_SAMA7G5_HW_TRIG_CNT 3
737 .hw_trig_cnt = AT91_SAMA7G5_HW_TRIG_CNT,
287c271d 738 .osr_mask = GENMASK(18, 16),
5fc30713
CB
739 .oversampling_avail = { 1, 4, 16, 64, 256, },
740 .oversampling_avail_no = 5,
00ee4add 741 .chan_realbits = 16,
5ab38b81
CB
742 .temp_sensor = true,
743 .temp_chan = AT91_SAMA7G5_ADC_TEMP_CHANNEL,
840bf6cb
EH
744};
745
f0c8d1f6
EH
746static int at91_adc_chan_xlate(struct iio_dev *indio_dev, int chan)
747{
748 int i;
749
750 for (i = 0; i < indio_dev->num_channels; i++) {
751 if (indio_dev->channels[i].scan_index == chan)
752 return i;
753 }
754 return -EINVAL;
755}
756
757static inline struct iio_chan_spec const *
758at91_adc_chan_get(struct iio_dev *indio_dev, int chan)
759{
760 int index = at91_adc_chan_xlate(indio_dev, chan);
761
762 if (index < 0)
763 return NULL;
764 return indio_dev->channels + index;
765}
766
34b6eb89
NS
767static inline int at91_adc_fwnode_xlate(struct iio_dev *indio_dev,
768 const struct fwnode_reference_args *iiospec)
23ec2774
EH
769{
770 return at91_adc_chan_xlate(indio_dev, iiospec->args[0]);
771}
772
97c54cf2
EH
773static unsigned int at91_adc_active_scan_mask_to_reg(struct iio_dev *indio_dev)
774{
775 u32 mask = 0;
776 u8 bit;
8940de2e 777 struct at91_adc_state *st = iio_priv(indio_dev);
97c54cf2
EH
778
779 for_each_set_bit(bit, indio_dev->active_scan_mask,
780 indio_dev->num_channels) {
781 struct iio_chan_spec const *chan =
782 at91_adc_chan_get(indio_dev, bit);
783 mask |= BIT(chan->channel);
784 }
785
8940de2e 786 return mask & GENMASK(st->soc_info.platform->nr_channels, 0);
97c54cf2
EH
787}
788
d8004c5f
EH
789static void at91_adc_cor(struct at91_adc_state *st,
790 struct iio_chan_spec const *chan)
791{
792 u32 cor, cur_cor;
793
794 cor = BIT(chan->channel) | BIT(chan->channel2);
795
796 cur_cor = at91_adc_readl(st, COR);
797 cor <<= st->soc_info.platform->layout->COR_diff_offset;
798 if (chan->differential)
799 at91_adc_writel(st, COR, cur_cor | cor);
800 else
801 at91_adc_writel(st, COR, cur_cor & ~cor);
802}
803
e6d5eee4
EH
804static void at91_adc_irq_status(struct at91_adc_state *st, u32 *status,
805 u32 *eoc)
806{
807 *status = at91_adc_readl(st, ISR);
808 if (st->soc_info.platform->layout->EOC_ISR)
809 *eoc = at91_adc_readl(st, EOC_ISR);
810 else
811 *eoc = *status;
812}
813
814static void at91_adc_irq_mask(struct at91_adc_state *st, u32 *status, u32 *eoc)
815{
816 *status = at91_adc_readl(st, IMR);
817 if (st->soc_info.platform->layout->EOC_IMR)
818 *eoc = at91_adc_readl(st, EOC_IMR);
819 else
820 *eoc = *status;
821}
822
823static void at91_adc_eoc_dis(struct at91_adc_state *st, unsigned int channel)
824{
825 /*
826 * On some products having the EOC bits in a separate register,
827 * errata recommends not writing this register (EOC_IDR).
828 * On products having the EOC bits in the IDR register, it's fine to write it.
829 */
830 if (!st->soc_info.platform->layout->EOC_IDR)
831 at91_adc_writel(st, IDR, BIT(channel));
832}
833
834static void at91_adc_eoc_ena(struct at91_adc_state *st, unsigned int channel)
835{
836 if (!st->soc_info.platform->layout->EOC_IDR)
837 at91_adc_writel(st, IER, BIT(channel));
838 else
839 at91_adc_writel(st, EOC_IER, BIT(channel));
840}
841
502966c3 842static int at91_adc_config_emr(struct at91_adc_state *st,
04227f95 843 u32 oversampling_ratio, u32 trackx)
6794e23f
EH
844{
845 /* configure the extended mode register */
75d7556a 846 unsigned int emr, osr;
287c271d 847 unsigned int osr_mask = st->soc_info.platform->osr_mask;
75d7556a 848 int i, ret;
5fc30713
CB
849
850 /* Check against supported oversampling values. */
851 for (i = 0; i < st->soc_info.platform->oversampling_avail_no; i++) {
852 if (oversampling_ratio == st->soc_info.platform->oversampling_avail[i])
853 break;
854 }
855 if (i == st->soc_info.platform->oversampling_avail_no)
856 return -EINVAL;
6794e23f 857
6794e23f 858 /* select oversampling ratio from configuration */
287c271d 859 switch (oversampling_ratio) {
eea2655e 860 case 1:
75d7556a
CB
861 osr = AT91_SAMA5D2_EMR_OSR(AT91_SAMA5D2_EMR_OSR_1SAMPLES,
862 osr_mask);
6794e23f 863 break;
eea2655e 864 case 4:
75d7556a
CB
865 osr = AT91_SAMA5D2_EMR_OSR(AT91_SAMA5D2_EMR_OSR_4SAMPLES,
866 osr_mask);
6794e23f 867 break;
eea2655e 868 case 16:
75d7556a
CB
869 osr = AT91_SAMA5D2_EMR_OSR(AT91_SAMA5D2_EMR_OSR_16SAMPLES,
870 osr_mask);
6794e23f 871 break;
5fc30713 872 case 64:
75d7556a
CB
873 osr = AT91_SAMA5D2_EMR_OSR(AT91_SAMA5D2_EMR_OSR_64SAMPLES,
874 osr_mask);
5fc30713
CB
875 break;
876 case 256:
75d7556a
CB
877 osr = AT91_SAMA5D2_EMR_OSR(AT91_SAMA5D2_EMR_OSR_256SAMPLES,
878 osr_mask);
5fc30713 879 break;
6794e23f
EH
880 }
881
75d7556a
CB
882 ret = pm_runtime_resume_and_get(st->dev);
883 if (ret < 0)
884 return ret;
885
886 emr = at91_adc_readl(st, EMR);
887 /* select oversampling per single trigger event */
888 emr |= AT91_SAMA5D2_EMR_ASTE(1);
889 /* delete leftover content if it's the case */
890 emr &= ~(osr_mask | AT91_SAMA5D2_TRACKX_MASK);
891 /* Update osr and trackx. */
892 emr |= osr | AT91_SAMA5D2_TRACKX(trackx);
8940de2e 893 at91_adc_writel(st, EMR, emr);
502966c3 894
75d7556a
CB
895 pm_runtime_mark_last_busy(st->dev);
896 pm_runtime_put_autosuspend(st->dev);
897
426b6475
CB
898 st->oversampling_ratio = oversampling_ratio;
899
502966c3 900 return 0;
6794e23f
EH
901}
902
903static int at91_adc_adjust_val_osr(struct at91_adc_state *st, int *val)
904{
00ee4add
CB
905 int nbits, diff;
906
907 if (st->oversampling_ratio == 1)
908 nbits = 12;
909 else if (st->oversampling_ratio == 4)
910 nbits = 13;
911 else if (st->oversampling_ratio == 16)
912 nbits = 14;
5fc30713
CB
913 else if (st->oversampling_ratio == 64)
914 nbits = 15;
915 else if (st->oversampling_ratio == 256)
916 nbits = 16;
00ee4add
CB
917 else
918 /* Should not happen. */
919 return -EINVAL;
920
921 /*
922 * We have nbits of real data and channel is registered as
923 * st->soc_info.platform->chan_realbits, so shift left diff bits.
924 */
925 diff = st->soc_info.platform->chan_realbits - nbits;
926 *val <<= diff;
6794e23f
EH
927
928 return IIO_VAL_INT;
929}
930
931static void at91_adc_adjust_val_osr_array(struct at91_adc_state *st, void *buf,
932 int len)
933{
934 int i = 0, val;
935 u16 *buf_u16 = (u16 *) buf;
936
937 /*
938 * We are converting each two bytes (each sample).
939 * First convert the byte based array to u16, and convert each sample
940 * separately.
941 * Each value is two bytes in an array of chars, so to not shift
942 * more than we need, save the value separately.
943 * len is in bytes, so divide by two to get number of samples.
944 */
945 while (i < len / 2) {
946 val = buf_u16[i];
947 at91_adc_adjust_val_osr(st, &val);
948 buf_u16[i] = val;
949 i++;
950 }
951}
952
23ec2774
EH
953static int at91_adc_configure_touch(struct at91_adc_state *st, bool state)
954{
955 u32 clk_khz = st->current_sample_rate / 1000;
75d7556a 956 int i = 0, ret;
23ec2774
EH
957 u16 pendbc;
958 u32 tsmr, acr;
959
75d7556a
CB
960 if (state) {
961 ret = pm_runtime_resume_and_get(st->dev);
962 if (ret < 0)
963 return ret;
964 } else {
23ec2774 965 /* disabling touch IRQs and setting mode to no touch enabled */
8940de2e 966 at91_adc_writel(st, IDR,
23ec2774 967 AT91_SAMA5D2_IER_PEN | AT91_SAMA5D2_IER_NOPEN);
8940de2e 968 at91_adc_writel(st, TSMR, 0);
75d7556a
CB
969
970 pm_runtime_mark_last_busy(st->dev);
971 pm_runtime_put_autosuspend(st->dev);
23ec2774
EH
972 return 0;
973 }
974 /*
975 * debounce time is in microseconds, we need it in milliseconds to
976 * multiply with kilohertz, so, divide by 1000, but after the multiply.
977 * round up to make sure pendbc is at least 1
978 */
979 pendbc = round_up(AT91_SAMA5D2_TOUCH_PEN_DETECT_DEBOUNCE_US *
980 clk_khz / 1000, 1);
981
982 /* get the required exponent */
983 while (pendbc >> i++)
984 ;
985
986 pendbc = i;
987
988 tsmr = AT91_SAMA5D2_TSMR_TSMODE_4WIRE_PRESS;
989
990 tsmr |= AT91_SAMA5D2_TSMR_TSAV(2) & AT91_SAMA5D2_TSMR_TSAV_MASK;
991 tsmr |= AT91_SAMA5D2_TSMR_PENDBC(pendbc) &
992 AT91_SAMA5D2_TSMR_PENDBC_MASK;
993 tsmr |= AT91_SAMA5D2_TSMR_NOTSDMA;
994 tsmr |= AT91_SAMA5D2_TSMR_PENDET_ENA;
995 tsmr |= AT91_SAMA5D2_TSMR_TSFREQ(2) & AT91_SAMA5D2_TSMR_TSFREQ_MASK;
996
8940de2e 997 at91_adc_writel(st, TSMR, tsmr);
23ec2774 998
8940de2e 999 acr = at91_adc_readl(st, ACR);
23ec2774
EH
1000 acr &= ~AT91_SAMA5D2_ACR_PENDETSENS_MASK;
1001 acr |= 0x02 & AT91_SAMA5D2_ACR_PENDETSENS_MASK;
8940de2e 1002 at91_adc_writel(st, ACR, acr);
23ec2774
EH
1003
1004 /* Sample Period Time = (TRGPER + 1) / ADCClock */
1005 st->touch_st.sample_period_val =
1006 round_up((AT91_SAMA5D2_TOUCH_SAMPLE_PERIOD_US *
1007 clk_khz / 1000) - 1, 1);
1008 /* enable pen detect IRQ */
8940de2e 1009 at91_adc_writel(st, IER, AT91_SAMA5D2_IER_PEN);
23ec2774
EH
1010
1011 return 0;
1012}
1013
1014static u16 at91_adc_touch_pos(struct at91_adc_state *st, int reg)
1015{
8940de2e 1016 u32 val = 0;
23ec2774
EH
1017 u32 scale, result, pos;
1018
1019 /*
1020 * to obtain the actual position we must divide by scale
1021 * and multiply with max, where
1022 * max = 2^AT91_SAMA5D2_MAX_POS_BITS - 1
1023 */
1024 /* first half of register is the x or y, second half is the scale */
8940de2e
EH
1025 if (reg == st->soc_info.platform->layout->XPOSR)
1026 val = at91_adc_readl(st, XPOSR);
1027 else if (reg == st->soc_info.platform->layout->YPOSR)
1028 val = at91_adc_readl(st, YPOSR);
1029
23ec2774 1030 if (!val)
ebf35aad 1031 dev_dbg(&st->indio_dev->dev, "pos is 0\n");
23ec2774
EH
1032
1033 pos = val & AT91_SAMA5D2_XYZ_MASK;
1034 result = (pos << AT91_SAMA5D2_MAX_POS_BITS) - pos;
1035 scale = (val >> 16) & AT91_SAMA5D2_XYZ_MASK;
1036 if (scale == 0) {
ebf35aad 1037 dev_err(&st->indio_dev->dev, "scale is 0\n");
23ec2774
EH
1038 return 0;
1039 }
1040 result /= scale;
1041
1042 return result;
1043}
1044
1045static u16 at91_adc_touch_x_pos(struct at91_adc_state *st)
1046{
8940de2e 1047 st->touch_st.x_pos = at91_adc_touch_pos(st, st->soc_info.platform->layout->XPOSR);
23ec2774
EH
1048 return st->touch_st.x_pos;
1049}
1050
1051static u16 at91_adc_touch_y_pos(struct at91_adc_state *st)
1052{
8940de2e 1053 return at91_adc_touch_pos(st, st->soc_info.platform->layout->YPOSR);
23ec2774
EH
1054}
1055
1056static u16 at91_adc_touch_pressure(struct at91_adc_state *st)
1057{
1058 u32 val;
1059 u32 z1, z2;
1060 u32 pres;
1061 u32 rxp = 1;
1062 u32 factor = 1000;
1063
1064 /* calculate the pressure */
8940de2e 1065 val = at91_adc_readl(st, PRESSR);
23ec2774
EH
1066 z1 = val & AT91_SAMA5D2_XYZ_MASK;
1067 z2 = (val >> 16) & AT91_SAMA5D2_XYZ_MASK;
1068
1069 if (z1 != 0)
1070 pres = rxp * (st->touch_st.x_pos * factor / 1024) *
1071 (z2 * factor / z1 - factor) /
1072 factor;
1073 else
1074 pres = 0xFFFF; /* no pen contact */
1075
1076 /*
1077 * The pressure from device grows down, minimum is 0xFFFF, maximum 0x0.
1078 * We compute it this way, but let's return it in the expected way,
1079 * growing from 0 to 0xFFFF.
1080 */
1081 return 0xFFFF - pres;
1082}
1083
1084static int at91_adc_read_position(struct at91_adc_state *st, int chan, u16 *val)
1085{
1086 *val = 0;
1087 if (!st->touch_st.touching)
1088 return -ENODATA;
8940de2e 1089 if (chan == st->soc_info.platform->touch_chan_x)
23ec2774 1090 *val = at91_adc_touch_x_pos(st);
8940de2e 1091 else if (chan == st->soc_info.platform->touch_chan_y)
23ec2774
EH
1092 *val = at91_adc_touch_y_pos(st);
1093 else
1094 return -ENODATA;
1095
1096 return IIO_VAL_INT;
1097}
1098
1099static int at91_adc_read_pressure(struct at91_adc_state *st, int chan, u16 *val)
1100{
1101 *val = 0;
1102 if (!st->touch_st.touching)
1103 return -ENODATA;
8940de2e 1104 if (chan == st->soc_info.platform->touch_chan_p)
23ec2774
EH
1105 *val = at91_adc_touch_pressure(st);
1106 else
1107 return -ENODATA;
1108
1109 return IIO_VAL_INT;
1110}
1111
75d7556a
CB
1112static void at91_adc_configure_trigger_registers(struct at91_adc_state *st,
1113 bool state)
5e1a1da0 1114{
8940de2e 1115 u32 status = at91_adc_readl(st, TRGR);
5e1a1da0
EH
1116
1117 /* clear TRGMOD */
1118 status &= ~AT91_SAMA5D2_TRGR_TRGMOD_MASK;
1119
1120 if (state)
1121 status |= st->selected_trig->trgmod_value;
1122
1123 /* set/unset hw trigger */
8940de2e 1124 at91_adc_writel(st, TRGR, status);
75d7556a
CB
1125}
1126
1127static int at91_adc_configure_trigger(struct iio_trigger *trig, bool state)
1128{
1129 struct iio_dev *indio = iio_trigger_get_drvdata(trig);
1130 struct at91_adc_state *st = iio_priv(indio);
1131 int ret;
1132
1133 if (state) {
1134 ret = pm_runtime_resume_and_get(st->dev);
1135 if (ret < 0)
1136 return ret;
1137 }
1138
1139 at91_adc_configure_trigger_registers(st, state);
1140
1141 if (!state) {
1142 pm_runtime_mark_last_busy(st->dev);
1143 pm_runtime_put_autosuspend(st->dev);
1144 }
5e1a1da0 1145
5e1a1da0
EH
1146 return 0;
1147}
1148
eca8523a 1149static void at91_adc_reenable_trigger(struct iio_trigger *trig)
5e1a1da0
EH
1150{
1151 struct iio_dev *indio = iio_trigger_get_drvdata(trig);
1152 struct at91_adc_state *st = iio_priv(indio);
1153
073c6620
EH
1154 /* if we are using DMA, we must not reenable irq after each trigger */
1155 if (st->dma_st.dma_chan)
eca8523a 1156 return;
073c6620 1157
5e1a1da0
EH
1158 enable_irq(st->irq);
1159
1160 /* Needed to ACK the DRDY interruption */
8940de2e 1161 at91_adc_readl(st, LCDR);
5e1a1da0
EH
1162}
1163
1164static const struct iio_trigger_ops at91_adc_trigger_ops = {
5e1a1da0 1165 .set_trigger_state = &at91_adc_configure_trigger,
eca8523a 1166 .reenable = &at91_adc_reenable_trigger,
073c6620
EH
1167 .validate_device = iio_trigger_validate_own_device,
1168};
1169
1170static int at91_adc_dma_size_done(struct at91_adc_state *st)
1171{
1172 struct dma_tx_state state;
1173 enum dma_status status;
1174 int i, size;
1175
1176 status = dmaengine_tx_status(st->dma_st.dma_chan,
1177 st->dma_st.dma_chan->cookie,
1178 &state);
1179 if (status != DMA_IN_PROGRESS)
1180 return 0;
1181
1182 /* Transferred length is size in bytes from end of buffer */
1183 i = st->dma_st.rx_buf_sz - state.residue;
1184
1185 /* Return available bytes */
1186 if (i >= st->dma_st.buf_idx)
1187 size = i - st->dma_st.buf_idx;
1188 else
1189 size = st->dma_st.rx_buf_sz + i - st->dma_st.buf_idx;
1190 return size;
1191}
1192
1193static void at91_dma_buffer_done(void *data)
1194{
1195 struct iio_dev *indio_dev = data;
1196
1197 iio_trigger_poll_chained(indio_dev->trig);
1198}
1199
1200static int at91_adc_dma_start(struct iio_dev *indio_dev)
1201{
1202 struct at91_adc_state *st = iio_priv(indio_dev);
1203 struct dma_async_tx_descriptor *desc;
1204 dma_cookie_t cookie;
1205 int ret;
1206 u8 bit;
1207
1208 if (!st->dma_st.dma_chan)
1209 return 0;
1210
1211 /* we start a new DMA, so set buffer index to start */
1212 st->dma_st.buf_idx = 0;
1213
1214 /*
1215 * compute buffer size w.r.t. watermark and enabled channels.
1216 * scan_bytes is aligned so we need an exact size for DMA
1217 */
1218 st->dma_st.rx_buf_sz = 0;
1219
1220 for_each_set_bit(bit, indio_dev->active_scan_mask,
1221 indio_dev->num_channels) {
f0c8d1f6
EH
1222 struct iio_chan_spec const *chan =
1223 at91_adc_chan_get(indio_dev, bit);
1224
1225 if (!chan)
1226 continue;
073c6620
EH
1227
1228 st->dma_st.rx_buf_sz += chan->scan_type.storagebits / 8;
1229 }
1230 st->dma_st.rx_buf_sz *= st->dma_st.watermark;
1231
1232 /* Prepare a DMA cyclic transaction */
1233 desc = dmaengine_prep_dma_cyclic(st->dma_st.dma_chan,
1234 st->dma_st.rx_dma_buf,
1235 st->dma_st.rx_buf_sz,
1236 st->dma_st.rx_buf_sz / 2,
1237 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
1238
1239 if (!desc) {
1240 dev_err(&indio_dev->dev, "cannot prepare DMA cyclic\n");
1241 return -EBUSY;
1242 }
1243
1244 desc->callback = at91_dma_buffer_done;
1245 desc->callback_param = indio_dev;
1246
1247 cookie = dmaengine_submit(desc);
1248 ret = dma_submit_error(cookie);
1249 if (ret) {
1250 dev_err(&indio_dev->dev, "cannot submit DMA cyclic\n");
1251 dmaengine_terminate_async(st->dma_st.dma_chan);
1252 return ret;
1253 }
1254
1255 /* enable general overrun error signaling */
8940de2e 1256 at91_adc_writel(st, IER, AT91_SAMA5D2_IER_GOVRE);
073c6620
EH
1257 /* Issue pending DMA requests */
1258 dma_async_issue_pending(st->dma_st.dma_chan);
1259
1260 /* consider current time as DMA start time for timestamps */
1261 st->dma_st.dma_ts = iio_get_time_ns(indio_dev);
1262
1263 dev_dbg(&indio_dev->dev, "DMA cyclic started\n");
1264
1265 return 0;
1266}
1267
abb7e84d
EH
1268static bool at91_adc_buffer_check_use_irq(struct iio_dev *indio,
1269 struct at91_adc_state *st)
1270{
1271 /* if using DMA, we do not use our own IRQ (we use DMA-controller) */
1272 if (st->dma_st.dma_chan)
1273 return false;
1274 /* if the trigger is not ours, then it has its own IRQ */
1275 if (iio_trigger_validate_own_device(indio->trig, indio))
1276 return false;
1277 return true;
1278}
1279
065056cb
AA
1280static bool at91_adc_current_chan_is_touch(struct iio_dev *indio_dev)
1281{
1282 struct at91_adc_state *st = iio_priv(indio_dev);
1283
1284 return !!bitmap_subset(indio_dev->active_scan_mask,
1285 &st->touch_st.channels_bitmask,
8940de2e 1286 st->soc_info.platform->max_index + 1);
065056cb
AA
1287}
1288
1a198794 1289static int at91_adc_buffer_prepare(struct iio_dev *indio_dev)
073c6620
EH
1290{
1291 int ret;
abb7e84d 1292 u8 bit;
23ec2774 1293 struct at91_adc_state *st = iio_priv(indio_dev);
073c6620 1294
23ec2774 1295 /* check if we are enabling triggered buffer or the touchscreen */
065056cb 1296 if (at91_adc_current_chan_is_touch(indio_dev))
23ec2774 1297 return at91_adc_configure_touch(st, true);
065056cb 1298
23ec2774 1299 /* if we are not in triggered mode, we cannot enable the buffer. */
8c576f87 1300 if (!(iio_device_get_current_mode(indio_dev) & INDIO_ALL_TRIGGERED_MODES))
23ec2774
EH
1301 return -EINVAL;
1302
75d7556a
CB
1303 ret = pm_runtime_resume_and_get(st->dev);
1304 if (ret < 0)
1305 return ret;
1306
23ec2774 1307 /* we continue with the triggered buffer */
073c6620
EH
1308 ret = at91_adc_dma_start(indio_dev);
1309 if (ret) {
1a198794 1310 dev_err(&indio_dev->dev, "buffer prepare failed\n");
75d7556a 1311 goto pm_runtime_put;
073c6620
EH
1312 }
1313
abb7e84d
EH
1314 for_each_set_bit(bit, indio_dev->active_scan_mask,
1315 indio_dev->num_channels) {
1316 struct iio_chan_spec const *chan =
1317 at91_adc_chan_get(indio_dev, bit);
abb7e84d
EH
1318 if (!chan)
1319 continue;
1320 /* these channel types cannot be handled by this trigger */
1321 if (chan->type == IIO_POSITIONRELATIVE ||
5ab38b81
CB
1322 chan->type == IIO_PRESSURE ||
1323 chan->type == IIO_TEMP)
abb7e84d
EH
1324 continue;
1325
d8004c5f 1326 at91_adc_cor(st, chan);
abb7e84d 1327
8940de2e 1328 at91_adc_writel(st, CHER, BIT(chan->channel));
abb7e84d
EH
1329 }
1330
1331 if (at91_adc_buffer_check_use_irq(indio_dev, st))
8940de2e 1332 at91_adc_writel(st, IER, AT91_SAMA5D2_IER_DRDY);
abb7e84d 1333
75d7556a
CB
1334pm_runtime_put:
1335 pm_runtime_mark_last_busy(st->dev);
1336 pm_runtime_put_autosuspend(st->dev);
1337 return ret;
f3c034f6
AA
1338}
1339
f3c034f6 1340static int at91_adc_buffer_postdisable(struct iio_dev *indio_dev)
073c6620
EH
1341{
1342 struct at91_adc_state *st = iio_priv(indio_dev);
75d7556a 1343 int ret;
073c6620
EH
1344 u8 bit;
1345
23ec2774 1346 /* check if we are disabling triggered buffer or the touchscreen */
065056cb 1347 if (at91_adc_current_chan_is_touch(indio_dev))
23ec2774 1348 return at91_adc_configure_touch(st, false);
065056cb 1349
23ec2774 1350 /* if we are not in triggered mode, nothing to do here */
8c576f87 1351 if (!(iio_device_get_current_mode(indio_dev) & INDIO_ALL_TRIGGERED_MODES))
23ec2774
EH
1352 return -EINVAL;
1353
75d7556a
CB
1354 ret = pm_runtime_resume_and_get(st->dev);
1355 if (ret < 0)
1356 return ret;
1357
073c6620 1358 /*
abb7e84d
EH
1359 * For each enable channel we must disable it in hardware.
1360 * In the case of DMA, we must read the last converted value
073c6620 1361 * to clear EOC status and not get a possible interrupt later.
abb7e84d 1362 * This value is being read by DMA from LCDR anyway, so it's not lost.
073c6620
EH
1363 */
1364 for_each_set_bit(bit, indio_dev->active_scan_mask,
1365 indio_dev->num_channels) {
f0c8d1f6
EH
1366 struct iio_chan_spec const *chan =
1367 at91_adc_chan_get(indio_dev, bit);
073c6620 1368
f0c8d1f6
EH
1369 if (!chan)
1370 continue;
23ec2774
EH
1371 /* these channel types are virtual, no need to do anything */
1372 if (chan->type == IIO_POSITIONRELATIVE ||
5ab38b81
CB
1373 chan->type == IIO_PRESSURE ||
1374 chan->type == IIO_TEMP)
23ec2774 1375 continue;
abb7e84d 1376
8940de2e 1377 at91_adc_writel(st, CHDR, BIT(chan->channel));
abb7e84d 1378
073c6620 1379 if (st->dma_st.dma_chan)
8940de2e 1380 at91_adc_read_chan(st, chan->address);
073c6620
EH
1381 }
1382
abb7e84d 1383 if (at91_adc_buffer_check_use_irq(indio_dev, st))
8940de2e 1384 at91_adc_writel(st, IDR, AT91_SAMA5D2_IER_DRDY);
abb7e84d 1385
073c6620 1386 /* read overflow register to clear possible overflow status */
8940de2e 1387 at91_adc_readl(st, OVER);
abb7e84d 1388
abb7e84d
EH
1389 /* if we are using DMA we must clear registers and end DMA */
1390 if (st->dma_st.dma_chan)
1391 dmaengine_terminate_sync(st->dma_st.dma_chan);
1392
75d7556a
CB
1393 pm_runtime_mark_last_busy(st->dev);
1394 pm_runtime_put_autosuspend(st->dev);
1395
f3c034f6
AA
1396 return 0;
1397}
1398
073c6620 1399static const struct iio_buffer_setup_ops at91_buffer_setup_ops = {
f3c034f6 1400 .postdisable = &at91_adc_buffer_postdisable,
5e1a1da0
EH
1401};
1402
1403static struct iio_trigger *at91_adc_allocate_trigger(struct iio_dev *indio,
1404 char *trigger_name)
1405{
1406 struct iio_trigger *trig;
1407 int ret;
1408
1409 trig = devm_iio_trigger_alloc(&indio->dev, "%s-dev%d-%s", indio->name,
15ea2878 1410 iio_device_id(indio), trigger_name);
5e1a1da0
EH
1411 if (!trig)
1412 return NULL;
1413
1414 trig->dev.parent = indio->dev.parent;
1415 iio_trigger_set_drvdata(trig, indio);
1416 trig->ops = &at91_adc_trigger_ops;
1417
1418 ret = devm_iio_trigger_register(&indio->dev, trig);
1419 if (ret)
1420 return ERR_PTR(ret);
1421
1422 return trig;
1423}
0cf53f30 1424
073c6620
EH
1425static void at91_adc_trigger_handler_nodma(struct iio_dev *indio_dev,
1426 struct iio_poll_func *pf)
5e1a1da0 1427{
073c6620 1428 struct at91_adc_state *st = iio_priv(indio_dev);
5e1a1da0 1429 int i = 0;
6794e23f 1430 int val;
5e1a1da0 1431 u8 bit;
97c54cf2
EH
1432 u32 mask = at91_adc_active_scan_mask_to_reg(indio_dev);
1433 unsigned int timeout = 50;
e6d5eee4 1434 u32 status, imr, eoc = 0, eoc_imr;
97c54cf2
EH
1435
1436 /*
1437 * Check if the conversion is ready. If not, wait a little bit, and
1438 * in case of timeout exit with an error.
1439 */
e6d5eee4
EH
1440 while (((eoc & mask) != mask) && timeout) {
1441 at91_adc_irq_status(st, &status, &eoc);
1442 at91_adc_irq_mask(st, &imr, &eoc_imr);
97c54cf2
EH
1443 usleep_range(50, 100);
1444 timeout--;
1445 }
1446
1447 /* Cannot read data, not ready. Continue without reporting data */
1448 if (!timeout)
1449 return;
5e1a1da0 1450
073c6620
EH
1451 for_each_set_bit(bit, indio_dev->active_scan_mask,
1452 indio_dev->num_channels) {
f0c8d1f6
EH
1453 struct iio_chan_spec const *chan =
1454 at91_adc_chan_get(indio_dev, bit);
5e1a1da0 1455
f0c8d1f6
EH
1456 if (!chan)
1457 continue;
23ec2774
EH
1458 /*
1459 * Our external trigger only supports the voltage channels.
1460 * In case someone requested a different type of channel
1461 * just put zeroes to buffer.
1462 * This should not happen because we check the scan mode
1463 * and scan mask when we enable the buffer, and we don't allow
1464 * the buffer to start with a mixed mask (voltage and something
1465 * else).
1466 * Thus, emit a warning.
1467 */
1468 if (chan->type == IIO_VOLTAGE) {
8940de2e 1469 val = at91_adc_read_chan(st, chan->address);
6794e23f
EH
1470 at91_adc_adjust_val_osr(st, &val);
1471 st->buffer[i] = val;
23ec2774
EH
1472 } else {
1473 st->buffer[i] = 0;
1474 WARN(true, "This trigger cannot handle this type of channel");
1475 }
5e1a1da0
EH
1476 i++;
1477 }
073c6620
EH
1478 iio_push_to_buffers_with_timestamp(indio_dev, st->buffer,
1479 pf->timestamp);
1480}
1481
1482static void at91_adc_trigger_handler_dma(struct iio_dev *indio_dev)
1483{
1484 struct at91_adc_state *st = iio_priv(indio_dev);
1485 int transferred_len = at91_adc_dma_size_done(st);
1486 s64 ns = iio_get_time_ns(indio_dev);
1487 s64 interval;
1488 int sample_index = 0, sample_count, sample_size;
1489
8940de2e 1490 u32 status = at91_adc_readl(st, ISR);
073c6620
EH
1491 /* if we reached this point, we cannot sample faster */
1492 if (status & AT91_SAMA5D2_IER_GOVRE)
1493 pr_info_ratelimited("%s: conversion overrun detected\n",
1494 indio_dev->name);
1495
1496 sample_size = div_s64(st->dma_st.rx_buf_sz, st->dma_st.watermark);
1497
1498 sample_count = div_s64(transferred_len, sample_size);
1499
1500 /*
1501 * interval between samples is total time since last transfer handling
1502 * divided by the number of samples (total size divided by sample size)
1503 */
1504 interval = div_s64((ns - st->dma_st.dma_ts), sample_count);
1505
1506 while (transferred_len >= sample_size) {
6794e23f
EH
1507 /*
1508 * for all the values in the current sample,
1509 * adjust the values inside the buffer for oversampling
1510 */
1511 at91_adc_adjust_val_osr_array(st,
1512 &st->dma_st.rx_buf[st->dma_st.buf_idx],
1513 sample_size);
1514
073c6620
EH
1515 iio_push_to_buffers_with_timestamp(indio_dev,
1516 (st->dma_st.rx_buf + st->dma_st.buf_idx),
1517 (st->dma_st.dma_ts + interval * sample_index));
1518 /* adjust remaining length */
1519 transferred_len -= sample_size;
1520 /* adjust buffer index */
1521 st->dma_st.buf_idx += sample_size;
1522 /* in case of reaching end of buffer, reset index */
1523 if (st->dma_st.buf_idx >= st->dma_st.rx_buf_sz)
1524 st->dma_st.buf_idx = 0;
1525 sample_index++;
1526 }
1527 /* adjust saved time for next transfer handling */
1528 st->dma_st.dma_ts = iio_get_time_ns(indio_dev);
1529}
1530
1531static irqreturn_t at91_adc_trigger_handler(int irq, void *p)
1532{
1533 struct iio_poll_func *pf = p;
1534 struct iio_dev *indio_dev = pf->indio_dev;
1535 struct at91_adc_state *st = iio_priv(indio_dev);
5e1a1da0 1536
abb7e84d
EH
1537 /*
1538 * If it's not our trigger, start a conversion now, as we are
1539 * actually polling the trigger now.
1540 */
1541 if (iio_trigger_validate_own_device(indio_dev->trig, indio_dev))
8940de2e 1542 at91_adc_writel(st, CR, AT91_SAMA5D2_CR_START);
abb7e84d 1543
073c6620
EH
1544 if (st->dma_st.dma_chan)
1545 at91_adc_trigger_handler_dma(indio_dev);
1546 else
1547 at91_adc_trigger_handler_nodma(indio_dev, pf);
5e1a1da0 1548
073c6620 1549 iio_trigger_notify_done(indio_dev->trig);
5e1a1da0
EH
1550
1551 return IRQ_HANDLED;
1552}
1553
27e17719
LD
1554static unsigned at91_adc_startup_time(unsigned startup_time_min,
1555 unsigned adc_clk_khz)
1556{
2df331cf 1557 static const unsigned int startup_lookup[] = {
27e17719
LD
1558 0, 8, 16, 24,
1559 64, 80, 96, 112,
1560 512, 576, 640, 704,
1561 768, 832, 896, 960
1562 };
1563 unsigned ticks_min, i;
1564
1565 /*
1566 * Since the adc frequency is checked before, there is no reason
1567 * to not meet the startup time constraint.
1568 */
1569
1570 ticks_min = startup_time_min * adc_clk_khz / 1000;
1571 for (i = 0; i < ARRAY_SIZE(startup_lookup); i++)
1572 if (startup_lookup[i] > ticks_min)
1573 break;
1574
1575 return i;
1576}
1577
5f72666f
CB
1578static void at91_adc_setup_samp_freq(struct iio_dev *indio_dev, unsigned freq,
1579 unsigned int startup_time,
1580 unsigned int tracktim)
27e17719 1581{
ebf35aad 1582 struct at91_adc_state *st = iio_priv(indio_dev);
94b24230 1583 unsigned f_per, prescal, startup, mr;
75d7556a 1584 int ret;
27e17719
LD
1585
1586 f_per = clk_get_rate(st->per_clk);
1587 prescal = (f_per / (2 * freq)) - 1;
1588
5f72666f 1589 startup = at91_adc_startup_time(startup_time, freq / 1000);
27e17719 1590
75d7556a
CB
1591 ret = pm_runtime_resume_and_get(st->dev);
1592 if (ret < 0)
1593 return;
1594
8940de2e 1595 mr = at91_adc_readl(st, MR);
94b24230
LD
1596 mr &= ~(AT91_SAMA5D2_MR_STARTUP_MASK | AT91_SAMA5D2_MR_PRESCAL_MASK);
1597 mr |= AT91_SAMA5D2_MR_STARTUP(startup);
1598 mr |= AT91_SAMA5D2_MR_PRESCAL(prescal);
5f72666f 1599 mr |= AT91_SAMA5D2_MR_TRACKTIM(tracktim);
8940de2e 1600 at91_adc_writel(st, MR, mr);
27e17719 1601
75d7556a
CB
1602 pm_runtime_mark_last_busy(st->dev);
1603 pm_runtime_put_autosuspend(st->dev);
1604
5f72666f
CB
1605 dev_dbg(&indio_dev->dev, "freq: %u, startup: %u, prescal: %u, tracktim=%u\n",
1606 freq, startup, prescal, tracktim);
23ec2774 1607 st->current_sample_rate = freq;
27e17719
LD
1608}
1609
23ec2774 1610static inline unsigned at91_adc_get_sample_freq(struct at91_adc_state *st)
27e17719 1611{
23ec2774
EH
1612 return st->current_sample_rate;
1613}
27e17719 1614
23ec2774
EH
1615static void at91_adc_touch_data_handler(struct iio_dev *indio_dev)
1616{
1617 struct at91_adc_state *st = iio_priv(indio_dev);
1618 u8 bit;
1619 u16 val;
1620 int i = 0;
27e17719 1621
23ec2774 1622 for_each_set_bit(bit, indio_dev->active_scan_mask,
8940de2e 1623 st->soc_info.platform->max_index + 1) {
23ec2774
EH
1624 struct iio_chan_spec const *chan =
1625 at91_adc_chan_get(indio_dev, bit);
1626
1627 if (chan->type == IIO_POSITIONRELATIVE)
1628 at91_adc_read_position(st, chan->channel, &val);
1629 else if (chan->type == IIO_PRESSURE)
1630 at91_adc_read_pressure(st, chan->channel, &val);
1631 else
1632 continue;
1633 st->buffer[i] = val;
1634 i++;
1635 }
1636 /*
1637 * Schedule work to push to buffers.
1638 * This is intended to push to the callback buffer that another driver
1639 * registered. We are still in a handler from our IRQ. If we push
1640 * directly, it means the other driver has it's callback called
1641 * from our IRQ context. Which is something we better avoid.
1642 * Let's schedule it after our IRQ is completed.
1643 */
1644 schedule_work(&st->touch_st.workq);
1645}
1646
1647static void at91_adc_pen_detect_interrupt(struct at91_adc_state *st)
1648{
8940de2e
EH
1649 at91_adc_writel(st, IDR, AT91_SAMA5D2_IER_PEN);
1650 at91_adc_writel(st, IER, AT91_SAMA5D2_IER_NOPEN |
23ec2774
EH
1651 AT91_SAMA5D2_IER_XRDY | AT91_SAMA5D2_IER_YRDY |
1652 AT91_SAMA5D2_IER_PRDY);
8940de2e 1653 at91_adc_writel(st, TRGR, AT91_SAMA5D2_TRGR_TRGMOD_PERIODIC |
23ec2774
EH
1654 AT91_SAMA5D2_TRGR_TRGPER(st->touch_st.sample_period_val));
1655 st->touch_st.touching = true;
1656}
1657
ebf35aad 1658static void at91_adc_no_pen_detect_interrupt(struct iio_dev *indio_dev)
23ec2774 1659{
ebf35aad 1660 struct at91_adc_state *st = iio_priv(indio_dev);
23ec2774 1661
8940de2e
EH
1662 at91_adc_writel(st, TRGR, AT91_SAMA5D2_TRGR_TRGMOD_NO_TRIGGER);
1663 at91_adc_writel(st, IDR, AT91_SAMA5D2_IER_NOPEN |
23ec2774
EH
1664 AT91_SAMA5D2_IER_XRDY | AT91_SAMA5D2_IER_YRDY |
1665 AT91_SAMA5D2_IER_PRDY);
1666 st->touch_st.touching = false;
1667
1668 at91_adc_touch_data_handler(indio_dev);
1669
8940de2e 1670 at91_adc_writel(st, IER, AT91_SAMA5D2_IER_PEN);
23ec2774
EH
1671}
1672
1673static void at91_adc_workq_handler(struct work_struct *workq)
1674{
1675 struct at91_adc_touch *touch_st = container_of(workq,
1676 struct at91_adc_touch, workq);
1677 struct at91_adc_state *st = container_of(touch_st,
1678 struct at91_adc_state, touch_st);
ebf35aad 1679 struct iio_dev *indio_dev = st->indio_dev;
23ec2774
EH
1680
1681 iio_push_to_buffers(indio_dev, st->buffer);
27e17719
LD
1682}
1683
1684static irqreturn_t at91_adc_interrupt(int irq, void *private)
1685{
1686 struct iio_dev *indio = private;
1687 struct at91_adc_state *st = iio_priv(indio);
e6d5eee4 1688 u32 status, eoc, imr, eoc_imr;
23ec2774
EH
1689 u32 rdy_mask = AT91_SAMA5D2_IER_XRDY | AT91_SAMA5D2_IER_YRDY |
1690 AT91_SAMA5D2_IER_PRDY;
27e17719 1691
e6d5eee4
EH
1692 at91_adc_irq_status(st, &status, &eoc);
1693 at91_adc_irq_mask(st, &imr, &eoc_imr);
1694
1695 if (!(status & imr) && !(eoc & eoc_imr))
5e1a1da0 1696 return IRQ_NONE;
23ec2774
EH
1697 if (status & AT91_SAMA5D2_IER_PEN) {
1698 /* pen detected IRQ */
1699 at91_adc_pen_detect_interrupt(st);
1700 } else if ((status & AT91_SAMA5D2_IER_NOPEN)) {
1701 /* nopen detected IRQ */
ebf35aad 1702 at91_adc_no_pen_detect_interrupt(indio);
23ec2774
EH
1703 } else if ((status & AT91_SAMA5D2_ISR_PENS) &&
1704 ((status & rdy_mask) == rdy_mask)) {
1705 /* periodic trigger IRQ - during pen sense */
1706 at91_adc_touch_data_handler(indio);
1707 } else if (status & AT91_SAMA5D2_ISR_PENS) {
1708 /*
1709 * touching, but the measurements are not ready yet.
1710 * read and ignore.
1711 */
8940de2e
EH
1712 status = at91_adc_readl(st, XPOSR);
1713 status = at91_adc_readl(st, YPOSR);
1714 status = at91_adc_readl(st, PRESSR);
97c54cf2
EH
1715 } else if (iio_buffer_enabled(indio) &&
1716 (status & AT91_SAMA5D2_IER_DRDY)) {
23ec2774 1717 /* triggered buffer without DMA */
5e1a1da0
EH
1718 disable_irq_nosync(irq);
1719 iio_trigger_poll(indio->trig);
073c6620 1720 } else if (iio_buffer_enabled(indio) && st->dma_st.dma_chan) {
23ec2774 1721 /* triggered buffer with DMA - should not happen */
073c6620
EH
1722 disable_irq_nosync(irq);
1723 WARN(true, "Unexpected irq occurred\n");
1724 } else if (!iio_buffer_enabled(indio)) {
23ec2774 1725 /* software requested conversion */
8940de2e 1726 st->conversion_value = at91_adc_read_chan(st, st->chan->address);
27e17719
LD
1727 st->conversion_done = true;
1728 wake_up_interruptible(&st->wq_data_available);
27e17719 1729 }
5e1a1da0 1730 return IRQ_HANDLED;
27e17719
LD
1731}
1732
a0f96db4 1733/* This needs to be called with direct mode claimed and st->lock locked. */
23ec2774
EH
1734static int at91_adc_read_info_raw(struct iio_dev *indio_dev,
1735 struct iio_chan_spec const *chan, int *val)
27e17719
LD
1736{
1737 struct at91_adc_state *st = iio_priv(indio_dev);
a176ba37 1738 u16 tmp_val;
27e17719
LD
1739 int ret;
1740
75d7556a
CB
1741 ret = pm_runtime_resume_and_get(st->dev);
1742 if (ret < 0)
1743 return ret;
1744
23ec2774
EH
1745 /*
1746 * Keep in mind that we cannot use software trigger or touchscreen
1747 * if external trigger is enabled
1748 */
1749 if (chan->type == IIO_POSITIONRELATIVE) {
23ec2774 1750 ret = at91_adc_read_position(st, chan->channel,
a176ba37
DC
1751 &tmp_val);
1752 *val = tmp_val;
d84ace94
CB
1753 if (ret > 0)
1754 ret = at91_adc_adjust_val_osr(st, val);
27e17719 1755
75d7556a 1756 goto pm_runtime_put;
23ec2774
EH
1757 }
1758 if (chan->type == IIO_PRESSURE) {
23ec2774 1759 ret = at91_adc_read_pressure(st, chan->channel,
a176ba37
DC
1760 &tmp_val);
1761 *val = tmp_val;
d84ace94
CB
1762 if (ret > 0)
1763 ret = at91_adc_adjust_val_osr(st, val);
27e17719 1764
75d7556a 1765 goto pm_runtime_put;
23ec2774 1766 }
10c7a314 1767
5ab38b81 1768 /* in this case we have a voltage or temperature channel */
5e1a1da0 1769
23ec2774
EH
1770 st->chan = chan;
1771
d8004c5f 1772 at91_adc_cor(st, chan);
8940de2e 1773 at91_adc_writel(st, CHER, BIT(chan->channel));
5ab38b81
CB
1774 /*
1775 * TEMPMR.TEMPON needs to update after CHER otherwise if none
1776 * of the channels are enabled and TEMPMR.TEMPON = 1 will
1777 * trigger DRDY interruption while preparing for temperature read.
1778 */
1779 if (chan->type == IIO_TEMP)
1780 at91_adc_writel(st, TEMPMR, AT91_SAMA5D2_TEMPMR_TEMPON);
e6d5eee4 1781 at91_adc_eoc_ena(st, chan->channel);
8940de2e 1782 at91_adc_writel(st, CR, AT91_SAMA5D2_CR_START);
23ec2774
EH
1783
1784 ret = wait_event_interruptible_timeout(st->wq_data_available,
1785 st->conversion_done,
1786 msecs_to_jiffies(1000));
1787 if (ret == 0)
1788 ret = -ETIMEDOUT;
1789
1790 if (ret > 0) {
1791 *val = st->conversion_value;
6794e23f 1792 ret = at91_adc_adjust_val_osr(st, val);
23ec2774 1793 if (chan->scan_type.sign == 's')
652e7df4
GG
1794 *val = sign_extend32(*val,
1795 chan->scan_type.realbits - 1);
23ec2774
EH
1796 st->conversion_done = false;
1797 }
1798
e6d5eee4 1799 at91_adc_eoc_dis(st, st->chan->channel);
5ab38b81
CB
1800 if (chan->type == IIO_TEMP)
1801 at91_adc_writel(st, TEMPMR, 0U);
8940de2e 1802 at91_adc_writel(st, CHDR, BIT(chan->channel));
23ec2774
EH
1803
1804 /* Needed to ACK the DRDY interruption */
8940de2e 1805 at91_adc_readl(st, LCDR);
23ec2774 1806
75d7556a
CB
1807pm_runtime_put:
1808 pm_runtime_mark_last_busy(st->dev);
1809 pm_runtime_put_autosuspend(st->dev);
a0f96db4
CB
1810 return ret;
1811}
1812
1813static int at91_adc_read_info_locked(struct iio_dev *indio_dev,
1814 struct iio_chan_spec const *chan, int *val)
1815{
1816 struct at91_adc_state *st = iio_priv(indio_dev);
1817 int ret;
1818
1819 ret = iio_device_claim_direct_mode(indio_dev);
1820 if (ret)
1821 return ret;
1822
1823 mutex_lock(&st->lock);
1824 ret = at91_adc_read_info_raw(indio_dev, chan, val);
23ec2774
EH
1825 mutex_unlock(&st->lock);
1826
1827 iio_device_release_direct_mode(indio_dev);
a0f96db4 1828
23ec2774
EH
1829 return ret;
1830}
1831
5ab38b81
CB
1832static void at91_adc_temp_sensor_configure(struct at91_adc_state *st,
1833 bool start)
1834{
1835 u32 sample_rate, oversampling_ratio;
1836 u32 startup_time, tracktim, trackx;
1837
1838 if (start) {
1839 /*
1840 * Configure the sensor for best accuracy: 10MHz frequency,
1841 * oversampling rate of 256, tracktim=0xf and trackx=1.
1842 */
1843 sample_rate = 10 * MEGA;
1844 oversampling_ratio = 256;
1845 startup_time = AT91_SAMA5D2_MR_STARTUP_TS_MIN;
1846 tracktim = AT91_SAMA5D2_MR_TRACKTIM_TS;
1847 trackx = AT91_SAMA5D2_TRACKX_TS;
1848
1849 st->temp_st.saved_sample_rate = st->current_sample_rate;
1850 st->temp_st.saved_oversampling = st->oversampling_ratio;
1851 } else {
1852 /* Go back to previous settings. */
1853 sample_rate = st->temp_st.saved_sample_rate;
1854 oversampling_ratio = st->temp_st.saved_oversampling;
1855 startup_time = st->soc_info.startup_time;
1856 tracktim = 0;
1857 trackx = 0;
1858 }
1859
1860 at91_adc_setup_samp_freq(st->indio_dev, sample_rate, startup_time,
1861 tracktim);
1862 at91_adc_config_emr(st, oversampling_ratio, trackx);
1863}
1864
1865static int at91_adc_read_temp(struct iio_dev *indio_dev,
1866 struct iio_chan_spec const *chan, int *val)
1867{
1868 struct at91_adc_state *st = iio_priv(indio_dev);
1869 struct at91_adc_temp_sensor_clb *clb = &st->soc_info.temp_sensor_clb;
1870 u64 div1, div2;
1871 u32 tmp;
1872 int ret, vbg, vtemp;
1873
1874 ret = iio_device_claim_direct_mode(indio_dev);
1875 if (ret)
1876 return ret;
1877 mutex_lock(&st->lock);
1878
75d7556a
CB
1879 ret = pm_runtime_resume_and_get(st->dev);
1880 if (ret < 0)
1881 goto unlock;
1882
5ab38b81
CB
1883 at91_adc_temp_sensor_configure(st, true);
1884
1885 /* Read VBG. */
1886 tmp = at91_adc_readl(st, ACR);
1887 tmp |= AT91_SAMA5D2_ACR_SRCLCH;
1888 at91_adc_writel(st, ACR, tmp);
1889 ret = at91_adc_read_info_raw(indio_dev, chan, &vbg);
1890 if (ret < 0)
1891 goto restore_config;
1892
1893 /* Read VTEMP. */
1894 tmp &= ~AT91_SAMA5D2_ACR_SRCLCH;
1895 at91_adc_writel(st, ACR, tmp);
1896 ret = at91_adc_read_info_raw(indio_dev, chan, &vtemp);
1897
1898restore_config:
1899 /* Revert previous settings. */
1900 at91_adc_temp_sensor_configure(st, false);
75d7556a
CB
1901 pm_runtime_mark_last_busy(st->dev);
1902 pm_runtime_put_autosuspend(st->dev);
1903unlock:
5ab38b81
CB
1904 mutex_unlock(&st->lock);
1905 iio_device_release_direct_mode(indio_dev);
1906 if (ret < 0)
1907 return ret;
1908
1909 /*
1910 * Temp[milli] = p1[milli] + (vtemp * clb->p6 - clb->p4 * vbg)/
1911 * (vbg * AT91_ADC_TS_VTEMP_DT)
1912 */
1913 div1 = DIV_ROUND_CLOSEST_ULL(((u64)vtemp * clb->p6), vbg);
1914 div1 = DIV_ROUND_CLOSEST_ULL((div1 * 1000), AT91_ADC_TS_VTEMP_DT);
1915 div2 = DIV_ROUND_CLOSEST_ULL((u64)clb->p4, AT91_ADC_TS_VTEMP_DT);
1916 div2 *= 1000;
1917 *val = clb->p1 + (int)div1 - (int)div2;
1918
1919 return ret;
1920}
1921
23ec2774
EH
1922static int at91_adc_read_raw(struct iio_dev *indio_dev,
1923 struct iio_chan_spec const *chan,
1924 int *val, int *val2, long mask)
1925{
1926 struct at91_adc_state *st = iio_priv(indio_dev);
27e17719 1927
23ec2774
EH
1928 switch (mask) {
1929 case IIO_CHAN_INFO_RAW:
a0f96db4
CB
1930 return at91_adc_read_info_locked(indio_dev, chan, val);
1931
27e17719
LD
1932 case IIO_CHAN_INFO_SCALE:
1933 *val = st->vref_uv / 1000;
d6511322
LD
1934 if (chan->differential)
1935 *val *= 2;
27e17719
LD
1936 *val2 = chan->scan_type.realbits;
1937 return IIO_VAL_FRACTIONAL_LOG2;
1938
5ab38b81
CB
1939 case IIO_CHAN_INFO_PROCESSED:
1940 if (chan->type != IIO_TEMP)
1941 return -EINVAL;
1942 return at91_adc_read_temp(indio_dev, chan, val);
1943
27e17719
LD
1944 case IIO_CHAN_INFO_SAMP_FREQ:
1945 *val = at91_adc_get_sample_freq(st);
1946 return IIO_VAL_INT;
1947
6794e23f
EH
1948 case IIO_CHAN_INFO_OVERSAMPLING_RATIO:
1949 *val = st->oversampling_ratio;
1950 return IIO_VAL_INT;
1951
27e17719
LD
1952 default:
1953 return -EINVAL;
1954 }
1955}
1956
1957static int at91_adc_write_raw(struct iio_dev *indio_dev,
1958 struct iio_chan_spec const *chan,
1959 int val, int val2, long mask)
1960{
1961 struct at91_adc_state *st = iio_priv(indio_dev);
cf15a2b5 1962 int ret;
27e17719 1963
6794e23f
EH
1964 switch (mask) {
1965 case IIO_CHAN_INFO_OVERSAMPLING_RATIO:
6794e23f
EH
1966 /* if no change, optimize out */
1967 if (val == st->oversampling_ratio)
1968 return 0;
cf15a2b5
CB
1969
1970 ret = iio_device_claim_direct_mode(indio_dev);
1971 if (ret)
1972 return ret;
9780a23e 1973 mutex_lock(&st->lock);
6794e23f 1974 /* update ratio */
04227f95 1975 ret = at91_adc_config_emr(st, val, 0);
9780a23e 1976 mutex_unlock(&st->lock);
cf15a2b5 1977 iio_device_release_direct_mode(indio_dev);
502966c3 1978 return ret;
6794e23f
EH
1979 case IIO_CHAN_INFO_SAMP_FREQ:
1980 if (val < st->soc_info.min_sample_rate ||
1981 val > st->soc_info.max_sample_rate)
1982 return -EINVAL;
27e17719 1983
cf15a2b5
CB
1984 ret = iio_device_claim_direct_mode(indio_dev);
1985 if (ret)
1986 return ret;
9780a23e 1987 mutex_lock(&st->lock);
5f72666f
CB
1988 at91_adc_setup_samp_freq(indio_dev, val,
1989 st->soc_info.startup_time, 0);
9780a23e 1990 mutex_unlock(&st->lock);
cf15a2b5 1991 iio_device_release_direct_mode(indio_dev);
6794e23f
EH
1992 return 0;
1993 default:
27e17719 1994 return -EINVAL;
7f96027c 1995 }
27e17719
LD
1996}
1997
3c5d62a1
CB
1998static int at91_adc_read_avail(struct iio_dev *indio_dev,
1999 struct iio_chan_spec const *chan,
2000 const int **vals, int *type, int *length,
2001 long mask)
2002{
2003 struct at91_adc_state *st = iio_priv(indio_dev);
2004
2005 switch (mask) {
2006 case IIO_CHAN_INFO_OVERSAMPLING_RATIO:
2007 *vals = (int *)st->soc_info.platform->oversampling_avail;
2008 *type = IIO_VAL_INT;
2009 *length = st->soc_info.platform->oversampling_avail_no;
2010 return IIO_AVAIL_LIST;
2011 default:
2012 return -EINVAL;
2013 }
2014}
2015
907b2ad8 2016static void at91_adc_dma_init(struct at91_adc_state *st)
073c6620 2017{
907b2ad8 2018 struct device *dev = &st->indio_dev->dev;
073c6620 2019 struct dma_slave_config config = {0};
8940de2e
EH
2020 /* we have 2 bytes for each channel */
2021 unsigned int sample_size = st->soc_info.platform->nr_channels * 2;
073c6620
EH
2022 /*
2023 * We make the buffer double the size of the fifo,
2024 * such that DMA uses one half of the buffer (full fifo size)
2025 * and the software uses the other half to read/write.
2026 */
2027 unsigned int pages = DIV_ROUND_UP(AT91_HWFIFO_MAX_SIZE *
8940de2e 2028 sample_size * 2, PAGE_SIZE);
073c6620
EH
2029
2030 if (st->dma_st.dma_chan)
2031 return;
2032
907b2ad8 2033 st->dma_st.dma_chan = dma_request_chan(dev, "rx");
687d39d4 2034 if (IS_ERR(st->dma_st.dma_chan)) {
907b2ad8 2035 dev_info(dev, "can't get DMA channel\n");
687d39d4 2036 st->dma_st.dma_chan = NULL;
073c6620
EH
2037 goto dma_exit;
2038 }
2039
2040 st->dma_st.rx_buf = dma_alloc_coherent(st->dma_st.dma_chan->device->dev,
2041 pages * PAGE_SIZE,
2042 &st->dma_st.rx_dma_buf,
2043 GFP_KERNEL);
2044 if (!st->dma_st.rx_buf) {
907b2ad8 2045 dev_info(dev, "can't allocate coherent DMA area\n");
073c6620
EH
2046 goto dma_chan_disable;
2047 }
2048
2049 /* Configure DMA channel to read data register */
2050 config.direction = DMA_DEV_TO_MEM;
2051 config.src_addr = (phys_addr_t)(st->dma_st.phys_addr
8940de2e 2052 + st->soc_info.platform->layout->LCDR);
073c6620
EH
2053 config.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
2054 config.src_maxburst = 1;
2055 config.dst_maxburst = 1;
2056
2057 if (dmaengine_slave_config(st->dma_st.dma_chan, &config)) {
907b2ad8 2058 dev_info(dev, "can't configure DMA slave\n");
073c6620
EH
2059 goto dma_free_area;
2060 }
2061
907b2ad8 2062 dev_info(dev, "using %s for rx DMA transfers\n",
073c6620
EH
2063 dma_chan_name(st->dma_st.dma_chan));
2064
2065 return;
2066
2067dma_free_area:
2068 dma_free_coherent(st->dma_st.dma_chan->device->dev, pages * PAGE_SIZE,
2069 st->dma_st.rx_buf, st->dma_st.rx_dma_buf);
2070dma_chan_disable:
2071 dma_release_channel(st->dma_st.dma_chan);
5617f22b 2072 st->dma_st.dma_chan = NULL;
073c6620 2073dma_exit:
907b2ad8 2074 dev_info(dev, "continuing without DMA support\n");
073c6620
EH
2075}
2076
907b2ad8 2077static void at91_adc_dma_disable(struct at91_adc_state *st)
073c6620 2078{
907b2ad8 2079 struct device *dev = &st->indio_dev->dev;
8940de2e
EH
2080 /* we have 2 bytes for each channel */
2081 unsigned int sample_size = st->soc_info.platform->nr_channels * 2;
073c6620 2082 unsigned int pages = DIV_ROUND_UP(AT91_HWFIFO_MAX_SIZE *
8940de2e 2083 sample_size * 2, PAGE_SIZE);
073c6620
EH
2084
2085 /* if we are not using DMA, just return */
2086 if (!st->dma_st.dma_chan)
2087 return;
2088
2089 /* wait for all transactions to be terminated first*/
2090 dmaengine_terminate_sync(st->dma_st.dma_chan);
2091
2092 dma_free_coherent(st->dma_st.dma_chan->device->dev, pages * PAGE_SIZE,
2093 st->dma_st.rx_buf, st->dma_st.rx_dma_buf);
2094 dma_release_channel(st->dma_st.dma_chan);
5617f22b 2095 st->dma_st.dma_chan = NULL;
073c6620 2096
907b2ad8 2097 dev_info(dev, "continuing without DMA support\n");
073c6620
EH
2098}
2099
2100static int at91_adc_set_watermark(struct iio_dev *indio_dev, unsigned int val)
2101{
2102 struct at91_adc_state *st = iio_priv(indio_dev);
1a198794 2103 int ret;
073c6620
EH
2104
2105 if (val > AT91_HWFIFO_MAX_SIZE)
754d0134 2106 val = AT91_HWFIFO_MAX_SIZE;
073c6620
EH
2107
2108 if (!st->selected_trig->hw_trig) {
2109 dev_dbg(&indio_dev->dev, "we need hw trigger for DMA\n");
2110 return 0;
2111 }
2112
2113 dev_dbg(&indio_dev->dev, "new watermark is %u\n", val);
2114 st->dma_st.watermark = val;
2115
2116 /*
2117 * The logic here is: if we have watermark 1, it means we do
2118 * each conversion with it's own IRQ, thus we don't need DMA.
2119 * If the watermark is higher, we do DMA to do all the transfers in bulk
2120 */
2121
2122 if (val == 1)
907b2ad8 2123 at91_adc_dma_disable(st);
073c6620 2124 else if (val > 1)
907b2ad8 2125 at91_adc_dma_init(st);
073c6620 2126
1a198794
EH
2127 /*
2128 * We can start the DMA only after setting the watermark and
2129 * having the DMA initialization completed
2130 */
2131 ret = at91_adc_buffer_prepare(indio_dev);
2132 if (ret)
907b2ad8 2133 at91_adc_dma_disable(st);
1a198794
EH
2134
2135 return ret;
073c6620
EH
2136}
2137
23ec2774
EH
2138static int at91_adc_update_scan_mode(struct iio_dev *indio_dev,
2139 const unsigned long *scan_mask)
2140{
2141 struct at91_adc_state *st = iio_priv(indio_dev);
2142
2143 if (bitmap_subset(scan_mask, &st->touch_st.channels_bitmask,
8940de2e 2144 st->soc_info.platform->max_index + 1))
23ec2774
EH
2145 return 0;
2146 /*
2147 * if the new bitmap is a combination of touchscreen and regular
2148 * channels, then we are not fine
2149 */
2150 if (bitmap_intersects(&st->touch_st.channels_bitmask, scan_mask,
8940de2e 2151 st->soc_info.platform->max_index + 1))
23ec2774
EH
2152 return -EINVAL;
2153 return 0;
2154}
2155
ebf35aad 2156static void at91_adc_hw_init(struct iio_dev *indio_dev)
500a2eef 2157{
ebf35aad
AA
2158 struct at91_adc_state *st = iio_priv(indio_dev);
2159
8940de2e 2160 at91_adc_writel(st, CR, AT91_SAMA5D2_CR_SWRST);
e6d5eee4
EH
2161 if (st->soc_info.platform->layout->EOC_IDR)
2162 at91_adc_writel(st, EOC_IDR, 0xffffffff);
8940de2e 2163 at91_adc_writel(st, IDR, 0xffffffff);
500a2eef
EH
2164 /*
2165 * Transfer field must be set to 2 according to the datasheet and
2166 * allows different analog settings for each channel.
2167 */
8940de2e 2168 at91_adc_writel(st, MR,
500a2eef
EH
2169 AT91_SAMA5D2_MR_TRANSFER(2) | AT91_SAMA5D2_MR_ANACH);
2170
5f72666f
CB
2171 at91_adc_setup_samp_freq(indio_dev, st->soc_info.min_sample_rate,
2172 st->soc_info.startup_time, 0);
6794e23f
EH
2173
2174 /* configure extended mode register */
04227f95 2175 at91_adc_config_emr(st, st->oversampling_ratio, 0);
500a2eef
EH
2176}
2177
073c6620
EH
2178static ssize_t at91_adc_get_fifo_state(struct device *dev,
2179 struct device_attribute *attr, char *buf)
2180{
0d376dc9 2181 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
073c6620
EH
2182 struct at91_adc_state *st = iio_priv(indio_dev);
2183
7ae26795 2184 return sysfs_emit(buf, "%d\n", !!st->dma_st.dma_chan);
073c6620
EH
2185}
2186
2187static ssize_t at91_adc_get_watermark(struct device *dev,
2188 struct device_attribute *attr, char *buf)
2189{
0d376dc9 2190 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
073c6620
EH
2191 struct at91_adc_state *st = iio_priv(indio_dev);
2192
7ae26795 2193 return sysfs_emit(buf, "%d\n", st->dma_st.watermark);
073c6620
EH
2194}
2195
2196static IIO_DEVICE_ATTR(hwfifo_enabled, 0444,
2197 at91_adc_get_fifo_state, NULL, 0);
2198static IIO_DEVICE_ATTR(hwfifo_watermark, 0444,
2199 at91_adc_get_watermark, NULL, 0);
c1531e3a
MV
2200
2201IIO_STATIC_CONST_DEVICE_ATTR(hwfifo_watermark_min, "2");
2202IIO_STATIC_CONST_DEVICE_ATTR(hwfifo_watermark_max, AT91_HWFIFO_MAX_SIZE_STR);
073c6620 2203
0a33755c
MV
2204static const struct iio_dev_attr *at91_adc_fifo_attributes[] = {
2205 &iio_dev_attr_hwfifo_watermark_min,
2206 &iio_dev_attr_hwfifo_watermark_max,
2207 &iio_dev_attr_hwfifo_watermark,
2208 &iio_dev_attr_hwfifo_enabled,
073c6620
EH
2209 NULL,
2210};
2211
6794e23f 2212static const struct iio_info at91_adc_info = {
3c5d62a1 2213 .read_avail = &at91_adc_read_avail,
6794e23f
EH
2214 .read_raw = &at91_adc_read_raw,
2215 .write_raw = &at91_adc_write_raw,
2216 .update_scan_mode = &at91_adc_update_scan_mode,
34b6eb89 2217 .fwnode_xlate = &at91_adc_fwnode_xlate,
6794e23f
EH
2218 .hwfifo_set_watermark = &at91_adc_set_watermark,
2219};
2220
789976ac
AA
2221static int at91_adc_buffer_and_trigger_init(struct device *dev,
2222 struct iio_dev *indio)
2223{
2224 struct at91_adc_state *st = iio_priv(indio);
0a33755c 2225 const struct iio_dev_attr **fifo_attrs;
789976ac
AA
2226 int ret;
2227
a2f28355
AA
2228 if (st->selected_trig->hw_trig)
2229 fifo_attrs = at91_adc_fifo_attributes;
2230 else
2231 fifo_attrs = NULL;
2232
2233 ret = devm_iio_triggered_buffer_setup_ext(&indio->dev, indio,
c02cd5c1
AA
2234 &iio_pollfunc_store_time, &at91_adc_trigger_handler,
2235 IIO_BUFFER_DIRECTION_IN, &at91_buffer_setup_ops, fifo_attrs);
789976ac
AA
2236 if (ret < 0) {
2237 dev_err(dev, "couldn't initialize the buffer.\n");
2238 return ret;
2239 }
2240
2241 if (!st->selected_trig->hw_trig)
2242 return 0;
2243
789976ac
AA
2244 st->trig = at91_adc_allocate_trigger(indio, st->selected_trig->name);
2245 if (IS_ERR(st->trig)) {
2246 dev_err(dev, "could not allocate trigger\n");
2247 return PTR_ERR(st->trig);
2248 }
2249
2250 /*
2251 * Initially the iio buffer has a length of 2 and
2252 * a watermark of 1
2253 */
2254 st->dma_st.watermark = 1;
2255
2256 return 0;
2257}
2258
5ab38b81
CB
2259static int at91_adc_temp_sensor_init(struct at91_adc_state *st,
2260 struct device *dev)
2261{
2262 struct at91_adc_temp_sensor_clb *clb = &st->soc_info.temp_sensor_clb;
2263 struct nvmem_cell *temp_calib;
2264 u32 *buf;
2265 size_t len;
2266 int ret = 0;
2267
2268 if (!st->soc_info.platform->temp_sensor)
2269 return 0;
2270
2271 /* Get the calibration data from NVMEM. */
2272 temp_calib = devm_nvmem_cell_get(dev, "temperature_calib");
2273 if (IS_ERR(temp_calib)) {
2274 ret = PTR_ERR(temp_calib);
2275 if (ret != -ENOENT)
2276 dev_err(dev, "Failed to get temperature_calib cell!\n");
2277 return ret;
2278 }
2279
2280 buf = nvmem_cell_read(temp_calib, &len);
2281 if (IS_ERR(buf)) {
2282 dev_err(dev, "Failed to read calibration data!\n");
2283 return PTR_ERR(buf);
2284 }
2285 if (len < AT91_ADC_TS_CLB_IDX_MAX * 4) {
2286 dev_err(dev, "Invalid calibration data!\n");
2287 ret = -EINVAL;
2288 goto free_buf;
2289 }
2290
2291 /* Store calibration data for later use. */
2292 clb->p1 = buf[AT91_ADC_TS_CLB_IDX_P1];
2293 clb->p4 = buf[AT91_ADC_TS_CLB_IDX_P4];
2294 clb->p6 = buf[AT91_ADC_TS_CLB_IDX_P6];
2295
2296 /*
207777dc 2297 * We prepare here the conversion to milli to avoid doing it on hotpath.
5ab38b81 2298 */
207777dc 2299 clb->p1 = clb->p1 * 1000;
5ab38b81
CB
2300
2301free_buf:
2302 kfree(buf);
2303 return ret;
2304}
2305
27e17719
LD
2306static int at91_adc_probe(struct platform_device *pdev)
2307{
34b6eb89 2308 struct device *dev = &pdev->dev;
27e17719
LD
2309 struct iio_dev *indio_dev;
2310 struct at91_adc_state *st;
2311 struct resource *res;
5ab38b81 2312 int ret, i, num_channels;
ca4c3023 2313 u32 edge_type = IRQ_TYPE_NONE;
27e17719 2314
61be8fde 2315 indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*st));
27e17719
LD
2316 if (!indio_dev)
2317 return -ENOMEM;
2318
8940de2e
EH
2319 st = iio_priv(indio_dev);
2320 st->indio_dev = indio_dev;
2321
34b6eb89 2322 st->soc_info.platform = device_get_match_data(dev);
8940de2e 2323
5ab38b81
CB
2324 ret = at91_adc_temp_sensor_init(st, &pdev->dev);
2325 /* Don't register temperature channel if initialization failed. */
2326 if (ret)
2327 num_channels = st->soc_info.platform->max_channels - 1;
2328 else
2329 num_channels = st->soc_info.platform->max_channels;
2330
27e17719 2331 indio_dev->name = dev_name(&pdev->dev);
23ec2774 2332 indio_dev->modes = INDIO_DIRECT_MODE | INDIO_BUFFER_SOFTWARE;
27e17719 2333 indio_dev->info = &at91_adc_info;
8940de2e 2334 indio_dev->channels = *st->soc_info.platform->adc_channels;
5ab38b81 2335 indio_dev->num_channels = num_channels;
27e17719 2336
23ec2774 2337 bitmap_set(&st->touch_st.channels_bitmask,
8940de2e 2338 st->soc_info.platform->touch_chan_x, 1);
23ec2774 2339 bitmap_set(&st->touch_st.channels_bitmask,
8940de2e 2340 st->soc_info.platform->touch_chan_y, 1);
23ec2774 2341 bitmap_set(&st->touch_st.channels_bitmask,
8940de2e 2342 st->soc_info.platform->touch_chan_p, 1);
23ec2774 2343
eea2655e 2344 st->oversampling_ratio = 1;
6794e23f 2345
34b6eb89
NS
2346 ret = device_property_read_u32(dev, "atmel,min-sample-rate-hz",
2347 &st->soc_info.min_sample_rate);
27e17719
LD
2348 if (ret) {
2349 dev_err(&pdev->dev,
2350 "invalid or missing value for atmel,min-sample-rate-hz\n");
2351 return ret;
2352 }
2353
34b6eb89
NS
2354 ret = device_property_read_u32(dev, "atmel,max-sample-rate-hz",
2355 &st->soc_info.max_sample_rate);
27e17719
LD
2356 if (ret) {
2357 dev_err(&pdev->dev,
2358 "invalid or missing value for atmel,max-sample-rate-hz\n");
2359 return ret;
2360 }
2361
34b6eb89
NS
2362 ret = device_property_read_u32(dev, "atmel,startup-time-ms",
2363 &st->soc_info.startup_time);
27e17719
LD
2364 if (ret) {
2365 dev_err(&pdev->dev,
2366 "invalid or missing value for atmel,startup-time-ms\n");
2367 return ret;
2368 }
2369
34b6eb89
NS
2370 ret = device_property_read_u32(dev, "atmel,trigger-edge-type",
2371 &edge_type);
5e1a1da0 2372 if (ret) {
ca4c3023
EH
2373 dev_dbg(&pdev->dev,
2374 "atmel,trigger-edge-type not specified, only software trigger available\n");
5e1a1da0
EH
2375 }
2376
2377 st->selected_trig = NULL;
2378
ca4c3023 2379 /* find the right trigger, or no trigger at all */
8940de2e 2380 for (i = 0; i < st->soc_info.platform->hw_trig_cnt + 1; i++)
5e1a1da0
EH
2381 if (at91_adc_trigger_list[i].edge_type == edge_type) {
2382 st->selected_trig = &at91_adc_trigger_list[i];
2383 break;
2384 }
2385
2386 if (!st->selected_trig) {
2387 dev_err(&pdev->dev, "invalid external trigger edge value\n");
2388 return -EINVAL;
2389 }
2390
27e17719
LD
2391 init_waitqueue_head(&st->wq_data_available);
2392 mutex_init(&st->lock);
23ec2774 2393 INIT_WORK(&st->touch_st.workq, at91_adc_workq_handler);
27e17719 2394
cbc4ca35
WS
2395 st->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
2396 if (IS_ERR(st->base))
2397 return PTR_ERR(st->base);
27e17719 2398
073c6620
EH
2399 /* if we plan to use DMA, we need the physical address of the regs */
2400 st->dma_st.phys_addr = res->start;
2401
27e17719
LD
2402 st->irq = platform_get_irq(pdev, 0);
2403 if (st->irq <= 0) {
2404 if (!st->irq)
2405 st->irq = -ENXIO;
2406
2407 return st->irq;
2408 }
2409
2410 st->per_clk = devm_clk_get(&pdev->dev, "adc_clk");
2411 if (IS_ERR(st->per_clk))
2412 return PTR_ERR(st->per_clk);
2413
2414 st->reg = devm_regulator_get(&pdev->dev, "vddana");
2415 if (IS_ERR(st->reg))
2416 return PTR_ERR(st->reg);
2417
2418 st->vref = devm_regulator_get(&pdev->dev, "vref");
2419 if (IS_ERR(st->vref))
2420 return PTR_ERR(st->vref);
2421
2422 ret = devm_request_irq(&pdev->dev, st->irq, at91_adc_interrupt, 0,
2423 pdev->dev.driver->name, indio_dev);
2424 if (ret)
2425 return ret;
2426
2427 ret = regulator_enable(st->reg);
2428 if (ret)
2429 return ret;
2430
2431 ret = regulator_enable(st->vref);
2432 if (ret)
2433 goto reg_disable;
2434
2435 st->vref_uv = regulator_get_voltage(st->vref);
2436 if (st->vref_uv <= 0) {
2437 ret = -EINVAL;
2438 goto vref_disable;
2439 }
2440
27e17719
LD
2441 ret = clk_prepare_enable(st->per_clk);
2442 if (ret)
2443 goto vref_disable;
2444
8e6cb470 2445 platform_set_drvdata(pdev, indio_dev);
75d7556a
CB
2446 st->dev = &pdev->dev;
2447 pm_runtime_set_autosuspend_delay(st->dev, 500);
2448 pm_runtime_use_autosuspend(st->dev);
2449 pm_runtime_set_active(st->dev);
2450 pm_runtime_enable(st->dev);
2451 pm_runtime_get_noresume(st->dev);
2452
2453 at91_adc_hw_init(indio_dev);
8e6cb470 2454
789976ac
AA
2455 ret = at91_adc_buffer_and_trigger_init(&pdev->dev, indio_dev);
2456 if (ret < 0)
75d7556a 2457 goto err_pm_disable;
5e1a1da0 2458
073c6620
EH
2459 if (dma_coerce_mask_and_coherent(&indio_dev->dev, DMA_BIT_MASK(32)))
2460 dev_info(&pdev->dev, "cannot set DMA mask to 32-bit\n");
2461
27e17719
LD
2462 ret = iio_device_register(indio_dev);
2463 if (ret < 0)
073c6620 2464 goto dma_disable;
27e17719 2465
ca4c3023
EH
2466 if (st->selected_trig->hw_trig)
2467 dev_info(&pdev->dev, "setting up trigger as %s\n",
2468 st->selected_trig->name);
5e1a1da0 2469
27e17719 2470 dev_info(&pdev->dev, "version: %x\n",
8940de2e 2471 readl_relaxed(st->base + st->soc_info.platform->layout->VERSION));
27e17719 2472
75d7556a
CB
2473 pm_runtime_mark_last_busy(st->dev);
2474 pm_runtime_put_autosuspend(st->dev);
2475
27e17719
LD
2476 return 0;
2477
073c6620 2478dma_disable:
907b2ad8 2479 at91_adc_dma_disable(st);
75d7556a
CB
2480err_pm_disable:
2481 pm_runtime_put_noidle(st->dev);
2482 pm_runtime_disable(st->dev);
2483 pm_runtime_set_suspended(st->dev);
2484 pm_runtime_dont_use_autosuspend(st->dev);
27e17719
LD
2485 clk_disable_unprepare(st->per_clk);
2486vref_disable:
2487 regulator_disable(st->vref);
2488reg_disable:
2489 regulator_disable(st->reg);
2490 return ret;
2491}
2492
2493static int at91_adc_remove(struct platform_device *pdev)
2494{
2495 struct iio_dev *indio_dev = platform_get_drvdata(pdev);
2496 struct at91_adc_state *st = iio_priv(indio_dev);
2497
2498 iio_device_unregister(indio_dev);
2499
907b2ad8 2500 at91_adc_dma_disable(st);
073c6620 2501
75d7556a
CB
2502 pm_runtime_disable(st->dev);
2503 pm_runtime_set_suspended(st->dev);
27e17719
LD
2504 clk_disable_unprepare(st->per_clk);
2505
2506 regulator_disable(st->vref);
2507 regulator_disable(st->reg);
2508
2509 return 0;
2510}
2511
45dc8c59 2512static int at91_adc_suspend(struct device *dev)
500a2eef 2513{
e3faedf7 2514 struct iio_dev *indio_dev = dev_get_drvdata(dev);
500a2eef 2515 struct at91_adc_state *st = iio_priv(indio_dev);
75d7556a
CB
2516 int ret;
2517
2518 ret = pm_runtime_resume_and_get(st->dev);
2519 if (ret < 0)
2520 return ret;
500a2eef 2521
808175e2
CB
2522 if (iio_buffer_enabled(indio_dev))
2523 at91_adc_buffer_postdisable(indio_dev);
2524
500a2eef
EH
2525 /*
2526 * Do a sofware reset of the ADC before we go to suspend.
2527 * this will ensure that all pins are free from being muxed by the ADC
2528 * and can be used by for other devices.
2529 * Otherwise, ADC will hog them and we can't go to suspend mode.
2530 */
8940de2e 2531 at91_adc_writel(st, CR, AT91_SAMA5D2_CR_SWRST);
500a2eef 2532
75d7556a
CB
2533 pm_runtime_mark_last_busy(st->dev);
2534 pm_runtime_put_noidle(st->dev);
500a2eef
EH
2535 clk_disable_unprepare(st->per_clk);
2536 regulator_disable(st->vref);
2537 regulator_disable(st->reg);
2538
2539 return pinctrl_pm_select_sleep_state(dev);
2540}
2541
45dc8c59 2542static int at91_adc_resume(struct device *dev)
500a2eef 2543{
e3faedf7 2544 struct iio_dev *indio_dev = dev_get_drvdata(dev);
500a2eef
EH
2545 struct at91_adc_state *st = iio_priv(indio_dev);
2546 int ret;
2547
2548 ret = pinctrl_pm_select_default_state(dev);
2549 if (ret)
2550 goto resume_failed;
2551
2552 ret = regulator_enable(st->reg);
2553 if (ret)
2554 goto resume_failed;
2555
2556 ret = regulator_enable(st->vref);
2557 if (ret)
2558 goto reg_disable_resume;
2559
2560 ret = clk_prepare_enable(st->per_clk);
2561 if (ret)
2562 goto vref_disable_resume;
2563
75d7556a
CB
2564 pm_runtime_get_noresume(st->dev);
2565
ebf35aad 2566 at91_adc_hw_init(indio_dev);
500a2eef
EH
2567
2568 /* reconfiguring trigger hardware state */
75d7556a
CB
2569 if (iio_buffer_enabled(indio_dev)) {
2570 ret = at91_adc_buffer_prepare(indio_dev);
2571 if (ret)
2572 goto pm_runtime_put;
23ec2774 2573
75d7556a
CB
2574 at91_adc_configure_trigger_registers(st, true);
2575 }
2576
2577 pm_runtime_mark_last_busy(st->dev);
2578 pm_runtime_put_autosuspend(st->dev);
500a2eef 2579
75d7556a 2580 return 0;
500a2eef 2581
75d7556a
CB
2582pm_runtime_put:
2583 pm_runtime_mark_last_busy(st->dev);
2584 pm_runtime_put_noidle(st->dev);
2585 clk_disable_unprepare(st->per_clk);
500a2eef
EH
2586vref_disable_resume:
2587 regulator_disable(st->vref);
2588reg_disable_resume:
2589 regulator_disable(st->reg);
2590resume_failed:
2591 dev_err(&indio_dev->dev, "failed to resume\n");
2592 return ret;
2593}
2594
75d7556a
CB
2595static int at91_adc_runtime_suspend(struct device *dev)
2596{
2597 struct iio_dev *indio_dev = dev_get_drvdata(dev);
2598 struct at91_adc_state *st = iio_priv(indio_dev);
2599
2600 clk_disable(st->per_clk);
2601
2602 return 0;
2603}
2604
2605static int at91_adc_runtime_resume(struct device *dev)
2606{
2607 struct iio_dev *indio_dev = dev_get_drvdata(dev);
2608 struct at91_adc_state *st = iio_priv(indio_dev);
2609
2610 return clk_enable(st->per_clk);
2611}
2612
2613static const struct dev_pm_ops at91_adc_pm_ops = {
2614 SYSTEM_SLEEP_PM_OPS(at91_adc_suspend, at91_adc_resume)
2615 RUNTIME_PM_OPS(at91_adc_runtime_suspend, at91_adc_runtime_resume,
2616 NULL)
2617};
500a2eef 2618
27e17719
LD
2619static const struct of_device_id at91_adc_dt_match[] = {
2620 {
2621 .compatible = "atmel,sama5d2-adc",
8940de2e 2622 .data = (const void *)&sama5d2_platform,
840bf6cb
EH
2623 }, {
2624 .compatible = "microchip,sama7g5-adc",
2625 .data = (const void *)&sama7g5_platform,
27e17719
LD
2626 }, {
2627 /* sentinel */
2628 }
2629};
2630MODULE_DEVICE_TABLE(of, at91_adc_dt_match);
2631
2632static struct platform_driver at91_adc_driver = {
2633 .probe = at91_adc_probe,
2634 .remove = at91_adc_remove,
2635 .driver = {
2636 .name = "at91-sama5d2_adc",
2637 .of_match_table = at91_adc_dt_match,
75d7556a 2638 .pm = pm_ptr(&at91_adc_pm_ops),
27e17719
LD
2639 },
2640};
2641module_platform_driver(at91_adc_driver)
2642
874b4912
EH
2643MODULE_AUTHOR("Ludovic Desroches <ludovic.desroches@microchip.com>");
2644MODULE_AUTHOR("Eugen Hristev <eugen.hristev@microchip.com");
27e17719
LD
2645MODULE_DESCRIPTION("Atmel AT91 SAMA5D2 ADC");
2646MODULE_LICENSE("GPL v2");