summaryrefslogtreecommitdiff
path: root/src/common/tusb_common.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-02-22 22:14:50 +0700
committerhathach <[email protected]>2023-02-22 22:14:50 +0700
commit1466afafeb927621f9cbb6efd2a0d7e4b6cf8d41 (patch)
tree7fb9b6a1e67b0da37da027c04314f81ae29336d6 /src/common/tusb_common.h
parent4c846af53e993d635e6fff7e2611a554b55fc441 (diff)
move and add optional tusb_app_virt_to_phys/tusb_app_phys_to_virt
also add place holder for tusb_app_dcache_flush() and tusb_app_dcache_invalidate()
Diffstat (limited to 'src/common/tusb_common.h')
-rw-r--r--src/common/tusb_common.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/common/tusb_common.h b/src/common/tusb_common.h
index b1ee40a1a..270339cca 100644
--- a/src/common/tusb_common.h
+++ b/src/common/tusb_common.h
@@ -76,6 +76,21 @@
#include "tusb_timeout.h" // TODO remove
//--------------------------------------------------------------------+
+// Optional API implemented by application if needed
+// TODO move to a more ovious place/file
+//--------------------------------------------------------------------+
+
+// flush data cache
+TU_ATTR_WEAK extern void tusb_app_dcache_flush(uintptr_t addr, uint32_t data_size);
+
+// invalidate data cache
+TU_ATTR_WEAK extern void tusb_app_dcache_invalidate(uintptr_t addr, uint32_t data_size);
+
+// Optional physical <-> virtual address translation
+TU_ATTR_WEAK extern void* tusb_app_virt_to_phys(void *virt_addr);
+TU_ATTR_WEAK extern void* tusb_app_phys_to_virt(void *phys_addr);
+
+//--------------------------------------------------------------------+
// Internal Inline Functions
//--------------------------------------------------------------------+