| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /*
- * SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #pragma once
- #include <stdint.h>
- #include <stdbool.h>
- #include "soc/soc_caps.h"
- #include "esp_err.h"
- #include "esp_etm.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @brief Async memory copy driver handle
- */
- typedef struct async_memcpy_context_t *async_memcpy_handle_t;
- /** @cond */
- /// @brief legacy driver handle type
- typedef async_memcpy_handle_t async_memcpy_t;
- /** @endcond */
- /**
- * @brief Async memory copy event data
- */
- typedef struct {
- void *data; /*!< Event data */
- } async_memcpy_event_t;
- /**
- * @brief Type of async memcpy interrupt callback function
- *
- * @param mcp_hdl Handle of async memcpy
- * @param event Event object, which contains related data, reserved for future
- * @param cb_args User defined arguments, passed from esp_async_memcpy function
- * @return Whether a high priority task is woken up by the callback function
- *
- * @note User can call OS primitives (semaphore, mutex, etc) in the callback function.
- * Keep in mind, if any OS primitive wakes high priority task up, the callback should return true.
- */
- typedef bool (*async_memcpy_isr_cb_t)(async_memcpy_handle_t mcp_hdl, async_memcpy_event_t *event, void *cb_args);
- /**
- * @brief Type of async memcpy configuration
- */
- typedef struct {
- uint32_t backlog; /*!< Maximum number of transactions that can be prepared in the background */
- size_t sram_trans_align; /*!< DMA transfer alignment (both in size and address) for SRAM memory */
- size_t psram_trans_align; /*!< DMA transfer alignment (both in size and address) for PSRAM memory */
- uint32_t flags; /*!< Extra flags to control async memcpy feature */
- } async_memcpy_config_t;
- /**
- * @brief Default configuration for async memcpy
- */
- #define ASYNC_MEMCPY_DEFAULT_CONFIG() \
- { \
- .backlog = 8, \
- .sram_trans_align = 0, \
- .psram_trans_align = 0, \
- .flags = 0, \
- }
- #if SOC_AHB_GDMA_SUPPORTED
- /**
- * @brief Install async memcpy driver, with AHB-GDMA as the backend
- *
- * @param[in] config Configuration of async memcpy
- * @param[out] mcp Returned driver handle
- * @return
- * - ESP_OK: Install async memcpy driver successfully
- * - ESP_ERR_INVALID_ARG: Install async memcpy driver failed because of invalid argument
- * - ESP_ERR_NO_MEM: Install async memcpy driver failed because out of memory
- * - ESP_FAIL: Install async memcpy driver failed because of other error
- */
- esp_err_t esp_async_memcpy_install_gdma_ahb(const async_memcpy_config_t *config, async_memcpy_handle_t *mcp);
- #endif // SOC_AHB_GDMA_SUPPORTED
- #if SOC_AXI_GDMA_SUPPORTED
- /**
- * @brief Install async memcpy driver, with AXI-GDMA as the backend
- *
- * @param[in] config Configuration of async memcpy
- * @param[out] mcp Returned driver handle
- * @return
- * - ESP_OK: Install async memcpy driver successfully
- * - ESP_ERR_INVALID_ARG: Install async memcpy driver failed because of invalid argument
- * - ESP_ERR_NO_MEM: Install async memcpy driver failed because out of memory
- * - ESP_FAIL: Install async memcpy driver failed because of other error
- */
- esp_err_t esp_async_memcpy_install_gdma_axi(const async_memcpy_config_t *config, async_memcpy_handle_t *mcp);
- #endif // SOC_AXI_GDMA_SUPPORTED
- #if SOC_CP_DMA_SUPPORTED
- /**
- * @brief Install async memcpy driver, with CPDMA as the backend
- *
- * @note CPDMA is a CPU peripheral, aiming for memory copy.
- *
- * @param[in] config Configuration of async memcpy
- * @param[out] mcp Returned driver handle
- * @return
- * - ESP_OK: Install async memcpy driver successfully
- * - ESP_ERR_INVALID_ARG: Install async memcpy driver failed because of invalid argument
- * - ESP_ERR_NO_MEM: Install async memcpy driver failed because out of memory
- * - ESP_FAIL: Install async memcpy driver failed because of other error
- */
- esp_err_t esp_async_memcpy_install_cpdma(const async_memcpy_config_t *config, async_memcpy_handle_t *mcp);
- #endif // SOC_CP_DMA_SUPPORTED
- /**
- * @brief Install async memcpy driver with the default DMA backend
- *
- * @note On chip with CPDMA support, CPDMA is the default choice.
- * On chip with AHB-GDMA support, AHB-GDMA is the default choice.
- *
- * @param[in] config Configuration of async memcpy
- * @param[out] mcp Returned driver handle
- * @return
- * - ESP_OK: Install async memcpy driver successfully
- * - ESP_ERR_INVALID_ARG: Install async memcpy driver failed because of invalid argument
- * - ESP_ERR_NO_MEM: Install async memcpy driver failed because out of memory
- * - ESP_FAIL: Install async memcpy driver failed because of other error
- */
- esp_err_t esp_async_memcpy_install(const async_memcpy_config_t *config, async_memcpy_handle_t *mcp);
- /**
- * @brief Uninstall async memcpy driver
- *
- * @param[in] mcp Handle of async memcpy driver that returned from `esp_async_memcpy_install`
- * @return
- * - ESP_OK: Uninstall async memcpy driver successfully
- * - ESP_ERR_INVALID_ARG: Uninstall async memcpy driver failed because of invalid argument
- * - ESP_FAIL: Uninstall async memcpy driver failed because of other error
- */
- esp_err_t esp_async_memcpy_uninstall(async_memcpy_handle_t mcp);
- /**
- * @brief Send an asynchronous memory copy request
- *
- * @note The callback function is invoked in interrupt context, never do blocking jobs in the callback.
- *
- * @param[in] mcp Handle of async memcpy driver that returned from `esp_async_memcpy_install`
- * @param[in] dst Destination address (copy to)
- * @param[in] src Source address (copy from)
- * @param[in] n Number of bytes to copy
- * @param[in] cb_isr Callback function, which got invoked in interrupt context. Set to NULL can bypass the callback.
- * @param[in] cb_args User defined argument to be passed to the callback function
- * @return
- * - ESP_OK: Send memory copy request successfully
- * - ESP_ERR_INVALID_ARG: Send memory copy request failed because of invalid argument
- * - ESP_FAIL: Send memory copy request failed because of other error
- */
- esp_err_t esp_async_memcpy(async_memcpy_handle_t mcp, void *dst, void *src, size_t n, async_memcpy_isr_cb_t cb_isr, void *cb_args);
- #if SOC_GDMA_SUPPORT_ETM
- /**
- * @brief Async memory copy specific events that supported by the ETM module
- */
- typedef enum {
- ASYNC_MEMCPY_ETM_EVENT_COPY_DONE, /*!< memory copy finished */
- } async_memcpy_etm_event_t;
- /**
- * @brief Get the ETM event handle for async memcpy done signal
- *
- * @note The created ETM event object can be deleted later by calling `esp_etm_del_event`
- *
- * @param[in] mcp Handle of async memcpy driver that returned from `esp_async_memcpy_install`
- * @param[in] event_type ETM event type
- * @param[out] out_event Returned ETM event handle
- * @return
- * - ESP_OK: Get ETM event successfully
- * - ESP_ERR_INVALID_ARG: Get ETM event failed because of invalid argument
- * - ESP_ERR_NOT_SUPPORTED: Get ETM event failed because the DMA hardware doesn't support ETM submodule
- * - ESP_FAIL: Get ETM event failed because of other error
- */
- esp_err_t esp_async_memcpy_new_etm_event(async_memcpy_handle_t mcp, async_memcpy_etm_event_t event_type, esp_etm_event_handle_t *out_event);
- #endif // SOC_GDMA_SUPPORT_ETM
- #ifdef __cplusplus
- }
- #endif
|