adc.h 15 KB

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