blob: 86c404171305abd290a6a85d7a5edd69c55ecd02 [file] [log] [blame]
Mark Rutland5b7e8f72016-11-03 20:23:13 +00001#ifndef __ASM_CURRENT_H
2#define __ASM_CURRENT_H
3
4#include <linux/compiler.h>
5
6#include <asm/sysreg.h>
7
8#ifndef __ASSEMBLY__
9
10struct task_struct;
11
Mark Rutland8c01d002017-01-03 18:27:01 +000012/*
13 * We don't use read_sysreg() as we want the compiler to cache the value where
14 * possible.
15 */
Mark Rutland5b7e8f72016-11-03 20:23:13 +000016static __always_inline struct task_struct *get_current(void)
17{
Mark Rutland8c01d002017-01-03 18:27:01 +000018 unsigned long sp_el0;
19
20 asm ("mrs %0, sp_el0" : "=r" (sp_el0));
21
22 return (struct task_struct *)sp_el0;
Mark Rutland5b7e8f72016-11-03 20:23:13 +000023}
24
25#define current get_current()
26
27#endif /* __ASSEMBLY__ */
28
29#endif /* __ASM_CURRENT_H */
30