~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/riscv/kernel/crash_save_regs.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Copyright (C) 2020 FORTH-ICS/CARV
  4  *  Nick Kossifidis <mick@ics.forth.gr>
  5  */
  6 
  7 #include <asm/asm.h>            /* For RISCV_* and REG_* macros */
  8 #include <asm/csr.h>            /* For CSR_* macros */
  9 #include <asm/asm-offsets.h>    /* For offsets on pt_regs */
 10 #include <linux/linkage.h>      /* For SYM_* macros */
 11 
 12 .section ".text"
 13 SYM_CODE_START(riscv_crash_save_regs)
 14         REG_S ra,  PT_RA(a0)    /* x1 */
 15         REG_S sp,  PT_SP(a0)    /* x2 */
 16         REG_S gp,  PT_GP(a0)    /* x3 */
 17         REG_S tp,  PT_TP(a0)    /* x4 */
 18         REG_S t0,  PT_T0(a0)    /* x5 */
 19         REG_S t1,  PT_T1(a0)    /* x6 */
 20         REG_S t2,  PT_T2(a0)    /* x7 */
 21         REG_S s0,  PT_S0(a0)    /* x8/fp */
 22         REG_S s1,  PT_S1(a0)    /* x9 */
 23         REG_S a0,  PT_A0(a0)    /* x10 */
 24         REG_S a1,  PT_A1(a0)    /* x11 */
 25         REG_S a2,  PT_A2(a0)    /* x12 */
 26         REG_S a3,  PT_A3(a0)    /* x13 */
 27         REG_S a4,  PT_A4(a0)    /* x14 */
 28         REG_S a5,  PT_A5(a0)    /* x15 */
 29         REG_S a6,  PT_A6(a0)    /* x16 */
 30         REG_S a7,  PT_A7(a0)    /* x17 */
 31         REG_S s2,  PT_S2(a0)    /* x18 */
 32         REG_S s3,  PT_S3(a0)    /* x19 */
 33         REG_S s4,  PT_S4(a0)    /* x20 */
 34         REG_S s5,  PT_S5(a0)    /* x21 */
 35         REG_S s6,  PT_S6(a0)    /* x22 */
 36         REG_S s7,  PT_S7(a0)    /* x23 */
 37         REG_S s8,  PT_S8(a0)    /* x24 */
 38         REG_S s9,  PT_S9(a0)    /* x25 */
 39         REG_S s10, PT_S10(a0)   /* x26 */
 40         REG_S s11, PT_S11(a0)   /* x27 */
 41         REG_S t3,  PT_T3(a0)    /* x28 */
 42         REG_S t4,  PT_T4(a0)    /* x29 */
 43         REG_S t5,  PT_T5(a0)    /* x30 */
 44         REG_S t6,  PT_T6(a0)    /* x31 */
 45 
 46         csrr t1, CSR_STATUS
 47         auipc t2, 0x0
 48         csrr t3, CSR_TVAL
 49         csrr t4, CSR_CAUSE
 50 
 51         REG_S t1, PT_STATUS(a0)
 52         REG_S t2, PT_EPC(a0)
 53         REG_S t3, PT_BADADDR(a0)
 54         REG_S t4, PT_CAUSE(a0)
 55         ret
 56 SYM_CODE_END(riscv_crash_save_regs)

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php