processor.h 1.5 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * include/asm-cris/processor.h
 *
 * Copyright (C) 2000, 2001 Axis Communications AB
 *
 * Authors:         Bjorn Wesen        Initial version
 *
 */

#ifndef __ASM_CRIS_PROCESSOR_H
#define __ASM_CRIS_PROCESSOR_H

#include <asm/page.h>
#include <asm/ptrace.h>
16
#include <arch/processor.h>
17
#include <arch/system.h>
L
Linus Torvalds 已提交
18

19 20
struct task_struct;

21 22 23
#define STACK_TOP	TASK_SIZE
#define STACK_TOP_MAX	STACK_TOP

L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/* This decides where the kernel will search for a free chunk of vm
 * space during mmap's.
 */
#define TASK_UNMAPPED_BASE      (PAGE_ALIGN(TASK_SIZE / 3))

/*
 * At user->kernel entry, the pt_regs struct is stacked on the top of the kernel-stack.
 * This macro allows us to find those regs for a task.
 * Notice that subsequent pt_regs stackings, like recursive interrupts occurring while
 * we're in the kernel, won't affect this - only the first user->kernel transition
 * registers are reached by this.
 */

#define user_regs(thread_info) (((struct pt_regs *)((unsigned long)(thread_info) + THREAD_SIZE)) - 1)

/*
 * Dito but for the currently running task
 */

A
Al Viro 已提交
43
#define task_pt_regs(task) user_regs(task_thread_info(task))
L
Linus Torvalds 已提交
44 45 46 47 48 49

unsigned long get_wchan(struct task_struct *p);

#define KSTK_ESP(tsk)   ((tsk) == current ? rdusp() : (tsk)->thread.usp)

/* Free all resources held by a thread. */
50
static inline void release_thread(struct task_struct *dead_task)
L
Linus Torvalds 已提交
51 52 53 54 55 56
{
        /* Nothing needs to be done.  */
}

#define cpu_relax()     barrier()

57 58
void default_idle(void);

L
Linus Torvalds 已提交
59
#endif /* __ASM_CRIS_PROCESSOR_H */