2 * Copyright (C) 2012 Regents of the University of California
3 * Copyright (C) 2017 SiFive
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation, version 2.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/init.h>
16 #include <linux/linkage.h>
20 #include <asm/unistd.h>
21 #include <asm/thread_info.h>
22 #include <asm/asm-offsets.h>
28 * Prepares to enter a system call or exception by saving all registers to the
32 LOCAL _restore_kernel_tpsp
36 * If coming from userspace, preserve the user thread pointer and load
37 * the kernel thread pointer. If we came from the kernel, sscratch
38 * will contain 0, and we should continue on the current TP.
40 csrrw tp, sscratch, tp
41 bnez tp, _save_context
45 REG_S sp, TASK_TI_KERNEL_SP(tp)
47 REG_S sp, TASK_TI_USER_SP(tp)
48 REG_L sp, TASK_TI_KERNEL_SP(tp)
49 addi sp, sp, -(PT_SIZE_ON_STACK)
81 * Disable user-mode memory access as it should only be set in the
82 * actual user copy routines.
84 * Disable the FPU to detect illegal usage of floating point in kernel
89 REG_L s0, TASK_TI_USER_SP(tp)
96 REG_S s1, PT_SSTATUS(sp)
98 REG_S s3, PT_SBADADDR(sp)
99 REG_S s4, PT_SCAUSE(sp)
104 * Prepares to return from a system call or exception by restoring all
105 * registers from the stack.
108 REG_L a0, PT_SSTATUS(sp)
109 REG_L a2, PT_SEPC(sp)
137 REG_L x26, PT_S10(sp)
138 REG_L x27, PT_S11(sp)
147 ENTRY(handle_exception)
151 * Set sscratch register to 0, so that if a recursive exception
152 * occurs, the exception vector knows it came from the kernel
156 /* Load the global pointer */
159 la gp, __global_pointer$
162 la ra, ret_from_exception
164 * MSB of cause differentiates between
165 * interrupts and exceptions
169 /* Handle interrupts */
170 move a0, sp /* pt_regs */
173 /* Exceptions run with interrupts enabled */
176 /* Handle syscalls */
178 beq s4, t0, handle_syscall
180 /* Handle other exceptions */
181 slli t0, s4, RISCV_LGPTR
182 la t1, excp_vect_table
183 la t2, excp_vect_table_end
184 move a0, sp /* pt_regs */
186 /* Check if exception code lies within bounds */
194 /* save the initial A0 value (needed in signal handlers) */
195 REG_S a0, PT_ORIG_A0(sp)
197 * Advance SEPC to avoid executing the original
198 * scall instruction on sret
201 REG_S s2, PT_SEPC(sp)
202 /* Trace syscalls, but only if requested by the user. */
203 REG_L t0, TASK_TI_FLAGS(tp)
204 andi t0, t0, _TIF_SYSCALL_TRACE
205 bnez t0, handle_syscall_trace_enter
207 /* Check to make sure we don't jump to a bogus syscall number. */
209 la s0, sys_ni_syscall
210 /* Syscall number held in a7 */
212 la s0, sys_call_table
213 slli t0, a7, RISCV_LGPTR
220 /* Set user a0 to kernel a0 */
222 /* Trace syscalls, but only if requested by the user. */
223 REG_L t0, TASK_TI_FLAGS(tp)
224 andi t0, t0, _TIF_SYSCALL_TRACE
225 bnez t0, handle_syscall_trace_exit
228 REG_L s0, PT_SSTATUS(sp)
234 /* Interrupts must be disabled here so flags are checked atomically */
235 REG_L s0, TASK_TI_FLAGS(tp) /* current_thread_info->flags */
236 andi s1, s0, _TIF_WORK_MASK
237 bnez s1, work_pending
239 /* Save unwound kernel stack pointer in thread_info */
240 addi s0, sp, PT_SIZE_ON_STACK
241 REG_S s0, TASK_TI_KERNEL_SP(tp)
244 * Save TP into sscratch, so we can find the kernel data structures
254 /* Enter slow path for supplementary processing */
255 la ra, ret_from_exception
256 andi s1, s0, _TIF_NEED_RESCHED
257 bnez s1, work_resched
259 /* Handle pending signals and notify-resume requests */
260 csrs sstatus, SR_SIE /* Enable interrupts for do_notify_resume() */
261 move a0, sp /* pt_regs */
262 move a1, s0 /* current_thread_info->flags */
263 tail do_notify_resume
267 /* Slow paths for ptrace. */
268 handle_syscall_trace_enter:
270 call do_syscall_trace_enter
280 handle_syscall_trace_exit:
282 call do_syscall_trace_exit
285 END(handle_exception)
288 la ra, ret_from_exception
290 ENDPROC(ret_from_fork)
292 ENTRY(ret_from_kernel_thread)
295 la ra, ret_from_exception
298 ENDPROC(ret_from_kernel_thread)
302 * Integer register context switch
303 * The callee-saved registers must be saved and restored.
305 * a0: previous task_struct (must be preserved across the switch)
306 * a1: next task_struct
308 * The value of a0 and a1 must be preserved by this function, as that's how
309 * arguments are passed to schedule_tail.
312 /* Save context into prev->thread */
313 li a4, TASK_THREAD_RA
316 REG_S ra, TASK_THREAD_RA_RA(a3)
317 REG_S sp, TASK_THREAD_SP_RA(a3)
318 REG_S s0, TASK_THREAD_S0_RA(a3)
319 REG_S s1, TASK_THREAD_S1_RA(a3)
320 REG_S s2, TASK_THREAD_S2_RA(a3)
321 REG_S s3, TASK_THREAD_S3_RA(a3)
322 REG_S s4, TASK_THREAD_S4_RA(a3)
323 REG_S s5, TASK_THREAD_S5_RA(a3)
324 REG_S s6, TASK_THREAD_S6_RA(a3)
325 REG_S s7, TASK_THREAD_S7_RA(a3)
326 REG_S s8, TASK_THREAD_S8_RA(a3)
327 REG_S s9, TASK_THREAD_S9_RA(a3)
328 REG_S s10, TASK_THREAD_S10_RA(a3)
329 REG_S s11, TASK_THREAD_S11_RA(a3)
330 /* Restore context from next->thread */
331 REG_L ra, TASK_THREAD_RA_RA(a4)
332 REG_L sp, TASK_THREAD_SP_RA(a4)
333 REG_L s0, TASK_THREAD_S0_RA(a4)
334 REG_L s1, TASK_THREAD_S1_RA(a4)
335 REG_L s2, TASK_THREAD_S2_RA(a4)
336 REG_L s3, TASK_THREAD_S3_RA(a4)
337 REG_L s4, TASK_THREAD_S4_RA(a4)
338 REG_L s5, TASK_THREAD_S5_RA(a4)
339 REG_L s6, TASK_THREAD_S6_RA(a4)
340 REG_L s7, TASK_THREAD_S7_RA(a4)
341 REG_L s8, TASK_THREAD_S8_RA(a4)
342 REG_L s9, TASK_THREAD_S9_RA(a4)
343 REG_L s10, TASK_THREAD_S10_RA(a4)
344 REG_L s11, TASK_THREAD_S11_RA(a4)
345 /* Swap the CPU entry around. */
346 lw a3, TASK_TI_CPU(a0)
347 lw a4, TASK_TI_CPU(a1)
348 sw a3, TASK_TI_CPU(a1)
349 sw a4, TASK_TI_CPU(a0)
351 #error "TASK_TI != 0: tp will contain a 'struct thread_info', not a 'struct task_struct' so get_current() won't work."
360 /* Exception vector table */
361 ENTRY(excp_vect_table)
362 RISCV_PTR do_trap_insn_misaligned
363 RISCV_PTR do_trap_insn_fault
364 RISCV_PTR do_trap_insn_illegal
365 RISCV_PTR do_trap_break
366 RISCV_PTR do_trap_load_misaligned
367 RISCV_PTR do_trap_load_fault
368 RISCV_PTR do_trap_store_misaligned
369 RISCV_PTR do_trap_store_fault
370 RISCV_PTR do_trap_ecall_u /* system call, gets intercepted */
371 RISCV_PTR do_trap_ecall_s
372 RISCV_PTR do_trap_unknown
373 RISCV_PTR do_trap_ecall_m
374 RISCV_PTR do_page_fault /* instruction page fault */
375 RISCV_PTR do_page_fault /* load page fault */
376 RISCV_PTR do_trap_unknown
377 RISCV_PTR do_page_fault /* store page fault */