1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 Regents of the University of California
6 #ifndef _ASM_RISCV_PROCESSOR_H
7 #define _ASM_RISCV_PROCESSOR_H
9 #include <linux/const.h>
11 #include <vdso/processor.h>
13 #include <asm/ptrace.h>
16 * This decides where the kernel will search for a free chunk of vm
17 * space during mmap's.
19 #define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
21 #define STACK_TOP TASK_SIZE
22 #define STACK_TOP_MAX STACK_TOP
23 #define STACK_ALIGN 16
30 /* CPU-specific state of a task */
31 struct thread_struct
{
32 /* Callee-saved registers */
34 unsigned long sp
; /* Kernel mode stack */
35 unsigned long s
[12]; /* s[0]: frame pointer */
36 struct __riscv_d_ext_state fstate
;
39 #define INIT_THREAD { \
40 .sp = sizeof(init_stack) + (long)&init_stack, \
43 #define task_pt_regs(tsk) \
44 ((struct pt_regs *)(task_stack_page(tsk) + THREAD_SIZE \
45 - ALIGN(sizeof(struct pt_regs), STACK_ALIGN)))
47 #define KSTK_EIP(tsk) (task_pt_regs(tsk)->epc)
48 #define KSTK_ESP(tsk) (task_pt_regs(tsk)->sp)
51 /* Do necessary setup to start up a newly executed thread. */
52 extern void start_thread(struct pt_regs
*regs
,
53 unsigned long pc
, unsigned long sp
);
55 /* Free all resources held by a thread. */
56 static inline void release_thread(struct task_struct
*dead_task
)
60 extern unsigned long get_wchan(struct task_struct
*p
);
63 static inline void wait_for_interrupt(void)
65 __asm__
__volatile__ ("wfi");
69 int riscv_of_processor_hartid(struct device_node
*node
);
70 int riscv_of_parent_hartid(struct device_node
*node
);
72 extern void riscv_fill_hwcap(void);
74 #endif /* __ASSEMBLY__ */
76 #endif /* _ASM_RISCV_PROCESSOR_H */