blob: f6c2b5814ab0d14cf0f70977d8d29607a6ca7c00 [file] [log] [blame]
David Howellsa0616cd2012-03-28 18:30:02 +01001/*
2 * Copyright IBM Corp. 1999, 2009
3 *
4 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
5 */
6
7#ifndef __ASM_SWITCH_TO_H
8#define __ASM_SWITCH_TO_H
9
10#include <linux/thread_info.h>
Hendrik Bruecknerb0753902015-10-06 12:25:59 +020011#include <asm/fpu/api.h>
Heiko Carstensbee5c282013-08-20 10:24:12 +020012#include <asm/ptrace.h>
Martin Schwidefsky916cda12016-01-26 14:10:34 +010013#include <asm/guarded_storage.h>
David Howellsa0616cd2012-03-28 18:30:02 +010014
15extern struct task_struct *__switch_to(void *, void *);
Michael Mueller64597f92013-07-02 22:58:26 +020016extern void update_cr_regs(struct task_struct *task);
David Howellsa0616cd2012-03-28 18:30:02 +010017
David Howellsa0616cd2012-03-28 18:30:02 +010018static inline void save_access_regs(unsigned int *acrs)
19{
Heiko Carstensbee5c282013-08-20 10:24:12 +020020 typedef struct { int _[NUM_ACRS]; } acrstype;
21
22 asm volatile("stam 0,15,%0" : "=Q" (*(acrstype *)acrs));
David Howellsa0616cd2012-03-28 18:30:02 +010023}
24
25static inline void restore_access_regs(unsigned int *acrs)
26{
Heiko Carstensbee5c282013-08-20 10:24:12 +020027 typedef struct { int _[NUM_ACRS]; } acrstype;
28
29 asm volatile("lam 0,15,%0" : : "Q" (*(acrstype *)acrs));
David Howellsa0616cd2012-03-28 18:30:02 +010030}
31
32#define switch_to(prev,next,last) do { \
33 if (prev->mm) { \
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +020034 save_fpu_regs(); \
David Howellsa0616cd2012-03-28 18:30:02 +010035 save_access_regs(&prev->thread.acrs[0]); \
Jan Glaubere4b8b3f2012-07-31 10:52:05 +020036 save_ri_cb(prev->thread.ri_cb); \
Martin Schwidefsky916cda12016-01-26 14:10:34 +010037 save_gs_cb(prev->thread.gs_cb); \
David Howellsa0616cd2012-03-28 18:30:02 +010038 } \
39 if (next->mm) { \
Martin Schwidefsky80703612014-10-06 17:53:53 +020040 update_cr_regs(next); \
Hendrik Brueckner9977e882015-06-10 12:53:42 +020041 set_cpu_flag(CIF_FPU); \
David Howellsa0616cd2012-03-28 18:30:02 +010042 restore_access_regs(&next->thread.acrs[0]); \
Jan Glaubere4b8b3f2012-07-31 10:52:05 +020043 restore_ri_cb(next->thread.ri_cb, prev->thread.ri_cb); \
Martin Schwidefsky916cda12016-01-26 14:10:34 +010044 restore_gs_cb(next->thread.gs_cb); \
David Howellsa0616cd2012-03-28 18:30:02 +010045 } \
46 prev = __switch_to(prev,next); \
47} while (0)
48
David Howellsa0616cd2012-03-28 18:30:02 +010049#endif /* __ASM_SWITCH_TO_H */