WIP FPC-III support
[linux/fpc-iii.git] / arch / microblaze / include / asm / current.h
bloba4bb45be30e69fd46e7522404d90ec918eea651a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
4 * Copyright (C) 2008-2009 PetaLogix
5 * Copyright (C) 2006 Atmark Techno, Inc.
6 */
8 #ifndef _ASM_MICROBLAZE_CURRENT_H
9 #define _ASM_MICROBLAZE_CURRENT_H
12 * Register used to hold the current task pointer while in the kernel.
13 * Any `call clobbered' register without a special meaning should be OK,
14 * but check asm/microblaze/kernel/entry.S to be sure.
16 #define CURRENT_TASK r31
17 # ifndef __ASSEMBLY__
19 * Dedicate r31 to keeping the current task pointer
21 register struct task_struct *current asm("r31");
23 # define get_current() current
24 # endif /* __ASSEMBLY__ */
26 #endif /* _ASM_MICROBLAZE_CURRENT_H */