Siddartha Mohanadoss | 53c16f9 | 2011-10-17 15:57:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012, Code Aurora Forum. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 and |
| 6 | * only version 2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | |
| 14 | #ifndef __EPM_ADC_H |
| 15 | #define __EPM_ADC_H |
| 16 | |
| 17 | #include <linux/i2c.h> |
| 18 | |
| 19 | struct epm_chan_request { |
| 20 | /* EPM ADC device index. 0 - ADC1, 1 - ADC2 */ |
| 21 | uint32_t device_idx; |
| 22 | /* Channel number within the EPM ADC device */ |
| 23 | uint32_t channel_idx; |
| 24 | /* The data meaningful for each individual channel whether it is |
| 25 | * voltage, current etc. */ |
| 26 | int32_t physical; |
| 27 | }; |
| 28 | |
| 29 | struct epm_chan_properties { |
| 30 | uint32_t resistorValue; |
| 31 | uint32_t gain; |
| 32 | }; |
| 33 | |
| 34 | struct epm_adc_platform_data { |
| 35 | struct epm_chan_properties *channel; |
| 36 | uint32_t num_channels; |
| 37 | uint32_t num_adc; |
| 38 | uint32_t chan_per_adc; |
| 39 | uint32_t chan_per_mux; |
| 40 | struct i2c_board_info epm_i2c_board_info; |
| 41 | uint32_t bus_id; |
| 42 | uint32_t gpio_expander_base_addr; |
| 43 | }; |
Siddartha Mohanadoss | eb90c92 | 2012-03-27 22:58:06 -0700 | [diff] [blame] | 44 | |
| 45 | #define EPM_ADC_IOCTL_CODE 0x91 |
| 46 | |
| 47 | #define EPM_ADC_REQUEST _IOWR(EPM_ADC_IOCTL_CODE, 1, \ |
| 48 | struct epm_chan_request) |
| 49 | |
| 50 | #define EPM_ADC_INIT _IOR(EPM_ADC_IOCTL_CODE, 2, \ |
| 51 | uint32_t) |
| 52 | |
| 53 | #define EPM_ADC_DEINIT _IOR(EPM_ADC_IOCTL_CODE, 3, \ |
| 54 | uint32_t) |
Siddartha Mohanadoss | 53c16f9 | 2011-10-17 15:57:15 -0700 | [diff] [blame] | 55 | #endif /* __EPM_ADC_H */ |