IIO : ADC: tiadc: Add support of TI's ADC driver

This patch adds support for TI's ADC driver.
This is a multifunctional device.
Analog input lines are provided on which
voltage measurements can be carried out.
You can have upto 8 input lines.

Signed-off-by: Patil, Rachna <rachna@ti.com>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Patil, Rachna
2012-10-16 12:55:45 +05:30
committed by Samuel Ortiz
parent 2b99bafab1
commit 5e53a69b44
6 changed files with 307 additions and 2 deletions

View File

@@ -120,15 +120,19 @@
#define ADC_CLK 3000000
#define MAX_CLK_DIV 7
#define TOTAL_STEPS 16
#define TOTAL_CHANNELS 8
#define TSCADC_CELLS 1
#define TSCADC_CELLS 2
enum tscadc_cells {
TSC_CELL,
ADC_CELL,
};
struct mfd_tscadc_board {
struct tsc_data *tsc_init;
struct adc_data *adc_init;
};
struct ti_tscadc_dev {
@@ -140,6 +144,9 @@ struct ti_tscadc_dev {
/* tsc device */
struct titsc *tsc;
/* adc device */
struct adc_device *adc;
};
#endif