Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
port.h
Go to the documentation of this file.
1 
4 #ifndef __PORT_H__
5 #define __PORT_H__
6 
7 #include <stdbool.h>
8 #include <stdint.h>
9 
10 #define NACKED __attribute__((naked))
11 
12 #define SYSCALL(num) \
13  asm volatile( \
14  "push {r7} \n" \
15  "mov r7, %0 \n" \
16  "svc 0 \n" \
17  "pop {r7} \n" \
18  "bx lr \n" ::"i"(num))
19 
20 #define SAVE_SYSCALL_RETVAL(ptr) asm volatile("mov %0, r0" : "=r"(*ptr));
21 
22 void system_ticks_update(void);
23 
28 uint32_t get_proc_mode(void);
29 
34 void os_env_init(void *stack);
35 
43 void *jump_to_thread(void *stack, bool privileged);
44 
50 void jump_to_kernel(void);
51 
57 void __platform_init(void);
58 
64 void __board_init(void);
65 
74 void __stack_init(uint32_t **stack_top,
75  uint32_t func,
76  uint32_t return_handler,
77  uint32_t args[4]);
78 
84 unsigned long get_syscall_num(void *sp);
85 
92 void get_syscall_args(void *sp, unsigned long *pargs[4]);
93 
99 void halt(void);
100 
106 void __idle(void);
107 
108 #endif
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.