feat(dw_gdma): support change link list item connection

by dw_gdma_lli_set_next
This commit is contained in:
morris
2024-02-02 16:35:55 +08:00
parent 12de4603c0
commit f0342d6b59
3 changed files with 28 additions and 1 deletions
@@ -25,6 +25,12 @@ extern "C" {
*/
#define CACHE_LL_L2MEM_NON_CACHE_ADDR(addr) ((intptr_t)(addr) + SOC_NON_CACHEABLE_OFFSET)
/**
* @brief Given a non-cacheable address, get the corresponding L2MEM cached address
* @example 0x8FF0_0000 => 0x4FF0_0000
*/
#define CACHE_LL_L2MEM_CACHE_ADDR(non_cache_addr) ((intptr_t)(non_cache_addr) - SOC_NON_CACHEABLE_OFFSET)
/**
* Cache capabilities
*/
@@ -44,7 +50,6 @@ extern "C" {
//TODO: IDF-7515
#define CACHE_LL_L1_ACCESS_EVENT_MASK (0x3f)
/*------------------------------------------------------------------------------
* Autoload
*----------------------------------------------------------------------------*/