|
AM263x MCU+ SDK
10.00.00
|
|
Go to the documentation of this file.
42 #if defined(_TMS320C6X)
43 #include <kernel/dpl/CacheP_c6x.h>
60 #define CacheP_CACHELINE_ALIGNMENT (128U)
70 #define CacheP_TYPE_L1P (0x0001u)
71 #define CacheP_TYPE_L1D (0x0002u)
72 #define CacheP_TYPE_L2P (0x0004u)
73 #define CacheP_TYPE_L2D (0x0008u)
74 #define CacheP_TYPE_L1 ((CacheP_TYPE_L1P)|(CacheP_TYPE_L1D))
75 #define CacheP_TYPE_L2 ((CacheP_TYPE_L2P)|(CacheP_TYPE_L2D))
76 #define CacheP_TYPE_ALLP ((CacheP_TYPE_L1P)|(CacheP_TYPE_L2P))
77 #define CacheP_TYPE_ALLD ((CacheP_TYPE_L1D)|(CacheP_TYPE_L2D))
78 #define CacheP_TYPE_ALL (((CacheP_TYPE_L1P)|(CacheP_TYPE_L1D))|((CacheP_TYPE_L2P)|(CacheP_TYPE_L2D)))
85 typedef struct CacheP_Config_ {
157 void CacheP_wb(
void *addr, uint32_t size, uint32_t type);
void CacheP_enable(uint32_t type)
Cache enable.
void CacheP_disable(uint32_t type)
Cache disable.
const CacheP_Config gCacheConfig
Externally defined Cache configuration.
uint32_t enableForceWrThru
Definition: CacheP.h:88
Cache config structure, this used by SysConfig and not to be used by end-users directly.
Definition: CacheP.h:85
void CacheP_wbAll(uint32_t type)
Cache writeback for full cache.
void CacheP_wbInvAll(uint32_t type)
Cache writeback and invalidate for full cache.
void CacheP_init(void)
Initialize Cache sub-system, called by SysConfig, not to be called by end users.
void CacheP_wbInv(void *addr, uint32_t size, uint32_t type)
Cache writeback and invalidate for a specified region.
void CacheP_inv(void *addr, uint32_t size, uint32_t type)
Cache invalidate for a specified region.
uint32_t enable
Definition: CacheP.h:87
uint32_t CacheP_getEnabled(void)
Get cache enabled bits.
void CacheP_wb(void *addr, uint32_t size, uint32_t type)
Cache writeback for a specified region.