kgdb.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * kgdb support for ARC
  4. *
  5. * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
  6. */
  7. #ifndef __ARC_KGDB_H__
  8. #define __ARC_KGDB_H__
  9. #ifdef CONFIG_KGDB
  10. #include <asm/ptrace.h>
  11. /* to ensure compatibility with Linux 2.6.35, we don't implement the get/set
  12. * register API yet */
  13. #undef DBG_MAX_REG_NUM
  14. #define GDB_MAX_REGS 87
  15. #define BREAK_INSTR_SIZE 2
  16. #define CACHE_FLUSH_IS_SAFE 1
  17. #define NUMREGBYTES (GDB_MAX_REGS * 4)
  18. #define BUFMAX 2048
  19. static inline void arch_kgdb_breakpoint(void)
  20. {
  21. __asm__ __volatile__ ("trap_s 0x4\n");
  22. }
  23. extern void kgdb_trap(struct pt_regs *regs);
  24. /* This is the numbering of registers according to the GDB. See GDB's
  25. * arc-tdep.h for details.
  26. *
  27. * Registers are ordered for GDB 7.5. It is incompatible with GDB 6.8. */
  28. enum arc_linux_regnums {
  29. _R0 = 0,
  30. _R1, _R2, _R3, _R4, _R5, _R6, _R7, _R8, _R9, _R10, _R11, _R12, _R13,
  31. _R14, _R15, _R16, _R17, _R18, _R19, _R20, _R21, _R22, _R23, _R24,
  32. _R25, _R26,
  33. _FP = 27,
  34. __SP = 28,
  35. _R30 = 30,
  36. _BLINK = 31,
  37. _LP_COUNT = 60,
  38. _STOP_PC = 64,
  39. _RET = 64,
  40. _LP_START = 65,
  41. _LP_END = 66,
  42. _STATUS32 = 67,
  43. _ECR = 76,
  44. _BTA = 82,
  45. };
  46. #else
  47. #define kgdb_trap(regs)
  48. #endif
  49. #endif /* __ARC_KGDB_H__ */