GNU Linux-libre 4.19.264-gnu1
[releases.git] / arch / riscv / include / asm / processor.h
1 /*
2  * Copyright (C) 2012 Regents of the University of California
3  *
4  *   This program is free software; you can redistribute it and/or
5  *   modify it under the terms of the GNU General Public License
6  *   as published by the Free Software Foundation, version 2.
7  *
8  *   This program is distributed in the hope that it will be useful,
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *   GNU General Public License for more details.
12  */
13
14 #ifndef _ASM_RISCV_PROCESSOR_H
15 #define _ASM_RISCV_PROCESSOR_H
16
17 #include <linux/const.h>
18
19 #include <asm/ptrace.h>
20
21 /*
22  * This decides where the kernel will search for a free chunk of vm
23  * space during mmap's.
24  */
25 #define TASK_UNMAPPED_BASE      PAGE_ALIGN(TASK_SIZE / 3)
26
27 #define STACK_TOP               TASK_SIZE
28 #define STACK_TOP_MAX           STACK_TOP
29 #define STACK_ALIGN             16
30
31 #ifndef __ASSEMBLY__
32
33 #include <asm/barrier.h>
34
35 struct task_struct;
36 struct pt_regs;
37
38 /*
39  * Default implementation of macro that returns current
40  * instruction pointer ("program counter").
41  */
42 #define current_text_addr()     ({ __label__ _l; _l: &&_l; })
43
44 /* CPU-specific state of a task */
45 struct thread_struct {
46         /* Callee-saved registers */
47         unsigned long ra;
48         unsigned long sp;       /* Kernel mode stack */
49         unsigned long s[12];    /* s[0]: frame pointer */
50         struct __riscv_d_ext_state fstate;
51 };
52
53 #define INIT_THREAD {                                   \
54         .sp = sizeof(init_stack) + (long)&init_stack,   \
55 }
56
57 #define task_pt_regs(tsk)                                               \
58         ((struct pt_regs *)(task_stack_page(tsk) + THREAD_SIZE          \
59                             - ALIGN(sizeof(struct pt_regs), STACK_ALIGN)))
60
61 #define KSTK_EIP(tsk)           (task_pt_regs(tsk)->sepc)
62 #define KSTK_ESP(tsk)           (task_pt_regs(tsk)->sp)
63
64
65 /* Do necessary setup to start up a newly executed thread. */
66 extern void start_thread(struct pt_regs *regs,
67                         unsigned long pc, unsigned long sp);
68
69 /* Free all resources held by a thread. */
70 static inline void release_thread(struct task_struct *dead_task)
71 {
72 }
73
74 extern unsigned long get_wchan(struct task_struct *p);
75
76
77 static inline void cpu_relax(void)
78 {
79 #ifdef __riscv_muldiv
80         int dummy;
81         /* In lieu of a halt instruction, induce a long-latency stall. */
82         __asm__ __volatile__ ("div %0, %0, zero" : "=r" (dummy));
83 #endif
84         barrier();
85 }
86
87 static inline void wait_for_interrupt(void)
88 {
89         __asm__ __volatile__ ("wfi");
90 }
91
92 struct device_node;
93 extern int riscv_of_processor_hart(struct device_node *node);
94
95 extern void riscv_fill_hwcap(void);
96
97 #endif /* __ASSEMBLY__ */
98
99 #endif /* _ASM_RISCV_PROCESSOR_H */