Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / cris / include / asm / processor.h
blobee4d8b03d0484b3aded4bd65e91ceb03ae1fa4fb
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * include/asm-cris/processor.h
5 * Copyright (C) 2000, 2001 Axis Communications AB
7 * Authors: Bjorn Wesen Initial version
9 */
11 #ifndef __ASM_CRIS_PROCESSOR_H
12 #define __ASM_CRIS_PROCESSOR_H
14 #include <asm/page.h>
15 #include <asm/ptrace.h>
16 #include <arch/processor.h>
17 #include <arch/system.h>
19 struct task_struct;
21 #define STACK_TOP TASK_SIZE
22 #define STACK_TOP_MAX STACK_TOP
24 /* This decides where the kernel will search for a free chunk of vm
25 * space during mmap's.
27 #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
30 * At user->kernel entry, the pt_regs struct is stacked on the top of the kernel-stack.
31 * This macro allows us to find those regs for a task.
32 * Notice that subsequent pt_regs stackings, like recursive interrupts occurring while
33 * we're in the kernel, won't affect this - only the first user->kernel transition
34 * registers are reached by this.
37 #define user_regs(thread_info) (((struct pt_regs *)((unsigned long)(thread_info) + THREAD_SIZE)) - 1)
40 * Dito but for the currently running task
43 #define task_pt_regs(task) user_regs(task_thread_info(task))
45 unsigned long get_wchan(struct task_struct *p);
47 #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
49 /* Free all resources held by a thread. */
50 static inline void release_thread(struct task_struct *dead_task)
52 /* Nothing needs to be done. */
55 #define cpu_relax() barrier()
57 void default_idle(void);
59 #endif /* __ASM_CRIS_PROCESSOR_H */