David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Based on arm/arm64/include/asm/current.h |
| 4 | * |
| 5 | * Copyright (C) 2016 ARM |
| 6 | * Copyright (C) 2017 SiFive |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 10 | #ifndef _ASM_RISCV_CURRENT_H |
| 11 | #define _ASM_RISCV_CURRENT_H |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | |
| 13 | #include <linux/bug.h> |
| 14 | #include <linux/compiler.h> |
| 15 | |
| 16 | #ifndef __ASSEMBLY__ |
| 17 | |
| 18 | struct task_struct; |
| 19 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 20 | register struct task_struct *riscv_current_is_tp __asm__("tp"); |
| 21 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 22 | /* |
| 23 | * This only works because "struct thread_info" is at offset 0 from "struct |
| 24 | * task_struct". This constraint seems to be necessary on other architectures |
| 25 | * as well, but __switch_to enforces it. We can't check TASK_TI here because |
| 26 | * <asm/asm-offsets.h> includes this, and I can't get the definition of "struct |
| 27 | * task_struct" here due to some header ordering problems. |
| 28 | */ |
| 29 | static __always_inline struct task_struct *get_current(void) |
| 30 | { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 31 | return riscv_current_is_tp; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | #define current get_current() |
| 35 | |
| 36 | #endif /* __ASSEMBLY__ */ |
| 37 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 38 | #endif /* _ASM_RISCV_CURRENT_H */ |