summaryrefslogtreecommitdiff
path: root/src/common/tusb_common.h
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2023-02-22 22:52:41 +0700
committerGitHub <[email protected]>2023-02-22 22:52:41 +0700
commit73afca14eb589af84e932fdafbeeea8f8db1e771 (patch)
treea6c9eacbac1e256fad0c733e383d62658a6c3d8d /src/common/tusb_common.h
parentb66c2d5f0ae7cb8f29f305d6998a5d4f462ca6a2 (diff)
parenteca96c635da52ab516e3dda47348ef8977ffd8ad (diff)
Merge pull request #1491 from Ryzee119/ohci_fixes
OHCI usbh, tweaks and improvements
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
//--------------------------------------------------------------------+