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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.  * ppc-stub.c:  KGDB support for the Linux kernel.
  3.  *
  4.  * adapted from arch/sparc/kernel/sparc-stub.c for the PowerPC
  5.  * some stuff borrowed from Paul Mackerras' xmon
  6.  * Copyright (C) 1998 Michael AK Tesch (tesch@cs.wisc.edu)
  7.  *
  8.  * Modifications to run under Linux
  9.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  10.  *
  11.  * This file originally came from the gdb sources, and the
  12.  * copyright notices have been retained below.
  13.  */
  14. /****************************************************************************
  15. THIS SOFTWARE IS NOT COPYRIGHTED
  16.    HP offers the following for use in the public domain.  HP makes no
  17.    warranty with regard to the software or its performance and the
  18.    user accepts the software "AS IS" with all faults.
  19.    HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD
  20.    TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  21.    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  22. ****************************************************************************/
  23. /****************************************************************************
  24.  *  Header: remcom.c,v 1.34 91/03/09 12:29:49 glenne Exp $
  25.  *
  26.  *  Module name: remcom.c $
  27.  *  Revision: 1.34 $
  28.  *  Date: 91/03/09 12:29:49 $
  29.  *  Contributor:     Lake Stevens Instrument Division$
  30.  *
  31.  *  Description:     low level support for gdb debugger. $
  32.  *
  33.  *  Considerations:  only works on target hardware $
  34.  *
  35.  *  Written by:      Glenn Engel $
  36.  *  ModuleState:     Experimental $
  37.  *
  38.  *  NOTES:           See Below $
  39.  *
  40.  *  Modified for SPARC by Stu Grossman, Cygnus Support.
  41.  *
  42.  *  This code has been extensively tested on the Fujitsu SPARClite demo board.
  43.  *
  44.  *  To enable debugger support, two things need to happen.  One, a
  45.  *  call to set_debug_traps() is necessary in order to allow any breakpoints
  46.  *  or error conditions to be properly intercepted and reported to gdb.
  47.  *  Two, a breakpoint needs to be generated to begin communication.  This
  48.  *  is most easily accomplished by a call to breakpoint().  Breakpoint()
  49.  *  simulates a breakpoint by executing a trap #1.
  50.  *
  51.  *************
  52.  *
  53.  *    The following gdb commands are supported:
  54.  *
  55.  * command          function                               Return value
  56.  *
  57.  *    g             return the value of the CPU registers  hex data or ENN
  58.  *    G             set the value of the CPU registers     OK or ENN
  59.  *    qOffsets      Get section offsets.  Reply is Text=xxx;Data=yyy;Bss=zzz
  60.  *
  61.  *    mAA..AA,LLLL  Read LLLL bytes at address AA..AA      hex data or ENN
  62.  *    MAA..AA,LLLL: Write LLLL bytes at address AA.AA      OK or ENN
  63.  *
  64.  *    c             Resume at current address              SNN   ( signal NN)
  65.  *    cAA..AA       Continue at address AA..AA             SNN
  66.  *
  67.  *    s             Step one instruction                   SNN
  68.  *    sAA..AA       Step one instruction from AA..AA       SNN
  69.  *
  70.  *    k             kill
  71.  *
  72.  *    ?             What was the last sigval ?             SNN   (signal NN)
  73.  *
  74.  *    bBB..BB     Set baud rate to BB..BB    OK or BNN, then sets
  75.  *    baud rate
  76.  *
  77.  * All commands and responses are sent with a packet which includes a
  78.  * checksum.  A packet consists of
  79.  *
  80.  * $<packet info>#<checksum>.
  81.  *
  82.  * where
  83.  * <packet info> :: <characters representing the command or response>
  84.  * <checksum>    :: <two hex digits computed as modulo 256 sum of <packetinfo>>
  85.  *
  86.  * When a packet is received, it is first acknowledged with either '+' or '-'.
  87.  * '+' indicates a successful transfer.  '-' indicates a failed transfer.
  88.  *
  89.  * Example:
  90.  *
  91.  * Host:                  Reply:
  92.  * $m0,10#2a               +$00010203040506070809101112131415#42
  93.  *
  94.  ****************************************************************************/
  95. #include <linux/config.h>
  96. #include <linux/kernel.h>
  97. #include <linux/string.h>
  98. #include <linux/mm.h>
  99. #include <linux/smp.h>
  100. #include <linux/smp_lock.h>
  101. #include <asm/system.h>
  102. #include <asm/signal.h>
  103. #include <asm/kgdb.h>
  104. #include <asm/pgtable.h>
  105. #include <asm/ptrace.h>
  106. void breakinst(void);
  107. /*
  108.  * BUFMAX defines the maximum number of characters in inbound/outbound buffers
  109.  * at least NUMREGBYTES*2 are needed for register packets
  110.  */
  111. #define BUFMAX 2048
  112. static char remcomInBuffer[BUFMAX];
  113. static char remcomOutBuffer[BUFMAX];
  114. static int initialized = 0;
  115. static int kgdb_active = 0;
  116. static int kgdb_started = 0;
  117. static u_int fault_jmp_buf[100];
  118. static int kdebug;
  119. static const char hexchars[]="0123456789abcdef";
  120. /* Place where we save old trap entries for restoration - sparc*/
  121. /* struct tt_entry kgdb_savettable[256]; */
  122. /* typedef void (*trapfunc_t)(void); */
  123. #if 0
  124. /* Install an exception handler for kgdb */
  125. static void exceptionHandler(int tnum, unsigned int *tfunc)
  126. {
  127. /* We are dorking with a live trap table, all irqs off */
  128. }
  129. #endif
  130. int
  131. kgdb_setjmp(long *buf)
  132. {
  133. asm ("mflr 0; stw 0,0(%0);"
  134.      "stw 1,4(%0); stw 2,8(%0);"
  135.      "mfcr 0; stw 0,12(%0);"
  136.      "stmw 13,16(%0)"
  137.      : : "r" (buf));
  138. /* XXX should save fp regs as well */
  139. return 0;
  140. }
  141. void
  142. kgdb_longjmp(long *buf, int val)
  143. {
  144. if (val == 0)
  145. val = 1;
  146. asm ("lmw 13,16(%0);"
  147.      "lwz 0,12(%0); mtcrf 0x38,0;"
  148.      "lwz 0,0(%0); lwz 1,4(%0); lwz 2,8(%0);"
  149.      "mtlr 0; mr 3,%1"
  150.      : : "r" (buf), "r" (val));
  151. }
  152. /* Convert ch from a hex digit to an int */
  153. static int
  154. hex(unsigned char ch)
  155. {
  156. if (ch >= 'a' && ch <= 'f')
  157. return ch-'a'+10;
  158. if (ch >= '0' && ch <= '9')
  159. return ch-'0';
  160. if (ch >= 'A' && ch <= 'F')
  161. return ch-'A'+10;
  162. return -1;
  163. }
  164. /* Convert the memory pointed to by mem into hex, placing result in buf.
  165.  * Return a pointer to the last char put in buf (null), in case of mem fault,
  166.  * return 0.
  167.  */
  168. static unsigned char *
  169. mem2hex(char *mem, char *buf, int count)
  170. {
  171. unsigned char ch;
  172. if (kgdb_setjmp((long*)fault_jmp_buf) == 0) {
  173. debugger_fault_handler = kgdb_fault_handler;
  174. while (count-- > 0) {
  175. ch = *mem++;
  176. *buf++ = hexchars[ch >> 4];
  177. *buf++ = hexchars[ch & 0xf];
  178. }
  179. } else {
  180. /* error condition */
  181. }
  182. debugger_fault_handler = 0;
  183. *buf = 0;
  184. return buf;
  185. }
  186. /* convert the hex array pointed to by buf into binary to be placed in mem
  187.  * return a pointer to the character AFTER the last byte written.
  188. */
  189. static char *
  190. hex2mem(char *buf, char *mem, int count)
  191. {
  192. int i;
  193. unsigned char ch;
  194. if (kgdb_setjmp((long*)fault_jmp_buf) == 0) {
  195. debugger_fault_handler = kgdb_fault_handler;
  196. for (i=0; i<count; i++) {
  197. ch = hex(*buf++) << 4;
  198. ch |= hex(*buf++);
  199. *mem++ = ch;
  200. }
  201. flush_icache_range((int)mem, (int)mem+count);
  202. } else {
  203. /* error condition */
  204. }
  205. debugger_fault_handler = 0;
  206. return mem;
  207. }
  208. /*
  209.  * While we find nice hex chars, build an int.
  210.  * Return number of chars processed.
  211.  */
  212. static int
  213. hexToInt(char **ptr, int *intValue)
  214. {
  215. int numChars = 0;
  216. int hexValue;
  217. *intValue = 0;
  218. if (kgdb_setjmp((long*)fault_jmp_buf) == 0) {
  219. debugger_fault_handler = kgdb_fault_handler;
  220. while (**ptr) {
  221. hexValue = hex(**ptr);
  222. if (hexValue < 0)
  223. break;
  224. *intValue = (*intValue << 4) | hexValue;
  225. numChars ++;
  226. (*ptr)++;
  227. }
  228. } else {
  229.      /* error condition */
  230. }
  231. debugger_fault_handler = 0;
  232. return (numChars);
  233. }
  234. /* scan for the sequence $<data>#<checksum>     */
  235. static void
  236. getpacket(char *buffer)
  237. {
  238. unsigned char checksum;
  239. unsigned char xmitcsum;
  240. int i;
  241. int count;
  242. unsigned char ch;
  243. do {
  244. /* wait around for the start character, ignore all other
  245.  * characters */
  246. while ((ch = (getDebugChar() & 0x7f)) != '$') ;
  247. checksum = 0;
  248. xmitcsum = -1;
  249. count = 0;
  250. /* now, read until a # or end of buffer is found */
  251. while (count < BUFMAX) {
  252. ch = getDebugChar() & 0x7f;
  253. if (ch == '#')
  254. break;
  255. checksum = checksum + ch;
  256. buffer[count] = ch;
  257. count = count + 1;
  258. }
  259. if (count >= BUFMAX)
  260. continue;
  261. buffer[count] = 0;
  262. if (ch == '#') {
  263. xmitcsum = hex(getDebugChar() & 0x7f) << 4;
  264. xmitcsum |= hex(getDebugChar() & 0x7f);
  265. if (checksum != xmitcsum)
  266. putDebugChar('-'); /* failed checksum */
  267. else {
  268. putDebugChar('+'); /* successful transfer */
  269. /* if a sequence char is present, reply the ID */
  270. if (buffer[2] == ':') {
  271. putDebugChar(buffer[0]);
  272. putDebugChar(buffer[1]);
  273. /* remove sequence chars from buffer */
  274. count = strlen(buffer);
  275. for (i=3; i <= count; i++)
  276. buffer[i-3] = buffer[i];
  277. }
  278. }
  279. }
  280. } while (checksum != xmitcsum);
  281. }
  282. /* send the packet in buffer.  */
  283. static void putpacket(unsigned char *buffer)
  284. {
  285. unsigned char checksum;
  286. int count;
  287. unsigned char ch, recv;
  288. /*  $<packet info>#<checksum>. */
  289. do {
  290. putDebugChar('$');
  291. checksum = 0;
  292. count = 0;
  293. while ((ch = buffer[count])) {
  294. putDebugChar(ch);
  295. checksum += ch;
  296. count += 1;
  297. }
  298. putDebugChar('#');
  299. putDebugChar(hexchars[checksum >> 4]);
  300. putDebugChar(hexchars[checksum & 0xf]);
  301. recv = getDebugChar();
  302. } while ((recv & 0x7f) != '+');
  303. }
  304. static void kgdb_flush_cache_all(void)
  305. {
  306. flush_instruction_cache();
  307. }
  308. /* Set up exception handlers for tracing and breakpoints
  309.  * [could be called kgdb_init()]
  310.  */
  311. void set_debug_traps(void)
  312. {
  313. #if 0
  314. unsigned char c;
  315. save_and_cli(flags);
  316. /* In case GDB is started before us, ack any packets (presumably
  317.  * "$?#xx") sitting there.
  318.  *
  319.  * I've found this code causes more problems than it solves,
  320.  * so that's why it's commented out.  GDB seems to work fine
  321.  * now starting either before or after the kernel   -bwb
  322.  */
  323. while((c = getDebugChar()) != '$');
  324. while((c = getDebugChar()) != '#');
  325. c = getDebugChar(); /* eat first csum byte */
  326. c = getDebugChar(); /* eat second csum byte */
  327. putDebugChar('+'); /* ack it */
  328. #endif
  329. debugger = kgdb;
  330. debugger_bpt = kgdb_bpt;
  331. debugger_sstep = kgdb_sstep;
  332. debugger_iabr_match = kgdb_iabr_match;
  333. debugger_dabr_match = kgdb_dabr_match;
  334. initialized = 1;
  335. }
  336. static void kgdb_fault_handler(struct pt_regs *regs)
  337. {
  338. kgdb_longjmp((long*)fault_jmp_buf, 1);
  339. }
  340. int kgdb_bpt(struct pt_regs *regs)
  341. {
  342. handle_exception(regs);
  343. return 1;
  344. }
  345. int kgdb_sstep(struct pt_regs *regs)
  346. {
  347. handle_exception(regs);
  348. return 1;
  349. }
  350. void kgdb(struct pt_regs *regs)
  351. {
  352. handle_exception(regs);
  353. }
  354. int kgdb_iabr_match(struct pt_regs *regs)
  355. {
  356. printk("kgdb doesn't support iabr, what?!?n");
  357. handle_exception(regs);
  358. return 1;
  359. }
  360. int kgdb_dabr_match(struct pt_regs *regs)
  361. {
  362. printk("kgdb doesn't support dabr, what?!?n");
  363. handle_exception(regs);
  364. return 1;
  365. }
  366. /* Convert the SPARC hardware trap type code to a unix signal number. */
  367. /*
  368.  * This table contains the mapping between PowerPC hardware trap types, and
  369.  * signals, which are primarily what GDB understands.
  370.  */
  371. static struct hard_trap_info
  372. {
  373. unsigned int tt; /* Trap type code for powerpc */
  374. unsigned char signo; /* Signal that we map this trap into */
  375. } hard_trap_info[] = {
  376. { 0x200, SIGSEGV }, /* machine check */
  377. { 0x300, SIGSEGV }, /* address error (store) */
  378. { 0x400, SIGBUS }, /* instruction bus error */
  379. { 0x500, SIGINT }, /* interrupt */
  380. { 0x600, SIGBUS }, /* alingment */
  381. { 0x700, SIGTRAP }, /* breakpoint trap */
  382. { 0x800, SIGFPE }, /* fpu unavail */
  383. { 0x900, SIGALRM }, /* decrementer */
  384. { 0xa00, SIGILL }, /* reserved */
  385. { 0xb00, SIGILL }, /* reserved */
  386. { 0xc00, SIGCHLD }, /* syscall */
  387. { 0xd00, SIGTRAP }, /* single-step/watch */
  388. { 0xe00, SIGFPE }, /* fp assist */
  389. { 0, 0} /* Must be last */
  390. };
  391. static int computeSignal(unsigned int tt)
  392. {
  393. struct hard_trap_info *ht;
  394. for (ht = hard_trap_info; ht->tt && ht->signo; ht++)
  395. if (ht->tt == tt)
  396. return ht->signo;
  397. return SIGHUP;         /* default for things we don't know about */
  398. }
  399. #define PC_REGNUM 64
  400. #define SP_REGNUM 1
  401. /*
  402.  * This function does all command processing for interfacing to gdb.
  403.  */
  404. static void
  405. handle_exception (struct pt_regs *regs)
  406. {
  407. int sigval;
  408. int addr;
  409. int length;
  410. char *ptr;
  411. unsigned long msr;
  412. if (debugger_fault_handler) {
  413. debugger_fault_handler(regs);
  414. panic("kgdb longjump failed!n");
  415. }
  416. if (kgdb_active) {
  417. printk("interrupt while in kgdb, returningn");
  418. return;
  419. }
  420. kgdb_active = 1;
  421. kgdb_started = 1;
  422. #ifdef KGDB_DEBUG
  423. printk("kgdb: entering handle_exception; trap [0x%x]n",
  424.        (unsigned int)regs->trap);
  425. #endif
  426. kgdb_interruptible(0);
  427. lock_kernel();
  428. msr = get_msr();
  429. set_msr(msr & ~MSR_EE); /* disable interrupts */
  430. if (regs->nip == (unsigned long)breakinst) {
  431. /* Skip over breakpoint trap insn */
  432. regs->nip += 4;
  433. }
  434. /* reply to host that an exception has occurred */
  435. sigval = computeSignal(regs->trap);
  436. ptr = remcomOutBuffer;
  437. #if 0
  438. *ptr++ = 'S';
  439. *ptr++ = hexchars[sigval >> 4];
  440. *ptr++ = hexchars[sigval & 0xf];
  441. #else
  442. *ptr++ = 'T';
  443. *ptr++ = hexchars[sigval >> 4];
  444. *ptr++ = hexchars[sigval & 0xf];
  445. *ptr++ = hexchars[PC_REGNUM >> 4];
  446. *ptr++ = hexchars[PC_REGNUM & 0xf];
  447. *ptr++ = ':';
  448. ptr = mem2hex((char *)&regs->nip, ptr, 4);
  449. *ptr++ = ';';
  450. *ptr++ = hexchars[SP_REGNUM >> 4];
  451. *ptr++ = hexchars[SP_REGNUM & 0xf];
  452. *ptr++ = ':';
  453. ptr = mem2hex(((char *)&regs) + SP_REGNUM*4, ptr, 4);
  454. *ptr++ = ';';
  455. #endif
  456. *ptr++ = 0;
  457. putpacket(remcomOutBuffer);
  458. /* XXX We may want to add some features dealing with poking the
  459.  * XXX page tables, ... (look at sparc-stub.c for more info)
  460.  * XXX also required hacking to the gdb sources directly...
  461.  */
  462. while (1) {
  463. remcomOutBuffer[0] = 0;
  464. getpacket(remcomInBuffer);
  465. switch (remcomInBuffer[0]) {
  466. case '?':               /* report most recent signal */
  467. remcomOutBuffer[0] = 'S';
  468. remcomOutBuffer[1] = hexchars[sigval >> 4];
  469. remcomOutBuffer[2] = hexchars[sigval & 0xf];
  470. remcomOutBuffer[3] = 0;
  471. break;
  472. #if 0
  473. case 'q': /* this screws up gdb for some reason...*/
  474. {
  475. extern long _start, sdata, __bss_start;
  476. ptr = &remcomInBuffer[1];
  477. if (strncmp(ptr, "Offsets", 7) != 0)
  478. break;
  479. ptr = remcomOutBuffer;
  480. sprintf(ptr, "Text=%8.8x;Data=%8.8x;Bss=%8.8x",
  481. &_start, &sdata, &__bss_start);
  482. break;
  483. }
  484. #endif
  485. case 'd':
  486. /* toggle debug flag */
  487. kdebug ^= 1;
  488. break;
  489. case 'g': /* return the value of the CPU registers.
  490.  * some of them are non-PowerPC names :(
  491.  * they are stored in gdb like:
  492.  * struct {
  493.  *     u32 gpr[32];
  494.  *     f64 fpr[32];
  495.  *     u32 pc, ps, cnd, lr; (ps=msr)
  496.  *     u32 cnt, xer, mq;
  497.  * }
  498.  */
  499. {
  500. int i;
  501. ptr = remcomOutBuffer;
  502. /* General Purpose Regs */
  503. ptr = mem2hex((char *)regs, ptr, 32 * 4);
  504. /* Floating Point Regs - FIXME */
  505. /*ptr = mem2hex((char *), ptr, 32 * 8);*/
  506. for(i=0; i<(32*8*2); i++) { /* 2chars/byte */
  507. ptr[i] = '0';
  508. }
  509. ptr += 32*8*2;
  510. /* pc, msr, cr, lr, ctr, xer, (mq is unused) */
  511. ptr = mem2hex((char *)&regs->nip, ptr, 4);
  512. ptr = mem2hex((char *)&regs->msr, ptr, 4);
  513. ptr = mem2hex((char *)&regs->ccr, ptr, 4);
  514. ptr = mem2hex((char *)&regs->link, ptr, 4);
  515. ptr = mem2hex((char *)&regs->ctr, ptr, 4);
  516. ptr = mem2hex((char *)&regs->xer, ptr, 4);
  517. }
  518. break;
  519. case 'G':   /* set the value of the CPU registers */
  520. {
  521. ptr = &remcomInBuffer[1];
  522. /*
  523.  * If the stack pointer has moved, you should pray.
  524.  * (cause only god can help you).
  525.  */
  526. /* General Purpose Regs */
  527. hex2mem(ptr, (char *)regs, 32 * 4);
  528. /* Floating Point Regs - FIXME?? */
  529. /*ptr = hex2mem(ptr, ??, 32 * 8);*/
  530. ptr += 32*8*2;
  531. /* pc, msr, cr, lr, ctr, xer, (mq is unused) */
  532. ptr = hex2mem(ptr, (char *)&regs->nip, 4);
  533. ptr = hex2mem(ptr, (char *)&regs->msr, 4);
  534. ptr = hex2mem(ptr, (char *)&regs->ccr, 4);
  535. ptr = hex2mem(ptr, (char *)&regs->link, 4);
  536. ptr = hex2mem(ptr, (char *)&regs->ctr, 4);
  537. ptr = hex2mem(ptr, (char *)&regs->xer, 4);
  538. strcpy(remcomOutBuffer,"OK");
  539. }
  540. break;
  541. case 'H':
  542. /* don't do anything, yet, just acknowledge */
  543. hexToInt(&ptr, &addr);
  544. strcpy(remcomOutBuffer,"OK");
  545. break;
  546. case 'm': /* mAA..AA,LLLL  Read LLLL bytes at address AA..AA */
  547. /* Try to read %x,%x.  */
  548. ptr = &remcomInBuffer[1];
  549. if (hexToInt(&ptr, &addr)
  550.     && *ptr++ == ','
  551.     && hexToInt(&ptr, &length)) {
  552. if (mem2hex((char *)addr, remcomOutBuffer,length))
  553. break;
  554. strcpy (remcomOutBuffer, "E03");
  555. } else {
  556. strcpy(remcomOutBuffer,"E01");
  557. }
  558. break;
  559. case 'M': /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
  560. /* Try to read '%x,%x:'.  */
  561. ptr = &remcomInBuffer[1];
  562. if (hexToInt(&ptr, &addr)
  563.     && *ptr++ == ','
  564.     && hexToInt(&ptr, &length)
  565.     && *ptr++ == ':') {
  566. if (hex2mem(ptr, (char *)addr, length)) {
  567. strcpy(remcomOutBuffer, "OK");
  568. } else {
  569. strcpy(remcomOutBuffer, "E03");
  570. }
  571. flush_icache_range(addr, addr+length);
  572. } else {
  573. strcpy(remcomOutBuffer, "E02");
  574. }
  575. break;
  576. case 'k':    /* kill the program, actually just continue */
  577. case 'c':    /* cAA..AA  Continue; address AA..AA optional */
  578. /* try to read optional parameter, pc unchanged if no parm */
  579. ptr = &remcomInBuffer[1];
  580. if (hexToInt(&ptr, &addr)) {
  581. regs->nip = addr;
  582. }
  583. /* Need to flush the instruction cache here, as we may have deposited a
  584.  * breakpoint, and the icache probably has no way of knowing that a data ref to
  585.  * some location may have changed something that is in the instruction cache.
  586.  */
  587. kgdb_flush_cache_all();
  588. set_msr(msr);
  589. kgdb_interruptible(1);
  590. unlock_kernel();
  591. kgdb_active = 0;
  592. return;
  593. case 's':
  594. kgdb_flush_cache_all();
  595. regs->msr |= MSR_SE;
  596. #if 0
  597. set_msr(msr | MSR_SE);
  598. #endif
  599. unlock_kernel();
  600. kgdb_active = 0;
  601. return;
  602. case 'r': /* Reset (if user process..exit ???)*/
  603. panic("kgdb reset.");
  604. break;
  605. } /* switch */
  606. if (remcomOutBuffer[0] && kdebug) {
  607. printk("remcomInBuffer: %sn", remcomInBuffer);
  608. printk("remcomOutBuffer: %sn", remcomOutBuffer);
  609. }
  610. /* reply to the request */
  611. putpacket(remcomOutBuffer);
  612. } /* while(1) */
  613. }
  614. /* This function will generate a breakpoint exception.  It is used at the
  615.    beginning of a program to sync up with a debugger and can be used
  616.    otherwise as a quick means to stop program execution and "break" into
  617.    the debugger. */
  618. void
  619. breakpoint(void)
  620. {
  621. if (!initialized) {
  622. printk("breakpoint() called b4 kgdb initn");
  623. return;
  624. }
  625. asm(" .globl breakinst
  626.      breakinst: .long 0x7d821008
  627.             ");
  628. }
  629. /* Output string in GDB O-packet format if GDB has connected. If nothing
  630.    output, returns 0 (caller must then handle output). */
  631. int
  632. kgdb_output_string (const char* s, unsigned int count)
  633. {
  634. char buffer[512];
  635.         if (!kgdb_started)
  636.             return 0;
  637. count = (count <= (sizeof(buffer) / 2 - 2)) 
  638. ? count : (sizeof(buffer) / 2 - 2);
  639. buffer[0] = 'O';
  640. mem2hex (s, &buffer[1], count);
  641. putpacket(buffer);
  642.         return 1;
  643.  }