iio:adc: Add Xilinx XADC driver
authorLars-Peter Clausen <lars@metafoo.de>
Mon, 17 Feb 2014 14:10:00 +0000 (14:10 +0000)
committerJonathan Cameron <jic23@kernel.org>
Sat, 1 Mar 2014 21:04:29 +0000 (21:04 +0000)
commitbdc8cda1d010887c06bd8c29564b74cd61ec0a7b
treea0c6dc8b18b450d23578b4872b421c6702a335a3
parent588858c4df831226fa366aed295a426b07a417e1
iio:adc: Add Xilinx XADC driver

The Xilinx XADC is a ADC that can be found in the series 7 FPGAs from Xilinx.
The XADC has a DRP interface for communication. Currently two different
frontends for the DRP interface exist. One that is only available on the ZYNQ
family as a hardmacro in the SoC portion of the ZYNQ. The other one is available
on all series 7 platforms and is a softmacro with a AXI interface. This driver
supports both interfaces and internally has a small abstraction layer that hides
the specifics of these interfaces from the main driver logic.

The ADC has a couple of internal channels which are used for voltage and
temperature monitoring of the FPGA as well as one primary and up to 16 channels
auxiliary channels for measuring external voltages. The external auxiliary
channels can either be directly connected each to one physical pin on the FPGA
or they can make use of an external multiplexer which is responsible for
multiplexing the external signals onto one pair of physical pins.

The voltage and temperature monitoring channels also have an event capability
which allows to generate a interrupt when their value falls below or raises
above a set threshold.

Buffered sampling mode is supported by the driver, but only for AXI-XADC since
the ZYNQ XADC interface does not have capabilities for supporting buffer mode
(no end-of-conversion interrupt). If buffered mode is supported the driver will
register two triggers. One "xadc-samplerate" trigger which will generate samples
with the configured samplerate. And one "xadc-convst" trigger which will
generate one sample each time the CONVST (conversion start) signal is asserted.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/adc/Kconfig
drivers/iio/adc/Makefile
drivers/iio/adc/xilinx-xadc-core.c [new file with mode: 0644]
drivers/iio/adc/xilinx-xadc-events.c [new file with mode: 0644]
drivers/iio/adc/xilinx-xadc.h [new file with mode: 0644]