123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624 |
- #ifndef ZEPHYR_KERNEL_INCLUDE_KERNEL_ARCH_INTERFACE_H_
- #define ZEPHYR_KERNEL_INCLUDE_KERNEL_ARCH_INTERFACE_H_
- #include <kernel.h>
- #include <sys/arch_interface.h>
- #ifndef _ASMLANGUAGE
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT
- void arch_busy_wait(uint32_t usec_to_wait);
- #endif
- void arch_new_thread(struct k_thread *thread, k_thread_stack_t *stack,
- char *stack_ptr, k_thread_entry_t entry,
- void *p1, void *p2, void *p3);
- #ifdef CONFIG_USE_SWITCH
- static inline void arch_switch(void *switch_to, void **switched_from);
- #else
- int arch_swap(unsigned int key);
- static ALWAYS_INLINE void
- arch_thread_return_value_set(struct k_thread *thread, unsigned int value);
- #endif
- #ifdef CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN
- void arch_switch_to_main_thread(struct k_thread *main_thread, char *stack_ptr,
- k_thread_entry_t _main);
- #endif
- #if defined(CONFIG_FPU) && defined(CONFIG_FPU_SHARING)
- int arch_float_disable(struct k_thread *thread);
- int arch_float_enable(struct k_thread *thread, unsigned int options);
- #endif
- FUNC_NORETURN void arch_system_halt(unsigned int reason);
- static inline bool arch_is_in_isr(void);
- #ifdef CONFIG_MMU
- void arch_mem_map(void *virt, uintptr_t phys, size_t size, uint32_t flags);
- void arch_mem_unmap(void *addr, size_t size);
- int arch_page_phys_get(void *virt, uintptr_t *phys);
- #ifdef CONFIG_ARCH_HAS_RESERVED_PAGE_FRAMES
- void arch_reserved_pages_update(void);
- #endif
- #ifdef CONFIG_DEMAND_PAGING
- void arch_mem_page_out(void *addr, uintptr_t location);
- void arch_mem_page_in(void *addr, uintptr_t phys);
- void arch_mem_scratch(uintptr_t phys);
- enum arch_page_location {
- ARCH_PAGE_LOCATION_PAGED_OUT,
- ARCH_PAGE_LOCATION_PAGED_IN,
- ARCH_PAGE_LOCATION_BAD
- };
- enum arch_page_location arch_page_location_get(void *addr, uintptr_t *location);
-
-
- uintptr_t arch_page_info_get(void *addr, uintptr_t *location,
- bool clear_accessed);
- #endif
- #endif
- int arch_printk_char_out(int c);
- static inline void arch_kernel_init(void);
- static inline void arch_nop(void);
- void arch_coredump_info_dump(const z_arch_esf_t *esf);
- uint16_t arch_coredump_tgt_code_get(void);
- size_t arch_tls_stack_setup(struct k_thread *new_thread, char *stack_ptr);
- #include <kernel_arch_func.h>
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
|