Stefan Popa | ca5b463 | 2018-12-17 14:23:36 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 2 | /* |
| 3 | * AD7606 ADC driver |
| 4 | * |
| 5 | * Copyright 2011 Analog Devices Inc. |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef IIO_ADC_AD7606_H_ |
| 9 | #define IIO_ADC_AD7606_H_ |
| 10 | |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 11 | #define AD760X_CHANNEL(num, mask_sep, mask_type, mask_all) { \ |
Beniamin Bia | 7677f73 | 2019-07-18 09:27:30 +0300 | [diff] [blame] | 12 | .type = IIO_VOLTAGE, \ |
| 13 | .indexed = 1, \ |
| 14 | .channel = num, \ |
| 15 | .address = num, \ |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 16 | .info_mask_separate = mask_sep, \ |
| 17 | .info_mask_shared_by_type = mask_type, \ |
| 18 | .info_mask_shared_by_all = mask_all, \ |
Beniamin Bia | 7677f73 | 2019-07-18 09:27:30 +0300 | [diff] [blame] | 19 | .scan_index = num, \ |
| 20 | .scan_type = { \ |
| 21 | .sign = 's', \ |
| 22 | .realbits = 16, \ |
| 23 | .storagebits = 16, \ |
| 24 | .endianness = IIO_CPU, \ |
| 25 | }, \ |
| 26 | } |
| 27 | |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 28 | #define AD7605_CHANNEL(num) \ |
| 29 | AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW), \ |
| 30 | BIT(IIO_CHAN_INFO_SCALE), 0) |
Beniamin Bia | 7677f73 | 2019-07-18 09:27:30 +0300 | [diff] [blame] | 31 | |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 32 | #define AD7606_CHANNEL(num) \ |
| 33 | AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW), \ |
| 34 | BIT(IIO_CHAN_INFO_SCALE), \ |
| 35 | BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO)) |
| 36 | |
| 37 | #define AD7616_CHANNEL(num) \ |
| 38 | AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),\ |
| 39 | 0, BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO)) |
Beniamin Bia | 7677f73 | 2019-07-18 09:27:30 +0300 | [diff] [blame] | 40 | |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 41 | /** |
Masanari Iida | e3c5be2 | 2014-04-22 12:23:00 +0100 | [diff] [blame] | 42 | * struct ad7606_chip_info - chip specific information |
Michael Hennerich | 1caf7cb | 2011-05-18 14:42:00 +0100 | [diff] [blame] | 43 | * @channels: channel specification |
| 44 | * @num_channels: number of channels |
Stefan Popa | 6bf229a | 2019-04-02 16:18:39 +0300 | [diff] [blame] | 45 | * @oversampling_avail pointer to the array which stores the available |
| 46 | * oversampling ratios. |
| 47 | * @oversampling_num number of elements stored in oversampling_avail array |
Beniamin Bia | 7989b4b | 2019-04-02 16:18:40 +0300 | [diff] [blame] | 48 | * @os_req_reset some devices require a reset to update oversampling |
Stefan Popa | d2a415c | 2019-08-21 17:16:53 +0300 | [diff] [blame] | 49 | * @init_delay_ms required delay in miliseconds for initialization |
| 50 | * after a restart |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 51 | */ |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 52 | struct ad7606_chip_info { |
Lars-Peter Clausen | f4e4b95 | 2012-08-09 08:51:00 +0100 | [diff] [blame] | 53 | const struct iio_chan_spec *channels; |
Alison Schofield | 51fadb9 | 2016-03-26 12:50:24 -0700 | [diff] [blame] | 54 | unsigned int num_channels; |
Stefan Popa | 6bf229a | 2019-04-02 16:18:39 +0300 | [diff] [blame] | 55 | const unsigned int *oversampling_avail; |
| 56 | unsigned int oversampling_num; |
Beniamin Bia | 7989b4b | 2019-04-02 16:18:40 +0300 | [diff] [blame] | 57 | bool os_req_reset; |
Stefan Popa | d2a415c | 2019-08-21 17:16:53 +0300 | [diff] [blame] | 58 | unsigned long init_delay_ms; |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | /** |
| 62 | * struct ad7606_state - driver instance specific data |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 63 | * @dev pointer to kernel device |
| 64 | * @chip_info entry in the table of chips that describes this device |
Xiang wangx | 0a52c3f | 2021-12-12 22:41:18 +0800 | [diff] [blame] | 65 | * @reg regulator info for the power supply of the device |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 66 | * @bops bus operations (SPI or parallel) |
| 67 | * @range voltage range selection, selects which scale to apply |
| 68 | * @oversampling oversampling selection |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 69 | * @base_address address from where to read data in parallel operation |
Beniamin Bia | 3c23e9e | 2019-05-27 15:56:48 +0300 | [diff] [blame] | 70 | * @sw_mode_en software mode enabled |
Stefan Popa | 6bf229a | 2019-04-02 16:18:39 +0300 | [diff] [blame] | 71 | * @scale_avail pointer to the array which stores the available scales |
| 72 | * @num_scales number of elements stored in the scale_avail array |
| 73 | * @oversampling_avail pointer to the array which stores the available |
| 74 | * oversampling ratios. |
| 75 | * @num_os_ratios number of elements stored in oversampling_avail array |
Beniamin Bia | 88dd031 | 2019-05-27 15:56:47 +0300 | [diff] [blame] | 76 | * @write_scale pointer to the function which writes the scale |
| 77 | * @write_os pointer to the function which writes the os |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 78 | * @lock protect sensor state from concurrent accesses to GPIOs |
| 79 | * @gpio_convst GPIO descriptor for conversion start signal (CONVST) |
| 80 | * @gpio_reset GPIO descriptor for device hard-reset |
| 81 | * @gpio_range GPIO descriptor for range selection |
| 82 | * @gpio_standby GPIO descriptor for stand-by signal (STBY), |
| 83 | * controls power-down mode of device |
| 84 | * @gpio_frstdata GPIO descriptor for reading from device when data |
| 85 | * is being read on the first channel |
| 86 | * @gpio_os GPIO descriptors to control oversampling on the device |
Stefan Popa | 557e585 | 2018-12-13 14:46:15 +0200 | [diff] [blame] | 87 | * @complete completion to indicate end of conversion |
Stefan Popa | cc49bd1 | 2018-12-17 14:23:37 +0200 | [diff] [blame] | 88 | * @trig The IIO trigger associated with the device. |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 89 | * @data buffer for reading data from the device |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 90 | * @d16 be16 buffer for reading data from the device |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 91 | */ |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 92 | struct ad7606_state { |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 93 | struct device *dev; |
| 94 | const struct ad7606_chip_info *chip_info; |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 95 | struct regulator *reg; |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 96 | const struct ad7606_bus_ops *bops; |
Beniamin Bia | 88dd031 | 2019-05-27 15:56:47 +0300 | [diff] [blame] | 97 | unsigned int range[16]; |
Alison Schofield | 51fadb9 | 2016-03-26 12:50:24 -0700 | [diff] [blame] | 98 | unsigned int oversampling; |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 99 | void __iomem *base_address; |
Beniamin Bia | 3c23e9e | 2019-05-27 15:56:48 +0300 | [diff] [blame] | 100 | bool sw_mode_en; |
Stefan Popa | 6bf229a | 2019-04-02 16:18:39 +0300 | [diff] [blame] | 101 | const unsigned int *scale_avail; |
| 102 | unsigned int num_scales; |
| 103 | const unsigned int *oversampling_avail; |
| 104 | unsigned int num_os_ratios; |
Beniamin Bia | 88dd031 | 2019-05-27 15:56:47 +0300 | [diff] [blame] | 105 | int (*write_scale)(struct iio_dev *indio_dev, int ch, int val); |
| 106 | int (*write_os)(struct iio_dev *indio_dev, int val); |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 107 | |
Arushi Singhal | 755d0da | 2017-03-21 01:21:34 +0530 | [diff] [blame] | 108 | struct mutex lock; /* protect sensor state */ |
Lars-Peter Clausen | 722407a | 2016-10-19 19:07:07 +0200 | [diff] [blame] | 109 | struct gpio_desc *gpio_convst; |
| 110 | struct gpio_desc *gpio_reset; |
| 111 | struct gpio_desc *gpio_range; |
| 112 | struct gpio_desc *gpio_standby; |
| 113 | struct gpio_desc *gpio_frstdata; |
| 114 | struct gpio_descs *gpio_os; |
Stefan Popa | cc49bd1 | 2018-12-17 14:23:37 +0200 | [diff] [blame] | 115 | struct iio_trigger *trig; |
Stefan Popa | 557e585 | 2018-12-13 14:46:15 +0200 | [diff] [blame] | 116 | struct completion completion; |
Lars-Peter Clausen | 722407a | 2016-10-19 19:07:07 +0200 | [diff] [blame] | 117 | |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 118 | /* |
| 119 | * DMA (thus cache coherency maintenance) requires the |
| 120 | * transfer buffers to live in their own cache lines. |
Beniamin Bia | 7989b4b | 2019-04-02 16:18:40 +0300 | [diff] [blame] | 121 | * 16 * 16-bit samples + 64-bit timestamp |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 122 | */ |
Beniamin Bia | 7989b4b | 2019-04-02 16:18:40 +0300 | [diff] [blame] | 123 | unsigned short data[20] ____cacheline_aligned; |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 124 | __be16 d16[2]; |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 125 | }; |
| 126 | |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 127 | /** |
| 128 | * struct ad7606_bus_ops - driver bus operations |
| 129 | * @read_block function pointer for reading blocks of data |
Beniamin Bia | a0c648c | 2019-07-18 09:27:31 +0300 | [diff] [blame] | 130 | * @sw_mode_config: pointer to a function which configured the device |
| 131 | * for software mode |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 132 | * @reg_read function pointer for reading spi register |
| 133 | * @reg_write function pointer for writing spi register |
| 134 | * @write_mask function pointer for write spi register with mask |
| 135 | * @rd_wr_cmd pointer to the function which calculates the spi address |
Alexandru Ardelean | 7c2d537 | 2018-09-18 15:15:03 +0300 | [diff] [blame] | 136 | */ |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 137 | struct ad7606_bus_ops { |
| 138 | /* more methods added in future? */ |
Giulio Benetti | 727198f | 2018-06-09 00:13:31 +0200 | [diff] [blame] | 139 | int (*read_block)(struct device *dev, int num, void *data); |
Beniamin Bia | a0c648c | 2019-07-18 09:27:31 +0300 | [diff] [blame] | 140 | int (*sw_mode_config)(struct iio_dev *indio_dev); |
Beniamin Bia | f2a22e1 | 2019-07-18 09:27:33 +0300 | [diff] [blame] | 141 | int (*reg_read)(struct ad7606_state *st, unsigned int addr); |
| 142 | int (*reg_write)(struct ad7606_state *st, |
| 143 | unsigned int addr, |
| 144 | unsigned int val); |
| 145 | int (*write_mask)(struct ad7606_state *st, |
| 146 | unsigned int addr, |
| 147 | unsigned long mask, |
| 148 | unsigned int val); |
| 149 | u16 (*rd_wr_cmd)(int addr, char isWriteOp); |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 150 | }; |
| 151 | |
Lars-Peter Clausen | 71faca7 | 2016-10-19 19:07:04 +0200 | [diff] [blame] | 152 | int ad7606_probe(struct device *dev, int irq, void __iomem *base_address, |
| 153 | const char *name, unsigned int id, |
| 154 | const struct ad7606_bus_ops *bops); |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 155 | |
| 156 | enum ad7606_supported_device_ids { |
Alexandru Ardelean | bb9fc6a | 2018-09-13 14:02:12 +0300 | [diff] [blame] | 157 | ID_AD7605_4, |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 158 | ID_AD7606_8, |
| 159 | ID_AD7606_6, |
Beniamin Bia | 7989b4b | 2019-04-02 16:18:40 +0300 | [diff] [blame] | 160 | ID_AD7606_4, |
Stefan Popa | d2a415c | 2019-08-21 17:16:53 +0300 | [diff] [blame] | 161 | ID_AD7606B, |
Beniamin Bia | 7989b4b | 2019-04-02 16:18:40 +0300 | [diff] [blame] | 162 | ID_AD7616, |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 163 | }; |
| 164 | |
Lars-Peter Clausen | 2c3a523 | 2016-02-08 11:13:29 +0100 | [diff] [blame] | 165 | #ifdef CONFIG_PM_SLEEP |
| 166 | extern const struct dev_pm_ops ad7606_pm_ops; |
| 167 | #define AD7606_PM_OPS (&ad7606_pm_ops) |
| 168 | #else |
| 169 | #define AD7606_PM_OPS NULL |
| 170 | #endif |
| 171 | |
Michael Hennerich | b9618c0 | 2011-02-22 21:46:18 +0100 | [diff] [blame] | 172 | #endif /* IIO_ADC_AD7606_H_ */ |