i2s.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. /*
  2. * Copyright (c) 2017 Piotr Mienkowski
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public APIs for the I2S (Inter-IC Sound) bus drivers.
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_I2S_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_I2S_H_
  12. /**
  13. * @defgroup i2s_interface I2S Interface
  14. * @ingroup io_interfaces
  15. * @brief I2S (Inter-IC Sound) Interface
  16. *
  17. * The I2S API provides support for the standard I2S interface standard as well
  18. * as common non-standard extensions such as PCM Short/Long Frame Sync,
  19. * Left/Right Justified Data Format.
  20. * @{
  21. */
  22. #include <zephyr/types.h>
  23. #include <device.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /*
  28. * The following #defines are used to configure the I2S controller.
  29. */
  30. typedef uint8_t i2s_fmt_t;
  31. /** Data Format bit field position. */
  32. #define I2S_FMT_DATA_FORMAT_SHIFT 0
  33. /** Data Format bit field mask. */
  34. #define I2S_FMT_DATA_FORMAT_MASK (0x7 << I2S_FMT_DATA_FORMAT_SHIFT)
  35. /** @brief Standard I2S Data Format.
  36. *
  37. * Serial data is transmitted in two's complement with the MSB first. Both
  38. * Word Select (WS) and Serial Data (SD) signals are sampled on the rising edge
  39. * of the clock signal (SCK). The MSB is always sent one clock period after the
  40. * WS changes. Left channel data are sent first indicated by WS = 0, followed
  41. * by right channel data indicated by WS = 1.
  42. *
  43. * -. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
  44. * SCK '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '
  45. * -. .-------------------------------.
  46. * WS '-------------------------------' '----
  47. * -.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.
  48. * SD | |MSB| |...| |LSB| x |...| x |MSB| |...| |LSB| x |...| x |
  49. * -'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'
  50. * | Left channel | Right channel |
  51. */
  52. #define I2S_FMT_DATA_FORMAT_I2S (0 << I2S_FMT_DATA_FORMAT_SHIFT)
  53. /** @brief PCM Short Frame Sync Data Format.
  54. *
  55. * Serial data is transmitted in two's complement with the MSB first. Both
  56. * Word Select (WS) and Serial Data (SD) signals are sampled on the falling edge
  57. * of the clock signal (SCK). The falling edge of the frame sync signal (WS)
  58. * indicates the start of the PCM word. The frame sync is one clock cycle long.
  59. * An arbitrary number of data words can be sent in one frame.
  60. *
  61. * .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
  62. * SCK -' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-
  63. * .---. .---.
  64. * WS -' '- -' '-
  65. * -.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---
  66. * SD | |MSB| |...| |LSB|MSB| |...| |LSB|MSB| |...| |LSB|
  67. * -'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---
  68. * | Word 1 | Word 2 | Word 3 | Word n |
  69. */
  70. #define I2S_FMT_DATA_FORMAT_PCM_SHORT (1 << I2S_FMT_DATA_FORMAT_SHIFT)
  71. /** @brief PCM Long Frame Sync Data Format.
  72. *
  73. * Serial data is transmitted in two's complement with the MSB first. Both
  74. * Word Select (WS) and Serial Data (SD) signals are sampled on the falling edge
  75. * of the clock signal (SCK). The rising edge of the frame sync signal (WS)
  76. * indicates the start of the PCM word. The frame sync has an arbitrary length,
  77. * however it has to fall before the start of the next frame. An arbitrary
  78. * number of data words can be sent in one frame.
  79. *
  80. * .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
  81. * SCK -' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-
  82. * .--- ---. ---. ---. .---
  83. * WS -' '- '- '- -'
  84. * -.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---
  85. * SD | |MSB| |...| |LSB|MSB| |...| |LSB|MSB| |...| |LSB|
  86. * -'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---
  87. * | Word 1 | Word 2 | Word 3 | Word n |
  88. */
  89. #define I2S_FMT_DATA_FORMAT_PCM_LONG (2 << I2S_FMT_DATA_FORMAT_SHIFT)
  90. /**
  91. * @brief Left Justified Data Format.
  92. *
  93. * Serial data is transmitted in two's complement with the MSB first. Both
  94. * Word Select (WS) and Serial Data (SD) signals are sampled on the rising edge
  95. * of the clock signal (SCK). The bits within the data word are left justified
  96. * such that the MSB is always sent in the clock period following the WS
  97. * transition. Left channel data are sent first indicated by WS = 1, followed
  98. * by right channel data indicated by WS = 0.
  99. *
  100. * .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
  101. * SCK -' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-
  102. * .-------------------------------. .-
  103. * WS ---' '-------------------------------'
  104. * ---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.-
  105. * SD |MSB| |...| |LSB| x |...| x |MSB| |...| |LSB| x |...| x |
  106. * ---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'-
  107. * | Left channel | Right channel |
  108. */
  109. #define I2S_FMT_DATA_FORMAT_LEFT_JUSTIFIED (3 << I2S_FMT_DATA_FORMAT_SHIFT)
  110. /**
  111. * @brief Right Justified Data Format.
  112. *
  113. * Serial data is transmitted in two's complement with the MSB first. Both
  114. * Word Select (WS) and Serial Data (SD) signals are sampled on the rising edge
  115. * of the clock signal (SCK). The bits within the data word are right justified
  116. * such that the LSB is always sent in the clock period preceding the WS
  117. * transition. Left channel data are sent first indicated by WS = 1, followed
  118. * by right channel data indicated by WS = 0.
  119. *
  120. * .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
  121. * SCK -' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-' '-
  122. * .-------------------------------. .-
  123. * WS ---' '-------------------------------'
  124. * ---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.-
  125. * SD | x |...| x |MSB| |...| |LSB| x |...| x |MSB| |...| |LSB|
  126. * ---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'---'-
  127. * | Left channel | Right channel |
  128. */
  129. #define I2S_FMT_DATA_FORMAT_RIGHT_JUSTIFIED (4 << I2S_FMT_DATA_FORMAT_SHIFT)
  130. /** Send MSB first */
  131. #define I2S_FMT_DATA_ORDER_MSB (0 << 3)
  132. /** Send LSB first */
  133. #define I2S_FMT_DATA_ORDER_LSB BIT(3)
  134. /** Invert bit ordering, send LSB first */
  135. #define I2S_FMT_DATA_ORDER_INV I2S_FMT_DATA_ORDER_LSB
  136. /** Data Format bit field position. */
  137. #define I2S_FMT_CLK_FORMAT_SHIFT 4
  138. /** Data Format bit field mask. */
  139. #define I2S_FMT_CLK_FORMAT_MASK (0x3 << I2S_FMT_CLK_FORMAT_SHIFT)
  140. /** Invert bit clock */
  141. #define I2S_FMT_BIT_CLK_INV BIT(4)
  142. /** Invert frame clock */
  143. #define I2S_FMT_FRAME_CLK_INV BIT(5)
  144. /** NF represents "Normal Frame" whereas IF represents "Inverted Frame"
  145. * NB represents "Normal Bit Clk" whereas IB represents "Inverted Bit clk"
  146. */
  147. #define I2S_FMT_CLK_NF_NB (0 << I2S_FMT_CLK_FORMAT_SHIFT)
  148. #define I2S_FMT_CLK_NF_IB (1 << I2S_FMT_CLK_FORMAT_SHIFT)
  149. #define I2S_FMT_CLK_IF_NB (2 << I2S_FMT_CLK_FORMAT_SHIFT)
  150. #define I2S_FMT_CLK_IF_IB (3 << I2S_FMT_CLK_FORMAT_SHIFT)
  151. typedef uint8_t i2s_opt_t;
  152. /** Run bit clock continuously */
  153. #define I2S_OPT_BIT_CLK_CONT (0 << 0)
  154. /** Run bit clock when sending data only */
  155. #define I2S_OPT_BIT_CLK_GATED BIT(0)
  156. /** I2S driver is bit clock master */
  157. #define I2S_OPT_BIT_CLK_MASTER (0 << 1)
  158. /** I2S driver is bit clock slave */
  159. #define I2S_OPT_BIT_CLK_SLAVE BIT(1)
  160. /** I2S driver is frame clock master */
  161. #define I2S_OPT_FRAME_CLK_MASTER (0 << 2)
  162. /** I2S driver is frame clock slave */
  163. #define I2S_OPT_FRAME_CLK_SLAVE BIT(2)
  164. /** @brief Loop back mode.
  165. *
  166. * In loop back mode RX input will be connected internally to TX output.
  167. * This is used primarily for testing.
  168. */
  169. #define I2S_OPT_LOOPBACK BIT(7)
  170. /** @brief Ping pong mode
  171. *
  172. * In ping pong mode TX output will keep alternating between a ping buffer
  173. * and a pong buffer. This is normally used in audio streams when one buffer
  174. * is being populated while the other is being played (DMAed) and vice versa.
  175. * So, in this mode, 2 sets of buffers fixed in size are used. Static Arrays
  176. * are used to achieve this and hence they are never freed.
  177. */
  178. #define I2S_OPT_PINGPONG BIT(6)
  179. /**
  180. * @brief I2C Direction
  181. */
  182. enum i2s_dir {
  183. /** Receive data */
  184. I2S_DIR_RX,
  185. /** Transmit data */
  186. I2S_DIR_TX,
  187. /** Both receive and transmit data */
  188. I2S_DIR_BOTH,
  189. };
  190. /** Interface state */
  191. enum i2s_state {
  192. /** @brief The interface is not ready.
  193. *
  194. * The interface was initialized but is not yet ready to receive /
  195. * transmit data. Call i2s_configure() to configure interface and change
  196. * its state to READY.
  197. */
  198. I2S_STATE_NOT_READY,
  199. /** The interface is ready to receive / transmit data. */
  200. I2S_STATE_READY,
  201. /** The interface is receiving / transmitting data. */
  202. I2S_STATE_RUNNING,
  203. /** The interface is draining its transmit queue. */
  204. I2S_STATE_STOPPING,
  205. /** TX buffer underrun or RX buffer overrun has occurred. */
  206. I2S_STATE_ERROR,
  207. };
  208. /** Trigger command */
  209. enum i2s_trigger_cmd {
  210. /** @brief Start the transmission / reception of data.
  211. *
  212. * If I2S_DIR_TX is set some data has to be queued for transmission by
  213. * the i2s_write() function. This trigger can be used in READY state
  214. * only and changes the interface state to RUNNING.
  215. */
  216. I2S_TRIGGER_START,
  217. /** @brief Stop the transmission / reception of data.
  218. *
  219. * Stop the transmission / reception of data at the end of the current
  220. * memory block. This trigger can be used in RUNNING state only and at
  221. * first changes the interface state to STOPPING. When the current TX /
  222. * RX block is transmitted / received the state is changed to READY.
  223. * Subsequent START trigger will resume transmission / reception where
  224. * it stopped.
  225. */
  226. I2S_TRIGGER_STOP,
  227. /** @brief Empty the transmit queue.
  228. *
  229. * Send all data in the transmit queue and stop the transmission.
  230. * If the trigger is applied to the RX queue it has the same effect as
  231. * I2S_TRIGGER_STOP. This trigger can be used in RUNNING state only and
  232. * at first changes the interface state to STOPPING. When all TX blocks
  233. * are transmitted the state is changed to READY.
  234. */
  235. I2S_TRIGGER_DRAIN,
  236. /** @brief Discard the transmit / receive queue.
  237. *
  238. * Stop the transmission / reception immediately and discard the
  239. * contents of the respective queue. This trigger can be used in any
  240. * state other than NOT_READY and changes the interface state to READY.
  241. */
  242. I2S_TRIGGER_DROP,
  243. /** @brief Prepare the queues after underrun/overrun error has occurred.
  244. *
  245. * This trigger can be used in ERROR state only and changes the
  246. * interface state to READY.
  247. */
  248. I2S_TRIGGER_PREPARE,
  249. };
  250. /** @struct i2s_config
  251. * @brief Interface configuration options.
  252. *
  253. * Memory slab pointed to by the mem_slab field has to be defined and
  254. * initialized by the user. For I2S driver to function correctly number of
  255. * memory blocks in a slab has to be at least 2 per queue. Size of the memory
  256. * block should be multiple of frame_size where frame_size = (channels *
  257. * word_size_bytes). As an example 16 bit word will occupy 2 bytes, 24 or 32
  258. * bit word will occupy 4 bytes.
  259. *
  260. * Please check Zephyr Kernel Primer for more information on memory slabs.
  261. *
  262. * @remark When I2S data format is selected parameter channels is ignored,
  263. * number of words in a frame is always 2.
  264. *
  265. * @param word_size Number of bits representing one data word.
  266. * @param channels Number of words per frame.
  267. * @param format Data stream format as defined by I2S_FMT_* constants.
  268. * @param options Configuration options as defined by I2S_OPT_* constants.
  269. * @param frame_clk_freq Frame clock (WS) frequency, this is sampling rate.
  270. * @param mem_slab memory slab to store RX/TX data.
  271. * @param block_size Size of one RX/TX memory block (buffer) in bytes.
  272. * @param timeout Read/Write timeout. Number of milliseconds to wait in case TX
  273. * queue is full or RX queue is empty, or 0, or SYS_FOREVER_MS.
  274. */
  275. struct i2s_config {
  276. uint8_t word_size;
  277. uint8_t channels;
  278. i2s_fmt_t format;
  279. i2s_opt_t options;
  280. uint32_t frame_clk_freq;
  281. struct k_mem_slab *mem_slab;
  282. size_t block_size;
  283. int32_t timeout;
  284. };
  285. /**
  286. * @cond INTERNAL_HIDDEN
  287. *
  288. * For internal use only, skip these in public documentation.
  289. */
  290. __subsystem struct i2s_driver_api {
  291. int (*configure)(const struct device *dev, enum i2s_dir dir,
  292. const struct i2s_config *cfg);
  293. const struct i2s_config *(*config_get)(const struct device *dev,
  294. enum i2s_dir dir);
  295. int (*read)(const struct device *dev, void **mem_block, size_t *size);
  296. int (*write)(const struct device *dev, void *mem_block, size_t size);
  297. int (*trigger)(const struct device *dev, enum i2s_dir dir,
  298. enum i2s_trigger_cmd cmd);
  299. };
  300. /**
  301. * @endcond
  302. */
  303. /**
  304. * @brief Configure operation of a host I2S controller.
  305. *
  306. * The dir parameter specifies if Transmit (TX) or Receive (RX) direction
  307. * will be configured by data provided via cfg parameter.
  308. *
  309. * The function can be called in NOT_READY or READY state only. If executed
  310. * successfully the function will change the interface state to READY.
  311. *
  312. * If the function is called with the parameter cfg->frame_clk_freq set to 0
  313. * the interface state will be changed to NOT_READY.
  314. *
  315. * @param dev Pointer to the device structure for the driver instance.
  316. * @param dir Stream direction: RX, TX, or both, as defined by I2S_DIR_*.
  317. * The I2S_DIR_BOTH value may not be supported by some drivers.
  318. * For those, the RX and TX streams need to be configured separately.
  319. * @param cfg Pointer to the structure containing configuration parameters.
  320. *
  321. * @retval 0 If successful.
  322. * @retval -EINVAL Invalid argument.
  323. * @retval -ENOSYS I2S_DIR_BOTH value is not supported.
  324. */
  325. __syscall int i2s_configure(const struct device *dev, enum i2s_dir dir,
  326. const struct i2s_config *cfg);
  327. static inline int z_impl_i2s_configure(const struct device *dev,
  328. enum i2s_dir dir,
  329. const struct i2s_config *cfg)
  330. {
  331. const struct i2s_driver_api *api =
  332. (const struct i2s_driver_api *)dev->api;
  333. return api->configure(dev, dir, cfg);
  334. }
  335. /**
  336. * @brief Fetch configuration information of a host I2S controller
  337. *
  338. * @param dev Pointer to the device structure for the driver instance
  339. * @param dir Stream direction: RX or TX as defined by I2S_DIR_*
  340. * @retval Pointer to the structure containing configuration parameters,
  341. * or NULL if un-configured
  342. */
  343. static inline const struct i2s_config *i2s_config_get(const struct device *dev,
  344. enum i2s_dir dir)
  345. {
  346. const struct i2s_driver_api *api =
  347. (const struct i2s_driver_api *)dev->api;
  348. return api->config_get(dev, dir);
  349. }
  350. /**
  351. * @brief Read data from the RX queue.
  352. *
  353. * Data received by the I2S interface is stored in the RX queue consisting of
  354. * memory blocks preallocated by this function from rx_mem_slab (as defined by
  355. * i2s_configure). Ownership of the RX memory block is passed on to the user
  356. * application which has to release it.
  357. *
  358. * The data is read in chunks equal to the size of the memory block. If the
  359. * interface is in READY state the number of bytes read can be smaller.
  360. *
  361. * If there is no data in the RX queue the function will block waiting for
  362. * the next RX memory block to fill in. This operation can timeout as defined
  363. * by i2s_configure. If the timeout value is set to K_NO_WAIT the function
  364. * is non-blocking.
  365. *
  366. * Reading from the RX queue is possible in any state other than NOT_READY.
  367. * If the interface is in the ERROR state it is still possible to read all the
  368. * valid data stored in RX queue. Afterwards the function will return -EIO
  369. * error.
  370. *
  371. * @param dev Pointer to the device structure for the driver instance.
  372. * @param mem_block Pointer to the RX memory block containing received data.
  373. * @param size Pointer to the variable storing the number of bytes read.
  374. *
  375. * @retval 0 If successful.
  376. * @retval -EIO The interface is in NOT_READY or ERROR state and there are no
  377. * more data blocks in the RX queue.
  378. * @retval -EBUSY Returned without waiting.
  379. * @retval -EAGAIN Waiting period timed out.
  380. */
  381. static inline int i2s_read(const struct device *dev, void **mem_block,
  382. size_t *size)
  383. {
  384. const struct i2s_driver_api *api =
  385. (const struct i2s_driver_api *)dev->api;
  386. return api->read(dev, mem_block, size);
  387. }
  388. /**
  389. * @brief Read data from the RX queue into a provided buffer
  390. *
  391. * Data received by the I2S interface is stored in the RX queue consisting of
  392. * memory blocks preallocated by this function from rx_mem_slab (as defined by
  393. * i2s_configure). Calling this function removes one block from the queue
  394. * which is copied into the provided buffer and then freed.
  395. *
  396. * The provided buffer must be large enough to contain a full memory block
  397. * of data, which is parameterized for the channel via i2s_configure().
  398. *
  399. * This function is otherwise equivalent to i2s_read().
  400. *
  401. * @param dev Pointer to the device structure for the driver instance.
  402. * @param buf Destination buffer for read data, which must be at least the
  403. * as large as the configured memory block size for the RX channel.
  404. * @param size Pointer to the variable storing the number of bytes read.
  405. *
  406. * @retval 0 If successful.
  407. * @retval -EIO The interface is in NOT_READY or ERROR state and there are no
  408. * more data blocks in the RX queue.
  409. * @retval -EBUSY Returned without waiting.
  410. * @retval -EAGAIN Waiting period timed out.
  411. */
  412. __syscall int i2s_buf_read(const struct device *dev, void *buf, size_t *size);
  413. /**
  414. * @brief Write data to the TX queue.
  415. *
  416. * Data to be sent by the I2S interface is stored first in the TX queue. TX
  417. * queue consists of memory blocks preallocated by the user from tx_mem_slab
  418. * (as defined by i2s_configure). This function takes ownership of the memory
  419. * block and will release it when all data are transmitted.
  420. *
  421. * If there are no free slots in the TX queue the function will block waiting
  422. * for the next TX memory block to be send and removed from the queue. This
  423. * operation can timeout as defined by i2s_configure. If the timeout value is
  424. * set to K_NO_WAIT the function is non-blocking.
  425. *
  426. * Writing to the TX queue is only possible if the interface is in READY or
  427. * RUNNING state.
  428. *
  429. * @param dev Pointer to the device structure for the driver instance.
  430. * @param mem_block Pointer to the TX memory block containing data to be sent.
  431. * @param size Number of bytes to write. This value has to be equal or smaller
  432. * than the size of the memory block.
  433. *
  434. * @retval 0 If successful.
  435. * @retval -EIO The interface is not in READY or RUNNING state.
  436. * @retval -EBUSY Returned without waiting.
  437. * @retval -EAGAIN Waiting period timed out.
  438. */
  439. static inline int i2s_write(const struct device *dev, void *mem_block,
  440. size_t size)
  441. {
  442. const struct i2s_driver_api *api =
  443. (const struct i2s_driver_api *)dev->api;
  444. return api->write(dev, mem_block, size);
  445. }
  446. /**
  447. * @brief Write data to the TX queue from a provided buffer
  448. *
  449. * This function acquires a memory block from the I2S channel TX queue
  450. * and copies the provided data buffer into it. It is otherwise equivalent
  451. * to i2s_write().
  452. *
  453. * @param dev Pointer to the device structure for the driver instance.
  454. * @param buf Pointer to a buffer containing the data to transmit.
  455. * @param size Number of bytes to write. This value has to be equal or smaller
  456. * than the size of the channel's TX memory block configuration.
  457. *
  458. * @retval 0 If successful.
  459. * @retval -EIO The interface is not in READY or RUNNING state.
  460. * @retval -EBUSY Returned without waiting.
  461. * @retval -EAGAIN Waiting period timed out.
  462. * @retval -ENOMEM No memory in TX slab queue.
  463. * @retval -EINVAL Size parameter larger than TX queue memory block.
  464. */
  465. __syscall int i2s_buf_write(const struct device *dev, void *buf, size_t size);
  466. /**
  467. * @brief Send a trigger command.
  468. *
  469. * @param dev Pointer to the device structure for the driver instance.
  470. * @param dir Stream direction: RX, TX, or both, as defined by I2S_DIR_*.
  471. * The I2S_DIR_BOTH value may not be supported by some drivers.
  472. * For those, triggering need to be done separately for the RX
  473. * and TX streams.
  474. * @param cmd Trigger command.
  475. *
  476. * @retval 0 If successful.
  477. * @retval -EINVAL Invalid argument.
  478. * @retval -EIO The trigger cannot be executed in the current state or a DMA
  479. * channel cannot be allocated.
  480. * @retval -ENOMEM RX/TX memory block not available.
  481. * @retval -ENOSYS I2S_DIR_BOTH value is not supported.
  482. */
  483. __syscall int i2s_trigger(const struct device *dev, enum i2s_dir dir,
  484. enum i2s_trigger_cmd cmd);
  485. static inline int z_impl_i2s_trigger(const struct device *dev,
  486. enum i2s_dir dir,
  487. enum i2s_trigger_cmd cmd)
  488. {
  489. const struct i2s_driver_api *api =
  490. (const struct i2s_driver_api *)dev->api;
  491. return api->trigger(dev, dir, cmd);
  492. }
  493. /**
  494. * @}
  495. */
  496. #ifdef __cplusplus
  497. }
  498. #endif
  499. #include <syscalls/i2s.h>
  500. #endif /* ZEPHYR_INCLUDE_DRIVERS_I2S_H_ */