kdebug.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: kdebug.h,v 1.11 2000/06/04 06:23:53 anton Exp $
  2.  * kdebug.h:  Defines and definitions for debugging the Linux kernel
  3.  *            under various kernel debuggers.
  4.  *
  5.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  6.  */
  7. #ifndef _SPARC_KDEBUG_H
  8. #define _SPARC_KDEBUG_H
  9. #include <asm/openprom.h>
  10. #include <asm/vaddrs.h>
  11. /* Breakpoints are enter through trap table entry 126.  So in sparc assembly
  12.  * if you want to drop into the debugger you do:
  13.  *
  14.  * t DEBUG_BP_TRAP
  15.  */
  16. #define DEBUG_BP_TRAP     126
  17. #ifndef __ASSEMBLY__
  18. /* The debug vector is passed in %o1 at boot time.  It is a pointer to
  19.  * a structure in the debuggers address space.  Here is its format.
  20.  */
  21. typedef unsigned int (*debugger_funct)(void);
  22. struct kernel_debug {
  23. /* First the entry point into the debugger.  You jump here
  24.  * to give control over to the debugger.
  25.  */
  26. unsigned long kdebug_entry;
  27. unsigned long kdebug_trapme;   /* Figure out later... */
  28. /* The following is the number of pages that the debugger has
  29.  * taken from to total pool.
  30.  */
  31. unsigned long *kdebug_stolen_pages;
  32. /* Ok, after you remap yourself and/or change the trap table
  33.  * from what you were left with at boot time you have to call
  34.  * this synchronization function so the debugger can check out
  35.  * what you have done.
  36.  */
  37. debugger_funct teach_debugger;
  38. }; /* I think that is it... */
  39. extern struct kernel_debug *linux_dbvec;
  40. /* Use this macro in C-code to enter the debugger. */
  41. extern __inline__ void sp_enter_debugger(void)
  42. {
  43. __asm__ __volatile__("jmpl %0, %%o7nt"
  44.      "nopnt" : :
  45.      "r" (linux_dbvec) : "o7", "memory");
  46. }
  47. #define SP_ENTER_DEBUGGER do { 
  48.      if((linux_dbvec!=0) && ((*(short *)linux_dbvec)!=-1)) 
  49.        sp_enter_debugger(); 
  50.        } while(0)
  51. #endif /* !(__ASSEMBLY__) */
  52. /* Some nice offset defines for assembler code. */
  53. #define KDEBUG_ENTRY_OFF    0x0
  54. #define KDEBUG_DUNNO_OFF    0x4
  55. #define KDEBUG_DUNNO2_OFF   0x8
  56. #define KDEBUG_TEACH_OFF    0xc
  57. #endif /* !(_SPARC_KDEBUG_H) */