nrfx_i2s.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /**
  2. * Copyright (c) 2015 - 2019, Nordic Semiconductor ASA
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification,
  7. * are permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice, this
  10. * list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form, except as embedded into a Nordic
  13. * Semiconductor ASA integrated circuit in a product or a software update for
  14. * such product, must reproduce the above copyright notice, this list of
  15. * conditions and the following disclaimer in the documentation and/or other
  16. * materials provided with the distribution.
  17. *
  18. * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * 4. This software, with or without modification, must only be used with a
  23. * Nordic Semiconductor ASA integrated circuit.
  24. *
  25. * 5. Any software provided in binary form under this license must not be reverse
  26. * engineered, decompiled, modified and/or disassembled.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  29. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30. * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  31. * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  34. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  36. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  37. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. *
  39. */
  40. #ifndef NRFX_I2S_H__
  41. #define NRFX_I2S_H__
  42. #include <nrfx.h>
  43. #include <hal/nrf_i2s.h>
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. /**
  48. * @defgroup nrfx_i2s I2S driver
  49. * @{
  50. * @ingroup nrf_i2s
  51. * @brief Inter-IC Sound (I2S) peripheral driver.
  52. */
  53. /**
  54. * @brief This value can be provided instead of a pin number for the signals
  55. * SDOUT, SDIN, and MCK to specify that a given signal is not used
  56. * and therefore does not need to be connected to a pin.
  57. */
  58. #define NRFX_I2S_PIN_NOT_USED 0xFF
  59. /** @brief I2S driver configuration structure. */
  60. typedef struct
  61. {
  62. uint8_t sck_pin; ///< SCK pin number.
  63. uint8_t lrck_pin; ///< LRCK pin number.
  64. uint8_t mck_pin; ///< MCK pin number.
  65. /**< Optional. Use @ref NRFX_I2S_PIN_NOT_USED
  66. * if this signal is not needed. */
  67. uint8_t sdout_pin; ///< SDOUT pin number.
  68. /**< Optional. Use @ref NRFX_I2S_PIN_NOT_USED
  69. * if this signal is not needed. */
  70. uint8_t sdin_pin; ///< SDIN pin number.
  71. /**< Optional. Use @ref NRFX_I2S_PIN_NOT_USED
  72. * if this signal is not needed. */
  73. uint8_t irq_priority; ///< Interrupt priority.
  74. nrf_i2s_mode_t mode; ///< Mode of operation.
  75. nrf_i2s_format_t format; ///< Frame format.
  76. nrf_i2s_align_t alignment; ///< Alignment of sample within a frame.
  77. nrf_i2s_swidth_t sample_width; ///< Sample width.
  78. nrf_i2s_channels_t channels; ///< Enabled channels.
  79. nrf_i2s_mck_t mck_setup; ///< Master clock setup.
  80. nrf_i2s_ratio_t ratio; ///< MCK/LRCK ratio.
  81. } nrfx_i2s_config_t;
  82. /** @brief I2S driver buffers structure. */
  83. typedef struct
  84. {
  85. uint32_t * p_rx_buffer;
  86. uint32_t const * p_tx_buffer;
  87. } nrfx_i2s_buffers_t;
  88. /**
  89. * @brief I2S driver default configuration.
  90. */
  91. #define NRFX_I2S_DEFAULT_CONFIG \
  92. { \
  93. .sck_pin = NRFX_I2S_CONFIG_SCK_PIN, \
  94. .lrck_pin = NRFX_I2S_CONFIG_LRCK_PIN, \
  95. .mck_pin = NRFX_I2S_CONFIG_MCK_PIN, \
  96. .sdout_pin = NRFX_I2S_CONFIG_SDOUT_PIN, \
  97. .sdin_pin = NRFX_I2S_CONFIG_SDIN_PIN, \
  98. .irq_priority = NRFX_I2S_CONFIG_IRQ_PRIORITY, \
  99. .mode = (nrf_i2s_mode_t)NRFX_I2S_CONFIG_MASTER, \
  100. .format = (nrf_i2s_format_t)NRFX_I2S_CONFIG_FORMAT, \
  101. .alignment = (nrf_i2s_align_t)NRFX_I2S_CONFIG_ALIGN, \
  102. .sample_width = (nrf_i2s_swidth_t)NRFX_I2S_CONFIG_SWIDTH, \
  103. .channels = (nrf_i2s_channels_t)NRFX_I2S_CONFIG_CHANNELS, \
  104. .mck_setup = (nrf_i2s_mck_t)NRFX_I2S_CONFIG_MCK_SETUP, \
  105. .ratio = (nrf_i2s_ratio_t)NRFX_I2S_CONFIG_RATIO, \
  106. }
  107. #define NRFX_I2S_STATUS_NEXT_BUFFERS_NEEDED (1UL << 0)
  108. /**< The application should provide buffers that are to be used in the next
  109. * part of the transfer. A call to @ref nrfx_i2s_next_buffers_set should
  110. * be done before the currently used buffers are completely processed
  111. * (i.e. the time remaining for supplying the next buffers depends on
  112. * the used size of the buffers). */
  113. /**
  114. * @brief I2S driver data handler type.
  115. *
  116. * A data handling function of this type must be specified during initialization
  117. * of the driver. The driver will call this function when it finishes using
  118. * buffers passed to it by the application, and when it needs to be provided
  119. * with buffers for the next part of the transfer.
  120. *
  121. * @note The @c p_released pointer passed to this function is temporary and
  122. * will be invalid after the function returns, hence it cannot be stored
  123. * and used later. If needed, the pointed content (i.e. buffers pointers)
  124. * should be copied instead.
  125. *
  126. * @param[in] p_released Pointer to a structure with pointers to buffers
  127. * passed previously to the driver that will no longer
  128. * be access by it (they can be now safely released or
  129. * used for another purpose, in particular for a next
  130. * part of the transfer).
  131. * This pointer will be NULL if the application did not
  132. * supply the buffers for the next part of the transfer
  133. * (via a call to @ref nrfx_i2s_next_buffers_set) since
  134. * the previous time the data handler signaled such need.
  135. * This means that data corruption occurred (the previous
  136. * buffers are used for the second time) and no buffers
  137. * can be released at the moment.
  138. * Both pointers in this structure are NULL when the
  139. * handler is called for the first time after a transfer
  140. * is started, because no data has been transferred yet
  141. * at this point. In all successive calls the pointers
  142. * specify what has been sent (TX) and what has been
  143. * received (RX) in the part of transfer that has just
  144. * been completed (provided that a given direction is
  145. * enabled, see @ref nrfx_i2s_start).
  146. * @param[in] status Bit field describing the current status of the transfer.
  147. * It can be 0 or a combination of the following flags:
  148. * - @ref NRFX_I2S_STATUS_NEXT_BUFFERS_NEEDED
  149. */
  150. typedef void (* nrfx_i2s_data_handler_t)(nrfx_i2s_buffers_t const * p_released,
  151. uint32_t status);
  152. /**
  153. * @brief Function for initializing the I2S driver.
  154. *
  155. * @param[in] p_config Pointer to the structure with initial configuration.
  156. * @param[in] handler Data handler provided by the user. Must not be NULL.
  157. *
  158. * @retval NRFX_SUCCESS If initialization was successful.
  159. * @retval NRFX_ERROR_INVALID_STATE If the driver was already initialized.
  160. * @retval NRFX_ERROR_INVALID_PARAM If the requested combination of configuration
  161. * options is not allowed by the I2S peripheral.
  162. */
  163. nrfx_err_t nrfx_i2s_init(nrfx_i2s_config_t const * p_config,
  164. nrfx_i2s_data_handler_t handler);
  165. /** @brief Function for uninitializing the I2S driver. */
  166. void nrfx_i2s_uninit(void);
  167. /**
  168. * @brief Function for starting the continuous I2S transfer.
  169. *
  170. * The I2S data transfer can be performed in one of three modes: RX (reception)
  171. * only, TX (transmission) only, or in both directions simultaneously.
  172. * The mode is selected by specifying a proper buffer for a given direction
  173. * in the call to this function or by passing NULL instead if this direction
  174. * should be disabled.
  175. *
  176. * The length of the buffer (which is a common value for RX and TX if both
  177. * directions are enabled) is specified in 32-bit words. One 32-bit memory
  178. * word can either contain four 8-bit samples, two 16-bit samples, or one
  179. * right-aligned 24-bit sample sign-extended to a 32-bit value.
  180. * For a detailed memory mapping for different supported configurations,
  181. * see the @linkProductSpecification52.
  182. *
  183. * @note Peripherals using EasyDMA (including I2S) require the transfer buffers
  184. * to be placed in the Data RAM region. If this condition is not met,
  185. * this function will fail with the error code NRFX_ERROR_INVALID_ADDR.
  186. *
  187. * @param[in] p_initial_buffers Pointer to a structure specifying the buffers
  188. * to be used in the initial part of the transfer
  189. * (buffers for all consecutive parts are provided
  190. * through the data handler).
  191. * @param[in] buffer_size Size of the buffers (in 32-bit words).
  192. * Must not be 0.
  193. * @param[in] flags Transfer options (0 for default settings).
  194. * Currently, no additional flags are available.
  195. *
  196. * @retval NRFX_SUCCESS If the operation was successful.
  197. * @retval NRFX_ERROR_INVALID_STATE If a transfer was already started or
  198. * the driver has not been initialized.
  199. * @retval NRFX_ERROR_INVALID_ADDR If the provided buffers are not placed
  200. * in the Data RAM region.
  201. */
  202. nrfx_err_t nrfx_i2s_start(nrfx_i2s_buffers_t const * p_initial_buffers,
  203. uint16_t buffer_size,
  204. uint8_t flags);
  205. /**
  206. * @brief Function for supplying the buffers to be used in the next part of
  207. * the transfer.
  208. *
  209. * The application should call this function when the data handler receives
  210. * @ref NRFX_I2S_STATUS_NEXT_BUFFERS_NEEDED in the @c status parameter.
  211. * The call can be done immediately from the data handler function or later,
  212. * but it has to be done before the I2S peripheral finishes processing the
  213. * buffers supplied previously. Otherwise, data corruption will occur.
  214. *
  215. * @sa nrfx_i2s_data_handler_t
  216. *
  217. * @retval NRFX_SUCCESS If the operation was successful.
  218. * @retval NRFX_ERROR_INVALID_STATE If the buffers were already supplied or
  219. * the peripheral is currently being stopped.
  220. */
  221. nrfx_err_t nrfx_i2s_next_buffers_set(nrfx_i2s_buffers_t const * p_buffers);
  222. /** @brief Function for stopping the I2S transfer. */
  223. void nrfx_i2s_stop(void);
  224. /** @} */
  225. void nrfx_i2s_irq_handler(void);
  226. #ifdef __cplusplus
  227. }
  228. #endif
  229. #endif // NRFX_I2S_H__