codec.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API header file for Audio Codec
  9. *
  10. * This file contains the Audio Codec APIs
  11. */
  12. #ifndef ZEPHYR_INCLUDE_AUDIO_CODEC_H_
  13. #define ZEPHYR_INCLUDE_AUDIO_CODEC_H_
  14. /**
  15. * @brief Abstraction for audio codecs
  16. *
  17. * @defgroup audio_codec_interface Audio Codec Interface
  18. * @ingroup audio_interface
  19. * @{
  20. */
  21. #include <drivers/i2s.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * PCM audio sample rates
  27. */
  28. typedef enum {
  29. AUDIO_PCM_RATE_8K = 8000,
  30. AUDIO_PCM_RATE_16K = 16000,
  31. AUDIO_PCM_RATE_24K = 24000,
  32. AUDIO_PCM_RATE_32K = 32000,
  33. AUDIO_PCM_RATE_44P1K = 44100,
  34. AUDIO_PCM_RATE_48K = 48000,
  35. AUDIO_PCM_RATE_96K = 96000,
  36. AUDIO_PCM_RATE_192K = 192000,
  37. } audio_pcm_rate_t;
  38. /**
  39. * PCM audio sample bit widths
  40. */
  41. typedef enum {
  42. AUDIO_PCM_WIDTH_16_BITS = 16,
  43. AUDIO_PCM_WIDTH_20_BITS = 20,
  44. AUDIO_PCM_WIDTH_24_BITS = 24,
  45. AUDIO_PCM_WIDTH_32_BITS = 32,
  46. } audio_pcm_width_t;
  47. /**
  48. * Digital Audio Interface (DAI) type
  49. */
  50. typedef enum {
  51. AUDIO_DAI_TYPE_I2S, /* I2S Interface */
  52. AUDIO_DAI_TYPE_INVALID, /* Other interfaces can be added here */
  53. } audio_dai_type_t;
  54. /**
  55. * Codec properties that can be set by audio_codec_set_property()
  56. */
  57. typedef enum {
  58. AUDIO_PROPERTY_OUTPUT_VOLUME,
  59. AUDIO_PROPERTY_OUTPUT_MUTE,
  60. } audio_property_t;
  61. /**
  62. * Audio channel identifiers to use in audio_codec_set_property()
  63. */
  64. typedef enum {
  65. AUDIO_CHANNEL_FRONT_LEFT,
  66. AUDIO_CHANNEL_FRONT_RIGHT,
  67. AUDIO_CHANNEL_LFE,
  68. AUDIO_CHANNEL_FRONT_CENTER,
  69. AUDIO_CHANNEL_REAR_LEFT,
  70. AUDIO_CHANNEL_REAR_RIGHT,
  71. AUDIO_CHANNEL_REAR_CENTER,
  72. AUDIO_CHANNEL_SIDE_LEFT,
  73. AUDIO_CHANNEL_SIDE_RIGHT,
  74. AUDIO_CHANNEL_ALL,
  75. } audio_channel_t;
  76. /**
  77. * Digital Audio Interface Configuration
  78. * Configuration is dependent on DAI type
  79. */
  80. typedef union {
  81. struct i2s_config i2s; /* I2S configuration */
  82. /* Other DAI types go here */
  83. } audio_dai_cfg_t;
  84. /**
  85. * Codec configuration parameters
  86. */
  87. struct audio_codec_cfg {
  88. uint32_t mclk_freq; /* MCLK input frequency in Hz */
  89. audio_dai_type_t dai_type; /* Digital interface type */
  90. audio_dai_cfg_t dai_cfg; /* DAI configuration info */
  91. };
  92. /**
  93. * Codec property values
  94. */
  95. typedef union {
  96. int vol; /* Volume level in 0.5dB resolution */
  97. bool mute; /* mute if true, unmute if false */
  98. } audio_property_value_t;
  99. /**
  100. * @cond INTERNAL_HIDDEN
  101. *
  102. * For internal use only, skip these in public documentation.
  103. */
  104. struct audio_codec_api {
  105. int (*configure)(const struct device *dev,
  106. struct audio_codec_cfg *cfg);
  107. void (*start_output)(const struct device *dev);
  108. void (*stop_output)(const struct device *dev);
  109. int (*set_property)(const struct device *dev,
  110. audio_property_t property,
  111. audio_channel_t channel,
  112. audio_property_value_t val);
  113. int (*apply_properties)(const struct device *dev);
  114. };
  115. /**
  116. * @endcond
  117. */
  118. /**
  119. * @brief Configure the audio codec
  120. *
  121. * Configure the audio codec device according to the configuration
  122. * parameters provided as input
  123. *
  124. * @param dev Pointer to the device structure for codec driver instance.
  125. * @param cfg Pointer to the structure containing the codec configuration.
  126. *
  127. * @return 0 on success, negative error code on failure
  128. */
  129. static inline int audio_codec_configure(const struct device *dev,
  130. struct audio_codec_cfg *cfg)
  131. {
  132. const struct audio_codec_api *api =
  133. (const struct audio_codec_api *)dev->api;
  134. return api->configure(dev, cfg);
  135. }
  136. /**
  137. * @brief Set codec to start output audio playback
  138. *
  139. * Setup the audio codec device to start the audio playback
  140. *
  141. * @param dev Pointer to the device structure for codec driver instance.
  142. *
  143. * @return none
  144. */
  145. static inline void audio_codec_start_output(const struct device *dev)
  146. {
  147. const struct audio_codec_api *api =
  148. (const struct audio_codec_api *)dev->api;
  149. api->start_output(dev);
  150. }
  151. /**
  152. * @brief Set codec to stop output audio playback
  153. *
  154. * Setup the audio codec device to stop the audio playback
  155. *
  156. * @param dev Pointer to the device structure for codec driver instance.
  157. *
  158. * @return none
  159. */
  160. static inline void audio_codec_stop_output(const struct device *dev)
  161. {
  162. const struct audio_codec_api *api =
  163. (const struct audio_codec_api *)dev->api;
  164. api->stop_output(dev);
  165. }
  166. /**
  167. * @brief Set a codec property defined by audio_property_t
  168. *
  169. * Set a property such as volume level, clock configuration etc.
  170. *
  171. * @param dev Pointer to the device structure for codec driver instance.
  172. * @param property The codec property to set
  173. * @param channel The audio channel for which the property has to be set
  174. * @param val pointer to a property value of type audio_codec_property_value_t
  175. *
  176. * @return 0 on success, negative error code on failure
  177. */
  178. static inline int audio_codec_set_property(const struct device *dev,
  179. audio_property_t property,
  180. audio_channel_t channel,
  181. audio_property_value_t val)
  182. {
  183. const struct audio_codec_api *api =
  184. (const struct audio_codec_api *)dev->api;
  185. return api->set_property(dev, property, channel, val);
  186. }
  187. /**
  188. * @brief Atomically apply any cached properties
  189. *
  190. * Following one or more invocations of audio_codec_set_property, that may have
  191. * been cached by the driver, audio_codec_apply_properties can be invoked to
  192. * apply all the properties as atomic as possible
  193. *
  194. * @param dev Pointer to the device structure for codec driver instance.
  195. *
  196. * @return 0 on success, negative error code on failure
  197. */
  198. static inline int audio_codec_apply_properties(const struct device *dev)
  199. {
  200. const struct audio_codec_api *api =
  201. (const struct audio_codec_api *)dev->api;
  202. return api->apply_properties(dev);
  203. }
  204. #ifdef __cplusplus
  205. }
  206. #endif
  207. /**
  208. * @}
  209. */
  210. #endif /* ZEPHYR_INCLUDE_AUDIO_CODEC_H_ */