10 #define NACKED __attribute__((naked))
12 #define SYSCALL(num) \
18 "bx lr \n" ::"i"(num))
20 #define SAVE_SYSCALL_RETVAL(ptr) asm volatile("mov %0, r0" : "=r"(*ptr));
22 void system_ticks_update(
void);
76 uint32_t return_handler,
void get_syscall_args(void *sp, unsigned long *pargs[4])
Get syscall arguments.
uint32_t get_proc_mode(void)
Get the current ARM processor mode.
void __platform_init(void)
Basic platform initialization.
void * jump_to_thread(void *stack, bool privileged)
Jump to the thread with given stack.
unsigned long get_syscall_num(void *sp)
Get syscall number.
void __idle(void)
Trigger platform-specific idling.
void __board_init(void)
Initialize board drivers.
void __stack_init(uint32_t **stack_top, uint32_t func, uint32_t return_handler, uint32_t args[4])
Initialize thread stack.
void os_env_init(void *stack)
Initialze the operating system to split kernel space and user space.
void halt(void)
Halt the system by trapping into an infinity loop.
void jump_to_kernel(void)
Jump to the kernel space.