]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - arch/powerpc/include/asm/switch_to.h
powerpc: Rearrange __switch_to()
[mirror_ubuntu-hirsute-kernel.git] / arch / powerpc / include / asm / switch_to.h
CommitLineData
ae3a197e
DH
1/*
2 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
3 */
4#ifndef _ASM_POWERPC_SWITCH_TO_H
5#define _ASM_POWERPC_SWITCH_TO_H
6
3eb5d588
AB
7#include <asm/reg.h>
8
ae3a197e
DH
9struct thread_struct;
10struct task_struct;
11struct pt_regs;
12
13extern struct task_struct *__switch_to(struct task_struct *,
14 struct task_struct *);
15#define switch_to(prev, next, last) ((last) = __switch_to((prev), (next)))
16
17struct thread_struct;
18extern struct task_struct *_switch(struct thread_struct *prev,
19 struct thread_struct *next);
20
ae3a197e 21extern void enable_kernel_fp(void);
ae3a197e 22extern void enable_kernel_altivec(void);
72cd7b44 23extern void enable_kernel_vsx(void);
ae3a197e
DH
24extern int emulate_altivec(struct pt_regs *);
25extern void __giveup_vsx(struct task_struct *);
26extern void giveup_vsx(struct task_struct *);
27extern void enable_kernel_spe(void);
ae3a197e 28extern void load_up_spe(struct task_struct *);
c2085059 29extern void giveup_all(struct task_struct *);
579e633e 30extern void flush_all_to_thread(struct task_struct *);
f5f97210 31extern void switch_booke_debug_regs(struct debug_reg *new_debug);
ae3a197e 32
037f0eed
KH
33#ifdef CONFIG_PPC_FPU
34extern void flush_fp_to_thread(struct task_struct *);
5f20be44 35extern void giveup_fpu(struct task_struct *);
98da581e 36extern void __giveup_fpu(struct task_struct *);
3eb5d588
AB
37static inline void disable_kernel_fp(void)
38{
39 msr_check_and_clear(MSR_FP);
40}
41
037f0eed
KH
42#else
43static inline void flush_fp_to_thread(struct task_struct *t) { }
5f20be44 44static inline void giveup_fpu(struct task_struct *t) { }
98da581e 45static inline void __giveup_fpu(struct task_struct *t) { }
037f0eed
KH
46#endif
47
ae3a197e
DH
48#ifdef CONFIG_ALTIVEC
49extern void flush_altivec_to_thread(struct task_struct *);
8cd3c23d 50extern void giveup_altivec(struct task_struct *);
98da581e 51extern void __giveup_altivec(struct task_struct *);
3eb5d588
AB
52static inline void disable_kernel_altivec(void)
53{
54 msr_check_and_clear(MSR_VEC);
55}
ae3a197e 56#else
98da581e
AB
57static inline void flush_altivec_to_thread(struct task_struct *t) { }
58static inline void giveup_altivec(struct task_struct *t) { }
59static inline void __giveup_altivec(struct task_struct *t) { }
ae3a197e
DH
60#endif
61
62#ifdef CONFIG_VSX
63extern void flush_vsx_to_thread(struct task_struct *);
3eb5d588
AB
64static inline void disable_kernel_vsx(void)
65{
66 msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
67}
ae3a197e
DH
68#else
69static inline void flush_vsx_to_thread(struct task_struct *t)
70{
71}
72#endif
73
74#ifdef CONFIG_SPE
75extern void flush_spe_to_thread(struct task_struct *);
98da581e
AB
76extern void giveup_spe(struct task_struct *);
77extern void __giveup_spe(struct task_struct *);
3eb5d588
AB
78static inline void disable_kernel_spe(void)
79{
80 msr_check_and_clear(MSR_SPE);
81}
ae3a197e 82#else
98da581e
AB
83static inline void flush_spe_to_thread(struct task_struct *t) { }
84static inline void giveup_spe(struct task_struct *t) { }
85static inline void __giveup_spe(struct task_struct *t) { }
ae3a197e
DH
86#endif
87
330a1eb7
ME
88static inline void clear_task_ebb(struct task_struct *t)
89{
90#ifdef CONFIG_PPC_BOOK3S_64
91 /* EBB perf events are not inherited, so clear all EBB state. */
3df48c98
ME
92 t->thread.ebbrr = 0;
93 t->thread.ebbhr = 0;
330a1eb7
ME
94 t->thread.bescr = 0;
95 t->thread.mmcr2 = 0;
96 t->thread.mmcr0 = 0;
97 t->thread.siar = 0;
98 t->thread.sdar = 0;
99 t->thread.sier = 0;
100 t->thread.used_ebb = 0;
101#endif
102}
103
ae3a197e 104#endif /* _ASM_POWERPC_SWITCH_TO_H */