dmic.h 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. /*
  2. * Copyright (c) 2018, Intel Corporation
  3. *
  4. * Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
  5. * Sathish Kuttan <sathish.k.kuttan@intel.com>
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. /**
  10. * @file
  11. * @brief Public API header file for Digital Microphones
  12. *
  13. * This file contains the Digital Microphone APIs
  14. */
  15. #ifndef ZEPHYR_INCLUDE_AUDIO_DMIC_H_
  16. #define ZEPHYR_INCLUDE_AUDIO_DMIC_H_
  17. /**
  18. * @defgroup audio_interface Audio
  19. * @{
  20. * @}
  21. */
  22. /**
  23. * @brief Abstraction for digital microphones
  24. *
  25. * @defgroup audio_dmic_interface Digital Microphone Interface
  26. * @ingroup audio_interface
  27. * @{
  28. */
  29. #include <kernel.h>
  30. #include <device.h>
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /**
  35. * DMIC driver states
  36. */
  37. enum dmic_state {
  38. DMIC_STATE_UNINIT, /* Uninitialized */
  39. DMIC_STATE_INITIALIZED, /* Initialized */
  40. DMIC_STATE_CONFIGURED, /* Configured */
  41. DMIC_STATE_ACTIVE, /* Active */
  42. DMIC_STATE_PAUSED, /* Paused */
  43. };
  44. /**
  45. * DMIC driver trigger commands
  46. */
  47. enum dmic_trigger {
  48. DMIC_TRIGGER_STOP, /* stop stream */
  49. DMIC_TRIGGER_START, /* start stream */
  50. DMIC_TRIGGER_PAUSE, /* pause the stream */
  51. DMIC_TRIGGER_RELEASE, /* release paused stream */
  52. DMIC_TRIGGER_RESET, /* reset */
  53. };
  54. /**
  55. * PDM Channels LEFT / RIGHT
  56. */
  57. enum pdm_lr {
  58. PDM_CHAN_LEFT,
  59. PDM_CHAN_RIGHT,
  60. };
  61. /**
  62. * PDM Input/Output signal configuration
  63. */
  64. struct pdm_io_cfg {
  65. /* parameters global to all PDM controllers */
  66. /* minimum clock frequency supported by the mic */
  67. uint32_t min_pdm_clk_freq;
  68. /* maximum clock frequency supported by the mic */
  69. uint32_t max_pdm_clk_freq;
  70. /* minimum duty cycle in % supported by the mic */
  71. uint8_t min_pdm_clk_dc;
  72. /* maximum duty cycle in % supported by the mic */
  73. uint8_t max_pdm_clk_dc;
  74. /* parameters unique to each PDM controller */
  75. /* Bit mask to optionally invert PDM clock */
  76. uint8_t pdm_clk_pol;
  77. /* Bit mask to optionally invert mic data */
  78. uint8_t pdm_data_pol;
  79. /* Collection of clock skew values for each PDM port */
  80. uint32_t pdm_clk_skew;
  81. };
  82. /**
  83. * Configuration of the PCM streams to be output by the PDM hardware
  84. */
  85. struct pcm_stream_cfg {
  86. /*
  87. * if either rate or width is set to 0 for a stream,
  88. * the stream would be disabled
  89. */
  90. /* PCM sample rate of stream */
  91. uint32_t pcm_rate;
  92. /* PCM sample width of stream */
  93. uint8_t pcm_width;
  94. /* PCM sample block size per transfer */
  95. uint16_t block_size;
  96. /* SLAB for DMIC driver to allocate buffers for stream */
  97. struct k_mem_slab *mem_slab;
  98. };
  99. /**
  100. * Mapping/ordering of the PDM channels to logical PCM output channel
  101. */
  102. struct pdm_chan_cfg {
  103. /*
  104. * mapping of PDM controller and mic channel to logical channel
  105. * since each controller can have 2 audio channels (stereo),
  106. * there can be total of 8x2=16 channels.
  107. * The actual number of channels shall be described in
  108. * pcm_stream_cfg.num_chan.
  109. * if 2 streams are enabled, the channel order will be the same for
  110. * both streams
  111. * Each channel is described as a 4 bit number, the least significant
  112. * bit indicates LEFT/RIGHT selection of the PDM controller.
  113. * The most significant 3 bits indicate the PDM controller number.
  114. * bits 0-3 are for channel 0, bit 0 indicates LEFT or RIGHT
  115. * bits 4-7 are for channel 1, bit 4 indicates LEFT or RIGHT
  116. * and so on.
  117. * CONSTRAINT: The LEFT and RIGHT channels of EACH PDM controller needs
  118. * to be adjacent to each other.
  119. */
  120. /* Requested channel map */
  121. uint32_t req_chan_map_lo; /* Channels 0 to 7 */
  122. uint32_t req_chan_map_hi; /* Channels 8 to 15 */
  123. /* Actual channel map that the driver could configure */
  124. uint32_t act_chan_map_lo; /* Channels 0 to 7 */
  125. uint32_t act_chan_map_hi; /* Channels 8 to 15 */
  126. /* requested number of channels */
  127. uint8_t req_num_chan;
  128. /* Actual number of channels that the driver could configure */
  129. uint8_t act_num_chan;
  130. /* requested number of streams for each channel */
  131. uint8_t req_num_streams;
  132. /* Actual number of streams that the driver could configure */
  133. uint8_t act_num_streams;
  134. };
  135. /**
  136. * Input configuration structure for the DMIC configuration API
  137. */
  138. struct dmic_cfg {
  139. struct pdm_io_cfg io;
  140. /*
  141. * Array of pcm_stream_cfg for application to provide
  142. * configuration for each stream
  143. */
  144. struct pcm_stream_cfg *streams;
  145. struct pdm_chan_cfg channel;
  146. };
  147. /**
  148. * Function pointers for the DMIC driver operations
  149. */
  150. struct _dmic_ops {
  151. int (*configure)(const struct device *dev, struct dmic_cfg *config);
  152. int (*trigger)(const struct device *dev, enum dmic_trigger cmd);
  153. int (*read)(const struct device *dev, uint8_t stream, void **buffer,
  154. size_t *size, int32_t timeout);
  155. };
  156. /**
  157. * Build the channel map to populate struct pdm_chan_cfg
  158. *
  159. * Returns the map of PDM controller and LEFT/RIGHT channel shifted to
  160. * the bit position corresponding to the input logical channel value
  161. *
  162. * @param channel The logical channel number
  163. * @param pdm The PDM hardware controller number
  164. * @param lr LEFT/RIGHT channel within the chosen PDM hardware controller
  165. *
  166. * @return Bit-map containing the PDM and L/R channel information
  167. */
  168. static inline uint32_t dmic_build_channel_map(uint8_t channel, uint8_t pdm,
  169. enum pdm_lr lr)
  170. {
  171. return ((((pdm & BIT_MASK(3)) << 1) | lr) <<
  172. ((channel & BIT_MASK(3)) * 4U));
  173. }
  174. /**
  175. * Helper function to parse the channel map in pdm_chan_cfg
  176. *
  177. * Returns the PDM controller and LEFT/RIGHT channel corresponding to
  178. * the channel map and the logical channel provided as input
  179. *
  180. * @param channel_map_lo Lower order/significant bits of the channel map
  181. * @param channel_map_hi Higher order/significant bits of the channel map
  182. * @param channel The logical channel number
  183. * @param pdm Pointer to the PDM hardware controller number
  184. * @param lr Pointer to the LEFT/RIGHT channel within the PDM controller
  185. *
  186. * @return none
  187. */
  188. static inline void dmic_parse_channel_map(uint32_t channel_map_lo,
  189. uint32_t channel_map_hi, uint8_t channel, uint8_t *pdm, enum pdm_lr *lr)
  190. {
  191. uint32_t channel_map;
  192. channel_map = (channel < 8) ? channel_map_lo : channel_map_hi;
  193. channel_map >>= ((channel & BIT_MASK(3)) * 4U);
  194. *pdm = (channel >> 1) & BIT_MASK(3);
  195. *lr = (enum pdm_lr) (channel & BIT(0));
  196. }
  197. /**
  198. * Build a bit map of clock skew values for each PDM channel
  199. *
  200. * Returns the bit-map of clock skew value shifted to the bit position
  201. * corresponding to the input PDM controller value
  202. *
  203. * @param pdm The PDM hardware controller number
  204. * @param skew The skew to apply for the clock output from the PDM controller
  205. *
  206. * @return Bit-map containing the clock skew information
  207. */
  208. static inline uint32_t dmic_build_clk_skew_map(uint8_t pdm, uint8_t skew)
  209. {
  210. return ((skew & BIT_MASK(4)) << ((pdm & BIT_MASK(3)) * 4U));
  211. }
  212. /**
  213. * Configure the DMIC driver and controller(s)
  214. *
  215. * Configures the DMIC driver device according to the number of channels,
  216. * channel mapping, PDM I/O configuration, PCM stream configuration, etc.
  217. *
  218. * @param dev Pointer to the device structure for DMIC driver instance
  219. * @param cfg Pointer to the structure containing the DMIC configuration
  220. *
  221. * @return 0 on success, a negative error code on failure
  222. */
  223. static inline int dmic_configure(const struct device *dev,
  224. struct dmic_cfg *cfg)
  225. {
  226. const struct _dmic_ops *api =
  227. (const struct _dmic_ops *)dev->api;
  228. return api->configure(dev, cfg);
  229. }
  230. /**
  231. * Send a command to the DMIC driver
  232. *
  233. * Sends a command to the driver to perform a specific action
  234. *
  235. * @param dev Pointer to the device structure for DMIC driver instance
  236. * @param cmd The command to be sent to the driver instance
  237. *
  238. * @return 0 on success, a negative error code on failure
  239. */
  240. static inline int dmic_trigger(const struct device *dev,
  241. enum dmic_trigger cmd)
  242. {
  243. const struct _dmic_ops *api =
  244. (const struct _dmic_ops *)dev->api;
  245. return api->trigger(dev, cmd);
  246. }
  247. /**
  248. * Read received decimated PCM data stream
  249. *
  250. * Optionally waits for audio to be received and provides the received
  251. * audio buffer from the requested stream
  252. *
  253. * @param dev Pointer to the device structure for DMIC driver instance
  254. * @param stream Stream identifier
  255. * @param buffer Pointer to the received buffer address
  256. * @param size Pointer to the received buffer size
  257. * @param timeout Timeout in milliseconds to wait in case audio is not yet
  258. * received, or @ref SYS_FOREVER_MS
  259. *
  260. * @return 0 on success, a negative error code on failure
  261. */
  262. static inline int dmic_read(const struct device *dev, uint8_t stream,
  263. void **buffer,
  264. size_t *size, int32_t timeout)
  265. {
  266. const struct _dmic_ops *api =
  267. (const struct _dmic_ops *)dev->api;
  268. return api->read(dev, stream, buffer, size, timeout);
  269. }
  270. #ifdef __cplusplus
  271. }
  272. #endif
  273. /**
  274. * @}
  275. */
  276. #endif /* ZEPHYR_INCLUDE_AUDIO_DMIC_H_ */