mirror of
https://github.com/torvalds/linux.git
synced 2026-05-04 14:32:27 -04:00
Jonathan writes:
IIO: New device support, features and cleanup for 6.16 - take 2
Note - last minute rebase was to drop a typo patch that I'd accidentally
picked up (in the microblaze arch Kconfig)
Take 2 is due to that rebase messing up some fixes tags that were
referring to patches after that point.
There is a known merge conflict due to changes in neighbouring lines.
Stephen's resolution in linux-next is:
https://lore.kernel.org/linux-next/20250506155728.65605bae@canb.auug.org.au/
Added 3 named IIO reviewers to MAINTAINERS. This is a reflection of those
who have been doing much of this work for some time. Lars-Peter is
removed from the entry having moved on to other topics. Thanks
Nuno, David and Andy for stepping up and Lars-Peter for all your
hard work in the past!
Includes the usual mix of new device support, features and general
cleanup.
This time we also have some tree wide changes.
- Rip out the iio_device_claim_direct_scoped() as it proved hard to work
with. This series includes quite a few related cleanups such as use
of guard or factoring code out to allow direct returns.
- Switch from iio_device_claim/release_direct_mode() to new
iio_device_claim/release_direct() which is structured so that sparse
can warn on failed releases. There were a few false positives but
those were mostly in code that benefited from being cleaned up as part
of this process.
- Introduce iio_push_to_buffers_with_ts() to replace the _timestamp()
version over time. This version takes the size of the supplied buffer
which the core checks is at least as big as expected by calculation
from channel descriptions of those channels enabled. Use this in
an initial set of drivers.
- Add macros for IIO_DECLARE_BUFFER_WITH_TS() and
IIO_DECLARE_DMA_BUFFER_WITH_TS() to avoid lots of fiddly code to ensure
correctly aligned buffers for timestamps being added onto the end of
channel data.
New device support
------------------
adi,ad3530r
- New driver for AD3530, AD3530R, AD3531 and AD3531R DACs with
programmable gain controls. R variants have internal references.
adi,ad7476
- Add support (dt compatible only) for the Rohm BU79100G ADC which is
fully compatible with the ti,ads7866.
adi,ad7606
- Support ad7606c-16 and ad7606c-18 devices. Includes switch to dynamic
channel information allocation.
adi,ad7380
- Add support for the AD7389-4
dfrobot,sen0322
- New driver for this oxygen sensor.
mediatek,mt2701-auxadc
- Add binding for MT6893 which is fully compatible with already supported
MT8173.
meson-saradc
- Support the GXLX SoCs. Mostly this is a workaround for some unrelated
clock control bits found in the ADC register map.
nuvoton,nct7201
- New driver for NCT7201 and NCT7202 I2C ADCs.
rohm,bd79124
- New driver for this 12-bit, 8-channel SAR ADC.
- Switch to new set_rv etc gpio callbacks that were added in 6.15.
rohm,bd79703
- Add support for BD79700, BD79701 and BD79702 DACs that have subsets of
functionality of the already supported bd79703. Included making this
driver suitable for support device variants.
st,stm32-lptimer
- Add support for stm32pm25 to this trigger.
Features
--------
Beyond IIO
- Property iterator for named children.
core
- Enable writes for 64 bit integers used for standard IIO ABI elements.
Previously these could be read only.
- Helper library that should avoid code duplication for simpler ADC
bindings that have a child node per channel.
- Enforce that IIO_DMA_MINALIGN is always at least 8 (almost always true
and simplifies code on all significant architectures)
core/backend
- Add support to control source of data - useful when the HDL includes
things like generated ramps for testing purposes. Enable this for
adi-axi-dac
adi,ad3552-hs
- Add debugfs related callbacks to allow debug access to register contents.
adi,ad4000
- Support SPI offload with appropriate FPGA firmware along with improving
documentation.
adi,ad7293
- Add support for external reference voltage.
adi,ad7606
- Support SPI offload.
adi,ad7768-1
- Support reset GPIO.
adi,admv8818
- Support filter frequencies beyond 2^32.
adi,adxl345
- Add single and double tap events.
hid-sensor-prox
- Support 16-bit report sizes as seen on some Intel platforms.
invensense,icm42600
- Enable use of named interrupts to avoid problems with some wiring choices.
Get the interrupt by name, but fallback to previous assumption on the first
being INT1 if no names are supplied.
microchip,mcp3911
- Add reset gpio support.
rohm,bh7150
- Add reset gpio support.
st,stm32
- Add support to control oversampling.
ti,adc128s052
- Add support for ROHM BD79104 which is early compatible with the TI
parts already supported by this driver. Includes some general driver
cleanup and a separate dt binding.
- Simplify reference voltage handling by assuming it is fixed after enabling
the supply.
winsen,mhz19b
- New driver for this C02 sensor.
Cleanup and minor fixes
-----------------------
dt-bindings
- Correct indentation and style for DTS examples.
- Use unevalutateProperties for SPI devices instead of additionalProperties
to allow generic SPI properties from spi-peripheral-props.yaml
ABI Docs
- Add missing docs for sampling_frequency when it applies only to events.
Treewide
- Various minor tweaks, comment fixes and similar.
- Sort TI ADCs in Kconfig that had gotten out of order.
- Switch various drives that provide GPIO chip functionality to the new
callbacks with return values.
- Standardize on { } formatting for all array sentinels.
- Make use of aligned_s64 in a few places to replace either wrong types
or manually defined equivalents.
- Drop places where spi bits_per_word is set to 8 because that is the
default anyway.
adi,ad_sigma_delta library
- Avoid a potential use of uninitialized data if reg_size has a value
that is not supported (no drivers hit this but it is reasonable hardening)
adi,ad4030
- Add error checking for scan types and no longer store it in state.
- Rework code to reduce duplication.
- Move setting the mode from buffer preenable() to update_scan_mode(),
better matching expected semantics of the two different callbacks.
- Improve data marshalling comments.
adi,ad4695
- Use u16 for buffer elements as oversampling is not yet supported except
with SPI offload (which doesn't use this path).
adi,ad5592r
- Clean up destruction of mutexes.
- Use lock guards to simplify code (later patch fixes a missed unlock)
adi,ad5933
- Correct some incorrect settling times.
adi,ad7091
- Deduplicate handling of writable vs volatile registers as they are the
inverse of each other for this device.
adi,ad7124
- Fix 3db Filter frequency.
- Remove ability to directly write the filter frequency (which was broken)
- Register naming improvements.
adi,ad7606
- Add a missing return value check.
- Fill in max sampling rates for all chips.
- Use devm_mutex_init()
- Fix up some kernel-doc formatting issues.
- Remove some camel case that snuck in.
- Drop setting address field in channels as easily established from other
fields.
- Drop unnecessary parameter to ad76060_scale_setup_cb_t.
adi,ad7768-1
- Convert to regmap.
- Factor out buffer allocation.
- Tidy up headers.
adi,ad7944
- Stop setting bits_per_word in SPI xfers with no data.
adi,ad9832
- Add of_device_id table rather than just relying on fallbacks.
- Use FIELD_PREP() to set values of fields.
adi,admv1013
- Cleanup a pointless ternary.
adi,admv8818
- Fix up LPF Band 5 frequency which was slightly wrong.
- Fix an integer overflow.
- Fix range calculation
adi,adt7316
- Replace irqd_get_trigger_type(irq_get_irq_data()) with simpler
irq_get_trigger_type()
adi,adxl345
- Use regmap cache instead of various state variables that were there to
reduce bus accesses.
- Make regmap return value checking consistent across all call sites.
adi,axi-dac
- Add a check on number of channels (0 to 15 valid)
allwinner,sun20i
- Use new adc-helpers to replace local parsing code for channel nodes.
bosch,bmp290
- Move to local variables for sensor data marshalling removing the need
for a messy definition that has to work for all supported parts.
Follow up fix adds a missing initialization.
dynaimage,al3010 and dynaimage,al3320a
- Various minor cleanup to bring these drivers inline with reviewed feedback
given on a new driver.
- Fix an error path in which power down is not called when it should be.
- Switch to regmap.
google,cros_ec
- Fix up a flexible array in middle of structure warning.
- Flush fifo when changing the timeout to avoid potential long wait
for samples.
hid-sensor-rotation
- Remove an __aligned(16) marking that doesn't seem to be justified.
kionix,kxcjk-1013
- Deduplicate code for setting up interrupts.
microchip,mcp3911
- Fix handling of conversion results register which differs across supported
devices.
idt,zopt2201
- Avoid duplicating register lists as all volatile registers are the
inverse of writeable registers on this device.
renesas,rzg2l
- Use new adc-helpers to replace local parsing code for channel nodes.
ti,ads1298
- Fix a missing Kconfig dependency.
* tag 'iio-for-6.16a-take2' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/jic23/iio: (260 commits)
dt-bindings: iio: adc: Add ROHM BD79100G
iio: adc: add support for Nuvoton NCT7201
dt-bindings: iio: adc: add NCT7201 ADCs
iio: chemical: Add driver for SEN0322
dt-bindings: trivial-devices: Document SEN0322
iio: adc: ad7768-1: reorganize driver headers
iio: bmp280: zero-init buffer
iio: ssp_sensors: optimalize -> optimize
HID: sensor-hub: Fix typo and improve documentation
iio: admv1013: replace redundant ternary operator with just len
iio: chemical: mhz19b: Fix error code in probe()
iio: adc: at91-sama5d2: use IIO_DECLARE_BUFFER_WITH_TS
iio: accel: sca3300: use IIO_DECLARE_BUFFER_WITH_TS
iio: adc: ad7380: use IIO_DECLARE_DMA_BUFFER_WITH_TS
iio: adc: ad4695: rename AD4695_MAX_VIN_CHANNELS
iio: adc: ad4695: use IIO_DECLARE_DMA_BUFFER_WITH_TS
iio: introduce IIO_DECLARE_BUFFER_WITH_TS macros
iio: make IIO_DMA_MINALIGN minimum of 8 bytes
iio: pressure: zpa2326_spi: remove bits_per_word = 8
iio: pressure: ms5611_spi: remove bits_per_word = 8
...
476 lines
12 KiB
C
476 lines
12 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* AD7266/65 SPI ADC driver
|
|
*
|
|
* Copyright 2012 Analog Devices Inc.
|
|
*/
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/spi/spi.h>
|
|
#include <linux/regulator/consumer.h>
|
|
#include <linux/err.h>
|
|
#include <linux/gpio/consumer.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/iio/iio.h>
|
|
#include <linux/iio/buffer.h>
|
|
#include <linux/iio/trigger_consumer.h>
|
|
#include <linux/iio/triggered_buffer.h>
|
|
|
|
#include <linux/platform_data/ad7266.h>
|
|
|
|
#define AD7266_INTERNAL_REF_MV 2500
|
|
|
|
struct ad7266_state {
|
|
struct spi_device *spi;
|
|
unsigned long vref_mv;
|
|
|
|
struct spi_transfer single_xfer[3];
|
|
struct spi_message single_msg;
|
|
|
|
enum ad7266_range range;
|
|
enum ad7266_mode mode;
|
|
bool fixed_addr;
|
|
struct gpio_desc *gpios[3];
|
|
|
|
/*
|
|
* DMA (thus cache coherency maintenance) may require the
|
|
* transfer buffers to live in their own cache lines.
|
|
* The buffer needs to be large enough to hold two samples (4 bytes) and
|
|
* the naturally aligned timestamp (8 bytes).
|
|
*/
|
|
struct {
|
|
__be16 sample[2];
|
|
aligned_s64 timestamp;
|
|
} data __aligned(IIO_DMA_MINALIGN);
|
|
};
|
|
|
|
static int ad7266_wakeup(struct ad7266_state *st)
|
|
{
|
|
/* Any read with >= 2 bytes will wake the device */
|
|
return spi_read(st->spi, &st->data.sample[0], 2);
|
|
}
|
|
|
|
static int ad7266_powerdown(struct ad7266_state *st)
|
|
{
|
|
/* Any read with < 2 bytes will powerdown the device */
|
|
return spi_read(st->spi, &st->data.sample[0], 1);
|
|
}
|
|
|
|
static int ad7266_preenable(struct iio_dev *indio_dev)
|
|
{
|
|
struct ad7266_state *st = iio_priv(indio_dev);
|
|
return ad7266_wakeup(st);
|
|
}
|
|
|
|
static int ad7266_postdisable(struct iio_dev *indio_dev)
|
|
{
|
|
struct ad7266_state *st = iio_priv(indio_dev);
|
|
return ad7266_powerdown(st);
|
|
}
|
|
|
|
static const struct iio_buffer_setup_ops iio_triggered_buffer_setup_ops = {
|
|
.preenable = &ad7266_preenable,
|
|
.postdisable = &ad7266_postdisable,
|
|
};
|
|
|
|
static irqreturn_t ad7266_trigger_handler(int irq, void *p)
|
|
{
|
|
struct iio_poll_func *pf = p;
|
|
struct iio_dev *indio_dev = pf->indio_dev;
|
|
struct ad7266_state *st = iio_priv(indio_dev);
|
|
int ret;
|
|
|
|
ret = spi_read(st->spi, st->data.sample, 4);
|
|
if (ret == 0)
|
|
iio_push_to_buffers_with_ts(indio_dev, &st->data, sizeof(st->data),
|
|
pf->timestamp);
|
|
|
|
iio_trigger_notify_done(indio_dev->trig);
|
|
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static void ad7266_select_input(struct ad7266_state *st, unsigned int nr)
|
|
{
|
|
unsigned int i;
|
|
|
|
if (st->fixed_addr)
|
|
return;
|
|
|
|
switch (st->mode) {
|
|
case AD7266_MODE_SINGLE_ENDED:
|
|
nr >>= 1;
|
|
break;
|
|
case AD7266_MODE_PSEUDO_DIFF:
|
|
nr |= 1;
|
|
break;
|
|
case AD7266_MODE_DIFF:
|
|
nr &= ~1;
|
|
break;
|
|
}
|
|
|
|
for (i = 0; i < 3; ++i)
|
|
gpiod_set_value(st->gpios[i], (bool)(nr & BIT(i)));
|
|
}
|
|
|
|
static int ad7266_update_scan_mode(struct iio_dev *indio_dev,
|
|
const unsigned long *scan_mask)
|
|
{
|
|
struct ad7266_state *st = iio_priv(indio_dev);
|
|
unsigned int nr = find_first_bit(scan_mask,
|
|
iio_get_masklength(indio_dev));
|
|
|
|
ad7266_select_input(st, nr);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ad7266_read_single(struct ad7266_state *st, int *val,
|
|
unsigned int address)
|
|
{
|
|
int ret;
|
|
|
|
ad7266_select_input(st, address);
|
|
|
|
ret = spi_sync(st->spi, &st->single_msg);
|
|
*val = be16_to_cpu(st->data.sample[address % 2]);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int ad7266_read_raw(struct iio_dev *indio_dev,
|
|
struct iio_chan_spec const *chan, int *val, int *val2, long m)
|
|
{
|
|
struct ad7266_state *st = iio_priv(indio_dev);
|
|
unsigned long scale_mv;
|
|
int ret;
|
|
|
|
switch (m) {
|
|
case IIO_CHAN_INFO_RAW:
|
|
if (!iio_device_claim_direct(indio_dev))
|
|
return -EBUSY;
|
|
ret = ad7266_read_single(st, val, chan->address);
|
|
iio_device_release_direct(indio_dev);
|
|
|
|
if (ret < 0)
|
|
return ret;
|
|
*val = (*val >> 2) & 0xfff;
|
|
if (chan->scan_type.sign == 's')
|
|
*val = sign_extend32(*val,
|
|
chan->scan_type.realbits - 1);
|
|
|
|
return IIO_VAL_INT;
|
|
case IIO_CHAN_INFO_SCALE:
|
|
scale_mv = st->vref_mv;
|
|
if (st->mode == AD7266_MODE_DIFF)
|
|
scale_mv *= 2;
|
|
if (st->range == AD7266_RANGE_2VREF)
|
|
scale_mv *= 2;
|
|
|
|
*val = scale_mv;
|
|
*val2 = chan->scan_type.realbits;
|
|
return IIO_VAL_FRACTIONAL_LOG2;
|
|
case IIO_CHAN_INFO_OFFSET:
|
|
if (st->range == AD7266_RANGE_2VREF &&
|
|
st->mode != AD7266_MODE_DIFF)
|
|
*val = 2048;
|
|
else
|
|
*val = 0;
|
|
return IIO_VAL_INT;
|
|
}
|
|
return -EINVAL;
|
|
}
|
|
|
|
#define AD7266_CHAN(_chan, _sign) { \
|
|
.type = IIO_VOLTAGE, \
|
|
.indexed = 1, \
|
|
.channel = (_chan), \
|
|
.address = (_chan), \
|
|
.info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
|
|
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) \
|
|
| BIT(IIO_CHAN_INFO_OFFSET), \
|
|
.scan_index = (_chan), \
|
|
.scan_type = { \
|
|
.sign = (_sign), \
|
|
.realbits = 12, \
|
|
.storagebits = 16, \
|
|
.shift = 2, \
|
|
.endianness = IIO_BE, \
|
|
}, \
|
|
}
|
|
|
|
#define AD7266_DECLARE_SINGLE_ENDED_CHANNELS(_name, _sign) \
|
|
const struct iio_chan_spec ad7266_channels_##_name[] = { \
|
|
AD7266_CHAN(0, (_sign)), \
|
|
AD7266_CHAN(1, (_sign)), \
|
|
AD7266_CHAN(2, (_sign)), \
|
|
AD7266_CHAN(3, (_sign)), \
|
|
AD7266_CHAN(4, (_sign)), \
|
|
AD7266_CHAN(5, (_sign)), \
|
|
AD7266_CHAN(6, (_sign)), \
|
|
AD7266_CHAN(7, (_sign)), \
|
|
AD7266_CHAN(8, (_sign)), \
|
|
AD7266_CHAN(9, (_sign)), \
|
|
AD7266_CHAN(10, (_sign)), \
|
|
AD7266_CHAN(11, (_sign)), \
|
|
IIO_CHAN_SOFT_TIMESTAMP(13), \
|
|
}
|
|
|
|
#define AD7266_DECLARE_SINGLE_ENDED_CHANNELS_FIXED(_name, _sign) \
|
|
const struct iio_chan_spec ad7266_channels_##_name##_fixed[] = { \
|
|
AD7266_CHAN(0, (_sign)), \
|
|
AD7266_CHAN(1, (_sign)), \
|
|
IIO_CHAN_SOFT_TIMESTAMP(2), \
|
|
}
|
|
|
|
static AD7266_DECLARE_SINGLE_ENDED_CHANNELS(u, 'u');
|
|
static AD7266_DECLARE_SINGLE_ENDED_CHANNELS(s, 's');
|
|
static AD7266_DECLARE_SINGLE_ENDED_CHANNELS_FIXED(u, 'u');
|
|
static AD7266_DECLARE_SINGLE_ENDED_CHANNELS_FIXED(s, 's');
|
|
|
|
#define AD7266_CHAN_DIFF(_chan, _sign) { \
|
|
.type = IIO_VOLTAGE, \
|
|
.indexed = 1, \
|
|
.channel = (_chan) * 2, \
|
|
.channel2 = (_chan) * 2 + 1, \
|
|
.address = (_chan), \
|
|
.info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
|
|
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) \
|
|
| BIT(IIO_CHAN_INFO_OFFSET), \
|
|
.scan_index = (_chan), \
|
|
.scan_type = { \
|
|
.sign = _sign, \
|
|
.realbits = 12, \
|
|
.storagebits = 16, \
|
|
.shift = 2, \
|
|
.endianness = IIO_BE, \
|
|
}, \
|
|
.differential = 1, \
|
|
}
|
|
|
|
#define AD7266_DECLARE_DIFF_CHANNELS(_name, _sign) \
|
|
const struct iio_chan_spec ad7266_channels_diff_##_name[] = { \
|
|
AD7266_CHAN_DIFF(0, (_sign)), \
|
|
AD7266_CHAN_DIFF(1, (_sign)), \
|
|
AD7266_CHAN_DIFF(2, (_sign)), \
|
|
AD7266_CHAN_DIFF(3, (_sign)), \
|
|
AD7266_CHAN_DIFF(4, (_sign)), \
|
|
AD7266_CHAN_DIFF(5, (_sign)), \
|
|
IIO_CHAN_SOFT_TIMESTAMP(6), \
|
|
}
|
|
|
|
static AD7266_DECLARE_DIFF_CHANNELS(s, 's');
|
|
static AD7266_DECLARE_DIFF_CHANNELS(u, 'u');
|
|
|
|
#define AD7266_DECLARE_DIFF_CHANNELS_FIXED(_name, _sign) \
|
|
const struct iio_chan_spec ad7266_channels_diff_fixed_##_name[] = { \
|
|
AD7266_CHAN_DIFF(0, (_sign)), \
|
|
AD7266_CHAN_DIFF(1, (_sign)), \
|
|
IIO_CHAN_SOFT_TIMESTAMP(2), \
|
|
}
|
|
|
|
static AD7266_DECLARE_DIFF_CHANNELS_FIXED(s, 's');
|
|
static AD7266_DECLARE_DIFF_CHANNELS_FIXED(u, 'u');
|
|
|
|
static const struct iio_info ad7266_info = {
|
|
.read_raw = &ad7266_read_raw,
|
|
.update_scan_mode = &ad7266_update_scan_mode,
|
|
};
|
|
|
|
static const unsigned long ad7266_available_scan_masks[] = {
|
|
0x003,
|
|
0x00c,
|
|
0x030,
|
|
0x0c0,
|
|
0x300,
|
|
0xc00,
|
|
0x000,
|
|
};
|
|
|
|
static const unsigned long ad7266_available_scan_masks_diff[] = {
|
|
0x003,
|
|
0x00c,
|
|
0x030,
|
|
0x000,
|
|
};
|
|
|
|
static const unsigned long ad7266_available_scan_masks_fixed[] = {
|
|
0x003,
|
|
0x000,
|
|
};
|
|
|
|
struct ad7266_chan_info {
|
|
const struct iio_chan_spec *channels;
|
|
unsigned int num_channels;
|
|
const unsigned long *scan_masks;
|
|
};
|
|
|
|
#define AD7266_CHAN_INFO_INDEX(_differential, _signed, _fixed) \
|
|
(((_differential) << 2) | ((_signed) << 1) | ((_fixed) << 0))
|
|
|
|
static const struct ad7266_chan_info ad7266_chan_infos[] = {
|
|
[AD7266_CHAN_INFO_INDEX(0, 0, 0)] = {
|
|
.channels = ad7266_channels_u,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_u),
|
|
.scan_masks = ad7266_available_scan_masks,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(0, 0, 1)] = {
|
|
.channels = ad7266_channels_u_fixed,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_u_fixed),
|
|
.scan_masks = ad7266_available_scan_masks_fixed,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(0, 1, 0)] = {
|
|
.channels = ad7266_channels_s,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_s),
|
|
.scan_masks = ad7266_available_scan_masks,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(0, 1, 1)] = {
|
|
.channels = ad7266_channels_s_fixed,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_s_fixed),
|
|
.scan_masks = ad7266_available_scan_masks_fixed,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(1, 0, 0)] = {
|
|
.channels = ad7266_channels_diff_u,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_diff_u),
|
|
.scan_masks = ad7266_available_scan_masks_diff,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(1, 0, 1)] = {
|
|
.channels = ad7266_channels_diff_fixed_u,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_diff_fixed_u),
|
|
.scan_masks = ad7266_available_scan_masks_fixed,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(1, 1, 0)] = {
|
|
.channels = ad7266_channels_diff_s,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_diff_s),
|
|
.scan_masks = ad7266_available_scan_masks_diff,
|
|
},
|
|
[AD7266_CHAN_INFO_INDEX(1, 1, 1)] = {
|
|
.channels = ad7266_channels_diff_fixed_s,
|
|
.num_channels = ARRAY_SIZE(ad7266_channels_diff_fixed_s),
|
|
.scan_masks = ad7266_available_scan_masks_fixed,
|
|
},
|
|
};
|
|
|
|
static void ad7266_init_channels(struct iio_dev *indio_dev)
|
|
{
|
|
struct ad7266_state *st = iio_priv(indio_dev);
|
|
bool is_differential, is_signed;
|
|
const struct ad7266_chan_info *chan_info;
|
|
int i;
|
|
|
|
is_differential = st->mode != AD7266_MODE_SINGLE_ENDED;
|
|
is_signed = (st->range == AD7266_RANGE_2VREF) |
|
|
(st->mode == AD7266_MODE_DIFF);
|
|
|
|
i = AD7266_CHAN_INFO_INDEX(is_differential, is_signed, st->fixed_addr);
|
|
chan_info = &ad7266_chan_infos[i];
|
|
|
|
indio_dev->channels = chan_info->channels;
|
|
indio_dev->num_channels = chan_info->num_channels;
|
|
indio_dev->available_scan_masks = chan_info->scan_masks;
|
|
}
|
|
|
|
static const char * const ad7266_gpio_labels[] = {
|
|
"ad0", "ad1", "ad2",
|
|
};
|
|
|
|
static int ad7266_probe(struct spi_device *spi)
|
|
{
|
|
const struct ad7266_platform_data *pdata = dev_get_platdata(&spi->dev);
|
|
struct iio_dev *indio_dev;
|
|
struct ad7266_state *st;
|
|
unsigned int i;
|
|
int ret;
|
|
|
|
indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
|
|
if (indio_dev == NULL)
|
|
return -ENOMEM;
|
|
|
|
st = iio_priv(indio_dev);
|
|
|
|
ret = devm_regulator_get_enable_read_voltage(&spi->dev, "vref");
|
|
if (ret < 0 && ret != -ENODEV)
|
|
return ret;
|
|
|
|
st->vref_mv = ret == -ENODEV ? AD7266_INTERNAL_REF_MV : ret / 1000;
|
|
|
|
if (pdata) {
|
|
st->fixed_addr = pdata->fixed_addr;
|
|
st->mode = pdata->mode;
|
|
st->range = pdata->range;
|
|
|
|
if (!st->fixed_addr) {
|
|
for (i = 0; i < ARRAY_SIZE(st->gpios); ++i) {
|
|
st->gpios[i] = devm_gpiod_get(&spi->dev,
|
|
ad7266_gpio_labels[i],
|
|
GPIOD_OUT_LOW);
|
|
if (IS_ERR(st->gpios[i])) {
|
|
ret = PTR_ERR(st->gpios[i]);
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
st->fixed_addr = true;
|
|
st->range = AD7266_RANGE_VREF;
|
|
st->mode = AD7266_MODE_DIFF;
|
|
}
|
|
|
|
st->spi = spi;
|
|
|
|
indio_dev->name = spi_get_device_id(spi)->name;
|
|
indio_dev->modes = INDIO_DIRECT_MODE;
|
|
indio_dev->info = &ad7266_info;
|
|
|
|
ad7266_init_channels(indio_dev);
|
|
|
|
/* wakeup */
|
|
st->single_xfer[0].rx_buf = &st->data.sample[0];
|
|
st->single_xfer[0].len = 2;
|
|
st->single_xfer[0].cs_change = 1;
|
|
/* conversion */
|
|
st->single_xfer[1].rx_buf = st->data.sample;
|
|
st->single_xfer[1].len = 4;
|
|
st->single_xfer[1].cs_change = 1;
|
|
/* powerdown */
|
|
st->single_xfer[2].tx_buf = &st->data.sample[0];
|
|
st->single_xfer[2].len = 1;
|
|
|
|
spi_message_init(&st->single_msg);
|
|
spi_message_add_tail(&st->single_xfer[0], &st->single_msg);
|
|
spi_message_add_tail(&st->single_xfer[1], &st->single_msg);
|
|
spi_message_add_tail(&st->single_xfer[2], &st->single_msg);
|
|
|
|
ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev, &iio_pollfunc_store_time,
|
|
&ad7266_trigger_handler, &iio_triggered_buffer_setup_ops);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return devm_iio_device_register(&spi->dev, indio_dev);
|
|
}
|
|
|
|
static const struct spi_device_id ad7266_id[] = {
|
|
{ "ad7265", 0 },
|
|
{ "ad7266", 0 },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(spi, ad7266_id);
|
|
|
|
static struct spi_driver ad7266_driver = {
|
|
.driver = {
|
|
.name = "ad7266",
|
|
},
|
|
.probe = ad7266_probe,
|
|
.id_table = ad7266_id,
|
|
};
|
|
module_spi_driver(ad7266_driver);
|
|
|
|
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
|
MODULE_DESCRIPTION("Analog Devices AD7266/65 ADC");
|
|
MODULE_LICENSE("GPL v2");
|