diff options
| author | hathach <[email protected]> | 2024-11-20 18:03:42 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-11-20 20:38:20 +0700 |
| commit | 4da5de707b53389c8fe35f6b448f3d1bfe7c91e8 (patch) | |
| tree | 74311790e7ebcec00d7c256d0ba9c95e47a5ca48 /src/device/dcd.h | |
| parent | 43a45f29cd14bad681be3bb3928ea7e0453cc886 (diff) | |
have p4 dma somewhat working but having issue with buffer that does not occupy the whole cache line
Diffstat (limited to 'src/device/dcd.h')
| -rw-r--r-- | src/device/dcd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/device/dcd.h b/src/device/dcd.h index d01f82e01..0ecdec4ed 100644 --- a/src/device/dcd.h +++ b/src/device/dcd.h @@ -93,15 +93,15 @@ typedef struct TU_ATTR_ALIGNED(4) { // clean/flush data cache: write cache -> memory. // Required before an DMA TX transfer to make sure data is in memory -void dcd_dcache_clean(void const* addr, uint32_t data_size) TU_ATTR_WEAK; +void dcd_dcache_clean(const void* addr, uint32_t data_size); // invalidate data cache: mark cache as invalid, next read will read from memory // Required BOTH before and after an DMA RX transfer -void dcd_dcache_invalidate(void const* addr, uint32_t data_size) TU_ATTR_WEAK; +void dcd_dcache_invalidate(const void* addr, uint32_t data_size); // clean and invalidate data cache // Required before an DMA transfer where memory is both read/write by DMA -void dcd_dcache_clean_invalidate(void const* addr, uint32_t data_size) TU_ATTR_WEAK; +void dcd_dcache_clean_invalidate(const void* addr, uint32_t data_size); //--------------------------------------------------------------------+ // Controller API |
