20 #ifndef _COBALT_X86_ASM_THREAD_H 21 #define _COBALT_X86_ASM_THREAD_H 23 #include <asm-generic/xenomai/thread.h> 24 #include <asm/xenomai/wrappers.h> 25 #include <asm/traps.h> 27 #ifndef IPIPE_X86_FPU_EAGER 28 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,4,0) 29 typedef union thread_xstate x86_fpustate;
30 #define x86_fpustate_ptr(t) ((t)->fpu.state) 32 typedef union fpregs_state x86_fpustate;
33 #define x86_fpustate_ptr(t) ((t)->fpu.active_state) 39 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,8,0) 45 #ifdef IPIPE_X86_FPU_EAGER 49 unsigned int root_used_math: 1;
50 x86_fpustate *kfpu_state;
52 unsigned int root_kfpu: 1;
55 #define xnarch_fpu_ptr(tcb) ((tcb)->fpup) 57 #define xnarch_fault_regs(d) ((d)->regs) 58 #define xnarch_fault_trap(d) ((d)->exception) 59 #define xnarch_fault_code(d) ((d)->regs->orig_ax) 60 #define xnarch_fault_pc(d) ((d)->regs->ip) 61 #define xnarch_fault_fpu_p(d) ((d)->exception == X86_TRAP_NM) 62 #define xnarch_fault_pf_p(d) ((d)->exception == X86_TRAP_PF) 63 #define xnarch_fault_bp_p(d) ((current->ptrace & PT_PTRACED) && \ 64 ((d)->exception == X86_TRAP_DB || (d)->exception == X86_TRAP_BP)) 65 #define xnarch_fault_notify(d) (!xnarch_fault_bp_p(d)) 67 void xnarch_switch_fpu(
struct xnthread *from,
struct xnthread *to);
69 int xnarch_handle_fpu_fault(
struct xnthread *from,
70 struct xnthread *to,
struct ipipe_trap_data *d);
72 void xnarch_leave_root(
struct xnthread *root);
74 void xnarch_init_root_tcb(
struct xnthread *thread);
76 void xnarch_init_shadow_tcb(
struct xnthread *thread);
78 void xnarch_switch_to(
struct xnthread *out,
struct xnthread *in);
80 static inline void xnarch_enter_root(
struct xnthread *root) { }
82 static inline int xnarch_escalate(
void)
85 ipipe_raise_irq(cobalt_pipeline.escalate_virq);
92 int mach_x86_thread_init(
void);
93 void mach_x86_thread_cleanup(
void);