-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cache): fixed cache writeback/invalidate cannot reach higher vadd…
…r parts
- Loading branch information
Showing
6 changed files
with
110 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#include <stdint.h> | ||
#include <stdbool.h> | ||
#include "sdkconfig.h" | ||
#include "esp_rom_caps.h" | ||
#include "soc/soc_caps.h" | ||
#include "soc/cache_reg.h" | ||
#include "soc/cache_struct.h" | ||
#include "soc/ext_mem_defs.h" | ||
#include "hal/assert.h" | ||
#include "esp32c61/rom/cache.h" | ||
|
||
#include "esp_rom_sys.h" | ||
|
||
#define CACHE_MAX_SYNC_NUM ((CACHE_SYNC_SIZE + 1) >> 1) | ||
|
||
/** | ||
* @brief Sync Cache items | ||
* | ||
* @param type sync type | ||
* @param addr address | ||
* @param bytes bytes to be synced | ||
*/ | ||
__attribute__((always_inline)) | ||
static inline void s_cache_sync_items(uint32_t type, uint32_t addr, uint32_t bytes) | ||
{ | ||
REG_WRITE(CACHE_SYNC_ADDR_REG, addr); | ||
REG_SET_FIELD(CACHE_SYNC_SIZE_REG, CACHE_SYNC_SIZE, bytes); | ||
REG_SET_BIT(CACHE_SYNC_CTRL_REG, type); | ||
while (!REG_GET_BIT(CACHE_SYNC_CTRL_REG, CACHE_SYNC_DONE)) | ||
; | ||
} | ||
|
||
int Cache_Invalidate_Addr(uint32_t vaddr, uint32_t size) | ||
{ | ||
uint32_t plus = 0; | ||
uint32_t cache_line_size = 32; | ||
uint32_t cache_max_sync_size = CACHE_MAX_SYNC_NUM; | ||
if (size == 0) { | ||
HAL_ASSERT(false); | ||
} | ||
//aligned start address to cache line size | ||
plus = vaddr & (cache_line_size - 1); | ||
vaddr -= plus; | ||
//make the length fit the start address | ||
size += plus; | ||
//aligned the length to cache line size(0->0) | ||
size = (size + cache_line_size - 1) & ~(cache_line_size - 1); | ||
|
||
while (size > 0) { | ||
//aligned to cache_max_sync_size, (0->cache_max_sync_size) | ||
uint32_t this_size = ((vaddr + cache_max_sync_size) & ~(cache_max_sync_size - 1)) - vaddr; | ||
if (this_size > size) { | ||
this_size = size; | ||
} | ||
s_cache_sync_items(CACHE_SYNC_INVALIDATE, vaddr, this_size); | ||
vaddr += this_size; | ||
size -= this_size; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
int Cache_WriteBack_Addr(uint32_t vaddr, uint32_t size) | ||
{ | ||
uint32_t plus = 0; | ||
uint32_t cache_line_size = 32; | ||
uint32_t cache_max_sync_size = CACHE_MAX_SYNC_NUM; | ||
if (size == 0) { | ||
HAL_ASSERT(false); | ||
} | ||
//aligned start address to cache line size | ||
plus = vaddr & (cache_line_size - 1); | ||
vaddr -= plus; | ||
//make the length fit the start address | ||
size += plus; | ||
//aligned the length to cache line size(0->0) | ||
size = (size + cache_line_size - 1) & ~(cache_line_size - 1); | ||
|
||
while (size > 0) { | ||
//aligned to cache_max_sync_size, (0->cache_max_sync_size) | ||
uint32_t this_size = ((vaddr + cache_max_sync_size) & ~(cache_max_sync_size - 1)) - vaddr; | ||
if (this_size > size) { | ||
this_size = size; | ||
} | ||
s_cache_sync_items(CACHE_SYNC_WRITEBACK, vaddr, this_size); | ||
vaddr += this_size; | ||
size -= this_size; | ||
} | ||
|
||
return 0; | ||
} |