|
YAHAL
Yet Another Hardware Abstraction Library
|
Functions that configure Instruction and Data cache. More...
Macros | |
| #define | CCSIDR_WAYS(x) |
| #define | CCSIDR_SETS(x) |
| #define | __SCB_DCACHE_LINE_SIZE 32U |
| #define | __SCB_ICACHE_LINE_SIZE 32U |
| #define | CCSIDR_WAYS(x) |
| #define | CCSIDR_SETS(x) |
| #define | __SCB_DCACHE_LINE_SIZE 32U |
| #define | __SCB_ICACHE_LINE_SIZE 32U |
| #define | CCSIDR_WAYS(x) |
| #define | CCSIDR_SETS(x) |
| #define | __SCB_DCACHE_LINE_SIZE 32U |
| #define | __SCB_ICACHE_LINE_SIZE 32U |
| #define | CCSIDR_WAYS(x) |
| #define | CCSIDR_SETS(x) |
| #define | __SCB_DCACHE_LINE_SIZE 32U |
| #define | __SCB_ICACHE_LINE_SIZE 32U |
Functions | |
| __STATIC_FORCEINLINE void | SCB_EnableICache (void) |
| Enable I-Cache. | |
| __STATIC_FORCEINLINE void | SCB_DisableICache (void) |
| Disable I-Cache. | |
| __STATIC_FORCEINLINE void | SCB_InvalidateICache (void) |
| Invalidate I-Cache. | |
| __STATIC_FORCEINLINE void | SCB_InvalidateICache_by_Addr (volatile void *addr, int32_t isize) |
| I-Cache Invalidate by address. | |
| __STATIC_FORCEINLINE void | SCB_EnableDCache (void) |
| Enable D-Cache. | |
| __STATIC_FORCEINLINE void | SCB_DisableDCache (void) |
| Disable D-Cache. | |
| __STATIC_FORCEINLINE void | SCB_InvalidateDCache (void) |
| Invalidate D-Cache. | |
| __STATIC_FORCEINLINE void | SCB_CleanDCache (void) |
| Clean D-Cache. | |
| __STATIC_FORCEINLINE void | SCB_CleanInvalidateDCache (void) |
| Clean & Invalidate D-Cache. | |
| __STATIC_FORCEINLINE void | SCB_InvalidateDCache_by_Addr (volatile void *addr, int32_t dsize) |
| D-Cache Invalidate by address. | |
| __STATIC_FORCEINLINE void | SCB_CleanDCache_by_Addr (volatile void *addr, int32_t dsize) |
| D-Cache Clean by address. | |
| __STATIC_FORCEINLINE void | SCB_CleanInvalidateDCache_by_Addr (volatile void *addr, int32_t dsize) |
| D-Cache Clean and Invalidate by address. | |
Functions that configure Instruction and Data cache.
| #define __SCB_DCACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 46 of file cachel1_armv7.h.
| #define __SCB_DCACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 46 of file cachel1_armv7.h.
| #define __SCB_DCACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 46 of file cachel1_armv7.h.
| #define __SCB_DCACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 46 of file cachel1_armv7.h.
| #define __SCB_ICACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 50 of file cachel1_armv7.h.
| #define __SCB_ICACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 50 of file cachel1_armv7.h.
| #define __SCB_ICACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 50 of file cachel1_armv7.h.
| #define __SCB_ICACHE_LINE_SIZE 32U |
Cortex-M7 cache line size is fixed to 32 bytes (8 words). See also register SCB_CCSIDR
Definition at line 50 of file cachel1_armv7.h.
| #define CCSIDR_SETS | ( | x | ) |
Definition at line 43 of file cachel1_armv7.h.
| #define CCSIDR_SETS | ( | x | ) |
Definition at line 43 of file cachel1_armv7.h.
| #define CCSIDR_SETS | ( | x | ) |
Definition at line 43 of file cachel1_armv7.h.
| #define CCSIDR_SETS | ( | x | ) |
Definition at line 43 of file cachel1_armv7.h.
| #define CCSIDR_WAYS | ( | x | ) |
Definition at line 42 of file cachel1_armv7.h.
| #define CCSIDR_WAYS | ( | x | ) |
Definition at line 42 of file cachel1_armv7.h.
| #define CCSIDR_WAYS | ( | x | ) |
Definition at line 42 of file cachel1_armv7.h.
| #define CCSIDR_WAYS | ( | x | ) |
Definition at line 42 of file cachel1_armv7.h.
| __STATIC_FORCEINLINE void SCB_CleanDCache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_CleanDCache_by_Addr | ( | volatile void * | addr, |
| int32_t | dsize ) |
D-Cache Clean by address.
Cleans D-Cache for the given address D-Cache is cleaned starting from a 32 byte aligned address in 32 byte granularity. D-Cache memory blocks which are part of given address + given size are cleaned.
| [in] | addr | address |
| [in] | dsize | size of memory block (in number of bytes) |
Definition at line 388 of file cachel1_armv7.h.
| __STATIC_FORCEINLINE void SCB_CleanInvalidateDCache | ( | void | ) |
Clean & Invalidate D-Cache.
Cleans and Invalidates D-Cache
Definition at line 319 of file cachel1_armv7.h.
| __STATIC_FORCEINLINE void SCB_CleanInvalidateDCache_by_Addr | ( | volatile void * | addr, |
| int32_t | dsize ) |
D-Cache Clean and Invalidate by address.
Cleans and invalidates D_Cache for the given address D-Cache is cleaned and invalidated starting from a 32 byte aligned address in 32 byte granularity. D-Cache memory blocks which are part of given address + given size are cleaned and invalidated.
| [in] | addr | address (aligned to 32-byte boundary) |
| [in] | dsize | size of memory block (in number of bytes) |
Definition at line 418 of file cachel1_armv7.h.
| __STATIC_FORCEINLINE void SCB_DisableDCache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_DisableICache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_EnableDCache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_EnableICache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_InvalidateDCache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_InvalidateDCache_by_Addr | ( | volatile void * | addr, |
| int32_t | dsize ) |
D-Cache Invalidate by address.
Invalidates D-Cache for the given address. D-Cache is invalidated starting from a 32 byte aligned address in 32 byte granularity. D-Cache memory blocks which are part of given address + given size are invalidated.
| [in] | addr | address |
| [in] | dsize | size of memory block (in number of bytes) |
Definition at line 358 of file cachel1_armv7.h.
| __STATIC_FORCEINLINE void SCB_InvalidateICache | ( | void | ) |
| __STATIC_FORCEINLINE void SCB_InvalidateICache_by_Addr | ( | volatile void * | addr, |
| int32_t | isize ) |
I-Cache Invalidate by address.
Invalidates I-Cache for the given address. I-Cache is invalidated starting from a 32 byte aligned address in 32 byte granularity. I-Cache memory blocks which are part of given address + given size are invalidated.
| [in] | addr | address |
| [in] | isize | size of memory block (in number of bytes) |
Definition at line 115 of file cachel1_armv7.h.