xref: /openbmc/linux/arch/riscv/kernel/process.c (revision 5ffd8c73)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
4  *  Chen Liqin <liqin.chen@sunplusct.com>
5  *  Lennox Wu <lennox.wu@sunplusct.com>
6  * Copyright (C) 2012 Regents of the University of California
7  * Copyright (C) 2017 SiFive
8  */
9 
10 #include <linux/cpu.h>
11 #include <linux/kernel.h>
12 #include <linux/sched.h>
13 #include <linux/sched/debug.h>
14 #include <linux/sched/task_stack.h>
15 #include <linux/tick.h>
16 #include <linux/ptrace.h>
17 #include <linux/uaccess.h>
18 
19 #include <asm/unistd.h>
20 #include <asm/processor.h>
21 #include <asm/csr.h>
22 #include <asm/stacktrace.h>
23 #include <asm/string.h>
24 #include <asm/switch_to.h>
25 #include <asm/thread_info.h>
26 #include <asm/cpuidle.h>
27 #include <asm/vector.h>
28 
29 register unsigned long gp_in_global __asm__("gp");
30 
31 #if defined(CONFIG_STACKPROTECTOR) && !defined(CONFIG_STACKPROTECTOR_PER_TASK)
32 #include <linux/stackprotector.h>
33 unsigned long __stack_chk_guard __read_mostly;
34 EXPORT_SYMBOL(__stack_chk_guard);
35 #endif
36 
37 extern asmlinkage void ret_from_fork(void);
38 
39 void arch_cpu_idle(void)
40 {
41 	cpu_do_idle();
42 }
43 
44 void __show_regs(struct pt_regs *regs)
45 {
46 	show_regs_print_info(KERN_DEFAULT);
47 
48 	if (!user_mode(regs)) {
49 		pr_cont("epc : %pS\n", (void *)regs->epc);
50 		pr_cont(" ra : %pS\n", (void *)regs->ra);
51 	}
52 
53 	pr_cont("epc : " REG_FMT " ra : " REG_FMT " sp : " REG_FMT "\n",
54 		regs->epc, regs->ra, regs->sp);
55 	pr_cont(" gp : " REG_FMT " tp : " REG_FMT " t0 : " REG_FMT "\n",
56 		regs->gp, regs->tp, regs->t0);
57 	pr_cont(" t1 : " REG_FMT " t2 : " REG_FMT " s0 : " REG_FMT "\n",
58 		regs->t1, regs->t2, regs->s0);
59 	pr_cont(" s1 : " REG_FMT " a0 : " REG_FMT " a1 : " REG_FMT "\n",
60 		regs->s1, regs->a0, regs->a1);
61 	pr_cont(" a2 : " REG_FMT " a3 : " REG_FMT " a4 : " REG_FMT "\n",
62 		regs->a2, regs->a3, regs->a4);
63 	pr_cont(" a5 : " REG_FMT " a6 : " REG_FMT " a7 : " REG_FMT "\n",
64 		regs->a5, regs->a6, regs->a7);
65 	pr_cont(" s2 : " REG_FMT " s3 : " REG_FMT " s4 : " REG_FMT "\n",
66 		regs->s2, regs->s3, regs->s4);
67 	pr_cont(" s5 : " REG_FMT " s6 : " REG_FMT " s7 : " REG_FMT "\n",
68 		regs->s5, regs->s6, regs->s7);
69 	pr_cont(" s8 : " REG_FMT " s9 : " REG_FMT " s10: " REG_FMT "\n",
70 		regs->s8, regs->s9, regs->s10);
71 	pr_cont(" s11: " REG_FMT " t3 : " REG_FMT " t4 : " REG_FMT "\n",
72 		regs->s11, regs->t3, regs->t4);
73 	pr_cont(" t5 : " REG_FMT " t6 : " REG_FMT "\n",
74 		regs->t5, regs->t6);
75 
76 	pr_cont("status: " REG_FMT " badaddr: " REG_FMT " cause: " REG_FMT "\n",
77 		regs->status, regs->badaddr, regs->cause);
78 }
79 void show_regs(struct pt_regs *regs)
80 {
81 	__show_regs(regs);
82 	if (!user_mode(regs))
83 		dump_backtrace(regs, NULL, KERN_DEFAULT);
84 }
85 
86 #ifdef CONFIG_COMPAT
87 static bool compat_mode_supported __read_mostly;
88 
89 bool compat_elf_check_arch(Elf32_Ehdr *hdr)
90 {
91 	return compat_mode_supported &&
92 	       hdr->e_machine == EM_RISCV &&
93 	       hdr->e_ident[EI_CLASS] == ELFCLASS32;
94 }
95 
96 static int __init compat_mode_detect(void)
97 {
98 	unsigned long tmp = csr_read(CSR_STATUS);
99 
100 	csr_write(CSR_STATUS, (tmp & ~SR_UXL) | SR_UXL_32);
101 	compat_mode_supported =
102 			(csr_read(CSR_STATUS) & SR_UXL) == SR_UXL_32;
103 
104 	csr_write(CSR_STATUS, tmp);
105 
106 	pr_info("riscv: ELF compat mode %s",
107 			compat_mode_supported ? "supported" : "unsupported");
108 
109 	return 0;
110 }
111 early_initcall(compat_mode_detect);
112 #endif
113 
114 void start_thread(struct pt_regs *regs, unsigned long pc,
115 	unsigned long sp)
116 {
117 	regs->status = SR_PIE;
118 	if (has_fpu()) {
119 		regs->status |= SR_FS_INITIAL;
120 		/*
121 		 * Restore the initial value to the FP register
122 		 * before starting the user program.
123 		 */
124 		fstate_restore(current, regs);
125 	}
126 	regs->epc = pc;
127 	regs->sp = sp;
128 
129 #ifdef CONFIG_64BIT
130 	regs->status &= ~SR_UXL;
131 
132 	if (is_compat_task())
133 		regs->status |= SR_UXL_32;
134 	else
135 		regs->status |= SR_UXL_64;
136 #endif
137 }
138 
139 void flush_thread(void)
140 {
141 #ifdef CONFIG_FPU
142 	/*
143 	 * Reset FPU state and context
144 	 *	frm: round to nearest, ties to even (IEEE default)
145 	 *	fflags: accrued exceptions cleared
146 	 */
147 	fstate_off(current, task_pt_regs(current));
148 	memset(&current->thread.fstate, 0, sizeof(current->thread.fstate));
149 #endif
150 #ifdef CONFIG_RISCV_ISA_V
151 	/* Reset vector state */
152 	riscv_v_vstate_ctrl_init(current);
153 	riscv_v_vstate_off(task_pt_regs(current));
154 	kfree(current->thread.vstate.datap);
155 	memset(&current->thread.vstate, 0, sizeof(struct __riscv_v_ext_state));
156 #endif
157 }
158 
159 void arch_release_task_struct(struct task_struct *tsk)
160 {
161 	/* Free the vector context of datap. */
162 	if (has_vector())
163 		kfree(tsk->thread.vstate.datap);
164 }
165 
166 int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
167 {
168 	fstate_save(src, task_pt_regs(src));
169 	*dst = *src;
170 	/* clear entire V context, including datap for a new task */
171 	memset(&dst->thread.vstate, 0, sizeof(struct __riscv_v_ext_state));
172 
173 	return 0;
174 }
175 
176 int copy_thread(struct task_struct *p, const struct kernel_clone_args *args)
177 {
178 	unsigned long clone_flags = args->flags;
179 	unsigned long usp = args->stack;
180 	unsigned long tls = args->tls;
181 	struct pt_regs *childregs = task_pt_regs(p);
182 
183 	memset(&p->thread.s, 0, sizeof(p->thread.s));
184 
185 	/* p->thread holds context to be restored by __switch_to() */
186 	if (unlikely(args->fn)) {
187 		/* Kernel thread */
188 		memset(childregs, 0, sizeof(struct pt_regs));
189 		childregs->gp = gp_in_global;
190 		/* Supervisor/Machine, irqs on: */
191 		childregs->status = SR_PP | SR_PIE;
192 
193 		p->thread.s[0] = (unsigned long)args->fn;
194 		p->thread.s[1] = (unsigned long)args->fn_arg;
195 	} else {
196 		*childregs = *(current_pt_regs());
197 		/* Turn off status.VS */
198 		riscv_v_vstate_off(childregs);
199 		if (usp) /* User fork */
200 			childregs->sp = usp;
201 		if (clone_flags & CLONE_SETTLS)
202 			childregs->tp = tls;
203 		childregs->a0 = 0; /* Return value of fork() */
204 		p->thread.s[0] = 0;
205 	}
206 	p->thread.ra = (unsigned long)ret_from_fork;
207 	p->thread.sp = (unsigned long)childregs; /* kernel sp */
208 	return 0;
209 }
210