1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * AD7606 ADC driver 4 * 5 * Copyright 2011 Analog Devices Inc. 6 */ 7 8 #ifndef IIO_ADC_AD7606_H_ 9 #define IIO_ADC_AD7606_H_ 10 11 #define AD760X_MAX_CHANNELS 16 12 13 #define AD760X_CHANNEL(num, mask_sep, mask_type, mask_all, bits) { \ 14 .type = IIO_VOLTAGE, \ 15 .indexed = 1, \ 16 .channel = num, \ 17 .address = num, \ 18 .info_mask_separate = mask_sep, \ 19 .info_mask_shared_by_type = mask_type, \ 20 .info_mask_shared_by_all = mask_all, \ 21 .scan_index = num, \ 22 .scan_type = { \ 23 .sign = 's', \ 24 .realbits = (bits), \ 25 .storagebits = (bits) > 16 ? 32 : 16, \ 26 .endianness = IIO_CPU, \ 27 }, \ 28 } 29 30 #define AD7606_SW_CHANNEL(num, bits) { \ 31 .type = IIO_VOLTAGE, \ 32 .indexed = 1, \ 33 .channel = num, \ 34 .address = num, \ 35 .info_mask_separate = \ 36 BIT(IIO_CHAN_INFO_RAW) | \ 37 BIT(IIO_CHAN_INFO_SCALE), \ 38 .info_mask_separate_available = \ 39 BIT(IIO_CHAN_INFO_SCALE), \ 40 .info_mask_shared_by_all = \ 41 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \ 42 .info_mask_shared_by_all_available = \ 43 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \ 44 .scan_index = num, \ 45 .scan_type = { \ 46 .sign = 's', \ 47 .realbits = (bits), \ 48 .storagebits = (bits) > 16 ? 32 : 16, \ 49 .endianness = IIO_CPU, \ 50 }, \ 51 } 52 53 #define AD7605_CHANNEL(num) \ 54 AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW), \ 55 BIT(IIO_CHAN_INFO_SCALE), 0, 16) 56 57 #define AD7606_CHANNEL(num, bits) \ 58 AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW), \ 59 BIT(IIO_CHAN_INFO_SCALE), \ 60 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), bits) 61 62 #define AD7616_CHANNEL(num) AD7606_SW_CHANNEL(num, 16) 63 64 struct ad7606_state; 65 66 typedef int (*ad7606_scale_setup_cb_t)(struct ad7606_state *st, 67 struct iio_chan_spec *chan, int ch); 68 69 /** 70 * struct ad7606_chip_info - chip specific information 71 * @channels: channel specification 72 * @num_channels: number of channels 73 * @scale_setup_cb: callback to setup the scales for each channel 74 * @oversampling_avail pointer to the array which stores the available 75 * oversampling ratios. 76 * @oversampling_num number of elements stored in oversampling_avail array 77 * @os_req_reset some devices require a reset to update oversampling 78 * @init_delay_ms required delay in milliseconds for initialization 79 * after a restart 80 */ 81 struct ad7606_chip_info { 82 const struct iio_chan_spec *channels; 83 unsigned int num_channels; 84 ad7606_scale_setup_cb_t scale_setup_cb; 85 const unsigned int *oversampling_avail; 86 unsigned int oversampling_num; 87 bool os_req_reset; 88 unsigned long init_delay_ms; 89 }; 90 91 /** 92 * struct ad7606_chan_scale - channel scale configuration 93 * @scale_avail pointer to the array which stores the available scales 94 * @scale_avail_show a duplicate of 'scale_avail' which is readily formatted 95 * such that it can be read via the 'read_avail' hook 96 * @num_scales number of elements stored in the scale_avail array 97 * @range voltage range selection, selects which scale to apply 98 * @reg_offset offset for the register value, to be applied when 99 * writing the value of 'range' to the register value 100 */ 101 struct ad7606_chan_scale { 102 #define AD760X_MAX_SCALES 16 103 #define AD760X_MAX_SCALE_SHOW (AD760X_MAX_SCALES * 2) 104 const unsigned int *scale_avail; 105 int scale_avail_show[AD760X_MAX_SCALE_SHOW]; 106 unsigned int num_scales; 107 unsigned int range; 108 unsigned int reg_offset; 109 }; 110 111 /** 112 * struct ad7606_state - driver instance specific data 113 * @dev pointer to kernel device 114 * @chip_info entry in the table of chips that describes this device 115 * @bops bus operations (SPI or parallel) 116 * @chan_scales scale configuration for channels 117 * @oversampling oversampling selection 118 * @base_address address from where to read data in parallel operation 119 * @sw_mode_en software mode enabled 120 * @oversampling_avail pointer to the array which stores the available 121 * oversampling ratios. 122 * @num_os_ratios number of elements stored in oversampling_avail array 123 * @write_scale pointer to the function which writes the scale 124 * @write_os pointer to the function which writes the os 125 * @lock protect sensor state from concurrent accesses to GPIOs 126 * @gpio_convst GPIO descriptor for conversion start signal (CONVST) 127 * @gpio_reset GPIO descriptor for device hard-reset 128 * @gpio_range GPIO descriptor for range selection 129 * @gpio_standby GPIO descriptor for stand-by signal (STBY), 130 * controls power-down mode of device 131 * @gpio_frstdata GPIO descriptor for reading from device when data 132 * is being read on the first channel 133 * @gpio_os GPIO descriptors to control oversampling on the device 134 * @complete completion to indicate end of conversion 135 * @trig The IIO trigger associated with the device. 136 * @data buffer for reading data from the device 137 * @d16 be16 buffer for reading data from the device 138 */ 139 struct ad7606_state { 140 struct device *dev; 141 const struct ad7606_chip_info *chip_info; 142 const struct ad7606_bus_ops *bops; 143 struct ad7606_chan_scale chan_scales[AD760X_MAX_CHANNELS]; 144 unsigned int oversampling; 145 void __iomem *base_address; 146 bool sw_mode_en; 147 const unsigned int *oversampling_avail; 148 unsigned int num_os_ratios; 149 int (*write_scale)(struct iio_dev *indio_dev, int ch, int val); 150 int (*write_os)(struct iio_dev *indio_dev, int val); 151 152 struct mutex lock; /* protect sensor state */ 153 struct gpio_desc *gpio_convst; 154 struct gpio_desc *gpio_reset; 155 struct gpio_desc *gpio_range; 156 struct gpio_desc *gpio_standby; 157 struct gpio_desc *gpio_frstdata; 158 struct gpio_descs *gpio_os; 159 struct iio_trigger *trig; 160 struct completion completion; 161 162 /* 163 * DMA (thus cache coherency maintenance) may require the 164 * transfer buffers to live in their own cache lines. 165 * 16 * 16-bit samples + 64-bit timestamp - for AD7616 166 * 8 * 32-bit samples + 64-bit timestamp - for AD7616C-18 (and similar) 167 */ 168 union { 169 u16 buf16[20]; 170 u32 buf32[10]; 171 } data __aligned(IIO_DMA_MINALIGN); 172 __be16 d16[2]; 173 }; 174 175 /** 176 * struct ad7606_bus_ops - driver bus operations 177 * @read_block function pointer for reading blocks of data 178 * @sw_mode_config: pointer to a function which configured the device 179 * for software mode 180 * @reg_read function pointer for reading spi register 181 * @reg_write function pointer for writing spi register 182 * @write_mask function pointer for write spi register with mask 183 * @rd_wr_cmd pointer to the function which calculates the spi address 184 */ 185 struct ad7606_bus_ops { 186 /* more methods added in future? */ 187 int (*read_block)(struct device *dev, int num, void *data); 188 int (*sw_mode_config)(struct iio_dev *indio_dev); 189 int (*reg_read)(struct ad7606_state *st, unsigned int addr); 190 int (*reg_write)(struct ad7606_state *st, 191 unsigned int addr, 192 unsigned int val); 193 int (*write_mask)(struct ad7606_state *st, 194 unsigned int addr, 195 unsigned long mask, 196 unsigned int val); 197 u16 (*rd_wr_cmd)(int addr, char isWriteOp); 198 }; 199 200 int ad7606_probe(struct device *dev, int irq, void __iomem *base_address, 201 const char *name, unsigned int id, 202 const struct ad7606_bus_ops *bops); 203 204 int ad7606_reset(struct ad7606_state *st); 205 206 enum ad7606_supported_device_ids { 207 ID_AD7605_4, 208 ID_AD7606_8, 209 ID_AD7606_6, 210 ID_AD7606_4, 211 ID_AD7606B, 212 ID_AD7606C_16, 213 ID_AD7606C_18, 214 ID_AD7616, 215 }; 216 217 #ifdef CONFIG_PM_SLEEP 218 extern const struct dev_pm_ops ad7606_pm_ops; 219 #define AD7606_PM_OPS (&ad7606_pm_ops) 220 #else 221 #define AD7606_PM_OPS NULL 222 #endif 223 224 #endif /* IIO_ADC_AD7606_H_ */ 225