Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | /** * @file * @brief ADC public API header file. */ /* * Copyright (c) 2018 Nordic Semiconductor ASA * Copyright (c) 2015 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_INCLUDE_DRIVERS_ADC_H_ #define ZEPHYR_INCLUDE_DRIVERS_ADC_H_ #include <device.h> #ifdef __cplusplus extern "C" { #endif /** * @brief ADC driver APIs * @defgroup adc_interface ADC driver APIs * @ingroup io_interfaces * @{ */ /** @brief ADC channel gain factors. */ enum adc_gain { ADC_GAIN_1_6, /**< x 1/6. */ ADC_GAIN_1_5, /**< x 1/5. */ ADC_GAIN_1_4, /**< x 1/4. */ ADC_GAIN_1_3, /**< x 1/3. */ ADC_GAIN_1_2, /**< x 1/2. */ ADC_GAIN_2_3, /**< x 2/3. */ ADC_GAIN_1, /**< x 1. */ ADC_GAIN_2, /**< x 2. */ ADC_GAIN_3, /**< x 3. */ ADC_GAIN_4, /**< x 4. */ ADC_GAIN_8, /**< x 8. */ ADC_GAIN_16, /**< x 16. */ ADC_GAIN_32, /**< x 32. */ ADC_GAIN_64, /**< x 64. */ }; /** @brief ADC references. */ enum adc_reference { ADC_REF_VDD_1, /**< VDD. */ ADC_REF_VDD_1_2, /**< VDD/2. */ ADC_REF_VDD_1_3, /**< VDD/3. */ ADC_REF_VDD_1_4, /**< VDD/4. */ ADC_REF_INTERNAL, /**< Internal. */ ADC_REF_EXTERNAL0, /**< External, input 0. */ ADC_REF_EXTERNAL1, /**< External, input 1. */ }; /** Acquisition time is expressed in microseconds. */ #define ADC_ACQ_TIME_MICROSECONDS (1u) /** Acquisition time is expressed in nanoseconds. */ #define ADC_ACQ_TIME_NANOSECONDS (2u) /** Acquisition time is expressed in ADC ticks. */ #define ADC_ACQ_TIME_TICKS (3u) /** Macro for composing the acquisition time value in given units. */ #define ADC_ACQ_TIME(unit, value) (((unit) << 14) | ((value) & BIT_MASK(14))) /** Value indicating that the default acquisition time should be used. */ #define ADC_ACQ_TIME_DEFAULT 0 #define ADC_ACQ_TIME_UNIT(time) (((time) >> 14) & BIT_MASK(2)) #define ADC_ACQ_TIME_VALUE(time) ((time) & BIT_MASK(14)) /** * @brief Structure for specifying the configuration of an ADC channel. */ struct adc_channel_cfg { /** Gain selection. */ enum adc_gain gain; /** Reference selection. */ enum adc_reference reference; /** * Acquisition time. * Use the ADC_ACQ_TIME macro to compose the value for this field or * pass ADC_ACQ_TIME_DEFAULT to use the default setting for a given * hardware (e.g. when the hardware does not allow to configure the * acquisition time). * Particular drivers do not necessarily support all the possible units. * Value range is 0-16383 for a given unit. */ u16_t acquisition_time; /** * Channel identifier. * This value primarily identifies the channel within the ADC API - when * a read request is done, the corresponding bit in the "channels" field * of the "adc_sequence" structure must be set to include this channel * in the sampling. * For hardware that does not allow selection of analog inputs for given * channels, but rather have dedicated ones, this value also selects the * physical ADC input to be used in the sampling. Otherwise, when it is * needed to explicitly select an analog input for the channel, or two * inputs when the channel is a differential one, the selection is done * in "input_positive" and "input_negative" fields. * Particular drivers indicate which one of the above two cases they * support by selecting or not a special hidden Kconfig option named * ADC_CONFIGURABLE_INPUTS. If this option is not selected, the macro * CONFIG_ADC_CONFIGURABLE_INPUTS is not defined and consequently the * mentioned two fields are not present in this structure. * While this API allows identifiers from range 0-31, particular drivers * may support only a limited number of channel identifiers (dependent * on the underlying hardware capabilities or configured via a dedicated * Kconfig option). */ u8_t channel_id : 5; /** Channel type: single-ended or differential. */ u8_t differential : 1; #ifdef CONFIG_ADC_CONFIGURABLE_INPUTS /** * Positive ADC input. * This is a driver dependent value that identifies an ADC input to be * associated with the channel. */ u8_t input_positive; /** * Negative ADC input (used only for differential channels). * This is a driver dependent value that identifies an ADC input to be * associated with the channel. */ u8_t input_negative; #endif /* CONFIG_ADC_CONFIGURABLE_INPUTS */ }; /* Forward declaration of the adc_sequence structure. */ struct adc_sequence; /** * @brief Action to be performed after a sampling is done. */ enum adc_action { /** The sequence should be continued normally. */ ADC_ACTION_CONTINUE = 0, /** * The sampling should be repeated. New samples or sample should be * read from the ADC and written in the same place as the recent ones. */ ADC_ACTION_REPEAT, /** The sequence should be finished immediately. */ ADC_ACTION_FINISH, }; /** * @brief Type definition of the optional callback function to be called after * a requested sampling is done. * * @param dev Pointer to the device structure for the driver * instance. * @param sequence Pointer to the sequence structure that triggered the * sampling. * @param sampling_index Index (0-65535) of the sampling done. * * @returns Action to be performed by the driver. See @ref adc_action. */ typedef enum adc_action (*adc_sequence_callback)( struct device *dev, const struct adc_sequence *sequence, u16_t sampling_index); /** * @brief Structure defining additional options for an ADC sampling sequence. */ struct adc_sequence_options { /** * Interval between consecutive samplings (in microseconds), 0 means * sample as fast as possible, without involving any timer. * The accuracy of this interval is dependent on the implementation of * a given driver. The default routine that handles the intervals uses * a kernel timer for this purpose, thus, it has the accuracy of the * kernel's system clock. Particular drivers may use some dedicated * hardware timers and achieve a better precision. */ u32_t interval_us; /** * Callback function to be called after each sampling is done. * Optional - set to NULL if it is not needed. */ adc_sequence_callback callback; /** * Number of extra samplings to perform (the total number of samplings * is 1 + extra_samplings). */ u16_t extra_samplings; }; /** * @brief Structure defining an ADC sampling sequence. */ struct adc_sequence { /** * Pointer to a structure defining additional options for the sequence. * If NULL, the sequence consists of a single sampling. */ const struct adc_sequence_options *options; /** * Bit-mask indicating the channels to be included in each sampling * of this sequence. * All selected channels must be configured with adc_channel_setup() * before they are used in a sequence. */ u32_t channels; /** * Pointer to a buffer where the samples are to be written. Samples * from subsequent samplings are written sequentially in the buffer. * The number of samples written for each sampling is determined by * the number of channels selected in the "channels" field. * The buffer must be of an appropriate size, taking into account * the number of selected channels and the ADC resolution used, * as well as the number of samplings contained in the sequence. */ void *buffer; /** * Specifies the actual size of the buffer pointed by the "buffer" * field (in bytes). The driver must ensure that samples are not * written beyond the limit and it must return an error if the buffer * turns out to be not large enough to hold all the requested samples. */ size_t buffer_size; /** * ADC resolution. * For single-ended channels the sample values are from range: * 0 .. 2^resolution - 1, * for differential ones: * - 2^(resolution-1) .. 2^(resolution-1) - 1. */ u8_t resolution; /** * Oversampling setting. * Each sample is averaged from 2^oversampling conversion results. * This feature may be unsupported by a given ADC hardware, or in * a specific mode (e.g. when sampling multiple channels). */ u8_t oversampling; /** * Perform calibration before the reading is taken if requested. * * The impact of channel configuration on the calibration * process is specific to the underlying hardware. ADC * implementations that do not support calibration should * ignore this flag. */ bool calibrate; }; /** * @brief Type definition of ADC API function for configuring a channel. * See adc_channel_setup() for argument descriptions. */ typedef int (*adc_api_channel_setup)(struct device *dev, const struct adc_channel_cfg *channel_cfg); /** * @brief Type definition of ADC API function for setting a read request. * See adc_read() for argument descriptions. */ typedef int (*adc_api_read)(struct device *dev, const struct adc_sequence *sequence); #ifdef CONFIG_ADC_ASYNC /** * @brief Type definition of ADC API function for setting an asynchronous * read request. * See adc_read_async() for argument descriptions. */ typedef int (*adc_api_read_async)(struct device *dev, const struct adc_sequence *sequence, struct k_poll_signal *async); #endif /** * @brief ADC driver API * * This is the mandatory API any ADC driver needs to expose. */ struct adc_driver_api { adc_api_channel_setup channel_setup; adc_api_read read; #ifdef CONFIG_ADC_ASYNC adc_api_read_async read_async; #endif u16_t ref_internal; /* mV */ }; /** * @brief Configure an ADC channel. * * It is required to call this function and configure each channel before it is * selected for a read request. * * @param dev Pointer to the device structure for the driver instance. * @param channel_cfg Channel configuration. * * @retval 0 On success. * @retval -EINVAL If a parameter with an invalid value has been provided. */ __syscall int adc_channel_setup(struct device *dev, const struct adc_channel_cfg *channel_cfg); static inline int z_impl_adc_channel_setup(struct device *dev, const struct adc_channel_cfg *channel_cfg) { const struct adc_driver_api *api = (const struct adc_driver_api *)dev->driver_api; return api->channel_setup(dev, channel_cfg); } /** * @brief Set a read request. * * @param dev Pointer to the device structure for the driver instance. * @param sequence Structure specifying requested sequence of samplings. * * If invoked from user mode, any sequence struct options for callback must * be NULL. * * @retval 0 On success. * @retval -EINVAL If a parameter with an invalid value has been provided. * @retval -ENOMEM If the provided buffer is to small to hold the results * of all requested samplings. * @retval -ENOTSUP If the requested mode of operation is not supported. * @retval -EBUSY If another sampling was triggered while the previous one * was still in progress. This may occur only when samplings * are done with intervals, and it indicates that the selected * interval was too small. All requested samples are written * in the buffer, but at least some of them were taken with * an extra delay compared to what was scheduled. */ __syscall int adc_read(struct device *dev, const struct adc_sequence *sequence); static inline int z_impl_adc_read(struct device *dev, const struct adc_sequence *sequence) { const struct adc_driver_api *api = (const struct adc_driver_api *)dev->driver_api; return api->read(dev, sequence); } #ifdef CONFIG_ADC_ASYNC /** * @brief Set an asynchronous read request. * * If invoked from user mode, any sequence struct options for callback must * be NULL. * * @param dev Pointer to the device structure for the driver instance. * @param sequence Structure specifying requested sequence of samplings. * @param async Pointer to a valid and ready to be signaled struct * k_poll_signal. (Note: if NULL this function will not notify * the end of the transaction, and whether it went successfully * or not). * * @returns 0 on success, negative error code otherwise. * */ __syscall int adc_read_async(struct device *dev, const struct adc_sequence *sequence, struct k_poll_signal *async); static inline int z_impl_adc_read_async(struct device *dev, const struct adc_sequence *sequence, struct k_poll_signal *async) { const struct adc_driver_api *api = (const struct adc_driver_api *)dev->driver_api; return api->read_async(dev, sequence, async); } #endif /* CONFIG_ADC_ASYNC */ /** * @brief Get the internal reference voltage. * * Returns the voltage corresponding to @ref ADC_REF_INTERNAL, * measured in millivolts. * * @return a positive value is the reference voltage value. Returns * zero if reference voltage information is not available. */ static inline u16_t adc_ref_internal(struct device *dev) { const struct adc_driver_api *api = (const struct adc_driver_api *)dev->driver_api; return api->ref_internal; } /** * @} */ #ifdef __cplusplus } #endif #include <syscalls/adc.h> #endif /* ZEPHYR_INCLUDE_DRIVERS_ADC_H_ */ |