ptrace.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. #ifndef _ASM_M32R_PTRACE_H
  2. #define _ASM_M32R_PTRACE_H
  3. /*
  4. * linux/include/asm-m32r/ptrace.h
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. *
  10. * M32R version:
  11. * Copyright (C) 2001-2002, 2004 Hirokazu Takata <takata at linux-m32r.org>
  12. */
  13. #include <linux/config.h>
  14. #include <asm/m32r.h> /* M32R_PSW_BSM, M32R_PSW_BPM */
  15. /* 0 - 13 are integer registers (general purpose registers). */
  16. #define PT_R4 0
  17. #define PT_R5 1
  18. #define PT_R6 2
  19. #define PT_REGS 3
  20. #define PT_R0 4
  21. #define PT_R1 5
  22. #define PT_R2 6
  23. #define PT_R3 7
  24. #define PT_R7 8
  25. #define PT_R8 9
  26. #define PT_R9 10
  27. #define PT_R10 11
  28. #define PT_R11 12
  29. #define PT_R12 13
  30. #define PT_SYSCNR 14
  31. #define PT_R13 PT_FP
  32. #define PT_R14 PT_LR
  33. #define PT_R15 PT_SP
  34. /* processor status and miscellaneous context registers. */
  35. #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
  36. #define PT_ACC0H 15
  37. #define PT_ACC0L 16
  38. #define PT_ACC1H 17
  39. #define PT_ACC1L 18
  40. #define PT_ACCH PT_ACC0H
  41. #define PT_ACCL PT_ACC0L
  42. #define PT_PSW 19
  43. #define PT_BPC 20
  44. #define PT_BBPSW 21
  45. #define PT_BBPC 22
  46. #define PT_SPU 23
  47. #define PT_FP 24
  48. #define PT_LR 25
  49. #define PT_SPI 26
  50. #define PT_ORIGR0 27
  51. #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
  52. #define PT_ACCH 15
  53. #define PT_ACCL 16
  54. #define PT_PSW 17
  55. #define PT_BPC 18
  56. #define PT_BBPSW 19
  57. #define PT_BBPC 20
  58. #define PT_SPU 21
  59. #define PT_FP 22
  60. #define PT_LR 23
  61. #define PT_SPI 24
  62. #define PT_ORIGR0 25
  63. #else
  64. #error unknown isa conifiguration
  65. #endif
  66. /* virtual pt_reg entry for gdb */
  67. #define PT_PC 30
  68. #define PT_CBR 31
  69. #define PT_EVB 32
  70. /* Control registers. */
  71. #define SPR_CR0 PT_PSW
  72. #define SPR_CR1 PT_CBR /* read only */
  73. #define SPR_CR2 PT_SPI
  74. #define SPR_CR3 PT_SPU
  75. #define SPR_CR4
  76. #define SPR_CR5 PT_EVB /* part of M32R/E, M32R/I core only */
  77. #define SPR_CR6 PT_BPC
  78. #define SPR_CR7
  79. #define SPR_CR8 PT_BBPSW
  80. #define SPR_CR9
  81. #define SPR_CR10
  82. #define SPR_CR11
  83. #define SPR_CR12
  84. #define SPR_CR13 PT_WR
  85. #define SPR_CR14 PT_BBPC
  86. #define SPR_CR15
  87. /* this struct defines the way the registers are stored on the
  88. stack during a system call. */
  89. struct pt_regs {
  90. /* Saved main processor registers. */
  91. unsigned long r4;
  92. unsigned long r5;
  93. unsigned long r6;
  94. struct pt_regs *pt_regs;
  95. unsigned long r0;
  96. unsigned long r1;
  97. unsigned long r2;
  98. unsigned long r3;
  99. unsigned long r7;
  100. unsigned long r8;
  101. unsigned long r9;
  102. unsigned long r10;
  103. unsigned long r11;
  104. unsigned long r12;
  105. long syscall_nr;
  106. /* Saved main processor status and miscellaneous context registers. */
  107. #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
  108. unsigned long acc0h;
  109. unsigned long acc0l;
  110. unsigned long acc1h;
  111. unsigned long acc1l;
  112. #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
  113. unsigned long acch;
  114. unsigned long accl;
  115. #else
  116. #error unknown isa configuration
  117. #endif
  118. unsigned long psw;
  119. unsigned long bpc; /* saved PC for TRAP syscalls */
  120. unsigned long bbpsw;
  121. unsigned long bbpc;
  122. unsigned long spu; /* saved user stack */
  123. unsigned long fp;
  124. unsigned long lr; /* saved PC for JL syscalls */
  125. unsigned long spi; /* saved kernel stack */
  126. unsigned long orig_r0;
  127. };
  128. /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
  129. #define PTRACE_GETREGS 12
  130. #define PTRACE_SETREGS 13
  131. #define PTRACE_OLDSETOPTIONS 21
  132. /* options set using PTRACE_SETOPTIONS */
  133. #define PTRACE_O_TRACESYSGOOD 0x00000001
  134. #ifdef __KERNEL__
  135. #define __ARCH_SYS_PTRACE 1
  136. #if defined(CONFIG_ISA_M32R2) || defined(CONFIG_CHIP_VDEC2)
  137. #define user_mode(regs) ((M32R_PSW_BPM & (regs)->psw) != 0)
  138. #elif defined(CONFIG_ISA_M32R)
  139. #define user_mode(regs) ((M32R_PSW_BSM & (regs)->psw) != 0)
  140. #else
  141. #error unknown isa configuration
  142. #endif
  143. #define instruction_pointer(regs) ((regs)->bpc)
  144. #define profile_pc(regs) instruction_pointer(regs)
  145. extern void show_regs(struct pt_regs *);
  146. extern void withdraw_debug_trap(struct pt_regs *regs);
  147. #define task_pt_regs(task) \
  148. ((struct pt_regs *)(task_stack_page(task) + THREAD_SIZE) - 1)
  149. #endif /* __KERNEL */
  150. #endif /* _ASM_M32R_PTRACE_H */