kgdb.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:52k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*!**************************************************************************
  2. *!
  3. *! FILE NAME  : kgdb.c
  4. *!
  5. *! DESCRIPTION: Implementation of the gdb stub with respect to ETRAX 100.
  6. *!              It is a mix of arch/m68k/kernel/kgdb.c and cris_stub.c.
  7. *!
  8. *!---------------------------------------------------------------------------
  9. *! HISTORY
  10. *!
  11. *! DATE         NAME            CHANGES
  12. *! ----         ----            -------
  13. *! Apr 26 1999  Hendrik Ruijter Initial version.
  14. *! May  6 1999  Hendrik Ruijter Removed call to strlen in libc and removed
  15. *!                              struct assignment as it generates calls to
  16. *!                              memcpy in libc.
  17. *! Jun 17 1999  Hendrik Ruijter Added gdb 4.18 support. 'X', 'qC' and 'qL'.
  18. *! Jul 21 1999  Bjorn Wesen     eLinux port
  19. *!
  20. *! $Log: kgdb.c,v $
  21. *! Revision 1.7  2002/07/12 09:14:56  bjornw
  22. *! Corrected typo
  23. *!
  24. *! Revision 1.6  2001/10/09 13:10:03  matsfg
  25. *! Added $ on registers and removed some underscores
  26. *!
  27. *! Revision 1.5  2001/04/17 13:58:39  orjanf
  28. *! * Renamed CONFIG_KGDB to CONFIG_ETRAX_KGDB.
  29. *!
  30. *! Revision 1.4  2001/02/23 13:45:19  bjornw
  31. *! config.h check
  32. *!
  33. *! Revision 1.3  2001/01/31 18:08:23  orjanf
  34. *! Removed kgdb_handle_breakpoint from being the break 8 handler.
  35. *!
  36. *! Revision 1.2  2001/01/12 14:22:25  orjanf
  37. *! Updated kernel debugging support to work with ETRAX 100LX.
  38. *!
  39. *! Revision 1.1  2000/07/10 16:25:21  bjornw
  40. *! Initial revision
  41. *!
  42. *! Revision 1.1.1.1  1999/12/03 14:57:31  bjornw
  43. *! * Initial version of arch/cris, the latest CRIS architecture with an MMU.
  44. *!   Mostly copied from arch/etrax100 with appropriate renames of files.
  45. *!   The mm/ subdir is copied from arch/i386.
  46. *!   This does not compile yet at all.
  47. *!
  48. *!
  49. *! Revision 1.4  1999/07/22 17:25:25  bjornw
  50. *! Dont wait for + in putpacket if we havent hit the initial breakpoint yet. Added a kgdb_init function which sets up the break and irq vectors.
  51. *!
  52. *! Revision 1.3  1999/07/21 19:51:18  bjornw
  53. *! Check if the interrupting char is a ctrl-C, ignore otherwise.
  54. *!
  55. *! Revision 1.2  1999/07/21 18:09:39  bjornw
  56. *! Ported to eLinux architecture, and added some kgdb documentation.
  57. *!
  58. *!
  59. *!---------------------------------------------------------------------------
  60. *!
  61. *! $Id: kgdb.c,v 1.7 2002/07/12 09:14:56 bjornw Exp $
  62. *!
  63. *! (C) Copyright 1999, Axis Communications AB, LUND, SWEDEN
  64. *!
  65. *!**************************************************************************/
  66. /* @(#) cris_stub.c 1.3 06/17/99 */
  67. /*
  68.  *  kgdb usage notes:
  69.  *  -----------------
  70.  *
  71.  * If you select CONFIG_ETRAX_KGDB in the configuration, the kernel will be 
  72.  * built with different gcc flags: "-g" is added to get debug infos, and
  73.  * "-fomit-frame-pointer" is omitted to make debugging easier. Since the
  74.  * resulting kernel will be quite big (approx. > 7 MB), it will be stripped
  75.  * before compresion. Such a kernel will behave just as usually, except if
  76.  * given a "debug=<device>" command line option. (Only serial devices are
  77.  * allowed for <device>, i.e. no printers or the like; possible values are
  78.  * machine depedend and are the same as for the usual debug device, the one
  79.  * for logging kernel messages.) If that option is given and the device can be
  80.  * initialized, the kernel will connect to the remote gdb in trap_init(). The
  81.  * serial parameters are fixed to 8N1 and 115200 bps, for easyness of
  82.  * implementation.
  83.  *
  84.  * To start a debugging session, start that gdb with the debugging kernel
  85.  * image (the one with the symbols, vmlinux.debug) named on the command line.
  86.  * This file will be used by gdb to get symbol and debugging infos about the
  87.  * kernel. Next, select remote debug mode by
  88.  *    target remote <device>
  89.  * where <device> is the name of the serial device over which the debugged
  90.  * machine is connected. Maybe you have to adjust the baud rate by
  91.  *    set remotebaud <rate>
  92.  * or also other parameters with stty:
  93.  *    shell stty ... </dev/...
  94.  * If the kernel to debug has already booted, it waited for gdb and now
  95.  * connects, and you'll see a breakpoint being reported. If the kernel isn't
  96.  * running yet, start it now. The order of gdb and the kernel doesn't matter.
  97.  * Another thing worth knowing about in the getting-started phase is how to
  98.  * debug the remote protocol itself. This is activated with
  99.  *    set remotedebug 1
  100.  * gdb will then print out each packet sent or received. You'll also get some
  101.  * messages about the gdb stub on the console of the debugged machine.
  102.  *
  103.  * If all that works, you can use lots of the usual debugging techniques on
  104.  * the kernel, e.g. inspecting and changing variables/memory, setting
  105.  * breakpoints, single stepping and so on. It's also possible to interrupt the
  106.  * debugged kernel by pressing C-c in gdb. Have fun! :-)
  107.  *
  108.  * The gdb stub is entered (and thus the remote gdb gets control) in the
  109.  * following situations:
  110.  *
  111.  *  - If breakpoint() is called. This is just after kgdb initialization, or if
  112.  *    a breakpoint() call has been put somewhere into the kernel source.
  113.  *    (Breakpoints can of course also be set the usual way in gdb.)
  114.  *    In eLinux, we call breakpoint() in init/main.c after IRQ initialization.
  115.  *
  116.  *  - If there is a kernel exception, i.e. bad_super_trap() or die_if_kernel()
  117.  *    are entered. All the CPU exceptions are mapped to (more or less..., see
  118.  *    the hard_trap_info array below) appropriate signal, which are reported
  119.  *    to gdb. die_if_kernel() is usually called after some kind of access
  120.  *    error and thus is reported as SIGSEGV.
  121.  *
  122.  *  - When panic() is called. This is reported as SIGABRT.
  123.  *
  124.  *  - If C-c is received over the serial line, which is treated as
  125.  *    SIGINT.
  126.  *
  127.  * Of course, all these signals are just faked for gdb, since there is no
  128.  * signal concept as such for the kernel. It also isn't possible --obviously--
  129.  * to set signal handlers from inside gdb, or restart the kernel with a
  130.  * signal.
  131.  *
  132.  * Current limitations:
  133.  *
  134.  *  - While the kernel is stopped, interrupts are disabled for safety reasons
  135.  *    (i.e., variables not changing magically or the like). But this also
  136.  *    means that the clock isn't running anymore, and that interrupts from the
  137.  *    hardware may get lost/not be served in time. This can cause some device
  138.  *    errors...
  139.  *
  140.  *  - When single-stepping, only one instruction of the current thread is
  141.  *    executed, but interrupts are allowed for that time and will be serviced
  142.  *    if pending. Be prepared for that.
  143.  *
  144.  *  - All debugging happens in kernel virtual address space. There's no way to
  145.  *    access physical memory not mapped in kernel space, or to access user
  146.  *    space. A way to work around this is using get_user_long & Co. in gdb
  147.  *    expressions, but only for the current process.
  148.  *
  149.  *  - Interrupting the kernel only works if interrupts are currently allowed,
  150.  *    and the interrupt of the serial line isn't blocked by some other means
  151.  *    (IPL too high, disabled, ...)
  152.  *
  153.  *  - The gdb stub is currently not reentrant, i.e. errors that happen therein
  154.  *    (e.g. accesing invalid memory) may not be caught correctly. This could
  155.  *    be removed in future by introducing a stack of struct registers.
  156.  *
  157.  */
  158. /*
  159.  *  To enable debugger support, two things need to happen.  One, a
  160.  *  call to kgdb_init() is necessary in order to allow any breakpoints
  161.  *  or error conditions to be properly intercepted and reported to gdb.
  162.  *  Two, a breakpoint needs to be generated to begin communication.  This
  163.  *  is most easily accomplished by a call to breakpoint(). 
  164.  *
  165.  *    The following gdb commands are supported:
  166.  *
  167.  * command          function                               Return value
  168.  *
  169.  *    g             return the value of the CPU registers  hex data or ENN
  170.  *    G             set the value of the CPU registers     OK or ENN
  171.  *
  172.  *    mAA..AA,LLLL  Read LLLL bytes at address AA..AA      hex data or ENN
  173.  *    MAA..AA,LLLL: Write LLLL bytes at address AA.AA      OK or ENN
  174.  *
  175.  *    c             Resume at current address              SNN   ( signal NN)
  176.  *    cAA..AA       Continue at address AA..AA             SNN
  177.  *
  178.  *    s             Step one instruction                   SNN
  179.  *    sAA..AA       Step one instruction from AA..AA       SNN
  180.  *
  181.  *    k             kill
  182.  *
  183.  *    ?             What was the last sigval ?             SNN   (signal NN)
  184.  *
  185.  *    bBB..BB     Set baud rate to BB..BB    OK or BNN, then sets
  186.  *    baud rate
  187.  *
  188.  * All commands and responses are sent with a packet which includes a
  189.  * checksum.  A packet consists of
  190.  *
  191.  * $<packet info>#<checksum>.
  192.  *
  193.  * where
  194.  * <packet info> :: <characters representing the command or response>
  195.  * <checksum>    :: < two hex digits computed as modulo 256 sum of <packetinfo>>
  196.  *
  197.  * When a packet is received, it is first acknowledged with either '+' or '-'.
  198.  * '+' indicates a successful transfer.  '-' indicates a failed transfer.
  199.  *
  200.  * Example:
  201.  *
  202.  * Host:                  Reply:
  203.  * $m0,10#2a               +$00010203040506070809101112131415#42
  204.  *
  205.  */
  206. #include <linux/string.h>
  207. #include <linux/signal.h>
  208. #include <linux/kernel.h>
  209. #include <linux/delay.h>
  210. #include <linux/linkage.h>
  211. #include <asm/setup.h>
  212. #include <asm/ptrace.h>
  213. #include <asm/svinto.h>
  214. #include <asm/irq.h>
  215. static int kgdb_started = 0;
  216. /********************************* Register image ****************************/
  217. /* Use the order of registers as defined in "AXIS ETRAX CRIS Programmer's
  218.    Reference", p. 1-1, with the additional register definitions of the
  219.    ETRAX 100LX in cris-opc.h.
  220.    There are 16 general 32-bit registers, R0-R15, where R14 is the stack
  221.    pointer, SP, and R15 is the program counter, PC.
  222.    There are 16 special registers, P0-P15, where three of the unimplemented
  223.    registers, P0, P4 and P8, are reserved as zero-registers. A read from
  224.    any of these registers returns zero and a write has no effect. */
  225. typedef
  226. struct register_image
  227. {
  228. /* Offset */
  229. unsigned int     r0;   /* 0x00 */
  230. unsigned int     r1;   /* 0x04 */
  231. unsigned int     r2;   /* 0x08 */
  232. unsigned int     r3;   /* 0x0C */
  233. unsigned int     r4;   /* 0x10 */
  234. unsigned int     r5;   /* 0x14 */
  235. unsigned int     r6;   /* 0x18 */
  236. unsigned int     r7;   /* 0x1C */
  237. unsigned int     r8;   /* 0x20 Frame pointer */
  238. unsigned int     r9;   /* 0x24 */
  239. unsigned int    r10;   /* 0x28 */
  240. unsigned int    r11;   /* 0x2C */
  241. unsigned int    r12;   /* 0x30 */
  242. unsigned int    r13;   /* 0x34 */
  243. unsigned int     sp;   /* 0x38 Stack pointer */
  244. unsigned int     pc;   /* 0x3C Program counter */
  245.         unsigned char    p0;   /* 0x40 8-bit zero-register */
  246. unsigned char    vr;   /* 0x41 Version register */
  247.         unsigned short   p4;   /* 0x42 16-bit zero-register */
  248. unsigned short  ccr;   /* 0x44 Condition code register */
  249. unsigned int    mof;   /* 0x46 Multiply overflow register */
  250.         unsigned int     p8;   /* 0x4A 32-bit zero-register */
  251. unsigned int    ibr;   /* 0x4E Interrupt base register */
  252. unsigned int    irp;   /* 0x52 Interrupt return pointer */
  253. unsigned int    srp;   /* 0x56 Subroutine return pointer */
  254. unsigned int    bar;   /* 0x5A Breakpoint address register */
  255. unsigned int   dccr;   /* 0x5E Double condition code register */
  256. unsigned int    brp;   /* 0x62 Breakpoint return pointer (pc in caller) */
  257. unsigned int    usp;   /* 0x66 User mode stack pointer */
  258. } registers;
  259. /************** Prototypes for local library functions ***********************/
  260. /* Copy of strcpy from libc. */
  261. static char *gdb_cris_strcpy (char *s1, const char *s2);
  262. /* Copy of strlen from libc. */
  263. static int gdb_cris_strlen (const char *s);
  264. /* Copy of memchr from libc. */
  265. static void *gdb_cris_memchr (const void *s, int c, int n);
  266. /* Copy of strtol from libc. Does only support base 16. */
  267. static int gdb_cris_strtol (const char *s, char **endptr, int base);
  268. /********************** Prototypes for local functions. **********************/
  269. /* Copy the content of a register image into another. The size n is
  270.    the size of the register image. Due to struct assignment generation of
  271.    memcpy in libc. */
  272. static void copy_registers (registers *dptr, registers *sptr, int n);
  273. /* Copy the stored registers from the stack. Put the register contents
  274.    of thread thread_id in the struct reg. */
  275. static void copy_registers_from_stack (int thread_id, registers *reg);
  276. /* Copy the registers to the stack. Put the register contents of thread
  277.    thread_id from struct reg to the stack. */
  278. static void copy_registers_to_stack (int thread_id, registers *reg);
  279. /* Write a value to a specified register regno in the register image
  280.    of the current thread. */
  281. static int write_register (int regno, char *val);
  282. /* Write a value to a specified register in the stack of a thread other
  283.    than the current thread. */
  284. static write_stack_register (int thread_id, int regno, char *valptr);
  285. /* Read a value from a specified register in the register image. Returns the
  286.    status of the read operation. The register value is returned in valptr. */
  287. static int read_register (char regno, unsigned int *valptr);
  288. /* Serial port, reads one character. ETRAX 100 specific. from debugport.c */
  289. int getDebugChar (void);
  290. /* Serial port, writes one character. ETRAX 100 specific. from debugport.c */
  291. void putDebugChar (int val);
  292. void enableDebugIRQ (void);
  293. /* Returns the character equivalent of a nibble, bit 7, 6, 5, and 4 of a byte,
  294.    represented by int x. */
  295. static char highhex (int x);
  296. /* Returns the character equivalent of a nibble, bit 3, 2, 1, and 0 of a byte,
  297.    represented by int x. */
  298. static char lowhex (int x);
  299. /* Returns the integer equivalent of a hexadecimal character. */
  300. static int hex (char ch);
  301. /* Convert the memory, pointed to by mem into hexadecimal representation.
  302.    Put the result in buf, and return a pointer to the last character
  303.    in buf (null). */
  304. static char *mem2hex (char *buf, unsigned char *mem, int count);
  305. /* Convert the array, in hexadecimal representation, pointed to by buf into
  306.    binary representation. Put the result in mem, and return a pointer to
  307.    the character after the last byte written. */
  308. static unsigned char *hex2mem (unsigned char *mem, char *buf, int count);
  309. /* Put the content of the array, in binary representation, pointed to by buf
  310.    into memory pointed to by mem, and return a pointer to
  311.    the character after the last byte written. */
  312. static unsigned char *bin2mem (unsigned char *mem, unsigned char *buf, int count);
  313. /* Await the sequence $<data>#<checksum> and store <data> in the array buffer
  314.    returned. */
  315. static void getpacket (char *buffer);
  316. /* Send $<data>#<checksum> from the <data> in the array buffer. */
  317. static void putpacket (char *buffer);
  318. /* Build and send a response packet in order to inform the host the
  319.    stub is stopped. */
  320. static void stub_is_stopped (int sigval);
  321. /* All expected commands are sent from remote.c. Send a response according
  322.    to the description in remote.c. */
  323. static void handle_exception (int sigval);
  324. /* Performs a complete re-start from scratch. ETRAX specific. */
  325. static void kill_restart (void);
  326. /******************** Prototypes for global functions. ***********************/
  327. /* The string str is prepended with the GDB printout token and sent. */
  328. void putDebugString (const unsigned char *str, int length); /* used by etrax100ser.c */
  329. /* The hook for both static (compiled) and dynamic breakpoints set by GDB.
  330.    ETRAX 100 specific. */
  331. void handle_breakpoint (void);                          /* used by irq.c */
  332. /* The hook for an interrupt generated by GDB. ETRAX 100 specific. */
  333. void handle_interrupt (void);                           /* used by irq.c */
  334. /* A static breakpoint to be used at startup. */
  335. void breakpoint (void);                                 /* called by init/main.c */
  336. /* From osys_int.c, executing_task contains the number of the current
  337.    executing task in osys. Does not know of object-oriented threads. */
  338. extern unsigned char executing_task;
  339. /* The number of characters used for a 64 bit thread identifier. */
  340. #define HEXCHARS_IN_THREAD_ID 16
  341. /* Avoid warning as the internal_stack is not used in the C-code. */
  342. #define USEDVAR(name)    { if (name) { ; } }
  343. #define USEDFUN(name) { void (*pf)(void) = (void *)name; USEDVAR(pf) }
  344. /********************************** Packet I/O ******************************/
  345. /* BUFMAX defines the maximum number of characters in
  346.    inbound/outbound buffers */
  347. #define BUFMAX 512
  348. /* Run-length encoding maximum length. Send 64 at most. */
  349. #define RUNLENMAX 64
  350. /* Definition of all valid hexadecimal characters */
  351. static const char hexchars[] = "0123456789abcdef";
  352. /* The inbound/outbound buffers used in packet I/O */
  353. static char remcomInBuffer[BUFMAX];
  354. static char remcomOutBuffer[BUFMAX];
  355. /* Error and warning messages. */
  356. enum error_type
  357. {
  358. SUCCESS, E01, E02, E03, E04, E05, E06, E07
  359. };
  360. static char *error_message[] =
  361. {
  362. "",
  363. "E01 Set current or general thread - H[c,g] - internal error.",
  364. "E02 Change register content - P - cannot change read-only register.",
  365. "E03 Thread is not alive.", /* T, not used. */
  366. "E04 The command is not supported - [s,C,S,!,R,d,r] - internal error.",
  367. "E05 Change register content - P - the register is not implemented..",
  368. "E06 Change memory content - M - internal error.",
  369. "E07 Change register content - P - the register is not stored on the stack"
  370. };
  371. /********************************* Register image ****************************/
  372. /* Use the order of registers as defined in "AXIS ETRAX CRIS Programmer's
  373.    Reference", p. 1-1, with the additional register definitions of the
  374.    ETRAX 100LX in cris-opc.h.
  375.    There are 16 general 32-bit registers, R0-R15, where R14 is the stack
  376.    pointer, SP, and R15 is the program counter, PC.
  377.    There are 16 special registers, P0-P15, where three of the unimplemented
  378.    registers, P0, P4 and P8, are reserved as zero-registers. A read from
  379.    any of these registers returns zero and a write has no effect. */
  380. enum register_name
  381. {
  382. R0,  R1,   R2,  R3,
  383. R4,  R5,   R6,  R7,
  384. R8,  R9,   R10, R11,
  385. R12, R13,  SP,  PC,
  386. P0,  VR,   P2,  P3,
  387. P4,  CCR,  P6,  MOF,
  388. P8,  IBR,  IRP, SRP,
  389. BAR, DCCR, BRP, USP
  390. };
  391. /* The register sizes of the registers in register_name. An unimplemented register
  392.    is designated by size 0 in this array. */
  393. static int register_size[] =
  394. {
  395. 4, 4, 4, 4,
  396. 4, 4, 4, 4,
  397. 4, 4, 4, 4,
  398. 4, 4, 4, 4,
  399. 1, 1, 0, 0,
  400. 2, 2, 0, 4,
  401. 4, 4, 4, 4,
  402. 4, 4, 4, 4
  403. };
  404. /* Contains the register image of the executing thread in the assembler
  405.    part of the code in order to avoid horrible addressing modes. */
  406. static registers reg;
  407. /* FIXME: Should this be used? Delete otherwise. */
  408. /* Contains the assumed consistency state of the register image. Uses the
  409.    enum error_type for state information. */
  410. static int consistency_status = SUCCESS;
  411. /********************************** Handle exceptions ************************/
  412. /* The variable reg contains the register image associated with the
  413.    current_thread_c variable. It is a complete register image created at
  414.    entry. The reg_g contains a register image of a task where the general
  415.    registers are taken from the stack and all special registers are taken
  416.    from the executing task. It is associated with current_thread_g and used
  417.    in order to provide access mainly for 'g', 'G' and 'P'.
  418. */
  419. /* Need two task id pointers in order to handle Hct and Hgt commands. */
  420. static int current_thread_c = 0;
  421. static int current_thread_g = 0;
  422. /* Need two register images in order to handle Hct and Hgt commands. The
  423.    variable reg_g is in addition to reg above. */
  424. static registers reg_g;
  425. /********************************** Breakpoint *******************************/
  426. /* Use an internal stack in the breakpoint and interrupt response routines */
  427. #define INTERNAL_STACK_SIZE 1024
  428. static char internal_stack[INTERNAL_STACK_SIZE];
  429. /* Due to the breakpoint return pointer, a state variable is needed to keep
  430.    track of whether it is a static (compiled) or dynamic (gdb-invoked)
  431.    breakpoint to be handled. A static breakpoint uses the content of register
  432.    BRP as it is whereas a dynamic breakpoint requires subtraction with 2
  433.    in order to execute the instruction. The first breakpoint is static. */
  434. static unsigned char is_dyn_brkp = 0;
  435. /********************************* String library ****************************/
  436. /* Single-step over library functions creates trap loops. */
  437. /* Copy char s2[] to s1[]. */
  438. static char*
  439. gdb_cris_strcpy (char *s1, const char *s2)
  440. {
  441. char *s = s1;
  442. for (s = s1; (*s++ = *s2++) != ''; )
  443. ;
  444. return (s1);
  445. }
  446. /* Find length of s[]. */
  447. static int
  448. gdb_cris_strlen (const char *s)
  449. {
  450. const char *sc;
  451. for (sc = s; *sc != ''; sc++)
  452. ;
  453. return (sc - s);
  454. }
  455. /* Find first occurrence of c in s[n]. */
  456. static void*
  457. gdb_cris_memchr (const void *s, int c, int n)
  458. {
  459. const unsigned char uc = c;
  460. const unsigned char *su;
  461. for (su = s; 0 < n; ++su, --n)
  462. if (*su == uc)
  463. return ((void *)su);
  464. return (NULL);
  465. }
  466. /******************************* Standard library ****************************/
  467. /* Single-step over library functions creates trap loops. */
  468. /* Convert string to long. */
  469. static int
  470. gdb_cris_strtol (const char *s, char **endptr, int base)
  471. {
  472. char *s1;
  473. char *sd;
  474. int x = 0;
  475. for (s1 = (char*)s; (sd = gdb_cris_memchr(hexchars, *s1, base)) != NULL; ++s1)
  476. x = x * base + (sd - hexchars);
  477.         
  478.         if (endptr)
  479.         {
  480.                 /* Unconverted suffix is stored in endptr unless endptr is NULL. */
  481.                 *endptr = s1;
  482.         }
  483.         
  484. return x;
  485. }
  486. int
  487. double_this(int x)
  488. {
  489.         return 2 * x;
  490. }
  491. /********************************* Register image ****************************/
  492. /* Copy the content of a register image into another. The size n is
  493.    the size of the register image. Due to struct assignment generation of
  494.    memcpy in libc. */
  495. static void
  496. copy_registers (registers *dptr, registers *sptr, int n)
  497. {
  498. unsigned char *dreg;
  499. unsigned char *sreg;
  500. for (dreg = (unsigned char*)dptr, sreg = (unsigned char*)sptr; n > 0; n--)
  501. *dreg++ = *sreg++;
  502. }
  503. #ifdef PROCESS_SUPPORT
  504. /* Copy the stored registers from the stack. Put the register contents
  505.    of thread thread_id in the struct reg. */
  506. static void
  507. copy_registers_from_stack (int thread_id, registers *regptr)
  508. {
  509. int j;
  510. stack_registers *s = (stack_registers *)stack_list[thread_id];
  511. unsigned int *d = (unsigned int *)regptr;
  512. for (j = 13; j >= 0; j--)
  513. *d++ = s->r[j];
  514. regptr->sp = (unsigned int)stack_list[thread_id];
  515. regptr->pc = s->pc;
  516. regptr->dccr = s->dccr;
  517. regptr->srp = s->srp;
  518. }
  519. /* Copy the registers to the stack. Put the register contents of thread
  520.    thread_id from struct reg to the stack. */
  521. static void
  522. copy_registers_to_stack (int thread_id, registers *regptr)
  523. {
  524. int i;
  525. stack_registers *d = (stack_registers *)stack_list[thread_id];
  526. unsigned int *s = (unsigned int *)regptr;
  527. for (i = 0; i < 14; i++) {
  528. d->r[i] = *s++;
  529. }
  530. d->pc = regptr->pc;
  531. d->dccr = regptr->dccr;
  532. d->srp = regptr->srp;
  533. }
  534. #endif
  535. /* Write a value to a specified register in the register image of the current
  536.    thread. Returns status code SUCCESS, E02 or E05. */
  537. static int
  538. write_register (int regno, char *val)
  539. {
  540. int status = SUCCESS;
  541. registers *current_reg = &reg;
  542.         if (regno >= R0 && regno <= PC) {
  543. /* 32-bit register with simple offset. */
  544. hex2mem ((unsigned char *)current_reg + regno * sizeof(unsigned int),
  545.  val, sizeof(unsigned int));
  546. }
  547.         else if (regno == P0 || regno == VR || regno == P4 || regno == P8) {
  548. /* Do not support read-only registers. */
  549. status = E02;
  550. }
  551.         else if (regno == CCR) {
  552. /* 16 bit register with complex offset. (P4 is read-only, P6 is not implemented, 
  553.                    and P7 (MOF) is 32 bits in ETRAX 100LX. */
  554. hex2mem ((unsigned char *)&(current_reg->ccr) + (regno-CCR) * sizeof(unsigned short),
  555.  val, sizeof(unsigned short));
  556. }
  557. else if (regno >= MOF && regno <= USP) {
  558. /* 32 bit register with complex offset.  (P8 has been taken care of.) */
  559. hex2mem ((unsigned char *)&(current_reg->ibr) + (regno-IBR) * sizeof(unsigned int),
  560.  val, sizeof(unsigned int));
  561.         else {
  562. /* Do not support nonexisting or unimplemented registers (P2, P3, and P6). */
  563. status = E05;
  564. }
  565. return status;
  566. }
  567. #ifdef PROCESS_SUPPORT
  568. /* Write a value to a specified register in the stack of a thread other
  569.    than the current thread. Returns status code SUCCESS or E07. */
  570. static int
  571. write_stack_register (int thread_id, int regno, char *valptr)
  572. {
  573. int status = SUCCESS;
  574. stack_registers *d = (stack_registers *)stack_list[thread_id];
  575. unsigned int val;
  576. hex2mem ((unsigned char *)&val, valptr, sizeof(unsigned int));
  577. if (regno >= R0 && regno < SP) {
  578. d->r[regno] = val;
  579. }
  580. else if (regno == SP) {
  581. stack_list[thread_id] = val;
  582. }
  583. else if (regno == PC) {
  584. d->pc = val;
  585. }
  586. else if (regno == SRP) {
  587. d->srp = val;
  588. }
  589. else if (regno == DCCR) {
  590. d->dccr = val;
  591. }
  592. else {
  593. /* Do not support registers in the current thread. */
  594. status = E07;
  595. }
  596. return status;
  597. }
  598. #endif
  599. /* Read a value from a specified register in the register image. Returns the
  600.    value in the register or -1 for non-implemented registers.
  601.    Should check consistency_status after a call which may be E05 after changes
  602.    in the implementation. */
  603. static int
  604. read_register (char regno, unsigned int *valptr)
  605. {
  606. registers *current_reg = &reg;
  607. if (regno >= R0 && regno <= PC) {
  608. /* 32-bit register with simple offset. */
  609. *valptr = *(unsigned int *)((char *)current_reg + regno * sizeof(unsigned int));
  610.                 return SUCCESS;
  611. }
  612. else if (regno == P0 || regno == VR) {
  613. /* 8 bit register with complex offset. */
  614. *valptr = (unsigned int)(*(unsigned char *)
  615.                                          ((char *)&(current_reg->p0) + (regno-P0) * sizeof(char)));
  616.                 return SUCCESS;
  617. }
  618. else if (regno == P4 || regno == CCR) {
  619. /* 16 bit register with complex offset. */
  620. *valptr = (unsigned int)(*(unsigned short *)
  621.                                          ((char *)&(current_reg->p4) + (regno-P4) * sizeof(unsigned short)));
  622.                 return SUCCESS;
  623. }
  624. else if (regno >= MOF && regno <= USP) {
  625. /* 32 bit register with complex offset. */
  626. *valptr = *(unsigned int *)((char *)&(current_reg->p8)
  627.                                             + (regno-P8) * sizeof(unsigned int));
  628.                 return SUCCESS;
  629. }
  630. else {
  631. /* Do not support nonexisting or unimplemented registers (P2, P3, and P6). */
  632. consistency_status = E05;
  633. return E05;
  634. }
  635. }
  636. /********************************** Packet I/O ******************************/
  637. /* Returns the character equivalent of a nibble, bit 7, 6, 5, and 4 of a byte,
  638.    represented by int x. */
  639. static inline char
  640. highhex(int x)
  641. {
  642. return hexchars[(x >> 4) & 0xf];
  643. }
  644. /* Returns the character equivalent of a nibble, bit 3, 2, 1, and 0 of a byte,
  645.    represented by int x. */
  646. static inline char
  647. lowhex(int x)
  648. {
  649. return hexchars[x & 0xf];
  650. }
  651. /* Returns the integer equivalent of a hexadecimal character. */
  652. static int
  653. hex (char ch)
  654. {
  655. if ((ch >= 'a') && (ch <= 'f'))
  656. return (ch - 'a' + 10);
  657. if ((ch >= '0') && (ch <= '9'))
  658. return (ch - '0');
  659. if ((ch >= 'A') && (ch <= 'F'))
  660. return (ch - 'A' + 10);
  661. return (-1);
  662. }
  663. /* Convert the memory, pointed to by mem into hexadecimal representation.
  664.    Put the result in buf, and return a pointer to the last character
  665.    in buf (null). */
  666. static int do_printk = 0;
  667. static char *
  668. mem2hex(char *buf, unsigned char *mem, int count)
  669. {
  670. int i;
  671. int ch;
  672.         
  673.         if (mem == NULL) {
  674.                 /* Bogus read from m0. FIXME: What constitutes a valid address? */
  675.                 for (i = 0; i < count; i++) {
  676.                         *buf++ = '0';
  677.                         *buf++ = '0';
  678.                 }
  679.         } else {
  680.                 /* Valid mem address. */
  681.                 for (i = 0; i < count; i++) {
  682.                         ch = *mem++;
  683.                         *buf++ = highhex (ch);
  684.                         *buf++ = lowhex (ch);
  685.                 }
  686.         }
  687.         
  688.         /* Terminate properly. */
  689. *buf = '';
  690. return (buf);
  691. }
  692. /* Convert the array, in hexadecimal representation, pointed to by buf into
  693.    binary representation. Put the result in mem, and return a pointer to
  694.    the character after the last byte written. */
  695. static unsigned char*
  696. hex2mem (unsigned char *mem, char *buf, int count)
  697. {
  698. int i;
  699. unsigned char ch;
  700. for (i = 0; i < count; i++) {
  701. ch = hex (*buf++) << 4;
  702. ch = ch + hex (*buf++);
  703. *mem++ = ch;
  704. }
  705. return (mem);
  706. }
  707. /* Put the content of the array, in binary representation, pointed to by buf
  708.    into memory pointed to by mem, and return a pointer to the character after
  709.    the last byte written.
  710.    Gdb will escape $, #, and the escape char (0x7d). */
  711. static unsigned char*
  712. bin2mem (unsigned char *mem, unsigned char *buf, int count)
  713. {
  714. int i;
  715. unsigned char *next;
  716. for (i = 0; i < count; i++) {
  717. /* Check for any escaped characters. Be paranoid and
  718.    only unescape chars that should be escaped. */
  719. if (*buf == 0x7d) {
  720. next = buf + 1;
  721. if (*next == 0x3 || *next == 0x4 || *next == 0x5D) /* #, $, ESC */
  722. {
  723. buf++;
  724. *buf += 0x20;
  725. }
  726. }
  727. *mem++ = *buf++;
  728. }
  729. return (mem);
  730. }
  731. /* Await the sequence $<data>#<checksum> and store <data> in the array buffer
  732.    returned. */
  733. static void
  734. getpacket (char *buffer)
  735. {
  736. unsigned char checksum;
  737. unsigned char xmitcsum;
  738. int i;
  739. int count;
  740. char ch;
  741. do {
  742. while ((ch = getDebugChar ()) != '$')
  743. /* Wait for the start character $ and ignore all other characters */;
  744. checksum = 0;
  745. xmitcsum = -1;
  746. count = 0;
  747. /* Read until a # or the end of the buffer is reached */
  748. while (count < BUFMAX) {
  749. ch = getDebugChar ();
  750. if (ch == '#')
  751. break;
  752. checksum = checksum + ch;
  753. buffer[count] = ch;
  754. count = count + 1;
  755. }
  756. buffer[count] = '';
  757. if (ch == '#') {
  758. xmitcsum = hex (getDebugChar ()) << 4;
  759. xmitcsum += hex (getDebugChar ());
  760. if (checksum != xmitcsum) {
  761. /* Wrong checksum */
  762. putDebugChar ('-');
  763. }
  764. else {
  765. /* Correct checksum */
  766. putDebugChar ('+');
  767. /* If sequence characters are received, reply with them */
  768. if (buffer[2] == ':') {
  769. putDebugChar (buffer[0]);
  770. putDebugChar (buffer[1]);
  771. /* Remove the sequence characters from the buffer */
  772. count = gdb_cris_strlen (buffer);
  773. for (i = 3; i <= count; i++)
  774. buffer[i - 3] = buffer[i];
  775. }
  776. }
  777. }
  778. } while (checksum != xmitcsum);
  779. }
  780. /* Send $<data>#<checksum> from the <data> in the array buffer. */
  781. static void
  782. putpacket(char *buffer)
  783. {
  784. int checksum;
  785. int runlen;
  786. int encode;
  787. do {
  788. char *src = buffer;
  789. putDebugChar ('$');
  790. checksum = 0;
  791. while (*src) {
  792. /* Do run length encoding */
  793. putDebugChar (*src);
  794. checksum += *src;
  795. runlen = 0;
  796. while (runlen < RUNLENMAX && *src == src[runlen]) {
  797. runlen++;
  798. }
  799. if (runlen > 3) {
  800. /* Got a useful amount */
  801. putDebugChar ('*');
  802. checksum += '*';
  803. encode = runlen + ' ' - 4;
  804. putDebugChar (encode);
  805. checksum += encode;
  806. src += runlen;
  807. }
  808. else {
  809. src++;
  810. }
  811. }
  812. putDebugChar ('#');
  813. putDebugChar (highhex (checksum));
  814. putDebugChar (lowhex (checksum));
  815. } while(kgdb_started && (getDebugChar() != '+'));
  816. }
  817. /* The string str is prepended with the GDB printout token and sent. Required
  818.    in traditional implementations. */
  819. void
  820. putDebugString (const unsigned char *str, int length)
  821. {
  822.         remcomOutBuffer[0] = 'O';
  823.         mem2hex(&remcomOutBuffer[1], (unsigned char *)str, length);
  824.         putpacket(remcomOutBuffer);
  825. }
  826. /********************************** Handle exceptions ************************/
  827. /* Build and send a response packet in order to inform the host the
  828.    stub is stopped. TAAn...:r...;n...:r...;n...:r...;
  829.                     AA = signal number
  830.                     n... = register number (hex)
  831.                     r... = register contents
  832.                     n... = `thread'
  833.                     r... = thread process ID.  This is a hex integer.
  834.                     n... = other string not starting with valid hex digit.
  835.                     gdb should ignore this n,r pair and go on to the next.
  836.                     This way we can extend the protocol. */
  837. static void
  838. stub_is_stopped(int sigval)
  839. {
  840. char *ptr = remcomOutBuffer;
  841. int regno;
  842. unsigned int reg_cont;
  843. int status;
  844.         
  845. /* Send trap type (converted to signal) */
  846. *ptr++ = 'T';
  847. *ptr++ = highhex (sigval);
  848. *ptr++ = lowhex (sigval);
  849. /* Send register contents. We probably only need to send the
  850.  * PC, frame pointer and stack pointer here. Other registers will be
  851.  * explicitely asked for. But for now, send all. 
  852.  */
  853. for (regno = R0; regno <= USP; regno++) {
  854. /* Store n...:r...; for the registers in the buffer. */
  855.                 status = read_register (regno, &reg_cont);
  856.                 
  857. if (status == SUCCESS) {
  858.                         
  859.                         *ptr++ = highhex (regno);
  860.                         *ptr++ = lowhex (regno);
  861.                         *ptr++ = ':';
  862.                         ptr = mem2hex(ptr, (unsigned char *)&reg_cont,
  863.                                       register_size[regno]);
  864.                         *ptr++ = ';';
  865.                 }
  866.                 
  867. }
  868. #ifdef PROCESS_SUPPORT
  869. /* Store the registers of the executing thread. Assume that both step,
  870.    continue, and register content requests are with respect to this
  871.    thread. The executing task is from the operating system scheduler. */
  872. current_thread_c = executing_task;
  873. current_thread_g = executing_task;
  874. /* A struct assignment translates into a libc memcpy call. Avoid
  875.    all libc functions in order to prevent recursive break points. */
  876. copy_registers (&reg_g, &reg, sizeof(registers));
  877. /* Store thread:r...; with the executing task TID. */
  878. gdb_cris_strcpy (&remcomOutBuffer[pos], "thread:");
  879. pos += gdb_cris_strlen ("thread:");
  880. remcomOutBuffer[pos++] = highhex (executing_task);
  881. remcomOutBuffer[pos++] = lowhex (executing_task);
  882. gdb_cris_strcpy (&remcomOutBuffer[pos], ";");
  883. #endif
  884. /* null-terminate and send it off */
  885. *ptr = 0;
  886. putpacket (remcomOutBuffer);
  887. }
  888. /* All expected commands are sent from remote.c. Send a response according
  889.    to the description in remote.c. */
  890. static void
  891. handle_exception (int sigval)
  892. {
  893. /* Avoid warning of not used. */
  894. USEDFUN(handle_exception);
  895. USEDVAR(internal_stack[0]);
  896. /* Send response. */
  897. stub_is_stopped (sigval);
  898. for (;;) {
  899. remcomOutBuffer[0] = '';
  900. getpacket (remcomInBuffer);
  901. switch (remcomInBuffer[0]) {
  902. case 'g':
  903. /* Read registers: g
  904.    Success: Each byte of register data is described by two hex digits.
  905.    Registers are in the internal order for GDB, and the bytes
  906.    in a register  are in the same order the machine uses.
  907.    Failure: void. */
  908. {
  909. #ifdef PROCESS_SUPPORT
  910. /* Use the special register content in the executing thread. */
  911. copy_registers (&reg_g, &reg, sizeof(registers));
  912. /* Replace the content available on the stack. */
  913. if (current_thread_g != executing_task) {
  914. copy_registers_from_stack (current_thread_g, &reg_g);
  915. }
  916. mem2hex ((unsigned char *)remcomOutBuffer, (unsigned char *)&reg_g, sizeof(registers));
  917. #else
  918. mem2hex(remcomOutBuffer, (char *)&reg, sizeof(registers));
  919. #endif
  920. }
  921. break;
  922. case 'G':
  923. /* Write registers. GXX..XX
  924.    Each byte of register data  is described by two hex digits.
  925.    Success: OK
  926.    Failure: void. */
  927. #ifdef PROCESS_SUPPORT
  928. hex2mem ((unsigned char *)&reg_g, &remcomInBuffer[1], sizeof(registers));
  929. if (current_thread_g == executing_task) {
  930. copy_registers (&reg, &reg_g, sizeof(registers));
  931. }
  932. else {
  933. copy_registers_to_stack(current_thread_g, &reg_g);
  934. }
  935. #else
  936. hex2mem((char *)&reg, &remcomInBuffer[1], sizeof(registers));
  937. #endif
  938. gdb_cris_strcpy (remcomOutBuffer, "OK");
  939. break;
  940. case 'P':
  941. /* Write register. Pn...=r...
  942.    Write register n..., hex value without 0x, with value r...,
  943.    which contains a hex value without 0x and two hex digits
  944.    for each byte in the register (target byte order). P1f=11223344 means
  945.    set register 31 to 44332211.
  946.    Success: OK
  947.    Failure: E02, E05 */
  948. {
  949. char *suffix;
  950. int regno = gdb_cris_strtol (&remcomInBuffer[1], &suffix, 16);
  951. int status;
  952. #ifdef PROCESS_SUPPORT
  953. if (current_thread_g != executing_task)
  954. status = write_stack_register (current_thread_g, regno, suffix+1);
  955. else
  956. #endif
  957. status = write_register (regno, suffix+1);
  958. switch (status) {
  959. case E02:
  960. /* Do not support read-only registers. */
  961. gdb_cris_strcpy (remcomOutBuffer, error_message[E02]);
  962. break;
  963. case E05:
  964. /* Do not support non-existing registers. */
  965. gdb_cris_strcpy (remcomOutBuffer, error_message[E05]);
  966. break;
  967. case E07:
  968. /* Do not support non-existing registers on the stack. */
  969. gdb_cris_strcpy (remcomOutBuffer, error_message[E07]);
  970. break;
  971. default:
  972. /* Valid register number. */
  973. gdb_cris_strcpy (remcomOutBuffer, "OK");
  974. break;
  975. }
  976. }
  977. break;
  978. case 'm':
  979. /* Read from memory. mAA..AA,LLLL
  980.    AA..AA is the address and LLLL is the length.
  981.    Success: XX..XX is the memory content.  Can be fewer bytes than
  982.    requested if only part of the data may be read. m6000120a,6c means
  983.    retrieve 108 byte from base address 6000120a.
  984.    Failure: void. */
  985. {
  986.                                         char *suffix;
  987. unsigned char *addr = (unsigned char *)gdb_cris_strtol(&remcomInBuffer[1],
  988.                                                                                                &suffix, 16);                                        int length = gdb_cris_strtol(suffix+1, 0, 16);
  989.                                         
  990.                                         mem2hex(remcomOutBuffer, addr, length);
  991.                                 }
  992. break;
  993. case 'X':
  994. /* Write to memory. XAA..AA,LLLL:XX..XX
  995.    AA..AA is the start address,  LLLL is the number of bytes, and
  996.    XX..XX is the binary data.
  997.    Success: OK
  998.    Failure: void. */
  999. case 'M':
  1000. /* Write to memory. MAA..AA,LLLL:XX..XX
  1001.    AA..AA is the start address,  LLLL is the number of bytes, and
  1002.    XX..XX is the hexadecimal data.
  1003.    Success: OK
  1004.    Failure: void. */
  1005. {
  1006. char *lenptr;
  1007. char *dataptr;
  1008. unsigned char *addr = (unsigned char *)gdb_cris_strtol(&remcomInBuffer[1],
  1009.       &lenptr, 16);
  1010. int length = gdb_cris_strtol(lenptr+1, &dataptr, 16);
  1011. if (*lenptr == ',' && *dataptr == ':') {
  1012. if (remcomInBuffer[0] == 'M') {
  1013. hex2mem(addr, dataptr + 1, length);
  1014. }
  1015. else /* X */ {
  1016. bin2mem(addr, dataptr + 1, length);
  1017. }
  1018. gdb_cris_strcpy (remcomOutBuffer, "OK");
  1019. }
  1020. else {
  1021. gdb_cris_strcpy (remcomOutBuffer, error_message[E06]);
  1022. }
  1023. }
  1024. break;
  1025. case 'c':
  1026. /* Continue execution. cAA..AA
  1027.    AA..AA is the address where execution is resumed. If AA..AA is
  1028.    omitted, resume at the present address.
  1029.    Success: return to the executing thread.
  1030.    Failure: will never know. */
  1031. if (remcomInBuffer[1] != '') {
  1032. reg.pc = gdb_cris_strtol (&remcomInBuffer[1], 0, 16);
  1033. }
  1034. enableDebugIRQ();
  1035. return;
  1036. case 's':
  1037. /* Step. sAA..AA
  1038.    AA..AA is the address where execution is resumed. If AA..AA is
  1039.    omitted, resume at the present address. Success: return to the
  1040.    executing thread. Failure: will never know.
  1041.    
  1042.    Should never be invoked. The single-step is implemented on
  1043.    the host side. If ever invoked, it is an internal error E04. */
  1044. gdb_cris_strcpy (remcomOutBuffer, error_message[E04]);
  1045. putpacket (remcomOutBuffer);
  1046. return;
  1047. case '?':
  1048. /* The last signal which caused a stop. ?
  1049.    Success: SAA, where AA is the signal number.
  1050.    Failure: void. */
  1051. remcomOutBuffer[0] = 'S';
  1052. remcomOutBuffer[1] = highhex (sigval);
  1053. remcomOutBuffer[2] = lowhex (sigval);
  1054. remcomOutBuffer[3] = 0;
  1055. break;
  1056. case 'D':
  1057. /* Detach from host. D
  1058.    Success: OK, and return to the executing thread.
  1059.    Failure: will never know */
  1060. putpacket ("OK");
  1061. return;
  1062. case 'k':
  1063. case 'r':
  1064. /* kill request or reset request.
  1065.    Success: restart of target.
  1066.    Failure: will never know. */
  1067. kill_restart ();
  1068. break;
  1069. case 'C':
  1070. case 'S':
  1071. case '!':
  1072. case 'R':
  1073. case 'd':
  1074. /* Continue with signal sig. Csig;AA..AA
  1075.    Step with signal sig. Ssig;AA..AA
  1076.    Use the extended remote protocol. !
  1077.    Restart the target system. R0
  1078.    Toggle debug flag. d
  1079.    Search backwards. tAA:PP,MM
  1080.    Not supported: E04 */
  1081. gdb_cris_strcpy (remcomOutBuffer, error_message[E04]);
  1082. break;
  1083. #ifdef PROCESS_SUPPORT
  1084. case 'T':
  1085. /* Thread alive. TXX
  1086.    Is thread XX alive?
  1087.    Success: OK, thread XX is alive.
  1088.    Failure: E03, thread XX is dead. */
  1089. {
  1090. int thread_id = (int)gdb_cris_strtol (&remcomInBuffer[1], 0, 16);
  1091. /* Cannot tell whether it is alive or not. */
  1092. if (thread_id >= 0 && thread_id < number_of_tasks)
  1093. gdb_cris_strcpy (remcomOutBuffer, "OK");
  1094. }
  1095. break;
  1096. case 'H':
  1097. /* Set thread for subsequent operations: Hct
  1098.    c = 'c' for thread used in step and continue;
  1099.    t can be -1 for all threads.
  1100.    c = 'g' for thread used in other  operations.
  1101.    t = 0 means pick any thread.
  1102.    Success: OK
  1103.    Failure: E01 */
  1104. {
  1105. int thread_id = gdb_cris_strtol (&remcomInBuffer[2], 0, 16);
  1106. if (remcomInBuffer[1] == 'c') {
  1107. /* c = 'c' for thread used in step and continue */
  1108. /* Do not change current_thread_c here. It would create a mess in
  1109.    the scheduler. */
  1110. gdb_cris_strcpy (remcomOutBuffer, "OK");
  1111. }
  1112. else if (remcomInBuffer[1] == 'g') {
  1113. /* c = 'g' for thread used in other  operations.
  1114.    t = 0 means pick any thread. Impossible since the scheduler does
  1115.    not allow that. */
  1116. if (thread_id >= 0 && thread_id < number_of_tasks) {
  1117. current_thread_g = thread_id;
  1118. gdb_cris_strcpy (remcomOutBuffer, "OK");
  1119. }
  1120. else {
  1121. /* Not expected - send an error message. */
  1122. gdb_cris_strcpy (remcomOutBuffer, error_message[E01]);
  1123. }
  1124. }
  1125. else {
  1126. /* Not expected - send an error message. */
  1127. gdb_cris_strcpy (remcomOutBuffer, error_message[E01]);
  1128. }
  1129. }
  1130. break;
  1131. case 'q':
  1132. case 'Q':
  1133. /* Query of general interest. qXXXX
  1134.    Set general value XXXX. QXXXX=yyyy */
  1135. {
  1136. int pos;
  1137. int nextpos;
  1138. int thread_id;
  1139. switch (remcomInBuffer[1]) {
  1140. case 'C':
  1141. /* Identify the remote current thread. */
  1142. gdb_cris_strcpy (&remcomOutBuffer[0], "QC");
  1143. remcomOutBuffer[2] = highhex (current_thread_c);
  1144. remcomOutBuffer[3] = lowhex (current_thread_c);
  1145. remcomOutBuffer[4] = '';
  1146. break;
  1147. case 'L':
  1148. gdb_cris_strcpy (&remcomOutBuffer[0], "QM");
  1149. /* Reply with number of threads. */
  1150. if (os_is_started()) {
  1151. remcomOutBuffer[2] = highhex (number_of_tasks);
  1152. remcomOutBuffer[3] = lowhex (number_of_tasks);
  1153. }
  1154. else {
  1155. remcomOutBuffer[2] = highhex (0);
  1156. remcomOutBuffer[3] = lowhex (1);
  1157. }
  1158. /* Done with the reply. */
  1159. remcomOutBuffer[4] = lowhex (1);
  1160. pos = 5;
  1161. /* Expects the argument thread id. */
  1162. for (; pos < (5 + HEXCHARS_IN_THREAD_ID); pos++)
  1163. remcomOutBuffer[pos] = remcomInBuffer[pos];
  1164. /* Reply with the thread identifiers. */
  1165. if (os_is_started()) {
  1166. /* Store the thread identifiers of all tasks. */
  1167. for (thread_id = 0; thread_id < number_of_tasks; thread_id++) {
  1168. nextpos = pos + HEXCHARS_IN_THREAD_ID - 1;
  1169. for (; pos < nextpos; pos ++)
  1170. remcomOutBuffer[pos] = lowhex (0);
  1171. remcomOutBuffer[pos++] = lowhex (thread_id);
  1172. }
  1173. }
  1174. else {
  1175. /* Store the thread identifier of the boot task. */
  1176. nextpos = pos + HEXCHARS_IN_THREAD_ID - 1;
  1177. for (; pos < nextpos; pos ++)
  1178. remcomOutBuffer[pos] = lowhex (0);
  1179. remcomOutBuffer[pos++] = lowhex (current_thread_c);
  1180. }
  1181. remcomOutBuffer[pos] = '';
  1182. break;
  1183. default:
  1184. /* Not supported: "" */
  1185. /* Request information about section offsets: qOffsets. */
  1186. remcomOutBuffer[0] = 0;
  1187. break;
  1188. }
  1189. }
  1190. break;
  1191. #endif /* PROCESS_SUPPORT */
  1192. default:
  1193. /* The stub should ignore other request and send an empty
  1194.    response ($#<checksum>). This way we can extend the protocol and GDB
  1195.    can tell whether the stub it is talking to uses the old or the new. */
  1196. remcomOutBuffer[0] = 0;
  1197. break;
  1198. }
  1199. putpacket(remcomOutBuffer);
  1200. }
  1201. }
  1202. /* The jump is to the address 0x00000002. Performs a complete re-start
  1203.    from scratch. */
  1204. static void
  1205. kill_restart ()
  1206. {
  1207. __asm__ volatile ("jump 2");
  1208. }
  1209. /********************************** Breakpoint *******************************/
  1210. /* The hook for both a static (compiled) and a dynamic breakpoint set by GDB.
  1211.    An internal stack is used by the stub. The register image of the caller is
  1212.    stored in the structure register_image.
  1213.    Interactive communication with the host is handled by handle_exception and
  1214.    finally the register image is restored. */
  1215. void kgdb_handle_breakpoint(void);
  1216. asm ("
  1217.   .global kgdb_handle_breakpoint
  1218. kgdb_handle_breakpoint:
  1219. ;;
  1220. ;; Response to the break-instruction
  1221. ;;
  1222. ;; Create a register image of the caller
  1223. ;;
  1224.   move     $dccr,[reg+0x5E] ; Save the flags in DCCR before disable interrupts
  1225.   di                        ; Disable interrupts
  1226.   move.d   $r0,[reg]        ; Save R0
  1227.   move.d   $r1,[reg+0x04]   ; Save R1
  1228.   move.d   $r2,[reg+0x08]   ; Save R2
  1229.   move.d   $r3,[reg+0x0C]   ; Save R3
  1230.   move.d   $r4,[reg+0x10]   ; Save R4
  1231.   move.d   $r5,[reg+0x14]   ; Save R5
  1232.   move.d   $r6,[reg+0x18]   ; Save R6
  1233.   move.d   $r7,[reg+0x1C]   ; Save R7
  1234.   move.d   $r8,[reg+0x20]   ; Save R8
  1235.   move.d   $r9,[reg+0x24]   ; Save R9
  1236.   move.d   $r10,[reg+0x28]  ; Save R10
  1237.   move.d   $r11,[reg+0x2C]  ; Save R11
  1238.   move.d   $r12,[reg+0x30]  ; Save R12
  1239.   move.d   $r13,[reg+0x34]  ; Save R13
  1240.   move.d   $sp,[reg+0x38]   ; Save SP (R14)
  1241. ;; Due to the old assembler-versions BRP might not be recognized
  1242.   .word 0xE670              ; move brp,$r0
  1243.   subq     2,$r0             ; Set to address of previous instruction.
  1244.   move.d   $r0,[reg+0x3c]   ; Save the address in PC (R15)
  1245.   clear.b  [reg+0x40]      ; Clear P0
  1246.   move     $vr,[reg+0x41]   ; Save special register P1
  1247.   clear.w  [reg+0x42]      ; Clear P4
  1248.   move     $ccr,[reg+0x44]  ; Save special register CCR
  1249.   move     $mof,[reg+0x46]  ; P7
  1250.   clear.d  [reg+0x4A]      ; Clear P8
  1251.   move     $ibr,[reg+0x4E]  ; P9,
  1252.   move     $irp,[reg+0x52]  ; P10,
  1253.   move     $srp,[reg+0x56]  ; P11,
  1254.   move     $dtp0,[reg+0x5A] ; P12, register BAR, assembler might not know BAR
  1255.                             ; P13, register DCCR already saved
  1256. ;; Due to the old assembler-versions BRP might not be recognized
  1257.   .word 0xE670              ; move brp,r0
  1258. ;; Static (compiled) breakpoints must return to the next instruction in order
  1259. ;; to avoid infinite loops. Dynamic (gdb-invoked) must restore the instruction
  1260. ;; in order to execute it when execution is continued.
  1261.   test.b   [is_dyn_brkp]    ; Is this a dynamic breakpoint?
  1262.   beq      is_static         ; No, a static breakpoint
  1263.   nop
  1264.   subq     2,$r0              ; rerun the instruction the break replaced
  1265. is_static:
  1266.   moveq    1,$r1
  1267.   move.b   $r1,[is_dyn_brkp] ; Set the state variable to dynamic breakpoint
  1268.   move.d   $r0,[reg+0x62]    ; Save the return address in BRP
  1269.   move     $usp,[reg+0x66]   ; USP
  1270. ;;
  1271. ;; Handle the communication
  1272. ;;
  1273.   move.d   internal_stack+1020,$sp ; Use the internal stack which grows upward
  1274.   moveq    5,$r10                   ; SIGTRAP
  1275.   jsr      handle_exception       ; Interactive routine
  1276. ;;
  1277. ;; Return to the caller
  1278. ;;
  1279.    move.d  [reg],$r0         ; Restore R0
  1280.    move.d  [reg+0x04],$r1    ; Restore R1
  1281.    move.d  [reg+0x08],$r2    ; Restore R2
  1282.    move.d  [reg+0x0C],$r3    ; Restore R3
  1283.    move.d  [reg+0x10],$r4    ; Restore R4
  1284.    move.d  [reg+0x14],$r5    ; Restore R5
  1285.    move.d  [reg+0x18],$r6    ; Restore R6
  1286.    move.d  [reg+0x1C],$r7    ; Restore R7
  1287.    move.d  [reg+0x20],$r8    ; Restore R8
  1288.    move.d  [reg+0x24],$r9    ; Restore R9
  1289.    move.d  [reg+0x28],$r10   ; Restore R10
  1290.    move.d  [reg+0x2C],$r11   ; Restore R11
  1291.    move.d  [reg+0x30],$r12   ; Restore R12
  1292.    move.d  [reg+0x34],$r13   ; Restore R13
  1293. ;;
  1294. ;; FIXME: Which registers should be restored?
  1295. ;;
  1296.    move.d  [reg+0x38],$sp    ; Restore SP (R14)
  1297.    move    [reg+0x56],$srp   ; Restore the subroutine return pointer.
  1298.    move    [reg+0x5E],$dccr  ; Restore DCCR
  1299.    move    [reg+0x66],$usp   ; Restore USP
  1300.    jump    [reg+0x62]       ; A jump to the content in register BRP works.
  1301.    nop                       ;
  1302. ");
  1303. /* The hook for an interrupt generated by GDB. An internal stack is used
  1304.    by the stub. The register image of the caller is stored in the structure
  1305.    register_image. Interactive communication with the host is handled by
  1306.    handle_exception and finally the register image is restored. Due to the
  1307.    old assembler which does not recognise the break instruction and the
  1308.    breakpoint return pointer hex-code is used. */
  1309. void kgdb_handle_serial(void);
  1310. asm ("
  1311.   .global kgdb_handle_serial
  1312. kgdb_handle_serial:
  1313. ;;
  1314. ;; Response to a serial interrupt
  1315. ;;
  1316.   move     $dccr,[reg+0x5E] ; Save the flags in DCCR
  1317.   di                        ; Disable interrupts
  1318.   move.d   $r0,[reg]        ; Save R0
  1319.   move.d   $r1,[reg+0x04]   ; Save R1
  1320.   move.d   $r2,[reg+0x08]   ; Save R2
  1321.   move.d   $r3,[reg+0x0C]   ; Save R3
  1322.   move.d   $r4,[reg+0x10]   ; Save R4
  1323.   move.d   $r5,[reg+0x14]   ; Save R5
  1324.   move.d   $r6,[reg+0x18]   ; Save R6
  1325.   move.d   $r7,[reg+0x1C]   ; Save R7
  1326.   move.d   $r8,[reg+0x20]   ; Save R8
  1327.   move.d   $r9,[reg+0x24]   ; Save R9
  1328.   move.d   $r10,[reg+0x28]  ; Save R10
  1329.   move.d   $r11,[reg+0x2C]  ; Save R11
  1330.   move.d   $r12,[reg+0x30]  ; Save R12
  1331.   move.d   $r13,[reg+0x34]  ; Save R13
  1332.   move.d   $sp,[reg+0x38]   ; Save SP (R14)
  1333.   move     $irp,[reg+0x3c]  ; Save the address in PC (R15)
  1334.   clear.b  [reg+0x40]      ; Clear P0
  1335.   move     $vr,[reg+0x41]   ; Save special register P1,
  1336.   clear.w  [reg+0x42]      ; Clear P4
  1337.   move     $ccr,[reg+0x44]  ; Save special register CCR
  1338.   move     $mof,[reg+0x46]  ; P7
  1339.   clear.d  [reg+0x4A]      ; Clear P8
  1340.   move     $ibr,[reg+0x4E]  ; P9,
  1341.   move     $irp,[reg+0x52]  ; P10,
  1342.   move     $srp,[reg+0x56]  ; P11,
  1343.   move     $dtp0,[reg+0x5A] ; P12, register BAR, assembler might not know BAR
  1344.                             ; P13, register DCCR already saved
  1345. ;; Due to the old assembler-versions BRP might not be recognized
  1346.   .word 0xE670              ; move brp,r0
  1347.   move.d   $r0,[reg+0x62]   ; Save the return address in BRP
  1348.   move     $usp,[reg+0x66]  ; USP
  1349. ;; get the serial character (from debugport.c) and check if its a ctrl-c
  1350.   jsr getDebugChar
  1351.   cmp.b 3, $r10
  1352.   bne goback
  1353.   nop
  1354. ;;
  1355. ;; Handle the communication
  1356. ;;
  1357.   move.d   internal_stack+1020,$sp ; Use the internal stack
  1358.   moveq    2,$r10                   ; SIGINT
  1359.   jsr      handle_exception       ; Interactive routine
  1360. goback:
  1361. ;;
  1362. ;; Return to the caller
  1363. ;;
  1364.    move.d  [reg],$r0         ; Restore R0
  1365.    move.d  [reg+0x04],$r1    ; Restore R1
  1366.    move.d  [reg+0x08],$r2    ; Restore R2
  1367.    move.d  [reg+0x0C],$r3    ; Restore R3
  1368.    move.d  [reg+0x10],$r4    ; Restore R4
  1369.    move.d  [reg+0x14],$r5    ; Restore R5
  1370.    move.d  [reg+0x18],$r6    ; Restore R6
  1371.    move.d  [reg+0x1C],$r7    ; Restore R7
  1372.    move.d  [reg+0x20],$r8    ; Restore R8
  1373.    move.d  [reg+0x24],$r9    ; Restore R9
  1374.    move.d  [reg+0x28],$r10   ; Restore R10
  1375.    move.d  [reg+0x2C],$r11   ; Restore R11
  1376.    move.d  [reg+0x30],$r12   ; Restore R12
  1377.    move.d  [reg+0x34],$r13   ; Restore R13
  1378. ;;
  1379. ;; FIXME: Which registers should be restored?
  1380. ;;
  1381.    move.d  [reg+0x38],$sp    ; Restore SP (R14)
  1382.    move    [reg+0x56],$srp   ; Restore the subroutine return pointer.
  1383.    move    [reg+0x5E],$dccr  ; Restore DCCR
  1384.    move    [reg+0x66],$usp   ; Restore USP
  1385.    reti                      ; Return from the interrupt routine
  1386.    nop
  1387. ");
  1388. /* Use this static breakpoint in the start-up only. */
  1389. void
  1390. breakpoint(void)
  1391. {
  1392. kgdb_started = 1;
  1393. is_dyn_brkp = 0;     /* This is a static, not a dynamic breakpoint. */
  1394. __asm__ volatile ("break 8"); /* Jump to handle_breakpoint. */
  1395. }
  1396. /* initialize kgdb. doesn't break into the debugger, but sets up irq and ports */
  1397. void
  1398. kgdb_init(void)
  1399. {
  1400. /* could initialize debug port as well but it's done in head.S already... */
  1401.         /* breakpoint handler is now set in irq.c */
  1402. set_int_vector(8, kgdb_handle_serial, 0);
  1403. enableDebugIRQ();
  1404. }
  1405. /****************************** End of file **********************************/