Home | History | Annotate | Download | only in asm
      1 /****************************************************************************
      2  ****************************************************************************
      3  ***
      4  ***   This header was automatically generated from a Linux kernel header
      5  ***   of the same name, to make information necessary for userspace to
      6  ***   call into the kernel available to libc.  It contains only constants,
      7  ***   structures, and macros generated from the original header, and thus,
      8  ***   contains no copyrightable information.
      9  ***
     10  ***   To edit the content of this header, modify the corresponding
     11  ***   source file (e.g. under external/kernel-headers/original/) then
     12  ***   run bionic/libc/kernel/tools/update_all.py
     13  ***
     14  ***   Any manual change here will be lost the next time this script will
     15  ***   be run. You've been warned!
     16  ***
     17  ****************************************************************************
     18  ****************************************************************************/
     19 #ifndef _UAPI__ASM_PTRACE_H
     20 #define _UAPI__ASM_PTRACE_H
     21 #include <linux/types.h>
     22 #include <asm/hwcap.h>
     23 #define PSR_MODE_EL0t 0x00000000
     24 #define PSR_MODE_EL1t 0x00000004
     25 #define PSR_MODE_EL1h 0x00000005
     26 #define PSR_MODE_EL2t 0x00000008
     27 #define PSR_MODE_EL2h 0x00000009
     28 #define PSR_MODE_EL3t 0x0000000c
     29 #define PSR_MODE_EL3h 0x0000000d
     30 #define PSR_MODE_MASK 0x0000000f
     31 #define PSR_MODE32_BIT 0x00000010
     32 #define PSR_F_BIT 0x00000040
     33 #define PSR_I_BIT 0x00000080
     34 #define PSR_A_BIT 0x00000100
     35 #define PSR_D_BIT 0x00000200
     36 #define PSR_PAN_BIT 0x00400000
     37 #define PSR_UAO_BIT 0x00800000
     38 #define PSR_Q_BIT 0x08000000
     39 #define PSR_V_BIT 0x10000000
     40 #define PSR_C_BIT 0x20000000
     41 #define PSR_Z_BIT 0x40000000
     42 #define PSR_N_BIT 0x80000000
     43 #define PSR_f 0xff000000
     44 #define PSR_s 0x00ff0000
     45 #define PSR_x 0x0000ff00
     46 #define PSR_c 0x000000ff
     47 #ifndef __ASSEMBLY__
     48 struct user_pt_regs {
     49   __u64 regs[31];
     50   __u64 sp;
     51   __u64 pc;
     52   __u64 pstate;
     53 };
     54 struct user_fpsimd_state {
     55   __uint128_t vregs[32];
     56   __u32 fpsr;
     57   __u32 fpcr;
     58   __u32 __reserved[2];
     59 };
     60 struct user_hwdebug_state {
     61   __u32 dbg_info;
     62   __u32 pad;
     63   struct {
     64     __u64 addr;
     65     __u32 ctrl;
     66     __u32 pad;
     67   } dbg_regs[16];
     68 };
     69 #endif
     70 #endif
     71