kgdb.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * kgdb support for ARC
  3. *
  4. * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef __ARC_KGDB_H__
  11. #define __ARC_KGDB_H__
  12. #ifdef CONFIG_KGDB
  13. #include <asm/ptrace.h>
  14. /* to ensure compatibility with Linux 2.6.35, we don't implement the get/set
  15. * register API yet */
  16. #undef DBG_MAX_REG_NUM
  17. #define GDB_MAX_REGS 39
  18. #define BREAK_INSTR_SIZE 2
  19. #define CACHE_FLUSH_IS_SAFE 1
  20. #define NUMREGBYTES (GDB_MAX_REGS * 4)
  21. #define BUFMAX 2048
  22. static inline void arch_kgdb_breakpoint(void)
  23. {
  24. __asm__ __volatile__ ("trap_s 0x4\n");
  25. }
  26. extern void kgdb_trap(struct pt_regs *regs, int param);
  27. enum arc700_linux_regnums {
  28. _R0 = 0,
  29. _R1, _R2, _R3, _R4, _R5, _R6, _R7, _R8, _R9, _R10, _R11, _R12, _R13,
  30. _R14, _R15, _R16, _R17, _R18, _R19, _R20, _R21, _R22, _R23, _R24,
  31. _R25, _R26,
  32. _BTA = 27,
  33. _LP_START = 28,
  34. _LP_END = 29,
  35. _LP_COUNT = 30,
  36. _STATUS32 = 31,
  37. _BLINK = 32,
  38. _FP = 33,
  39. __SP = 34,
  40. _EFA = 35,
  41. _RET = 36,
  42. _ORIG_R8 = 37,
  43. _STOP_PC = 38
  44. };
  45. #else
  46. #define kgdb_trap(regs, param)
  47. #endif
  48. #endif /* __ARC_KGDB_H__ */