blob: fb7c5d2cc61a7a8067de2714cd2c3ac625cdcf5d [file] [log] [blame]
Phani Movva1664f6a2015-01-06 17:47:35 -03001/*
2 * Copyright (c) 2014-2015 Imagination Technologies Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 *
8 */
9
10#include <linux/clk.h>
11#include <linux/delay.h>
12#include <linux/err.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/of.h>
16#include <linux/of_device.h>
17#include <linux/platform_device.h>
18#include <linux/regulator/consumer.h>
19#include <linux/slab.h>
20
21#include <linux/iio/buffer.h>
22#include <linux/iio/iio.h>
23#include <linux/iio/sysfs.h>
24#include <linux/iio/trigger.h>
25#include <linux/iio/trigger_consumer.h>
26#include <linux/iio/triggered_buffer.h>
27
28/* Registers */
29#define CC10001_ADC_CONFIG 0x00
30#define CC10001_ADC_START_CONV BIT(4)
31#define CC10001_ADC_MODE_SINGLE_CONV BIT(5)
32
33#define CC10001_ADC_DDATA_OUT 0x04
34#define CC10001_ADC_EOC 0x08
35#define CC10001_ADC_EOC_SET BIT(0)
36
37#define CC10001_ADC_CHSEL_SAMPLED 0x0c
Naidu Tellapati713276e2015-05-07 18:22:18 -030038#define CC10001_ADC_POWER_DOWN 0x10
39#define CC10001_ADC_POWER_DOWN_SET BIT(0)
40
Phani Movva1664f6a2015-01-06 17:47:35 -030041#define CC10001_ADC_DEBUG 0x14
42#define CC10001_ADC_DATA_COUNT 0x20
43
44#define CC10001_ADC_DATA_MASK GENMASK(9, 0)
45#define CC10001_ADC_NUM_CHANNELS 8
46#define CC10001_ADC_CH_MASK GENMASK(2, 0)
47
48#define CC10001_INVALID_SAMPLED 0xffff
49#define CC10001_MAX_POLL_COUNT 20
50
51/*
52 * As per device specification, wait six clock cycles after power-up to
53 * activate START. Since adding two more clock cycles delay does not
54 * impact the performance too much, we are adding two additional cycles delay
55 * intentionally here.
56 */
57#define CC10001_WAIT_CYCLES 8
58
59struct cc10001_adc_device {
60 void __iomem *reg_base;
61 struct clk *adc_clk;
62 struct regulator *reg;
63 u16 *buf;
64
65 struct mutex lock;
Phani Movva1664f6a2015-01-06 17:47:35 -030066 unsigned int start_delay_ns;
67 unsigned int eoc_delay_ns;
68};
69
70static inline void cc10001_adc_write_reg(struct cc10001_adc_device *adc_dev,
71 u32 reg, u32 val)
72{
73 writel(val, adc_dev->reg_base + reg);
74}
75
76static inline u32 cc10001_adc_read_reg(struct cc10001_adc_device *adc_dev,
77 u32 reg)
78{
79 return readl(adc_dev->reg_base + reg);
80}
81
Naidu Tellapati713276e2015-05-07 18:22:18 -030082static void cc10001_adc_power_up(struct cc10001_adc_device *adc_dev)
83{
84 cc10001_adc_write_reg(adc_dev, CC10001_ADC_POWER_DOWN, 0);
85 ndelay(adc_dev->start_delay_ns);
86}
87
88static void cc10001_adc_power_down(struct cc10001_adc_device *adc_dev)
89{
90 cc10001_adc_write_reg(adc_dev, CC10001_ADC_POWER_DOWN,
91 CC10001_ADC_POWER_DOWN_SET);
92}
93
Phani Movva1664f6a2015-01-06 17:47:35 -030094static void cc10001_adc_start(struct cc10001_adc_device *adc_dev,
95 unsigned int channel)
96{
97 u32 val;
98
99 /* Channel selection and mode of operation */
100 val = (channel & CC10001_ADC_CH_MASK) | CC10001_ADC_MODE_SINGLE_CONV;
101 cc10001_adc_write_reg(adc_dev, CC10001_ADC_CONFIG, val);
102
103 val = cc10001_adc_read_reg(adc_dev, CC10001_ADC_CONFIG);
104 val = val | CC10001_ADC_START_CONV;
105 cc10001_adc_write_reg(adc_dev, CC10001_ADC_CONFIG, val);
106}
107
108static u16 cc10001_adc_poll_done(struct iio_dev *indio_dev,
109 unsigned int channel,
110 unsigned int delay)
111{
112 struct cc10001_adc_device *adc_dev = iio_priv(indio_dev);
113 unsigned int poll_count = 0;
114
115 while (!(cc10001_adc_read_reg(adc_dev, CC10001_ADC_EOC) &
116 CC10001_ADC_EOC_SET)) {
117
118 ndelay(delay);
119 if (poll_count++ == CC10001_MAX_POLL_COUNT)
120 return CC10001_INVALID_SAMPLED;
121 }
122
123 poll_count = 0;
124 while ((cc10001_adc_read_reg(adc_dev, CC10001_ADC_CHSEL_SAMPLED) &
125 CC10001_ADC_CH_MASK) != channel) {
126
127 ndelay(delay);
128 if (poll_count++ == CC10001_MAX_POLL_COUNT)
129 return CC10001_INVALID_SAMPLED;
130 }
131
132 /* Read the 10 bit output register */
133 return cc10001_adc_read_reg(adc_dev, CC10001_ADC_DDATA_OUT) &
134 CC10001_ADC_DATA_MASK;
135}
136
137static irqreturn_t cc10001_adc_trigger_h(int irq, void *p)
138{
139 struct cc10001_adc_device *adc_dev;
140 struct iio_poll_func *pf = p;
141 struct iio_dev *indio_dev;
142 unsigned int delay_ns;
143 unsigned int channel;
Naidu Tellapati13415a992015-05-07 18:22:17 -0300144 unsigned int scan_idx;
Phani Movva1664f6a2015-01-06 17:47:35 -0300145 bool sample_invalid;
146 u16 *data;
147 int i;
148
149 indio_dev = pf->indio_dev;
150 adc_dev = iio_priv(indio_dev);
151 data = adc_dev->buf;
152
153 mutex_lock(&adc_dev->lock);
154
Naidu Tellapati713276e2015-05-07 18:22:18 -0300155 cc10001_adc_power_up(adc_dev);
Phani Movva1664f6a2015-01-06 17:47:35 -0300156
157 /* Calculate delay step for eoc and sampled data */
158 delay_ns = adc_dev->eoc_delay_ns / CC10001_MAX_POLL_COUNT;
159
160 i = 0;
161 sample_invalid = false;
Naidu Tellapati13415a992015-05-07 18:22:17 -0300162 for_each_set_bit(scan_idx, indio_dev->active_scan_mask,
Phani Movva1664f6a2015-01-06 17:47:35 -0300163 indio_dev->masklength) {
164
Naidu Tellapati13415a992015-05-07 18:22:17 -0300165 channel = indio_dev->channels[scan_idx].channel;
Phani Movva1664f6a2015-01-06 17:47:35 -0300166 cc10001_adc_start(adc_dev, channel);
167
168 data[i] = cc10001_adc_poll_done(indio_dev, channel, delay_ns);
169 if (data[i] == CC10001_INVALID_SAMPLED) {
170 dev_warn(&indio_dev->dev,
171 "invalid sample on channel %d\n", channel);
172 sample_invalid = true;
173 goto done;
174 }
175 i++;
176 }
177
178done:
Naidu Tellapati713276e2015-05-07 18:22:18 -0300179 cc10001_adc_power_down(adc_dev);
Phani Movva1664f6a2015-01-06 17:47:35 -0300180
181 mutex_unlock(&adc_dev->lock);
182
183 if (!sample_invalid)
184 iio_push_to_buffers_with_timestamp(indio_dev, data,
185 iio_get_time_ns());
186 iio_trigger_notify_done(indio_dev->trig);
187
188 return IRQ_HANDLED;
189}
190
191static u16 cc10001_adc_read_raw_voltage(struct iio_dev *indio_dev,
192 struct iio_chan_spec const *chan)
193{
194 struct cc10001_adc_device *adc_dev = iio_priv(indio_dev);
195 unsigned int delay_ns;
196 u16 val;
197
Naidu Tellapati713276e2015-05-07 18:22:18 -0300198 cc10001_adc_power_up(adc_dev);
Phani Movva1664f6a2015-01-06 17:47:35 -0300199
200 /* Calculate delay step for eoc and sampled data */
201 delay_ns = adc_dev->eoc_delay_ns / CC10001_MAX_POLL_COUNT;
202
203 cc10001_adc_start(adc_dev, chan->channel);
204
205 val = cc10001_adc_poll_done(indio_dev, chan->channel, delay_ns);
206
Naidu Tellapati713276e2015-05-07 18:22:18 -0300207 cc10001_adc_power_down(adc_dev);
Phani Movva1664f6a2015-01-06 17:47:35 -0300208
209 return val;
210}
211
212static int cc10001_adc_read_raw(struct iio_dev *indio_dev,
213 struct iio_chan_spec const *chan,
214 int *val, int *val2, long mask)
215{
216 struct cc10001_adc_device *adc_dev = iio_priv(indio_dev);
217 int ret;
218
219 switch (mask) {
220 case IIO_CHAN_INFO_RAW:
221 if (iio_buffer_enabled(indio_dev))
222 return -EBUSY;
223 mutex_lock(&adc_dev->lock);
224 *val = cc10001_adc_read_raw_voltage(indio_dev, chan);
225 mutex_unlock(&adc_dev->lock);
226
227 if (*val == CC10001_INVALID_SAMPLED)
228 return -EIO;
229 return IIO_VAL_INT;
230
231 case IIO_CHAN_INFO_SCALE:
232 ret = regulator_get_voltage(adc_dev->reg);
Naidu Tellapati65a761b2015-05-07 18:22:19 -0300233 if (ret < 0)
Phani Movva1664f6a2015-01-06 17:47:35 -0300234 return ret;
235
236 *val = ret / 1000;
237 *val2 = chan->scan_type.realbits;
238 return IIO_VAL_FRACTIONAL_LOG2;
239
240 default:
241 return -EINVAL;
242 }
243}
244
245static int cc10001_update_scan_mode(struct iio_dev *indio_dev,
246 const unsigned long *scan_mask)
247{
248 struct cc10001_adc_device *adc_dev = iio_priv(indio_dev);
249
250 kfree(adc_dev->buf);
251 adc_dev->buf = kmalloc(indio_dev->scan_bytes, GFP_KERNEL);
252 if (!adc_dev->buf)
253 return -ENOMEM;
254
255 return 0;
256}
257
258static const struct iio_info cc10001_adc_info = {
259 .driver_module = THIS_MODULE,
260 .read_raw = &cc10001_adc_read_raw,
261 .update_scan_mode = &cc10001_update_scan_mode,
262};
263
Naidu Tellapati13415a992015-05-07 18:22:17 -0300264static int cc10001_adc_channel_init(struct iio_dev *indio_dev,
265 unsigned long channel_map)
Phani Movva1664f6a2015-01-06 17:47:35 -0300266{
Phani Movva1664f6a2015-01-06 17:47:35 -0300267 struct iio_chan_spec *chan_array, *timestamp;
268 unsigned int bit, idx = 0;
269
Naidu Tellapati13415a992015-05-07 18:22:17 -0300270 indio_dev->num_channels = bitmap_weight(&channel_map,
271 CC10001_ADC_NUM_CHANNELS) + 1;
Phani Movva1664f6a2015-01-06 17:47:35 -0300272
Naidu Tellapati13415a992015-05-07 18:22:17 -0300273 chan_array = devm_kcalloc(&indio_dev->dev, indio_dev->num_channels,
Phani Movva1664f6a2015-01-06 17:47:35 -0300274 sizeof(struct iio_chan_spec),
275 GFP_KERNEL);
276 if (!chan_array)
277 return -ENOMEM;
278
Naidu Tellapati13415a992015-05-07 18:22:17 -0300279 for_each_set_bit(bit, &channel_map, CC10001_ADC_NUM_CHANNELS) {
Phani Movva1664f6a2015-01-06 17:47:35 -0300280 struct iio_chan_spec *chan = &chan_array[idx];
281
282 chan->type = IIO_VOLTAGE;
283 chan->indexed = 1;
284 chan->channel = bit;
285 chan->scan_index = idx;
286 chan->scan_type.sign = 'u';
287 chan->scan_type.realbits = 10;
288 chan->scan_type.storagebits = 16;
289 chan->info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE);
290 chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
291 idx++;
292 }
293
294 timestamp = &chan_array[idx];
295 timestamp->type = IIO_TIMESTAMP;
296 timestamp->channel = -1;
297 timestamp->scan_index = idx;
298 timestamp->scan_type.sign = 's';
299 timestamp->scan_type.realbits = 64;
300 timestamp->scan_type.storagebits = 64;
301
302 indio_dev->channels = chan_array;
303
304 return 0;
305}
306
307static int cc10001_adc_probe(struct platform_device *pdev)
308{
309 struct device_node *node = pdev->dev.of_node;
310 struct cc10001_adc_device *adc_dev;
311 unsigned long adc_clk_rate;
312 struct resource *res;
313 struct iio_dev *indio_dev;
Naidu Tellapati13415a992015-05-07 18:22:17 -0300314 unsigned long channel_map;
Phani Movva1664f6a2015-01-06 17:47:35 -0300315 int ret;
316
317 indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*adc_dev));
318 if (indio_dev == NULL)
319 return -ENOMEM;
320
321 adc_dev = iio_priv(indio_dev);
322
Naidu Tellapati13415a992015-05-07 18:22:17 -0300323 channel_map = GENMASK(CC10001_ADC_NUM_CHANNELS - 1, 0);
Phani Movva1664f6a2015-01-06 17:47:35 -0300324 if (!of_property_read_u32(node, "adc-reserved-channels", &ret))
Naidu Tellapati13415a992015-05-07 18:22:17 -0300325 channel_map &= ~ret;
Phani Movva1664f6a2015-01-06 17:47:35 -0300326
327 adc_dev->reg = devm_regulator_get(&pdev->dev, "vref");
328 if (IS_ERR(adc_dev->reg))
329 return PTR_ERR(adc_dev->reg);
330
331 ret = regulator_enable(adc_dev->reg);
332 if (ret)
333 return ret;
334
335 indio_dev->dev.parent = &pdev->dev;
336 indio_dev->name = dev_name(&pdev->dev);
337 indio_dev->info = &cc10001_adc_info;
338 indio_dev->modes = INDIO_DIRECT_MODE;
339
340 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
341 adc_dev->reg_base = devm_ioremap_resource(&pdev->dev, res);
342 if (IS_ERR(adc_dev->reg_base)) {
343 ret = PTR_ERR(adc_dev->reg_base);
344 goto err_disable_reg;
345 }
346
347 adc_dev->adc_clk = devm_clk_get(&pdev->dev, "adc");
348 if (IS_ERR(adc_dev->adc_clk)) {
349 dev_err(&pdev->dev, "failed to get the clock\n");
350 ret = PTR_ERR(adc_dev->adc_clk);
351 goto err_disable_reg;
352 }
353
354 ret = clk_prepare_enable(adc_dev->adc_clk);
355 if (ret) {
356 dev_err(&pdev->dev, "failed to enable the clock\n");
357 goto err_disable_reg;
358 }
359
360 adc_clk_rate = clk_get_rate(adc_dev->adc_clk);
361 if (!adc_clk_rate) {
362 ret = -EINVAL;
363 dev_err(&pdev->dev, "null clock rate!\n");
364 goto err_disable_clk;
365 }
366
367 adc_dev->eoc_delay_ns = NSEC_PER_SEC / adc_clk_rate;
368 adc_dev->start_delay_ns = adc_dev->eoc_delay_ns * CC10001_WAIT_CYCLES;
369
370 /* Setup the ADC channels available on the device */
Naidu Tellapati13415a992015-05-07 18:22:17 -0300371 ret = cc10001_adc_channel_init(indio_dev, channel_map);
Phani Movva1664f6a2015-01-06 17:47:35 -0300372 if (ret < 0)
373 goto err_disable_clk;
374
375 mutex_init(&adc_dev->lock);
376
377 ret = iio_triggered_buffer_setup(indio_dev, NULL,
378 &cc10001_adc_trigger_h, NULL);
379 if (ret < 0)
380 goto err_disable_clk;
381
382 ret = iio_device_register(indio_dev);
383 if (ret < 0)
384 goto err_cleanup_buffer;
385
386 platform_set_drvdata(pdev, indio_dev);
387
388 return 0;
389
390err_cleanup_buffer:
391 iio_triggered_buffer_cleanup(indio_dev);
392err_disable_clk:
393 clk_disable_unprepare(adc_dev->adc_clk);
394err_disable_reg:
395 regulator_disable(adc_dev->reg);
396 return ret;
397}
398
399static int cc10001_adc_remove(struct platform_device *pdev)
400{
401 struct iio_dev *indio_dev = platform_get_drvdata(pdev);
402 struct cc10001_adc_device *adc_dev = iio_priv(indio_dev);
403
404 iio_device_unregister(indio_dev);
405 iio_triggered_buffer_cleanup(indio_dev);
406 clk_disable_unprepare(adc_dev->adc_clk);
407 regulator_disable(adc_dev->reg);
408
409 return 0;
410}
411
412static const struct of_device_id cc10001_adc_dt_ids[] = {
413 { .compatible = "cosmic,10001-adc", },
414 { }
415};
416MODULE_DEVICE_TABLE(of, cc10001_adc_dt_ids);
417
418static struct platform_driver cc10001_adc_driver = {
419 .driver = {
420 .name = "cc10001-adc",
421 .of_match_table = cc10001_adc_dt_ids,
422 },
423 .probe = cc10001_adc_probe,
424 .remove = cc10001_adc_remove,
425};
426module_platform_driver(cc10001_adc_driver);
427
428MODULE_AUTHOR("Phani Movva <Phani.Movva@imgtec.com>");
429MODULE_DESCRIPTION("Cosmic Circuits ADC driver");
430MODULE_LICENSE("GPL v2");