dma.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the DMA drivers.
  5. */
  6. /*
  7. * Copyright (c) 2016 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_DMA_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_DMA_H_
  13. #include <kernel.h>
  14. #include <device.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief DMA Interface
  20. * @defgroup dma_interface DMA Interface
  21. * @ingroup io_interfaces
  22. * @{
  23. */
  24. enum dma_channel_direction {
  25. MEMORY_TO_MEMORY = 0x0,
  26. MEMORY_TO_PERIPHERAL,
  27. PERIPHERAL_TO_MEMORY,
  28. PERIPHERAL_TO_PERIPHERAL /*only supported in NXP EDMA*/
  29. };
  30. /** Valid values for @a source_addr_adj and @a dest_addr_adj */
  31. enum dma_addr_adj {
  32. DMA_ADDR_ADJ_INCREMENT,
  33. DMA_ADDR_ADJ_DECREMENT,
  34. DMA_ADDR_ADJ_NO_CHANGE,
  35. };
  36. /* channel attributes */
  37. enum dma_channel_filter {
  38. DMA_CHANNEL_NORMAL, /* normal DMA channel */
  39. DMA_CHANNEL_PERIODIC, /* can be triggerred by periodic sources */
  40. };
  41. /**
  42. * @struct dma_block_config
  43. * @brief DMA block configuration structure.
  44. *
  45. * @param source_address is block starting address at source
  46. * @param source_gather_interval is the address adjustment at gather boundary
  47. * @param dest_address is block starting address at destination
  48. * @param dest_scatter_interval is the address adjustment at scatter boundary
  49. * @param dest_scatter_count is the continuous transfer count between scatter
  50. * boundaries
  51. * @param source_gather_count is the continuous transfer count between gather
  52. * boundaries
  53. *
  54. * @param block_size is the number of bytes to be transferred for this block.
  55. *
  56. * @param config is a bit field with the following parts:
  57. *
  58. * source_gather_en [ 0 ] - 0-disable, 1-enable.
  59. * dest_scatter_en [ 1 ] - 0-disable, 1-enable.
  60. * source_addr_adj [ 2 : 3 ] - 00-increment, 01-decrement,
  61. * 10-no change.
  62. * dest_addr_adj [ 4 : 5 ] - 00-increment, 01-decrement,
  63. * 10-no change.
  64. * source_reload_en [ 6 ] - reload source address at the end of
  65. * block transfer
  66. * 0-disable, 1-enable.
  67. * dest_reload_en [ 7 ] - reload destination address at the end
  68. * of block transfer
  69. * 0-disable, 1-enable.
  70. * fifo_mode_control [ 8 : 11 ] - How full of the fifo before transfer
  71. * start. HW specific.
  72. * flow_control_mode [ 12 ] - 0-source request served upon data
  73. * availability.
  74. * 1-source request postponed until
  75. * destination request happens.
  76. * reserved [ 13 : 15 ]
  77. */
  78. struct dma_block_config {
  79. #ifdef CONFIG_DMA_64BIT
  80. uint64_t source_address;
  81. uint64_t dest_address;
  82. #else
  83. uint32_t source_address;
  84. uint32_t dest_address;
  85. #endif
  86. uint32_t source_gather_interval;
  87. uint32_t dest_scatter_interval;
  88. uint16_t dest_scatter_count;
  89. uint16_t source_gather_count;
  90. uint32_t block_size;
  91. struct dma_block_config *next_block;
  92. uint16_t source_gather_en : 1;
  93. uint16_t dest_scatter_en : 1;
  94. uint16_t source_addr_adj : 2;
  95. uint16_t dest_addr_adj : 2;
  96. uint16_t source_reload_en : 1;
  97. uint16_t dest_reload_en : 1;
  98. uint16_t fifo_mode_control : 4;
  99. uint16_t flow_control_mode : 1;
  100. uint16_t reserved : 3;
  101. };
  102. /**
  103. * @typedef dma_callback_t
  104. * @brief Callback function for DMA transfer completion
  105. *
  106. * If enabled, callback function will be invoked at transfer completion
  107. * or when error happens.
  108. *
  109. * @param dev Pointer to the DMA device calling the callback.
  110. * @param user_data A pointer to some user data or NULL
  111. * @param channel The channel number
  112. * @param status 0 on success, a negative errno otherwise
  113. */
  114. typedef void (*dma_callback_t)(const struct device *dev, void *user_data,
  115. uint32_t channel, int status);
  116. /**
  117. * @struct dma_config
  118. * @brief DMA configuration structure.
  119. *
  120. * @param dma_slot [ 0 : 6 ] - which peripheral and direction
  121. * (HW specific)
  122. * @param channel_direction [ 7 : 9 ] - 000-memory to memory,
  123. * 001-memory to peripheral,
  124. * 010-peripheral to memory,
  125. * 011-peripheral to peripheral,
  126. * ...
  127. * @param complete_callback_en [ 10 ] - 0-callback invoked at completion only
  128. * 1-callback invoked at completion of
  129. * each block
  130. * @param error_callback_en [ 11 ] - 0-error callback enabled
  131. * 1-error callback disabled
  132. * @param source_handshake [ 12 ] - 0-HW, 1-SW
  133. * @param dest_handshake [ 13 ] - 0-HW, 1-SW
  134. * @param channel_priority [ 14 : 17 ] - DMA channel priority
  135. * @param source_chaining_en [ 18 ] - enable/disable source block chaining
  136. * 0-disable, 1-enable
  137. * @param dest_chaining_en [ 19 ] - enable/disable destination block
  138. * chaining.
  139. * 0-disable, 1-enable
  140. * @param linked_channel [ 20 : 26 ] - after channel count exhaust will
  141. * initiate a channel service request
  142. * at this channel
  143. * @param reserved [ 27 : 31 ]
  144. * @param source_data_size [ 0 : 15 ] - width of source data (in bytes)
  145. * @param dest_data_size [ 16 : 31 ] - width of dest data (in bytes)
  146. * @param source_burst_length [ 0 : 15 ] - number of source data units
  147. * @param dest_burst_length [ 16 : 31 ] - number of destination data units
  148. * @param block_count is the number of blocks used for block chaining, this
  149. * depends on availability of the DMA controller.
  150. * @param user_data private data from DMA client.
  151. * @param dma_callback see dma_callback_t for details
  152. */
  153. struct dma_config {
  154. uint32_t dma_slot : 7;
  155. uint32_t channel_direction : 3;
  156. uint32_t complete_callback_en : 1;
  157. uint32_t error_callback_en : 1;
  158. uint32_t source_handshake : 1;
  159. uint32_t dest_handshake : 1;
  160. uint32_t channel_priority : 4;
  161. uint32_t source_chaining_en : 1;
  162. uint32_t dest_chaining_en : 1;
  163. uint32_t linked_channel : 7;
  164. uint32_t reserved : 5;
  165. uint32_t source_data_size : 16;
  166. uint32_t dest_data_size : 16;
  167. uint32_t source_burst_length : 16;
  168. uint32_t dest_burst_length : 16;
  169. uint32_t block_count;
  170. struct dma_block_config *head_block;
  171. void *user_data;
  172. dma_callback_t dma_callback;
  173. };
  174. /**
  175. * DMA runtime status structure
  176. *
  177. * busy - is current DMA transfer busy or idle
  178. * dir - DMA transfer direction
  179. * pending_length - data length pending to be transferred in bytes
  180. * or platform dependent.
  181. *
  182. */
  183. struct dma_status {
  184. bool busy;
  185. enum dma_channel_direction dir;
  186. uint32_t pending_length;
  187. };
  188. /**
  189. * DMA context structure
  190. * Note: the dma_context shall be the first member
  191. * of DMA client driver Data, got by dev->data
  192. *
  193. * magic - magic code to identify the context
  194. * dma_channels - dma channels
  195. * atomic - driver atomic_t pointer
  196. *
  197. */
  198. struct dma_context {
  199. int32_t magic;
  200. int dma_channels;
  201. atomic_t *atomic;
  202. };
  203. /* magic code to identify context content */
  204. #define DMA_MAGIC 0x47494749
  205. /**
  206. * @cond INTERNAL_HIDDEN
  207. *
  208. * These are for internal use only, so skip these in
  209. * public documentation.
  210. */
  211. typedef int (*dma_api_config)(const struct device *dev, uint32_t channel,
  212. struct dma_config *config);
  213. #ifdef CONFIG_DMA_64BIT
  214. typedef int (*dma_api_reload)(const struct device *dev, uint32_t channel,
  215. uint64_t src, uint64_t dst, size_t size);
  216. #else
  217. typedef int (*dma_api_reload)(const struct device *dev, uint32_t channel,
  218. uint32_t src, uint32_t dst, size_t size);
  219. #endif
  220. typedef int (*dma_api_start)(const struct device *dev, uint32_t channel);
  221. typedef int (*dma_api_stop)(const struct device *dev, uint32_t channel);
  222. typedef int (*dma_api_get_status)(const struct device *dev, uint32_t channel,
  223. struct dma_status *status);
  224. typedef int (*dma_api_request)(const struct device *dev, uint32_t channel);
  225. typedef void (*dma_api_free)(const struct device *dev, uint32_t channel);
  226. /**
  227. * @typedef dma_chan_filter
  228. * @brief channel filter function call
  229. *
  230. * filter function that is used to find the matched internal dma channel
  231. * provide by caller
  232. *
  233. * @param dev Pointer to the DMA device instance
  234. * @param channel the channel id to use
  235. * @param filter_param filter function parameter, can be NULL
  236. *
  237. * @retval True on filter matched otherwise return False.
  238. */
  239. typedef bool (*dma_api_chan_filter)(const struct device *dev,
  240. int channel, void *filter_param);
  241. __subsystem struct dma_driver_api {
  242. dma_api_config config;
  243. dma_api_reload reload;
  244. dma_api_start start;
  245. dma_api_stop stop;
  246. dma_api_get_status get_status;
  247. dma_api_request request;
  248. dma_api_free free;
  249. dma_api_chan_filter chan_filter;
  250. };
  251. static inline int dma_request(const struct device *dev, uint32_t channel)
  252. {
  253. const struct dma_driver_api *api =
  254. (const struct dma_driver_api *)dev->api;
  255. return api->request(dev, channel);
  256. }
  257. static inline void dma_free(const struct device *dev, uint32_t channel)
  258. {
  259. const struct dma_driver_api *api =
  260. (const struct dma_driver_api *)dev->api;
  261. api->free(dev, channel);
  262. }
  263. /**
  264. * @endcond
  265. */
  266. /**
  267. * @brief Configure individual channel for DMA transfer.
  268. *
  269. * @param dev Pointer to the device structure for the driver instance.
  270. * @param channel Numeric identification of the channel to configure
  271. * @param config Data structure containing the intended configuration for the
  272. * selected channel
  273. *
  274. * @retval 0 if successful.
  275. * @retval Negative errno code if failure.
  276. */
  277. static inline int dma_config(const struct device *dev, uint32_t channel,
  278. struct dma_config *config)
  279. {
  280. const struct dma_driver_api *api =
  281. (const struct dma_driver_api *)dev->api;
  282. return api->config(dev, channel, config);
  283. }
  284. /**
  285. * @brief Reload buffer(s) for a DMA channel
  286. *
  287. * @param dev Pointer to the device structure for the driver instance.
  288. * @param channel Numeric identification of the channel to configure
  289. * selected channel
  290. * @param src source address for the DMA transfer
  291. * @param dst destination address for the DMA transfer
  292. * @param size size of DMA transfer
  293. *
  294. * @retval 0 if successful.
  295. * @retval Negative errno code if failure.
  296. */
  297. #ifdef CONFIG_DMA_64BIT
  298. static inline int dma_reload(const struct device *dev, uint32_t channel,
  299. uint64_t src, uint64_t dst, size_t size)
  300. #else
  301. static inline int dma_reload(const struct device *dev, uint32_t channel,
  302. uint32_t src, uint32_t dst, size_t size)
  303. #endif
  304. {
  305. const struct dma_driver_api *api =
  306. (const struct dma_driver_api *)dev->api;
  307. if (api->reload) {
  308. return api->reload(dev, channel, src, dst, size);
  309. }
  310. return -ENOSYS;
  311. }
  312. /**
  313. * @brief Enables DMA channel and starts the transfer, the channel must be
  314. * configured beforehand.
  315. *
  316. * Implementations must check the validity of the channel ID passed in and
  317. * return -EINVAL if it is invalid.
  318. *
  319. * @param dev Pointer to the device structure for the driver instance.
  320. * @param channel Numeric identification of the channel where the transfer will
  321. * be processed
  322. *
  323. * @retval 0 if successful.
  324. * @retval Negative errno code if failure.
  325. */
  326. __syscall int dma_start(const struct device *dev, uint32_t channel);
  327. static inline int z_impl_dma_start(const struct device *dev, uint32_t channel)
  328. {
  329. const struct dma_driver_api *api =
  330. (const struct dma_driver_api *)dev->api;
  331. return api->start(dev, channel);
  332. }
  333. /**
  334. * @brief Stops the DMA transfer and disables the channel.
  335. *
  336. * Implementations must check the validity of the channel ID passed in and
  337. * return -EINVAL if it is invalid.
  338. *
  339. * @param dev Pointer to the device structure for the driver instance.
  340. * @param channel Numeric identification of the channel where the transfer was
  341. * being processed
  342. *
  343. * @retval 0 if successful.
  344. * @retval Negative errno code if failure.
  345. */
  346. __syscall int dma_stop(const struct device *dev, uint32_t channel);
  347. static inline int z_impl_dma_stop(const struct device *dev, uint32_t channel)
  348. {
  349. const struct dma_driver_api *api =
  350. (const struct dma_driver_api *)dev->api;
  351. return api->stop(dev, channel);
  352. }
  353. /**
  354. * @brief request DMA channel.
  355. *
  356. * request DMA channel resources
  357. * return -EINVAL if there is no valid channel available.
  358. *
  359. * @param dev Pointer to the device structure for the driver instance.
  360. * @param filter_param filter function parameter
  361. *
  362. * @retval dma channel if successful.
  363. * @retval Negative errno code if failure.
  364. */
  365. __syscall int dma_request_channel(const struct device *dev,
  366. void *filter_param);
  367. static inline int z_impl_dma_request_channel(const struct device *dev,
  368. void *filter_param)
  369. {
  370. int i = 0;
  371. int channel = -EINVAL;
  372. const struct dma_driver_api *api =
  373. (const struct dma_driver_api *)dev->api;
  374. /* dma_context shall be the first one in dev data */
  375. struct dma_context *dma_ctx = (struct dma_context *)dev->data;
  376. if (dma_ctx->magic != DMA_MAGIC) {
  377. return channel;
  378. }
  379. for (i = 0; i < dma_ctx->dma_channels; i++) {
  380. if (!atomic_test_and_set_bit(dma_ctx->atomic, i)) {
  381. channel = i;
  382. if (api->chan_filter &&
  383. !api->chan_filter(dev, channel, filter_param)) {
  384. atomic_clear_bit(dma_ctx->atomic, channel);
  385. continue;
  386. }
  387. break;
  388. }
  389. }
  390. return channel;
  391. }
  392. /**
  393. * @brief release DMA channel.
  394. *
  395. * release DMA channel resources
  396. *
  397. * @param dev Pointer to the device structure for the driver instance.
  398. * @param channel channel number
  399. *
  400. */
  401. __syscall void dma_release_channel(const struct device *dev,
  402. uint32_t channel);
  403. static inline void z_impl_dma_release_channel(const struct device *dev,
  404. uint32_t channel)
  405. {
  406. struct dma_context *dma_ctx = (struct dma_context *)dev->data;
  407. if (dma_ctx->magic != DMA_MAGIC) {
  408. return;
  409. }
  410. if (channel < dma_ctx->dma_channels) {
  411. atomic_clear_bit(dma_ctx->atomic, channel);
  412. }
  413. }
  414. /**
  415. * @brief DMA channel filter.
  416. *
  417. * filter channel by attribute
  418. *
  419. * @param dev Pointer to the device structure for the driver instance.
  420. * @param channel channel number
  421. * @param filter_param filter attribute
  422. *
  423. * @retval Negative errno code if not support
  424. *
  425. */
  426. __syscall int dma_chan_filter(const struct device *dev,
  427. int channel, void *filter_param);
  428. static inline int z_impl_dma_chan_filter(const struct device *dev,
  429. int channel, void *filter_param)
  430. {
  431. const struct dma_driver_api *api =
  432. (const struct dma_driver_api *)dev->api;
  433. if (api->chan_filter) {
  434. return api->chan_filter(dev, channel, filter_param);
  435. }
  436. return -ENOSYS;
  437. }
  438. /**
  439. * @brief get current runtime status of DMA transfer
  440. *
  441. * Implementations must check the validity of the channel ID passed in and
  442. * return -EINVAL if it is invalid or -ENOSYS if not supported.
  443. *
  444. * @param dev Pointer to the device structure for the driver instance.
  445. * @param channel Numeric identification of the channel where the transfer was
  446. * being processed
  447. * @param stat a non-NULL dma_status object for storing DMA status
  448. *
  449. * @retval non-negative if successful.
  450. * @retval Negative errno code if failure.
  451. */
  452. static inline int dma_get_status(const struct device *dev, uint32_t channel,
  453. struct dma_status *stat)
  454. {
  455. const struct dma_driver_api *api =
  456. (const struct dma_driver_api *)dev->api;
  457. if (api->get_status) {
  458. return api->get_status(dev, channel, stat);
  459. }
  460. return -ENOSYS;
  461. }
  462. /**
  463. * @brief Look-up generic width index to be used in registers
  464. *
  465. * WARNING: This look-up works for most controllers, but *may* not work for
  466. * yours. Ensure your controller expects the most common register
  467. * bit values before using this convenience function. If your
  468. * controller does not support these values, you will have to write
  469. * your own look-up inside the controller driver.
  470. *
  471. * @param size: width of bus (in bytes)
  472. *
  473. * @retval common DMA index to be placed into registers.
  474. */
  475. static inline uint32_t dma_width_index(uint32_t size)
  476. {
  477. /* Check boundaries (max supported width is 32 Bytes) */
  478. if (size < 1 || size > 32) {
  479. return 0; /* Zero is the default (8 Bytes) */
  480. }
  481. /* Ensure size is a power of 2 */
  482. if (!is_power_of_two(size)) {
  483. return 0; /* Zero is the default (8 Bytes) */
  484. }
  485. /* Convert to bit pattern for writing to a register */
  486. return find_msb_set(size);
  487. }
  488. /**
  489. * @brief Look-up generic burst index to be used in registers
  490. *
  491. * WARNING: This look-up works for most controllers, but *may* not work for
  492. * yours. Ensure your controller expects the most common register
  493. * bit values before using this convenience function. If your
  494. * controller does not support these values, you will have to write
  495. * your own look-up inside the controller driver.
  496. *
  497. * @param burst: number of bytes to be sent in a single burst
  498. *
  499. * @retval common DMA index to be placed into registers.
  500. */
  501. static inline uint32_t dma_burst_index(uint32_t burst)
  502. {
  503. /* Check boundaries (max supported burst length is 256) */
  504. if (burst < 1 || burst > 256) {
  505. return 0; /* Zero is the default (1 burst length) */
  506. }
  507. /* Ensure burst is a power of 2 */
  508. if (!(burst & (burst - 1))) {
  509. return 0; /* Zero is the default (1 burst length) */
  510. }
  511. /* Convert to bit pattern for writing to a register */
  512. return find_msb_set(burst);
  513. }
  514. /**
  515. * @}
  516. */
  517. #ifdef __cplusplus
  518. }
  519. #endif
  520. #include <syscalls/dma.h>
  521. #endif /* ZEPHYR_INCLUDE_DRIVERS_DMA_H_ */