staging: rtl8188eu: rename HalSetBrateCfg() - style
[linux/fpc-iii.git] / drivers / iio / adc / ep93xx_adc.c
blob5036c392cb2063be0fed9d3f96818347dd180659
1 /*
2 * Driver for ADC module on the Cirrus Logic EP93xx series of SoCs
4 * Copyright (C) 2015 Alexander Sverdlin
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * The driver uses polling to get the conversion status. According to EP93xx
11 * datasheets, reading ADCResult register starts the conversion, but user is also
12 * responsible for ensuring that delay between adjacent conversion triggers is
13 * long enough so that maximum allowed conversion rate is not exceeded. This
14 * basically renders IRQ mode unusable.
17 #include <linux/clk.h>
18 #include <linux/delay.h>
19 #include <linux/device.h>
20 #include <linux/err.h>
21 #include <linux/iio/iio.h>
22 #include <linux/io.h>
23 #include <linux/irqflags.h>
24 #include <linux/module.h>
25 #include <linux/mutex.h>
26 #include <linux/platform_device.h>
29 * This code could benefit from real HR Timers, but jiffy granularity would
30 * lower ADC conversion rate down to CONFIG_HZ, so we fallback to busy wait
31 * in such case.
33 * HR Timers-based version loads CPU only up to 10% during back to back ADC
34 * conversion, while busy wait-based version consumes whole CPU power.
36 #ifdef CONFIG_HIGH_RES_TIMERS
37 #define ep93xx_adc_delay(usmin, usmax) usleep_range(usmin, usmax)
38 #else
39 #define ep93xx_adc_delay(usmin, usmax) udelay(usmin)
40 #endif
42 #define EP93XX_ADC_RESULT 0x08
43 #define EP93XX_ADC_SDR BIT(31)
44 #define EP93XX_ADC_SWITCH 0x18
45 #define EP93XX_ADC_SW_LOCK 0x20
47 struct ep93xx_adc_priv {
48 struct clk *clk;
49 void __iomem *base;
50 int lastch;
51 struct mutex lock;
54 #define EP93XX_ADC_CH(index, dname, swcfg) { \
55 .type = IIO_VOLTAGE, \
56 .indexed = 1, \
57 .channel = index, \
58 .address = swcfg, \
59 .datasheet_name = dname, \
60 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
61 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SCALE) | \
62 BIT(IIO_CHAN_INFO_OFFSET), \
66 * Numbering scheme for channels 0..4 is defined in EP9301 and EP9302 datasheets.
67 * EP9307, EP9312 and EP9312 have 3 channels more (total 8), but the numbering is
68 * not defined. So the last three are numbered randomly, let's say.
70 static const struct iio_chan_spec ep93xx_adc_channels[8] = {
71 EP93XX_ADC_CH(0, "YM", 0x608),
72 EP93XX_ADC_CH(1, "SXP", 0x680),
73 EP93XX_ADC_CH(2, "SXM", 0x640),
74 EP93XX_ADC_CH(3, "SYP", 0x620),
75 EP93XX_ADC_CH(4, "SYM", 0x610),
76 EP93XX_ADC_CH(5, "XP", 0x601),
77 EP93XX_ADC_CH(6, "XM", 0x602),
78 EP93XX_ADC_CH(7, "YP", 0x604),
81 static int ep93xx_read_raw(struct iio_dev *iiodev,
82 struct iio_chan_spec const *channel, int *value,
83 int *shift, long mask)
85 struct ep93xx_adc_priv *priv = iio_priv(iiodev);
86 unsigned long timeout;
87 int ret;
89 switch (mask) {
90 case IIO_CHAN_INFO_RAW:
91 mutex_lock(&priv->lock);
92 if (priv->lastch != channel->channel) {
93 priv->lastch = channel->channel;
95 * Switch register is software-locked, unlocking must be
96 * immediately followed by write
98 local_irq_disable();
99 writel_relaxed(0xAA, priv->base + EP93XX_ADC_SW_LOCK);
100 writel_relaxed(channel->address,
101 priv->base + EP93XX_ADC_SWITCH);
102 local_irq_enable();
104 * Settling delay depends on module clock and could be
105 * 2ms or 500us
107 ep93xx_adc_delay(2000, 2000);
109 /* Start the conversion, eventually discarding old result */
110 readl_relaxed(priv->base + EP93XX_ADC_RESULT);
111 /* Ensure maximum conversion rate is not exceeded */
112 ep93xx_adc_delay(DIV_ROUND_UP(1000000, 925),
113 DIV_ROUND_UP(1000000, 925));
114 /* At this point conversion must be completed, but anyway... */
115 ret = IIO_VAL_INT;
116 timeout = jiffies + msecs_to_jiffies(1) + 1;
117 while (1) {
118 u32 t;
120 t = readl_relaxed(priv->base + EP93XX_ADC_RESULT);
121 if (t & EP93XX_ADC_SDR) {
122 *value = sign_extend32(t, 15);
123 break;
126 if (time_after(jiffies, timeout)) {
127 dev_err(&iiodev->dev, "Conversion timeout\n");
128 ret = -ETIMEDOUT;
129 break;
132 cpu_relax();
134 mutex_unlock(&priv->lock);
135 return ret;
137 case IIO_CHAN_INFO_OFFSET:
138 /* According to datasheet, range is -25000..25000 */
139 *value = 25000;
140 return IIO_VAL_INT;
142 case IIO_CHAN_INFO_SCALE:
143 /* Typical supply voltage is 3.3v */
144 *value = (1ULL << 32) * 3300 / 50000;
145 *shift = 32;
146 return IIO_VAL_FRACTIONAL_LOG2;
149 return -EINVAL;
152 static const struct iio_info ep93xx_adc_info = {
153 .read_raw = ep93xx_read_raw,
156 static int ep93xx_adc_probe(struct platform_device *pdev)
158 int ret;
159 struct iio_dev *iiodev;
160 struct ep93xx_adc_priv *priv;
161 struct clk *pclk;
162 struct resource *res;
164 iiodev = devm_iio_device_alloc(&pdev->dev, sizeof(*priv));
165 if (!iiodev)
166 return -ENOMEM;
167 priv = iio_priv(iiodev);
169 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
170 priv->base = devm_ioremap_resource(&pdev->dev, res);
171 if (IS_ERR(priv->base)) {
172 dev_err(&pdev->dev, "Cannot map memory resource\n");
173 return PTR_ERR(priv->base);
176 iiodev->dev.parent = &pdev->dev;
177 iiodev->name = dev_name(&pdev->dev);
178 iiodev->modes = INDIO_DIRECT_MODE;
179 iiodev->info = &ep93xx_adc_info;
180 iiodev->num_channels = ARRAY_SIZE(ep93xx_adc_channels);
181 iiodev->channels = ep93xx_adc_channels;
183 priv->lastch = -1;
184 mutex_init(&priv->lock);
186 platform_set_drvdata(pdev, iiodev);
188 priv->clk = devm_clk_get(&pdev->dev, NULL);
189 if (IS_ERR(priv->clk)) {
190 dev_err(&pdev->dev, "Cannot obtain clock\n");
191 return PTR_ERR(priv->clk);
194 pclk = clk_get_parent(priv->clk);
195 if (!pclk) {
196 dev_warn(&pdev->dev, "Cannot obtain parent clock\n");
197 } else {
199 * This is actually a place for improvement:
200 * EP93xx ADC supports two clock divisors -- 4 and 16,
201 * resulting in conversion rates 3750 and 925 samples per second
202 * with 500us or 2ms settling time respectively.
203 * One might find this interesting enough to be configurable.
205 ret = clk_set_rate(priv->clk, clk_get_rate(pclk) / 16);
206 if (ret)
207 dev_warn(&pdev->dev, "Cannot set clock rate\n");
209 * We can tolerate rate setting failure because the module should
210 * work in any case.
214 ret = clk_enable(priv->clk);
215 if (ret) {
216 dev_err(&pdev->dev, "Cannot enable clock\n");
217 return ret;
220 ret = iio_device_register(iiodev);
221 if (ret)
222 clk_disable(priv->clk);
224 return ret;
227 static int ep93xx_adc_remove(struct platform_device *pdev)
229 struct iio_dev *iiodev = platform_get_drvdata(pdev);
230 struct ep93xx_adc_priv *priv = iio_priv(iiodev);
232 iio_device_unregister(iiodev);
233 clk_disable(priv->clk);
235 return 0;
238 static struct platform_driver ep93xx_adc_driver = {
239 .driver = {
240 .name = "ep93xx-adc",
242 .probe = ep93xx_adc_probe,
243 .remove = ep93xx_adc_remove,
245 module_platform_driver(ep93xx_adc_driver);
247 MODULE_AUTHOR("Alexander Sverdlin <alexander.sverdlin@gmail.com>");
248 MODULE_DESCRIPTION("Cirrus Logic EP93XX ADC driver");
249 MODULE_LICENSE("GPL");
250 MODULE_ALIAS("platform:ep93xx-adc");