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 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,4,0) 28 typedef union thread_xstate x86_fpustate;
29 #define x86_fpustate_ptr(t) ((t)->fpu.state) 31 typedef union fpregs_state x86_fpustate;
32 #define x86_fpustate_ptr(t) ((t)->fpu.active_state) 37 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,8,0) 44 unsigned int root_kfpu: 1;
45 unsigned int root_used_math: 1;
46 x86_fpustate *kfpu_state;
53 #define xnarch_fpu_ptr(tcb) ((tcb)->fpup) 55 #define xnarch_fault_regs(d) ((d)->regs) 56 #define xnarch_fault_trap(d) ((d)->exception) 57 #define xnarch_fault_code(d) ((d)->regs->orig_ax) 58 #define xnarch_fault_pc(d) ((d)->regs->ip) 59 #define xnarch_fault_fpu_p(d) ((d)->exception == X86_TRAP_NM) 60 #define xnarch_fault_pf_p(d) ((d)->exception == X86_TRAP_PF) 61 #define xnarch_fault_bp_p(d) ((current->ptrace & PT_PTRACED) && \ 62 ((d)->exception == X86_TRAP_DB || (d)->exception == X86_TRAP_BP)) 63 #define xnarch_fault_notify(d) (!xnarch_fault_bp_p(d)) 65 void xnarch_switch_fpu(
struct xnthread *from,
struct xnthread *to);
67 int xnarch_handle_fpu_fault(
struct xnthread *from,
68 struct xnthread *to,
struct ipipe_trap_data *d);
70 void xnarch_leave_root(
struct xnthread *root);
72 void xnarch_init_root_tcb(
struct xnthread *thread);
74 void xnarch_init_shadow_tcb(
struct xnthread *thread);
76 void xnarch_switch_to(
struct xnthread *out,
struct xnthread *in);
78 static inline void xnarch_enter_root(
struct xnthread *root) { }
80 static inline int xnarch_escalate(
void)
83 ipipe_raise_irq(cobalt_pipeline.escalate_virq);
90 int mach_x86_thread_init(
void);
91 void mach_x86_thread_cleanup(
void);