Rename cache.s/.h to arm.s/.h
This commit is contained in:
20
exosphere/src/arm.h
Normal file
20
exosphere/src/arm.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef EXOSPHERE_ARM_H
|
||||
#define EXOSPHERE_ARM_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
void tlb_invalidate_all(void);
|
||||
void tlb_invalidate_all_inner_shareable(void);
|
||||
|
||||
void tlb_invalidate_page(const volatile void *page);
|
||||
void tlb_invalidate_page_inner_shareable(const void *page);
|
||||
|
||||
void flush_dcache_all(void);
|
||||
void invalidate_dcache_all(void);
|
||||
|
||||
void flush_dcache_range(const void *start, const void *end);
|
||||
void invalidate_dcache_range(const void *start, const void *end);
|
||||
|
||||
void invalidate_icache_inner_shareable(void);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user