2018-02-27 21:29:47 +00:00
|
|
|
#ifndef EXOSPHERE_ARM_H
|
|
|
|
#define EXOSPHERE_ARM_H
|
2018-02-18 22:11:11 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
void tlb_invalidate_all(void);
|
|
|
|
void tlb_invalidate_all_inner_shareable(void);
|
|
|
|
|
2018-02-25 19:00:50 +00:00
|
|
|
void tlb_invalidate_page(const volatile void *page);
|
2018-02-18 22:11:11 +00:00
|
|
|
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);
|
|
|
|
|
2018-02-18 22:45:44 +00:00
|
|
|
void invalidate_icache_inner_shareable(void);
|
2018-02-18 22:11:11 +00:00
|
|
|
|
2018-02-28 00:35:35 +00:00
|
|
|
void finalize_powerdown(void);
|
2018-02-28 00:10:51 +00:00
|
|
|
void call_with_stack_pointer(uintptr_t stack_pointer, void (*function)(void));
|
|
|
|
|
2018-02-18 22:11:11 +00:00
|
|
|
#endif
|