mbox series

[0/2] Add support for the TI ADS8344 A/DC chips

Message ID 20190315151152.30467-1-gregory.clement@bootlin.com (mailing list archive)
Headers show
Series Add support for the TI ADS8344 A/DC chips | expand

Message

Gregory CLEMENT March 15, 2019, 3:11 p.m. UTC
Hello,

this small series adds the support for the Texas Instruments ADS8344
ADC chip. This chip has a 16-bit 8-Channel ADC and is access directly
through SPI.

The first patch add the binding documentation and the second one, the
driver itself.

Gregory

Gregory CLEMENT (2):
  dt-bindings: iio: adc: Add bindings for TI ADS8344 A/DC chips
  iio: adc: Add driver for the TI ADS8344 A/DC chips

 .../bindings/iio/adc/ti-ads8344.txt           |  21 ++
 drivers/iio/adc/Kconfig                       |  10 +
 drivers/iio/adc/Makefile                      |   1 +
 drivers/iio/adc/ti-ads8344.c                  | 216 ++++++++++++++++++
 4 files changed, 248 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/iio/adc/ti-ads8344.txt
 create mode 100644 drivers/iio/adc/ti-ads8344.c