gdb-stub.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911
  1. /* MN10300 GDB stub
  2. *
  3. * Originally written by Glenn Engel, Lake Stevens Instrument Division
  4. *
  5. * Contributed by HP Systems
  6. *
  7. * Modified for SPARC by Stu Grossman, Cygnus Support.
  8. *
  9. * Modified for Linux/MIPS (and MIPS in general) by Andreas Busse
  10. * Send complaints, suggestions etc. to <andy@waldorf-gmbh.de>
  11. *
  12. * Copyright (C) 1995 Andreas Busse
  13. *
  14. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  15. * Modified for Linux/mn10300 by David Howells <dhowells@redhat.com>
  16. */
  17. /*
  18. * To enable debugger support, two things need to happen. One, a
  19. * call to set_debug_traps() is necessary in order to allow any breakpoints
  20. * or error conditions to be properly intercepted and reported to gdb.
  21. * Two, a breakpoint needs to be generated to begin communication. This
  22. * is most easily accomplished by a call to breakpoint(). Breakpoint()
  23. * simulates a breakpoint by executing a BREAK instruction.
  24. *
  25. *
  26. * The following gdb commands are supported:
  27. *
  28. * command function Return value
  29. *
  30. * g return the value of the CPU registers hex data or ENN
  31. * G set the value of the CPU registers OK or ENN
  32. *
  33. * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
  34. * MAA..AA,LLLL: Write LLLL bytes at address AA.AA OK or ENN
  35. *
  36. * c Resume at current address SNN ( signal NN)
  37. * cAA..AA Continue at address AA..AA SNN
  38. *
  39. * s Step one instruction SNN
  40. * sAA..AA Step one instruction from AA..AA SNN
  41. *
  42. * k kill
  43. *
  44. * ? What was the last sigval ? SNN (signal NN)
  45. *
  46. * bBB..BB Set baud rate to BB..BB OK or BNN, then sets
  47. * baud rate
  48. *
  49. * All commands and responses are sent with a packet which includes a
  50. * checksum. A packet consists of
  51. *
  52. * $<packet info>#<checksum>.
  53. *
  54. * where
  55. * <packet info> :: <characters representing the command or response>
  56. * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
  57. *
  58. * When a packet is received, it is first acknowledged with either '+' or '-'.
  59. * '+' indicates a successful transfer. '-' indicates a failed transfer.
  60. *
  61. * Example:
  62. *
  63. * Host: Reply:
  64. * $m0,10#2a +$00010203040506070809101112131415#42
  65. *
  66. *
  67. * ==============
  68. * MORE EXAMPLES:
  69. * ==============
  70. *
  71. * For reference -- the following are the steps that one
  72. * company took (RidgeRun Inc) to get remote gdb debugging
  73. * going. In this scenario the host machine was a PC and the
  74. * target platform was a Galileo EVB64120A MIPS evaluation
  75. * board.
  76. *
  77. * Step 1:
  78. * First download gdb-5.0.tar.gz from the internet.
  79. * and then build/install the package.
  80. *
  81. * Example:
  82. * $ tar zxf gdb-5.0.tar.gz
  83. * $ cd gdb-5.0
  84. * $ ./configure --target=am33_2.0-linux-gnu
  85. * $ make
  86. * $ install
  87. * am33_2.0-linux-gnu-gdb
  88. *
  89. * Step 2:
  90. * Configure linux for remote debugging and build it.
  91. *
  92. * Example:
  93. * $ cd ~/linux
  94. * $ make menuconfig <go to "Kernel Hacking" and turn on remote debugging>
  95. * $ make dep; make vmlinux
  96. *
  97. * Step 3:
  98. * Download the kernel to the remote target and start
  99. * the kernel running. It will promptly halt and wait
  100. * for the host gdb session to connect. It does this
  101. * since the "Kernel Hacking" option has defined
  102. * CONFIG_REMOTE_DEBUG which in turn enables your calls
  103. * to:
  104. * set_debug_traps();
  105. * breakpoint();
  106. *
  107. * Step 4:
  108. * Start the gdb session on the host.
  109. *
  110. * Example:
  111. * $ am33_2.0-linux-gnu-gdb vmlinux
  112. * (gdb) set remotebaud 115200
  113. * (gdb) target remote /dev/ttyS1
  114. * ...at this point you are connected to
  115. * the remote target and can use gdb
  116. * in the normal fasion. Setting
  117. * breakpoints, single stepping,
  118. * printing variables, etc.
  119. *
  120. */
  121. #include <linux/string.h>
  122. #include <linux/kernel.h>
  123. #include <linux/signal.h>
  124. #include <linux/sched.h>
  125. #include <linux/mm.h>
  126. #include <linux/console.h>
  127. #include <linux/init.h>
  128. #include <linux/bug.h>
  129. #include <asm/pgtable.h>
  130. #include <asm/system.h>
  131. #include <asm/gdb-stub.h>
  132. #include <asm/exceptions.h>
  133. #include <asm/cacheflush.h>
  134. #include <asm/serial-regs.h>
  135. #include <asm/busctl-regs.h>
  136. #include <unit/leds.h>
  137. #include <unit/serial.h>
  138. /* define to use F7F7 rather than FF which is subverted by JTAG debugger */
  139. #undef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  140. /*
  141. * BUFMAX defines the maximum number of characters in inbound/outbound buffers
  142. * at least NUMREGBYTES*2 are needed for register packets
  143. */
  144. #define BUFMAX 2048
  145. static const char gdbstub_banner[] =
  146. "Linux/MN10300 GDB Stub (c) RedHat 2007\n";
  147. u8 gdbstub_rx_buffer[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));
  148. u32 gdbstub_rx_inp;
  149. u32 gdbstub_rx_outp;
  150. u8 gdbstub_busy;
  151. u8 gdbstub_rx_overflow;
  152. u8 gdbstub_rx_unget;
  153. static u8 gdbstub_flush_caches;
  154. static char input_buffer[BUFMAX];
  155. static char output_buffer[BUFMAX];
  156. static char trans_buffer[BUFMAX];
  157. struct gdbstub_bkpt {
  158. u8 *addr; /* address of breakpoint */
  159. u8 len; /* size of breakpoint */
  160. u8 origbytes[7]; /* original bytes */
  161. };
  162. static struct gdbstub_bkpt gdbstub_bkpts[256];
  163. /*
  164. * local prototypes
  165. */
  166. static void getpacket(char *buffer);
  167. static int putpacket(char *buffer);
  168. static int computeSignal(enum exception_code excep);
  169. static int hex(unsigned char ch);
  170. static int hexToInt(char **ptr, int *intValue);
  171. static unsigned char *mem2hex(const void *mem, char *buf, int count,
  172. int may_fault);
  173. static const char *hex2mem(const char *buf, void *_mem, int count,
  174. int may_fault);
  175. /*
  176. * Convert ch from a hex digit to an int
  177. */
  178. static int hex(unsigned char ch)
  179. {
  180. if (ch >= 'a' && ch <= 'f')
  181. return ch - 'a' + 10;
  182. if (ch >= '0' && ch <= '9')
  183. return ch - '0';
  184. if (ch >= 'A' && ch <= 'F')
  185. return ch - 'A' + 10;
  186. return -1;
  187. }
  188. #ifdef CONFIG_GDBSTUB_DEBUGGING
  189. void debug_to_serial(const char *p, int n)
  190. {
  191. __debug_to_serial(p, n);
  192. /* gdbstub_console_write(NULL, p, n); */
  193. }
  194. void gdbstub_printk(const char *fmt, ...)
  195. {
  196. va_list args;
  197. int len;
  198. /* Emit the output into the temporary buffer */
  199. va_start(args, fmt);
  200. len = vsnprintf(trans_buffer, sizeof(trans_buffer), fmt, args);
  201. va_end(args);
  202. debug_to_serial(trans_buffer, len);
  203. }
  204. #endif
  205. static inline char *gdbstub_strcpy(char *dst, const char *src)
  206. {
  207. int loop = 0;
  208. while ((dst[loop] = src[loop]))
  209. loop++;
  210. return dst;
  211. }
  212. /*
  213. * scan for the sequence $<data>#<checksum>
  214. */
  215. static void getpacket(char *buffer)
  216. {
  217. unsigned char checksum;
  218. unsigned char xmitcsum;
  219. unsigned char ch;
  220. int count, i, ret, error;
  221. for (;;) {
  222. /*
  223. * wait around for the start character,
  224. * ignore all other characters
  225. */
  226. do {
  227. gdbstub_io_rx_char(&ch, 0);
  228. } while (ch != '$');
  229. checksum = 0;
  230. xmitcsum = -1;
  231. count = 0;
  232. error = 0;
  233. /*
  234. * now, read until a # or end of buffer is found
  235. */
  236. while (count < BUFMAX) {
  237. ret = gdbstub_io_rx_char(&ch, 0);
  238. if (ret < 0)
  239. error = ret;
  240. if (ch == '#')
  241. break;
  242. checksum += ch;
  243. buffer[count] = ch;
  244. count++;
  245. }
  246. if (error == -EIO) {
  247. gdbstub_proto("### GDB Rx Error - Skipping packet"
  248. " ###\n");
  249. gdbstub_proto("### GDB Tx NAK\n");
  250. gdbstub_io_tx_char('-');
  251. continue;
  252. }
  253. if (count >= BUFMAX || error)
  254. continue;
  255. buffer[count] = 0;
  256. /* read the checksum */
  257. ret = gdbstub_io_rx_char(&ch, 0);
  258. if (ret < 0)
  259. error = ret;
  260. xmitcsum = hex(ch) << 4;
  261. ret = gdbstub_io_rx_char(&ch, 0);
  262. if (ret < 0)
  263. error = ret;
  264. xmitcsum |= hex(ch);
  265. if (error) {
  266. if (error == -EIO)
  267. gdbstub_io("### GDB Rx Error -"
  268. " Skipping packet\n");
  269. gdbstub_io("### GDB Tx NAK\n");
  270. gdbstub_io_tx_char('-');
  271. continue;
  272. }
  273. /* check the checksum */
  274. if (checksum != xmitcsum) {
  275. gdbstub_io("### GDB Tx NAK\n");
  276. gdbstub_io_tx_char('-'); /* failed checksum */
  277. continue;
  278. }
  279. gdbstub_proto("### GDB Rx '$%s#%02x' ###\n", buffer, checksum);
  280. gdbstub_io("### GDB Tx ACK\n");
  281. gdbstub_io_tx_char('+'); /* successful transfer */
  282. /*
  283. * if a sequence char is present,
  284. * reply the sequence ID
  285. */
  286. if (buffer[2] == ':') {
  287. gdbstub_io_tx_char(buffer[0]);
  288. gdbstub_io_tx_char(buffer[1]);
  289. /*
  290. * remove sequence chars from buffer
  291. */
  292. count = 0;
  293. while (buffer[count])
  294. count++;
  295. for (i = 3; i <= count; i++)
  296. buffer[i - 3] = buffer[i];
  297. }
  298. break;
  299. }
  300. }
  301. /*
  302. * send the packet in buffer.
  303. * - return 0 if successfully ACK'd
  304. * - return 1 if abandoned due to new incoming packet
  305. */
  306. static int putpacket(char *buffer)
  307. {
  308. unsigned char checksum;
  309. unsigned char ch;
  310. int count;
  311. /*
  312. * $<packet info>#<checksum>.
  313. */
  314. gdbstub_proto("### GDB Tx $'%s'#?? ###\n", buffer);
  315. do {
  316. gdbstub_io_tx_char('$');
  317. checksum = 0;
  318. count = 0;
  319. while ((ch = buffer[count]) != 0) {
  320. gdbstub_io_tx_char(ch);
  321. checksum += ch;
  322. count += 1;
  323. }
  324. gdbstub_io_tx_char('#');
  325. gdbstub_io_tx_char(hex_asc_hi(checksum));
  326. gdbstub_io_tx_char(hex_asc_lo(checksum));
  327. } while (gdbstub_io_rx_char(&ch, 0),
  328. ch == '-' && (gdbstub_io("### GDB Rx NAK\n"), 0),
  329. ch != '-' && ch != '+' &&
  330. (gdbstub_io("### GDB Rx ??? %02x\n", ch), 0),
  331. ch != '+' && ch != '$');
  332. if (ch == '+') {
  333. gdbstub_io("### GDB Rx ACK\n");
  334. return 0;
  335. }
  336. gdbstub_io("### GDB Tx Abandoned\n");
  337. gdbstub_rx_unget = ch;
  338. return 1;
  339. }
  340. /*
  341. * While we find nice hex chars, build an int.
  342. * Return number of chars processed.
  343. */
  344. static int hexToInt(char **ptr, int *intValue)
  345. {
  346. int numChars = 0;
  347. int hexValue;
  348. *intValue = 0;
  349. while (**ptr) {
  350. hexValue = hex(**ptr);
  351. if (hexValue < 0)
  352. break;
  353. *intValue = (*intValue << 4) | hexValue;
  354. numChars++;
  355. (*ptr)++;
  356. }
  357. return (numChars);
  358. }
  359. /*
  360. * We single-step by setting breakpoints. When an exception
  361. * is handled, we need to restore the instructions hoisted
  362. * when the breakpoints were set.
  363. *
  364. * This is where we save the original instructions.
  365. */
  366. static struct gdb_bp_save {
  367. u8 *addr;
  368. u8 opcode[2];
  369. } step_bp[2];
  370. static const unsigned char gdbstub_insn_sizes[256] =
  371. {
  372. /* 1 2 3 4 5 6 7 8 9 a b c d e f */
  373. 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, 1, 3, 3, 3, /* 0 */
  374. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 1 */
  375. 2, 2, 2, 2, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, /* 2 */
  376. 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, /* 3 */
  377. 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, /* 4 */
  378. 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, /* 5 */
  379. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6 */
  380. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 7 */
  381. 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, /* 8 */
  382. 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, /* 9 */
  383. 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, /* a */
  384. 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, /* b */
  385. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 2, /* c */
  386. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* d */
  387. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* e */
  388. 0, 2, 2, 2, 2, 2, 2, 4, 0, 3, 0, 4, 0, 6, 7, 1 /* f */
  389. };
  390. static int __gdbstub_mark_bp(u8 *addr, int ix)
  391. {
  392. if (addr < (u8 *) 0x70000000UL)
  393. return 0;
  394. /* 70000000-7fffffff: vmalloc area */
  395. if (addr < (u8 *) 0x80000000UL)
  396. goto okay;
  397. if (addr < (u8 *) 0x8c000000UL)
  398. return 0;
  399. /* 8c000000-93ffffff: SRAM, SDRAM */
  400. if (addr < (u8 *) 0x94000000UL)
  401. goto okay;
  402. return 0;
  403. okay:
  404. if (gdbstub_read_byte(addr + 0, &step_bp[ix].opcode[0]) < 0 ||
  405. gdbstub_read_byte(addr + 1, &step_bp[ix].opcode[1]) < 0)
  406. return 0;
  407. step_bp[ix].addr = addr;
  408. return 1;
  409. }
  410. static inline void __gdbstub_restore_bp(void)
  411. {
  412. #ifdef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  413. if (step_bp[0].addr) {
  414. gdbstub_write_byte(step_bp[0].opcode[0], step_bp[0].addr + 0);
  415. gdbstub_write_byte(step_bp[0].opcode[1], step_bp[0].addr + 1);
  416. }
  417. if (step_bp[1].addr) {
  418. gdbstub_write_byte(step_bp[1].opcode[0], step_bp[1].addr + 0);
  419. gdbstub_write_byte(step_bp[1].opcode[1], step_bp[1].addr + 1);
  420. }
  421. #else
  422. if (step_bp[0].addr)
  423. gdbstub_write_byte(step_bp[0].opcode[0], step_bp[0].addr + 0);
  424. if (step_bp[1].addr)
  425. gdbstub_write_byte(step_bp[1].opcode[0], step_bp[1].addr + 0);
  426. #endif
  427. gdbstub_flush_caches = 1;
  428. step_bp[0].addr = NULL;
  429. step_bp[0].opcode[0] = 0;
  430. step_bp[0].opcode[1] = 0;
  431. step_bp[1].addr = NULL;
  432. step_bp[1].opcode[0] = 0;
  433. step_bp[1].opcode[1] = 0;
  434. }
  435. /*
  436. * emulate single stepping by means of breakpoint instructions
  437. */
  438. static int gdbstub_single_step(struct pt_regs *regs)
  439. {
  440. unsigned size;
  441. uint32_t x;
  442. uint8_t cur, *pc, *sp;
  443. step_bp[0].addr = NULL;
  444. step_bp[0].opcode[0] = 0;
  445. step_bp[0].opcode[1] = 0;
  446. step_bp[1].addr = NULL;
  447. step_bp[1].opcode[0] = 0;
  448. step_bp[1].opcode[1] = 0;
  449. x = 0;
  450. pc = (u8 *) regs->pc;
  451. sp = (u8 *) (regs + 1);
  452. if (gdbstub_read_byte(pc, &cur) < 0)
  453. return -EFAULT;
  454. gdbstub_bkpt("Single Step from %p { %02x }\n", pc, cur);
  455. gdbstub_flush_caches = 1;
  456. size = gdbstub_insn_sizes[cur];
  457. if (size > 0) {
  458. if (!__gdbstub_mark_bp(pc + size, 0))
  459. goto fault;
  460. } else {
  461. switch (cur) {
  462. /* Bxx (d8,PC) */
  463. case 0xc0 ... 0xca:
  464. if (gdbstub_read_byte(pc + 1, (u8 *) &x) < 0)
  465. goto fault;
  466. if (!__gdbstub_mark_bp(pc + 2, 0))
  467. goto fault;
  468. if ((x < 0 || x > 2) &&
  469. !__gdbstub_mark_bp(pc + (s8) x, 1))
  470. goto fault;
  471. break;
  472. /* LXX (d8,PC) */
  473. case 0xd0 ... 0xda:
  474. if (!__gdbstub_mark_bp(pc + 1, 0))
  475. goto fault;
  476. if (regs->pc != regs->lar &&
  477. !__gdbstub_mark_bp((u8 *) regs->lar, 1))
  478. goto fault;
  479. break;
  480. /* SETLB - loads the next for bytes into the LIR
  481. * register */
  482. case 0xdb:
  483. if (!__gdbstub_mark_bp(pc + 1, 0))
  484. goto fault;
  485. break;
  486. /* JMP (d16,PC) or CALL (d16,PC) */
  487. case 0xcc:
  488. case 0xcd:
  489. if (gdbstub_read_byte(pc + 1, ((u8 *) &x) + 0) < 0 ||
  490. gdbstub_read_byte(pc + 2, ((u8 *) &x) + 1) < 0)
  491. goto fault;
  492. if (!__gdbstub_mark_bp(pc + (s16) x, 0))
  493. goto fault;
  494. break;
  495. /* JMP (d32,PC) or CALL (d32,PC) */
  496. case 0xdc:
  497. case 0xdd:
  498. if (gdbstub_read_byte(pc + 1, ((u8 *) &x) + 0) < 0 ||
  499. gdbstub_read_byte(pc + 2, ((u8 *) &x) + 1) < 0 ||
  500. gdbstub_read_byte(pc + 3, ((u8 *) &x) + 2) < 0 ||
  501. gdbstub_read_byte(pc + 4, ((u8 *) &x) + 3) < 0)
  502. goto fault;
  503. if (!__gdbstub_mark_bp(pc + (s32) x, 0))
  504. goto fault;
  505. break;
  506. /* RETF */
  507. case 0xde:
  508. if (!__gdbstub_mark_bp((u8 *) regs->mdr, 0))
  509. goto fault;
  510. break;
  511. /* RET */
  512. case 0xdf:
  513. if (gdbstub_read_byte(pc + 2, (u8 *) &x) < 0)
  514. goto fault;
  515. sp += (s8)x;
  516. if (gdbstub_read_byte(sp + 0, ((u8 *) &x) + 0) < 0 ||
  517. gdbstub_read_byte(sp + 1, ((u8 *) &x) + 1) < 0 ||
  518. gdbstub_read_byte(sp + 2, ((u8 *) &x) + 2) < 0 ||
  519. gdbstub_read_byte(sp + 3, ((u8 *) &x) + 3) < 0)
  520. goto fault;
  521. if (!__gdbstub_mark_bp((u8 *) x, 0))
  522. goto fault;
  523. break;
  524. case 0xf0:
  525. if (gdbstub_read_byte(pc + 1, &cur) < 0)
  526. goto fault;
  527. if (cur >= 0xf0 && cur <= 0xf7) {
  528. /* JMP (An) / CALLS (An) */
  529. switch (cur & 3) {
  530. case 0: x = regs->a0; break;
  531. case 1: x = regs->a1; break;
  532. case 2: x = regs->a2; break;
  533. case 3: x = regs->a3; break;
  534. }
  535. if (!__gdbstub_mark_bp((u8 *) x, 0))
  536. goto fault;
  537. } else if (cur == 0xfc) {
  538. /* RETS */
  539. if (gdbstub_read_byte(
  540. sp + 0, ((u8 *) &x) + 0) < 0 ||
  541. gdbstub_read_byte(
  542. sp + 1, ((u8 *) &x) + 1) < 0 ||
  543. gdbstub_read_byte(
  544. sp + 2, ((u8 *) &x) + 2) < 0 ||
  545. gdbstub_read_byte(
  546. sp + 3, ((u8 *) &x) + 3) < 0)
  547. goto fault;
  548. if (!__gdbstub_mark_bp((u8 *) x, 0))
  549. goto fault;
  550. } else if (cur == 0xfd) {
  551. /* RTI */
  552. if (gdbstub_read_byte(
  553. sp + 4, ((u8 *) &x) + 0) < 0 ||
  554. gdbstub_read_byte(
  555. sp + 5, ((u8 *) &x) + 1) < 0 ||
  556. gdbstub_read_byte(
  557. sp + 6, ((u8 *) &x) + 2) < 0 ||
  558. gdbstub_read_byte(
  559. sp + 7, ((u8 *) &x) + 3) < 0)
  560. goto fault;
  561. if (!__gdbstub_mark_bp((u8 *) x, 0))
  562. goto fault;
  563. } else {
  564. if (!__gdbstub_mark_bp(pc + 2, 0))
  565. goto fault;
  566. }
  567. break;
  568. /* potential 3-byte conditional branches */
  569. case 0xf8:
  570. if (gdbstub_read_byte(pc + 1, &cur) < 0)
  571. goto fault;
  572. if (!__gdbstub_mark_bp(pc + 3, 0))
  573. goto fault;
  574. if (cur >= 0xe8 && cur <= 0xeb) {
  575. if (gdbstub_read_byte(
  576. pc + 2, ((u8 *) &x) + 0) < 0)
  577. goto fault;
  578. if ((x < 0 || x > 3) &&
  579. !__gdbstub_mark_bp(pc + (s8) x, 1))
  580. goto fault;
  581. }
  582. break;
  583. case 0xfa:
  584. if (gdbstub_read_byte(pc + 1, &cur) < 0)
  585. goto fault;
  586. if (cur == 0xff) {
  587. /* CALLS (d16,PC) */
  588. if (gdbstub_read_byte(
  589. pc + 2, ((u8 *) &x) + 0) < 0 ||
  590. gdbstub_read_byte(
  591. pc + 3, ((u8 *) &x) + 1) < 0)
  592. goto fault;
  593. if (!__gdbstub_mark_bp(pc + (s16) x, 0))
  594. goto fault;
  595. } else {
  596. if (!__gdbstub_mark_bp(pc + 4, 0))
  597. goto fault;
  598. }
  599. break;
  600. case 0xfc:
  601. if (gdbstub_read_byte(pc + 1, &cur) < 0)
  602. goto fault;
  603. if (cur == 0xff) {
  604. /* CALLS (d32,PC) */
  605. if (gdbstub_read_byte(
  606. pc + 2, ((u8 *) &x) + 0) < 0 ||
  607. gdbstub_read_byte(
  608. pc + 3, ((u8 *) &x) + 1) < 0 ||
  609. gdbstub_read_byte(
  610. pc + 4, ((u8 *) &x) + 2) < 0 ||
  611. gdbstub_read_byte(
  612. pc + 5, ((u8 *) &x) + 3) < 0)
  613. goto fault;
  614. if (!__gdbstub_mark_bp(
  615. pc + (s32) x, 0))
  616. goto fault;
  617. } else {
  618. if (!__gdbstub_mark_bp(
  619. pc + 6, 0))
  620. goto fault;
  621. }
  622. break;
  623. }
  624. }
  625. gdbstub_bkpt("Step: %02x at %p; %02x at %p\n",
  626. step_bp[0].opcode[0], step_bp[0].addr,
  627. step_bp[1].opcode[0], step_bp[1].addr);
  628. if (step_bp[0].addr) {
  629. #ifdef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  630. if (gdbstub_write_byte(0xF7, step_bp[0].addr + 0) < 0 ||
  631. gdbstub_write_byte(0xF7, step_bp[0].addr + 1) < 0)
  632. goto fault;
  633. #else
  634. if (gdbstub_write_byte(0xFF, step_bp[0].addr + 0) < 0)
  635. goto fault;
  636. #endif
  637. }
  638. if (step_bp[1].addr) {
  639. #ifdef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  640. if (gdbstub_write_byte(0xF7, step_bp[1].addr + 0) < 0 ||
  641. gdbstub_write_byte(0xF7, step_bp[1].addr + 1) < 0)
  642. goto fault;
  643. #else
  644. if (gdbstub_write_byte(0xFF, step_bp[1].addr + 0) < 0)
  645. goto fault;
  646. #endif
  647. }
  648. return 0;
  649. fault:
  650. /* uh-oh - silly address alert, try and restore things */
  651. __gdbstub_restore_bp();
  652. return -EFAULT;
  653. }
  654. #ifdef CONFIG_GDBSTUB_CONSOLE
  655. void gdbstub_console_write(struct console *con, const char *p, unsigned n)
  656. {
  657. static const char gdbstub_cr[] = { 0x0d };
  658. char outbuf[26];
  659. int qty;
  660. u8 busy;
  661. busy = gdbstub_busy;
  662. gdbstub_busy = 1;
  663. outbuf[0] = 'O';
  664. while (n > 0) {
  665. qty = 1;
  666. while (n > 0 && qty < 20) {
  667. mem2hex(p, outbuf + qty, 2, 0);
  668. qty += 2;
  669. if (*p == 0x0a) {
  670. mem2hex(gdbstub_cr, outbuf + qty, 2, 0);
  671. qty += 2;
  672. }
  673. p++;
  674. n--;
  675. }
  676. outbuf[qty] = 0;
  677. putpacket(outbuf);
  678. }
  679. gdbstub_busy = busy;
  680. }
  681. static kdev_t gdbstub_console_dev(struct console *con)
  682. {
  683. return MKDEV(1, 3); /* /dev/null */
  684. }
  685. static struct console gdbstub_console = {
  686. .name = "gdb",
  687. .write = gdbstub_console_write,
  688. .device = gdbstub_console_dev,
  689. .flags = CON_PRINTBUFFER,
  690. .index = -1,
  691. };
  692. #endif
  693. /*
  694. * Convert the memory pointed to by mem into hex, placing result in buf.
  695. * - if successful, return a pointer to the last char put in buf (NUL)
  696. * - in case of mem fault, return NULL
  697. * may_fault is non-zero if we are reading from arbitrary memory, but is
  698. * currently not used.
  699. */
  700. static
  701. unsigned char *mem2hex(const void *_mem, char *buf, int count, int may_fault)
  702. {
  703. const u8 *mem = _mem;
  704. u8 ch[4];
  705. if ((u32) mem & 1 && count >= 1) {
  706. if (gdbstub_read_byte(mem, ch) != 0)
  707. return 0;
  708. buf = pack_hex_byte(buf, ch[0]);
  709. mem++;
  710. count--;
  711. }
  712. if ((u32) mem & 3 && count >= 2) {
  713. if (gdbstub_read_word(mem, ch) != 0)
  714. return 0;
  715. buf = pack_hex_byte(buf, ch[0]);
  716. buf = pack_hex_byte(buf, ch[1]);
  717. mem += 2;
  718. count -= 2;
  719. }
  720. while (count >= 4) {
  721. if (gdbstub_read_dword(mem, ch) != 0)
  722. return 0;
  723. buf = pack_hex_byte(buf, ch[0]);
  724. buf = pack_hex_byte(buf, ch[1]);
  725. buf = pack_hex_byte(buf, ch[2]);
  726. buf = pack_hex_byte(buf, ch[3]);
  727. mem += 4;
  728. count -= 4;
  729. }
  730. if (count >= 2) {
  731. if (gdbstub_read_word(mem, ch) != 0)
  732. return 0;
  733. buf = pack_hex_byte(buf, ch[0]);
  734. buf = pack_hex_byte(buf, ch[1]);
  735. mem += 2;
  736. count -= 2;
  737. }
  738. if (count >= 1) {
  739. if (gdbstub_read_byte(mem, ch) != 0)
  740. return 0;
  741. buf = pack_hex_byte(buf, ch[0]);
  742. }
  743. *buf = 0;
  744. return buf;
  745. }
  746. /*
  747. * convert the hex array pointed to by buf into binary to be placed in mem
  748. * return a pointer to the character AFTER the last byte written
  749. * may_fault is non-zero if we are reading from arbitrary memory, but is
  750. * currently not used.
  751. */
  752. static
  753. const char *hex2mem(const char *buf, void *_mem, int count, int may_fault)
  754. {
  755. u8 *mem = _mem;
  756. union {
  757. u32 val;
  758. u8 b[4];
  759. } ch;
  760. if ((u32) mem & 1 && count >= 1) {
  761. ch.b[0] = hex(*buf++) << 4;
  762. ch.b[0] |= hex(*buf++);
  763. if (gdbstub_write_byte(ch.val, mem) != 0)
  764. return 0;
  765. mem++;
  766. count--;
  767. }
  768. if ((u32) mem & 3 && count >= 2) {
  769. ch.b[0] = hex(*buf++) << 4;
  770. ch.b[0] |= hex(*buf++);
  771. ch.b[1] = hex(*buf++) << 4;
  772. ch.b[1] |= hex(*buf++);
  773. if (gdbstub_write_word(ch.val, mem) != 0)
  774. return 0;
  775. mem += 2;
  776. count -= 2;
  777. }
  778. while (count >= 4) {
  779. ch.b[0] = hex(*buf++) << 4;
  780. ch.b[0] |= hex(*buf++);
  781. ch.b[1] = hex(*buf++) << 4;
  782. ch.b[1] |= hex(*buf++);
  783. ch.b[2] = hex(*buf++) << 4;
  784. ch.b[2] |= hex(*buf++);
  785. ch.b[3] = hex(*buf++) << 4;
  786. ch.b[3] |= hex(*buf++);
  787. if (gdbstub_write_dword(ch.val, mem) != 0)
  788. return 0;
  789. mem += 4;
  790. count -= 4;
  791. }
  792. if (count >= 2) {
  793. ch.b[0] = hex(*buf++) << 4;
  794. ch.b[0] |= hex(*buf++);
  795. ch.b[1] = hex(*buf++) << 4;
  796. ch.b[1] |= hex(*buf++);
  797. if (gdbstub_write_word(ch.val, mem) != 0)
  798. return 0;
  799. mem += 2;
  800. count -= 2;
  801. }
  802. if (count >= 1) {
  803. ch.b[0] = hex(*buf++) << 4;
  804. ch.b[0] |= hex(*buf++);
  805. if (gdbstub_write_byte(ch.val, mem) != 0)
  806. return 0;
  807. }
  808. return buf;
  809. }
  810. /*
  811. * This table contains the mapping between MN10300 exception codes, and
  812. * signals, which are primarily what GDB understands. It also indicates
  813. * which hardware traps we need to commandeer when initializing the stub.
  814. */
  815. static const struct excep_to_sig_map {
  816. enum exception_code excep; /* MN10300 exception code */
  817. unsigned char signo; /* Signal that we map this into */
  818. } excep_to_sig_map[] = {
  819. { EXCEP_ITLBMISS, SIGSEGV },
  820. { EXCEP_DTLBMISS, SIGSEGV },
  821. { EXCEP_TRAP, SIGTRAP },
  822. { EXCEP_ISTEP, SIGTRAP },
  823. { EXCEP_IBREAK, SIGTRAP },
  824. { EXCEP_OBREAK, SIGTRAP },
  825. { EXCEP_UNIMPINS, SIGILL },
  826. { EXCEP_UNIMPEXINS, SIGILL },
  827. { EXCEP_MEMERR, SIGSEGV },
  828. { EXCEP_MISALIGN, SIGSEGV },
  829. { EXCEP_BUSERROR, SIGBUS },
  830. { EXCEP_ILLINSACC, SIGSEGV },
  831. { EXCEP_ILLDATACC, SIGSEGV },
  832. { EXCEP_IOINSACC, SIGSEGV },
  833. { EXCEP_PRIVINSACC, SIGSEGV },
  834. { EXCEP_PRIVDATACC, SIGSEGV },
  835. { EXCEP_FPU_DISABLED, SIGFPE },
  836. { EXCEP_FPU_UNIMPINS, SIGFPE },
  837. { EXCEP_FPU_OPERATION, SIGFPE },
  838. { EXCEP_WDT, SIGALRM },
  839. { EXCEP_NMI, SIGQUIT },
  840. { EXCEP_IRQ_LEVEL0, SIGINT },
  841. { EXCEP_IRQ_LEVEL1, SIGINT },
  842. { EXCEP_IRQ_LEVEL2, SIGINT },
  843. { EXCEP_IRQ_LEVEL3, SIGINT },
  844. { EXCEP_IRQ_LEVEL4, SIGINT },
  845. { EXCEP_IRQ_LEVEL5, SIGINT },
  846. { EXCEP_IRQ_LEVEL6, SIGINT },
  847. { 0, 0}
  848. };
  849. /*
  850. * convert the MN10300 exception code into a UNIX signal number
  851. */
  852. static int computeSignal(enum exception_code excep)
  853. {
  854. const struct excep_to_sig_map *map;
  855. for (map = excep_to_sig_map; map->signo; map++)
  856. if (map->excep == excep)
  857. return map->signo;
  858. return SIGHUP; /* default for things we don't know about */
  859. }
  860. static u32 gdbstub_fpcr, gdbstub_fpufs_array[32];
  861. /*
  862. *
  863. */
  864. static void gdbstub_store_fpu(void)
  865. {
  866. #ifdef CONFIG_FPU
  867. asm volatile(
  868. "or %2,epsw\n"
  869. #ifdef CONFIG_MN10300_PROC_MN103E010
  870. "nop\n"
  871. "nop\n"
  872. #endif
  873. "mov %1, a1\n"
  874. "fmov fs0, (a1+)\n"
  875. "fmov fs1, (a1+)\n"
  876. "fmov fs2, (a1+)\n"
  877. "fmov fs3, (a1+)\n"
  878. "fmov fs4, (a1+)\n"
  879. "fmov fs5, (a1+)\n"
  880. "fmov fs6, (a1+)\n"
  881. "fmov fs7, (a1+)\n"
  882. "fmov fs8, (a1+)\n"
  883. "fmov fs9, (a1+)\n"
  884. "fmov fs10, (a1+)\n"
  885. "fmov fs11, (a1+)\n"
  886. "fmov fs12, (a1+)\n"
  887. "fmov fs13, (a1+)\n"
  888. "fmov fs14, (a1+)\n"
  889. "fmov fs15, (a1+)\n"
  890. "fmov fs16, (a1+)\n"
  891. "fmov fs17, (a1+)\n"
  892. "fmov fs18, (a1+)\n"
  893. "fmov fs19, (a1+)\n"
  894. "fmov fs20, (a1+)\n"
  895. "fmov fs21, (a1+)\n"
  896. "fmov fs22, (a1+)\n"
  897. "fmov fs23, (a1+)\n"
  898. "fmov fs24, (a1+)\n"
  899. "fmov fs25, (a1+)\n"
  900. "fmov fs26, (a1+)\n"
  901. "fmov fs27, (a1+)\n"
  902. "fmov fs28, (a1+)\n"
  903. "fmov fs29, (a1+)\n"
  904. "fmov fs30, (a1+)\n"
  905. "fmov fs31, (a1+)\n"
  906. "fmov fpcr, %0\n"
  907. : "=d"(gdbstub_fpcr)
  908. : "g" (&gdbstub_fpufs_array), "i"(EPSW_FE)
  909. : "a1"
  910. );
  911. #endif
  912. }
  913. /*
  914. *
  915. */
  916. static void gdbstub_load_fpu(void)
  917. {
  918. #ifdef CONFIG_FPU
  919. asm volatile(
  920. "or %1,epsw\n"
  921. #ifdef CONFIG_MN10300_PROC_MN103E010
  922. "nop\n"
  923. "nop\n"
  924. #endif
  925. "mov %0, a1\n"
  926. "fmov (a1+), fs0\n"
  927. "fmov (a1+), fs1\n"
  928. "fmov (a1+), fs2\n"
  929. "fmov (a1+), fs3\n"
  930. "fmov (a1+), fs4\n"
  931. "fmov (a1+), fs5\n"
  932. "fmov (a1+), fs6\n"
  933. "fmov (a1+), fs7\n"
  934. "fmov (a1+), fs8\n"
  935. "fmov (a1+), fs9\n"
  936. "fmov (a1+), fs10\n"
  937. "fmov (a1+), fs11\n"
  938. "fmov (a1+), fs12\n"
  939. "fmov (a1+), fs13\n"
  940. "fmov (a1+), fs14\n"
  941. "fmov (a1+), fs15\n"
  942. "fmov (a1+), fs16\n"
  943. "fmov (a1+), fs17\n"
  944. "fmov (a1+), fs18\n"
  945. "fmov (a1+), fs19\n"
  946. "fmov (a1+), fs20\n"
  947. "fmov (a1+), fs21\n"
  948. "fmov (a1+), fs22\n"
  949. "fmov (a1+), fs23\n"
  950. "fmov (a1+), fs24\n"
  951. "fmov (a1+), fs25\n"
  952. "fmov (a1+), fs26\n"
  953. "fmov (a1+), fs27\n"
  954. "fmov (a1+), fs28\n"
  955. "fmov (a1+), fs29\n"
  956. "fmov (a1+), fs30\n"
  957. "fmov (a1+), fs31\n"
  958. "fmov %2, fpcr\n"
  959. :
  960. : "g" (&gdbstub_fpufs_array), "i"(EPSW_FE), "d"(gdbstub_fpcr)
  961. : "a1"
  962. );
  963. #endif
  964. }
  965. /*
  966. * set a software breakpoint
  967. */
  968. int gdbstub_set_breakpoint(u8 *addr, int len)
  969. {
  970. int bkpt, loop, xloop;
  971. #ifdef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  972. len = (len + 1) & ~1;
  973. #endif
  974. gdbstub_bkpt("setbkpt(%p,%d)\n", addr, len);
  975. for (bkpt = 255; bkpt >= 0; bkpt--)
  976. if (!gdbstub_bkpts[bkpt].addr)
  977. break;
  978. if (bkpt < 0)
  979. return -ENOSPC;
  980. for (loop = 0; loop < len; loop++)
  981. if (gdbstub_read_byte(&addr[loop],
  982. &gdbstub_bkpts[bkpt].origbytes[loop]
  983. ) < 0)
  984. return -EFAULT;
  985. gdbstub_flush_caches = 1;
  986. #ifdef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  987. for (loop = 0; loop < len; loop++)
  988. if (gdbstub_write_byte(0xF7, &addr[loop]) < 0)
  989. goto restore;
  990. #else
  991. for (loop = 0; loop < len; loop++)
  992. if (gdbstub_write_byte(0xFF, &addr[loop]) < 0)
  993. goto restore;
  994. #endif
  995. gdbstub_bkpts[bkpt].addr = addr;
  996. gdbstub_bkpts[bkpt].len = len;
  997. gdbstub_bkpt("Set BKPT[%02x]: %p-%p {%02x%02x%02x%02x%02x%02x%02x}\n",
  998. bkpt,
  999. gdbstub_bkpts[bkpt].addr,
  1000. gdbstub_bkpts[bkpt].addr + gdbstub_bkpts[bkpt].len - 1,
  1001. gdbstub_bkpts[bkpt].origbytes[0],
  1002. gdbstub_bkpts[bkpt].origbytes[1],
  1003. gdbstub_bkpts[bkpt].origbytes[2],
  1004. gdbstub_bkpts[bkpt].origbytes[3],
  1005. gdbstub_bkpts[bkpt].origbytes[4],
  1006. gdbstub_bkpts[bkpt].origbytes[5],
  1007. gdbstub_bkpts[bkpt].origbytes[6]
  1008. );
  1009. return 0;
  1010. restore:
  1011. for (xloop = 0; xloop < loop; xloop++)
  1012. gdbstub_write_byte(gdbstub_bkpts[bkpt].origbytes[xloop],
  1013. addr + xloop);
  1014. return -EFAULT;
  1015. }
  1016. /*
  1017. * clear a software breakpoint
  1018. */
  1019. int gdbstub_clear_breakpoint(u8 *addr, int len)
  1020. {
  1021. int bkpt, loop;
  1022. #ifdef GDBSTUB_USE_F7F7_AS_BREAKPOINT
  1023. len = (len + 1) & ~1;
  1024. #endif
  1025. gdbstub_bkpt("clearbkpt(%p,%d)\n", addr, len);
  1026. for (bkpt = 255; bkpt >= 0; bkpt--)
  1027. if (gdbstub_bkpts[bkpt].addr == addr &&
  1028. gdbstub_bkpts[bkpt].len == len)
  1029. break;
  1030. if (bkpt < 0)
  1031. return -ENOENT;
  1032. gdbstub_bkpts[bkpt].addr = NULL;
  1033. gdbstub_flush_caches = 1;
  1034. for (loop = 0; loop < len; loop++)
  1035. if (gdbstub_write_byte(gdbstub_bkpts[bkpt].origbytes[loop],
  1036. addr + loop) < 0)
  1037. return -EFAULT;
  1038. return 0;
  1039. }
  1040. /*
  1041. * This function does all command processing for interfacing to gdb
  1042. * - returns 1 if the exception should be skipped, 0 otherwise.
  1043. */
  1044. static int gdbstub(struct pt_regs *regs, enum exception_code excep)
  1045. {
  1046. unsigned long *stack;
  1047. unsigned long epsw, mdr;
  1048. uint32_t zero, ssp;
  1049. uint8_t broke;
  1050. char *ptr;
  1051. int sigval;
  1052. int addr;
  1053. int length;
  1054. int loop;
  1055. if (excep == EXCEP_FPU_DISABLED)
  1056. return 0;
  1057. gdbstub_flush_caches = 0;
  1058. mn10300_set_gdbleds(1);
  1059. asm volatile("mov mdr,%0" : "=d"(mdr));
  1060. asm volatile("mov epsw,%0" : "=d"(epsw));
  1061. asm volatile("mov %0,epsw"
  1062. :: "d"((epsw & ~EPSW_IM) | EPSW_IE | EPSW_IM_1));
  1063. gdbstub_store_fpu();
  1064. #ifdef CONFIG_GDBSTUB_IMMEDIATE
  1065. /* skip the initial pause loop */
  1066. if (regs->pc == (unsigned long) __gdbstub_pause)
  1067. regs->pc = (unsigned long) start_kernel;
  1068. #endif
  1069. /* if we were single stepping, restore the opcodes hoisted for the
  1070. * breakpoint[s] */
  1071. broke = 0;
  1072. if ((step_bp[0].addr && step_bp[0].addr == (u8 *) regs->pc) ||
  1073. (step_bp[1].addr && step_bp[1].addr == (u8 *) regs->pc))
  1074. broke = 1;
  1075. __gdbstub_restore_bp();
  1076. if (gdbstub_rx_unget) {
  1077. sigval = SIGINT;
  1078. if (gdbstub_rx_unget != 3)
  1079. goto packet_waiting;
  1080. gdbstub_rx_unget = 0;
  1081. }
  1082. stack = (unsigned long *) regs->sp;
  1083. sigval = broke ? SIGTRAP : computeSignal(excep);
  1084. /* send information about a BUG() */
  1085. if (!user_mode(regs) && excep == EXCEP_SYSCALL15) {
  1086. const struct bug_entry *bug;
  1087. bug = find_bug(regs->pc);
  1088. if (bug)
  1089. goto found_bug;
  1090. length = snprintf(trans_buffer, sizeof(trans_buffer),
  1091. "BUG() at address %lx\n", regs->pc);
  1092. goto send_bug_pkt;
  1093. found_bug:
  1094. length = snprintf(trans_buffer, sizeof(trans_buffer),
  1095. "BUG() at address %lx (%s:%d)\n",
  1096. regs->pc, bug->file, bug->line);
  1097. send_bug_pkt:
  1098. ptr = output_buffer;
  1099. *ptr++ = 'O';
  1100. ptr = mem2hex(trans_buffer, ptr, length, 0);
  1101. *ptr = 0;
  1102. putpacket(output_buffer);
  1103. regs->pc -= 2;
  1104. sigval = SIGABRT;
  1105. } else if (regs->pc == (unsigned long) __gdbstub_bug_trap) {
  1106. regs->pc = regs->mdr;
  1107. sigval = SIGABRT;
  1108. }
  1109. /*
  1110. * send a message to the debugger's user saying what happened if it may
  1111. * not be clear cut (we can't map exceptions onto signals properly)
  1112. */
  1113. if (sigval != SIGINT && sigval != SIGTRAP && sigval != SIGILL) {
  1114. static const char title[] = "Excep ", tbcberr[] = "BCBERR ";
  1115. static const char crlf[] = "\r\n";
  1116. char hx;
  1117. u32 bcberr = BCBERR;
  1118. ptr = output_buffer;
  1119. *ptr++ = 'O';
  1120. ptr = mem2hex(title, ptr, sizeof(title) - 1, 0);
  1121. hx = hex_asc_hi(excep >> 8);
  1122. ptr = pack_hex_byte(ptr, hx);
  1123. hx = hex_asc_lo(excep >> 8);
  1124. ptr = pack_hex_byte(ptr, hx);
  1125. hx = hex_asc_hi(excep);
  1126. ptr = pack_hex_byte(ptr, hx);
  1127. hx = hex_asc_lo(excep);
  1128. ptr = pack_hex_byte(ptr, hx);
  1129. ptr = mem2hex(crlf, ptr, sizeof(crlf) - 1, 0);
  1130. *ptr = 0;
  1131. putpacket(output_buffer); /* send it off... */
  1132. /* BCBERR */
  1133. ptr = output_buffer;
  1134. *ptr++ = 'O';
  1135. ptr = mem2hex(tbcberr, ptr, sizeof(tbcberr) - 1, 0);
  1136. hx = hex_asc_hi(bcberr >> 24);
  1137. ptr = pack_hex_byte(ptr, hx);
  1138. hx = hex_asc_lo(bcberr >> 24);
  1139. ptr = pack_hex_byte(ptr, hx);
  1140. hx = hex_asc_hi(bcberr >> 16);
  1141. ptr = pack_hex_byte(ptr, hx);
  1142. hx = hex_asc_lo(bcberr >> 16);
  1143. ptr = pack_hex_byte(ptr, hx);
  1144. hx = hex_asc_hi(bcberr >> 8);
  1145. ptr = pack_hex_byte(ptr, hx);
  1146. hx = hex_asc_lo(bcberr >> 8);
  1147. ptr = pack_hex_byte(ptr, hx);
  1148. hx = hex_asc_hi(bcberr);
  1149. ptr = pack_hex_byte(ptr, hx);
  1150. hx = hex_asc_lo(bcberr);
  1151. ptr = pack_hex_byte(ptr, hx);
  1152. ptr = mem2hex(crlf, ptr, sizeof(crlf) - 1, 0);
  1153. *ptr = 0;
  1154. putpacket(output_buffer); /* send it off... */
  1155. }
  1156. /*
  1157. * tell the debugger that an exception has occurred
  1158. */
  1159. ptr = output_buffer;
  1160. /*
  1161. * Send trap type (converted to signal)
  1162. */
  1163. *ptr++ = 'T';
  1164. ptr = pack_hex_byte(ptr, sigval);
  1165. /*
  1166. * Send Error PC
  1167. */
  1168. ptr = pack_hex_byte(ptr, GDB_REGID_PC);
  1169. *ptr++ = ':';
  1170. ptr = mem2hex(&regs->pc, ptr, 4, 0);
  1171. *ptr++ = ';';
  1172. /*
  1173. * Send frame pointer
  1174. */
  1175. ptr = pack_hex_byte(ptr, GDB_REGID_FP);
  1176. *ptr++ = ':';
  1177. ptr = mem2hex(&regs->a3, ptr, 4, 0);
  1178. *ptr++ = ';';
  1179. /*
  1180. * Send stack pointer
  1181. */
  1182. ssp = (unsigned long) (regs + 1);
  1183. ptr = pack_hex_byte(ptr, GDB_REGID_SP);
  1184. *ptr++ = ':';
  1185. ptr = mem2hex(&ssp, ptr, 4, 0);
  1186. *ptr++ = ';';
  1187. *ptr++ = 0;
  1188. putpacket(output_buffer); /* send it off... */
  1189. packet_waiting:
  1190. /*
  1191. * Wait for input from remote GDB
  1192. */
  1193. while (1) {
  1194. output_buffer[0] = 0;
  1195. getpacket(input_buffer);
  1196. switch (input_buffer[0]) {
  1197. /* request repeat of last signal number */
  1198. case '?':
  1199. output_buffer[0] = 'S';
  1200. output_buffer[1] = hex_asc_hi(sigval);
  1201. output_buffer[2] = hex_asc_lo(sigval);
  1202. output_buffer[3] = 0;
  1203. break;
  1204. case 'd':
  1205. /* toggle debug flag */
  1206. break;
  1207. /*
  1208. * Return the value of the CPU registers
  1209. */
  1210. case 'g':
  1211. zero = 0;
  1212. ssp = (u32) (regs + 1);
  1213. ptr = output_buffer;
  1214. ptr = mem2hex(&regs->d0, ptr, 4, 0);
  1215. ptr = mem2hex(&regs->d1, ptr, 4, 0);
  1216. ptr = mem2hex(&regs->d2, ptr, 4, 0);
  1217. ptr = mem2hex(&regs->d3, ptr, 4, 0);
  1218. ptr = mem2hex(&regs->a0, ptr, 4, 0);
  1219. ptr = mem2hex(&regs->a1, ptr, 4, 0);
  1220. ptr = mem2hex(&regs->a2, ptr, 4, 0);
  1221. ptr = mem2hex(&regs->a3, ptr, 4, 0);
  1222. ptr = mem2hex(&ssp, ptr, 4, 0); /* 8 */
  1223. ptr = mem2hex(&regs->pc, ptr, 4, 0);
  1224. ptr = mem2hex(&regs->mdr, ptr, 4, 0);
  1225. ptr = mem2hex(&regs->epsw, ptr, 4, 0);
  1226. ptr = mem2hex(&regs->lir, ptr, 4, 0);
  1227. ptr = mem2hex(&regs->lar, ptr, 4, 0);
  1228. ptr = mem2hex(&regs->mdrq, ptr, 4, 0);
  1229. ptr = mem2hex(&regs->e0, ptr, 4, 0); /* 15 */
  1230. ptr = mem2hex(&regs->e1, ptr, 4, 0);
  1231. ptr = mem2hex(&regs->e2, ptr, 4, 0);
  1232. ptr = mem2hex(&regs->e3, ptr, 4, 0);
  1233. ptr = mem2hex(&regs->e4, ptr, 4, 0);
  1234. ptr = mem2hex(&regs->e5, ptr, 4, 0);
  1235. ptr = mem2hex(&regs->e6, ptr, 4, 0);
  1236. ptr = mem2hex(&regs->e7, ptr, 4, 0);
  1237. ptr = mem2hex(&ssp, ptr, 4, 0);
  1238. ptr = mem2hex(&regs, ptr, 4, 0);
  1239. ptr = mem2hex(&regs->sp, ptr, 4, 0);
  1240. ptr = mem2hex(&regs->mcrh, ptr, 4, 0); /* 26 */
  1241. ptr = mem2hex(&regs->mcrl, ptr, 4, 0);
  1242. ptr = mem2hex(&regs->mcvf, ptr, 4, 0);
  1243. ptr = mem2hex(&gdbstub_fpcr, ptr, 4, 0); /* 29 - FPCR */
  1244. ptr = mem2hex(&zero, ptr, 4, 0);
  1245. ptr = mem2hex(&zero, ptr, 4, 0);
  1246. for (loop = 0; loop < 32; loop++)
  1247. ptr = mem2hex(&gdbstub_fpufs_array[loop],
  1248. ptr, 4, 0); /* 32 - FS0-31 */
  1249. break;
  1250. /*
  1251. * set the value of the CPU registers - return OK
  1252. */
  1253. case 'G':
  1254. {
  1255. const char *ptr;
  1256. ptr = &input_buffer[1];
  1257. ptr = hex2mem(ptr, &regs->d0, 4, 0);
  1258. ptr = hex2mem(ptr, &regs->d1, 4, 0);
  1259. ptr = hex2mem(ptr, &regs->d2, 4, 0);
  1260. ptr = hex2mem(ptr, &regs->d3, 4, 0);
  1261. ptr = hex2mem(ptr, &regs->a0, 4, 0);
  1262. ptr = hex2mem(ptr, &regs->a1, 4, 0);
  1263. ptr = hex2mem(ptr, &regs->a2, 4, 0);
  1264. ptr = hex2mem(ptr, &regs->a3, 4, 0);
  1265. ptr = hex2mem(ptr, &ssp, 4, 0); /* 8 */
  1266. ptr = hex2mem(ptr, &regs->pc, 4, 0);
  1267. ptr = hex2mem(ptr, &regs->mdr, 4, 0);
  1268. ptr = hex2mem(ptr, &regs->epsw, 4, 0);
  1269. ptr = hex2mem(ptr, &regs->lir, 4, 0);
  1270. ptr = hex2mem(ptr, &regs->lar, 4, 0);
  1271. ptr = hex2mem(ptr, &regs->mdrq, 4, 0);
  1272. ptr = hex2mem(ptr, &regs->e0, 4, 0); /* 15 */
  1273. ptr = hex2mem(ptr, &regs->e1, 4, 0);
  1274. ptr = hex2mem(ptr, &regs->e2, 4, 0);
  1275. ptr = hex2mem(ptr, &regs->e3, 4, 0);
  1276. ptr = hex2mem(ptr, &regs->e4, 4, 0);
  1277. ptr = hex2mem(ptr, &regs->e5, 4, 0);
  1278. ptr = hex2mem(ptr, &regs->e6, 4, 0);
  1279. ptr = hex2mem(ptr, &regs->e7, 4, 0);
  1280. ptr = hex2mem(ptr, &ssp, 4, 0);
  1281. ptr = hex2mem(ptr, &zero, 4, 0);
  1282. ptr = hex2mem(ptr, &regs->sp, 4, 0);
  1283. ptr = hex2mem(ptr, &regs->mcrh, 4, 0); /* 26 */
  1284. ptr = hex2mem(ptr, &regs->mcrl, 4, 0);
  1285. ptr = hex2mem(ptr, &regs->mcvf, 4, 0);
  1286. ptr = hex2mem(ptr, &zero, 4, 0); /* 29 - FPCR */
  1287. ptr = hex2mem(ptr, &zero, 4, 0);
  1288. ptr = hex2mem(ptr, &zero, 4, 0);
  1289. for (loop = 0; loop < 32; loop++) /* 32 - FS0-31 */
  1290. ptr = hex2mem(ptr, &zero, 4, 0);
  1291. #if 0
  1292. /*
  1293. * See if the stack pointer has moved. If so, then copy
  1294. * the saved locals and ins to the new location.
  1295. */
  1296. unsigned long *newsp = (unsigned long *) registers[SP];
  1297. if (sp != newsp)
  1298. sp = memcpy(newsp, sp, 16 * 4);
  1299. #endif
  1300. gdbstub_strcpy(output_buffer, "OK");
  1301. }
  1302. break;
  1303. /*
  1304. * mAA..AA,LLLL Read LLLL bytes at address AA..AA
  1305. */
  1306. case 'm':
  1307. ptr = &input_buffer[1];
  1308. if (hexToInt(&ptr, &addr) &&
  1309. *ptr++ == ',' &&
  1310. hexToInt(&ptr, &length)
  1311. ) {
  1312. if (mem2hex((char *) addr, output_buffer,
  1313. length, 1))
  1314. break;
  1315. gdbstub_strcpy(output_buffer, "E03");
  1316. } else {
  1317. gdbstub_strcpy(output_buffer, "E01");
  1318. }
  1319. break;
  1320. /*
  1321. * MAA..AA,LLLL: Write LLLL bytes at address AA.AA
  1322. * return OK
  1323. */
  1324. case 'M':
  1325. ptr = &input_buffer[1];
  1326. if (hexToInt(&ptr, &addr) &&
  1327. *ptr++ == ',' &&
  1328. hexToInt(&ptr, &length) &&
  1329. *ptr++ == ':'
  1330. ) {
  1331. if (hex2mem(ptr, (char *) addr, length, 1))
  1332. gdbstub_strcpy(output_buffer, "OK");
  1333. else
  1334. gdbstub_strcpy(output_buffer, "E03");
  1335. gdbstub_flush_caches = 1;
  1336. } else {
  1337. gdbstub_strcpy(output_buffer, "E02");
  1338. }
  1339. break;
  1340. /*
  1341. * cAA..AA Continue at address AA..AA(optional)
  1342. */
  1343. case 'c':
  1344. /* try to read optional parameter, pc unchanged if no
  1345. * parm */
  1346. ptr = &input_buffer[1];
  1347. if (hexToInt(&ptr, &addr))
  1348. regs->pc = addr;
  1349. goto done;
  1350. /*
  1351. * kill the program
  1352. */
  1353. case 'k' :
  1354. goto done; /* just continue */
  1355. /*
  1356. * Reset the whole machine (FIXME: system dependent)
  1357. */
  1358. case 'r':
  1359. break;
  1360. /*
  1361. * Step to next instruction
  1362. */
  1363. case 's':
  1364. /*
  1365. * using the T flag doesn't seem to perform single
  1366. * stepping (it seems to wind up being caught by the
  1367. * JTAG unit), so we have to use breakpoints and
  1368. * continue instead.
  1369. */
  1370. if (gdbstub_single_step(regs) < 0)
  1371. /* ignore any fault error for now */
  1372. gdbstub_printk("unable to set single-step"
  1373. " bp\n");
  1374. goto done;
  1375. /*
  1376. * Set baud rate (bBB)
  1377. */
  1378. case 'b':
  1379. do {
  1380. int baudrate;
  1381. ptr = &input_buffer[1];
  1382. if (!hexToInt(&ptr, &baudrate)) {
  1383. gdbstub_strcpy(output_buffer, "B01");
  1384. break;
  1385. }
  1386. if (baudrate) {
  1387. /* ACK before changing speed */
  1388. putpacket("OK");
  1389. gdbstub_io_set_baud(baudrate);
  1390. }
  1391. } while (0);
  1392. break;
  1393. /*
  1394. * Set breakpoint
  1395. */
  1396. case 'Z':
  1397. ptr = &input_buffer[1];
  1398. if (!hexToInt(&ptr, &loop) || *ptr++ != ',' ||
  1399. !hexToInt(&ptr, &addr) || *ptr++ != ',' ||
  1400. !hexToInt(&ptr, &length)
  1401. ) {
  1402. gdbstub_strcpy(output_buffer, "E01");
  1403. break;
  1404. }
  1405. /* only support software breakpoints */
  1406. gdbstub_strcpy(output_buffer, "E03");
  1407. if (loop != 0 ||
  1408. length < 1 ||
  1409. length > 7 ||
  1410. (unsigned long) addr < 4096)
  1411. break;
  1412. if (gdbstub_set_breakpoint((u8 *) addr, length) < 0)
  1413. break;
  1414. gdbstub_strcpy(output_buffer, "OK");
  1415. break;
  1416. /*
  1417. * Clear breakpoint
  1418. */
  1419. case 'z':
  1420. ptr = &input_buffer[1];
  1421. if (!hexToInt(&ptr, &loop) || *ptr++ != ',' ||
  1422. !hexToInt(&ptr, &addr) || *ptr++ != ',' ||
  1423. !hexToInt(&ptr, &length)
  1424. ) {
  1425. gdbstub_strcpy(output_buffer, "E01");
  1426. break;
  1427. }
  1428. /* only support software breakpoints */
  1429. gdbstub_strcpy(output_buffer, "E03");
  1430. if (loop != 0 ||
  1431. length < 1 ||
  1432. length > 7 ||
  1433. (unsigned long) addr < 4096)
  1434. break;
  1435. if (gdbstub_clear_breakpoint((u8 *) addr, length) < 0)
  1436. break;
  1437. gdbstub_strcpy(output_buffer, "OK");
  1438. break;
  1439. default:
  1440. gdbstub_proto("### GDB Unsupported Cmd '%s'\n",
  1441. input_buffer);
  1442. break;
  1443. }
  1444. /* reply to the request */
  1445. putpacket(output_buffer);
  1446. }
  1447. done:
  1448. /*
  1449. * Need to flush the instruction cache here, as we may
  1450. * have deposited a breakpoint, and the icache probably
  1451. * has no way of knowing that a data ref to some location
  1452. * may have changed something that is in the instruction
  1453. * cache.
  1454. * NB: We flush both caches, just to be sure...
  1455. */
  1456. if (gdbstub_flush_caches)
  1457. gdbstub_purge_cache();
  1458. gdbstub_load_fpu();
  1459. mn10300_set_gdbleds(0);
  1460. if (excep == EXCEP_NMI)
  1461. NMICR = NMICR_NMIF;
  1462. touch_softlockup_watchdog();
  1463. local_irq_restore(epsw);
  1464. return 1;
  1465. }
  1466. /*
  1467. * handle event interception
  1468. */
  1469. asmlinkage int gdbstub_intercept(struct pt_regs *regs,
  1470. enum exception_code excep)
  1471. {
  1472. static u8 notfirst = 1;
  1473. int ret;
  1474. if (gdbstub_busy)
  1475. gdbstub_printk("--> gdbstub reentered itself\n");
  1476. gdbstub_busy = 1;
  1477. if (notfirst) {
  1478. unsigned long mdr;
  1479. asm("mov mdr,%0" : "=d"(mdr));
  1480. gdbstub_entry(
  1481. "--> gdbstub_intercept(%p,%04x) [MDR=%lx PC=%lx]\n",
  1482. regs, excep, mdr, regs->pc);
  1483. gdbstub_entry(
  1484. "PC: %08lx EPSW: %08lx SSP: %08lx mode: %s\n",
  1485. regs->pc, regs->epsw, (unsigned long) &ret,
  1486. user_mode(regs) ? "User" : "Super");
  1487. gdbstub_entry(
  1488. "d0: %08lx d1: %08lx d2: %08lx d3: %08lx\n",
  1489. regs->d0, regs->d1, regs->d2, regs->d3);
  1490. gdbstub_entry(
  1491. "a0: %08lx a1: %08lx a2: %08lx a3: %08lx\n",
  1492. regs->a0, regs->a1, regs->a2, regs->a3);
  1493. gdbstub_entry(
  1494. "e0: %08lx e1: %08lx e2: %08lx e3: %08lx\n",
  1495. regs->e0, regs->e1, regs->e2, regs->e3);
  1496. gdbstub_entry(
  1497. "e4: %08lx e5: %08lx e6: %08lx e7: %08lx\n",
  1498. regs->e4, regs->e5, regs->e6, regs->e7);
  1499. gdbstub_entry(
  1500. "lar: %08lx lir: %08lx mdr: %08lx usp: %08lx\n",
  1501. regs->lar, regs->lir, regs->mdr, regs->sp);
  1502. gdbstub_entry(
  1503. "cvf: %08lx crl: %08lx crh: %08lx drq: %08lx\n",
  1504. regs->mcvf, regs->mcrl, regs->mcrh, regs->mdrq);
  1505. gdbstub_entry(
  1506. "threadinfo=%p task=%p)\n",
  1507. current_thread_info(), current);
  1508. } else {
  1509. notfirst = 1;
  1510. }
  1511. ret = gdbstub(regs, excep);
  1512. gdbstub_entry("<-- gdbstub_intercept()\n");
  1513. gdbstub_busy = 0;
  1514. return ret;
  1515. }
  1516. /*
  1517. * handle the GDB stub itself causing an exception
  1518. */
  1519. asmlinkage void gdbstub_exception(struct pt_regs *regs,
  1520. enum exception_code excep)
  1521. {
  1522. unsigned long mdr;
  1523. asm("mov mdr,%0" : "=d"(mdr));
  1524. gdbstub_entry("--> gdbstub exception({%p},%04x) [MDR=%lx]\n",
  1525. regs, excep, mdr);
  1526. while ((unsigned long) regs == 0xffffffff) {}
  1527. /* handle guarded memory accesses where we know it might fault */
  1528. if (regs->pc == (unsigned) gdbstub_read_byte_guard) {
  1529. regs->pc = (unsigned) gdbstub_read_byte_cont;
  1530. goto fault;
  1531. }
  1532. if (regs->pc == (unsigned) gdbstub_read_word_guard) {
  1533. regs->pc = (unsigned) gdbstub_read_word_cont;
  1534. goto fault;
  1535. }
  1536. if (regs->pc == (unsigned) gdbstub_read_dword_guard) {
  1537. regs->pc = (unsigned) gdbstub_read_dword_cont;
  1538. goto fault;
  1539. }
  1540. if (regs->pc == (unsigned) gdbstub_write_byte_guard) {
  1541. regs->pc = (unsigned) gdbstub_write_byte_cont;
  1542. goto fault;
  1543. }
  1544. if (regs->pc == (unsigned) gdbstub_write_word_guard) {
  1545. regs->pc = (unsigned) gdbstub_write_word_cont;
  1546. goto fault;
  1547. }
  1548. if (regs->pc == (unsigned) gdbstub_write_dword_guard) {
  1549. regs->pc = (unsigned) gdbstub_write_dword_cont;
  1550. goto fault;
  1551. }
  1552. gdbstub_printk("\n### GDB stub caused an exception ###\n");
  1553. /* something went horribly wrong */
  1554. console_verbose();
  1555. show_registers(regs);
  1556. panic("GDB Stub caused an unexpected exception - can't continue\n");
  1557. /* we caught an attempt by the stub to access silly memory */
  1558. fault:
  1559. gdbstub_entry("<-- gdbstub exception() = EFAULT\n");
  1560. regs->d0 = -EFAULT;
  1561. return;
  1562. }
  1563. /*
  1564. * send an exit message to GDB
  1565. */
  1566. void gdbstub_exit(int status)
  1567. {
  1568. unsigned char checksum;
  1569. unsigned char ch;
  1570. int count;
  1571. gdbstub_busy = 1;
  1572. output_buffer[0] = 'W';
  1573. output_buffer[1] = hex_asc_hi(status);
  1574. output_buffer[2] = hex_asc_lo(status);
  1575. output_buffer[3] = 0;
  1576. gdbstub_io_tx_char('$');
  1577. checksum = 0;
  1578. count = 0;
  1579. while ((ch = output_buffer[count]) != 0) {
  1580. gdbstub_io_tx_char(ch);
  1581. checksum += ch;
  1582. count += 1;
  1583. }
  1584. gdbstub_io_tx_char('#');
  1585. gdbstub_io_tx_char(hex_asc_hi(checksum));
  1586. gdbstub_io_tx_char(hex_asc_lo(checksum));
  1587. /* make sure the output is flushed, or else RedBoot might clobber it */
  1588. gdbstub_io_tx_flush();
  1589. gdbstub_busy = 0;
  1590. }
  1591. /*
  1592. * initialise the GDB stub
  1593. */
  1594. asmlinkage void __init gdbstub_init(void)
  1595. {
  1596. #ifdef CONFIG_GDBSTUB_IMMEDIATE
  1597. unsigned char ch;
  1598. int ret;
  1599. #endif
  1600. gdbstub_busy = 1;
  1601. printk(KERN_INFO "%s", gdbstub_banner);
  1602. gdbstub_io_init();
  1603. gdbstub_entry("--> gdbstub_init\n");
  1604. /* try to talk to GDB (or anyone insane enough to want to type GDB
  1605. * protocol by hand) */
  1606. gdbstub_io("### GDB Tx ACK\n");
  1607. gdbstub_io_tx_char('+'); /* 'hello world' */
  1608. #ifdef CONFIG_GDBSTUB_IMMEDIATE
  1609. gdbstub_printk("GDB Stub waiting for packet\n");
  1610. /* in case GDB is started before us, ACK any packets that are already
  1611. * sitting there (presumably "$?#xx")
  1612. */
  1613. do { gdbstub_io_rx_char(&ch, 0); } while (ch != '$');
  1614. do { gdbstub_io_rx_char(&ch, 0); } while (ch != '#');
  1615. /* eat first csum byte */
  1616. do { ret = gdbstub_io_rx_char(&ch, 0); } while (ret != 0);
  1617. /* eat second csum byte */
  1618. do { ret = gdbstub_io_rx_char(&ch, 0); } while (ret != 0);
  1619. gdbstub_io("### GDB Tx NAK\n");
  1620. gdbstub_io_tx_char('-'); /* NAK it */
  1621. #else
  1622. printk("GDB Stub ready\n");
  1623. #endif
  1624. gdbstub_busy = 0;
  1625. gdbstub_entry("<-- gdbstub_init\n");
  1626. }
  1627. /*
  1628. * register the console at a more appropriate time
  1629. */
  1630. #ifdef CONFIG_GDBSTUB_CONSOLE
  1631. static int __init gdbstub_postinit(void)
  1632. {
  1633. printk(KERN_NOTICE "registering console\n");
  1634. register_console(&gdbstub_console);
  1635. return 0;
  1636. }
  1637. __initcall(gdbstub_postinit);
  1638. #endif
  1639. /*
  1640. * handle character reception on GDB serial port
  1641. * - jump into the GDB stub if BREAK is detected on the serial line
  1642. */
  1643. asmlinkage void gdbstub_rx_irq(struct pt_regs *regs, enum exception_code excep)
  1644. {
  1645. char ch;
  1646. int ret;
  1647. gdbstub_entry("--> gdbstub_rx_irq\n");
  1648. do {
  1649. ret = gdbstub_io_rx_char(&ch, 1);
  1650. if (ret != -EIO && ret != -EAGAIN) {
  1651. if (ret != -EINTR)
  1652. gdbstub_rx_unget = ch;
  1653. gdbstub(regs, excep);
  1654. }
  1655. } while (ret != -EAGAIN);
  1656. gdbstub_entry("<-- gdbstub_rx_irq\n");
  1657. }