Blame view

common/kgdb.c 14.1 KB
a47a12bec   Stefan Roese   Move arch/ppc to ...
1
  /* taken from arch/powerpc/kernel/ppc-stub.c */
4a9cbbe83   wdenk   Initial revision
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  
  /****************************************************************************
  
  		THIS SOFTWARE IS NOT COPYRIGHTED
  
     HP offers the following for use in the public domain.  HP makes no
     warranty with regard to the software or its performance and the
     user accepts the software "AS IS" with all faults.
  
     HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD
     TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES
     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  
  ****************************************************************************/
  
  /****************************************************************************
   *  Header: remcom.c,v 1.34 91/03/09 12:29:49 glenne Exp $
   *
   *  Module name: remcom.c $
   *  Revision: 1.34 $
   *  Date: 91/03/09 12:29:49 $
   *  Contributor:     Lake Stevens Instrument Division$
   *
   *  Description:     low level support for gdb debugger. $
   *
   *  Considerations:  only works on target hardware $
   *
   *  Written by:      Glenn Engel $
   *  ModuleState:     Experimental $
   *
   *  NOTES:           See Below $
   *
   *  Modified for SPARC by Stu Grossman, Cygnus Support.
   *
   *  This code has been extensively tested on the Fujitsu SPARClite demo board.
   *
   *  To enable debugger support, two things need to happen.  One, a
   *  call to set_debug_traps() is necessary in order to allow any breakpoints
   *  or error conditions to be properly intercepted and reported to gdb.
   *  Two, a breakpoint needs to be generated to begin communication.  This
   *  is most easily accomplished by a call to breakpoint().  Breakpoint()
   *  simulates a breakpoint by executing a trap #1.
   *
   *************
   *
   *    The following gdb commands are supported:
   *
   * command          function                               Return value
   *
   *    g             return the value of the CPU registers  hex data or ENN
   *    G             set the value of the CPU registers     OK or ENN
   *    qOffsets      Get section offsets.  Reply is Text=xxx;Data=yyy;Bss=zzz
   *
   *    mAA..AA,LLLL  Read LLLL bytes at address AA..AA      hex data or ENN
   *    MAA..AA,LLLL: Write LLLL bytes at address AA.AA      OK or ENN
   *
   *    c             Resume at current address              SNN   ( signal NN)
   *    cAA..AA       Continue at address AA..AA             SNN
   *
   *    s             Step one instruction                   SNN
   *    sAA..AA       Step one instruction from AA..AA       SNN
   *
   *    k             kill
   *
   *    ?             What was the last sigval ?             SNN   (signal NN)
   *
   *    bBB..BB	    Set baud rate to BB..BB		   OK or BNN, then sets
   *							   baud rate
   *
   * All commands and responses are sent with a packet which includes a
   * checksum.  A packet consists of
   *
   * $<packet info>#<checksum>.
   *
   * where
   * <packet info> :: <characters representing the command or response>
   * <checksum>    :: <two hex digits computed as modulo 256 sum of <packetinfo>>
   *
   * When a packet is received, it is first acknowledged with either '+' or '-'.
   * '+' indicates a successful transfer.  '-' indicates a failed transfer.
   *
   * Example:
   *
   * Host:                  Reply:
   * $m0,10#2a               +$00010203040506070809101112131415#42
   *
   ****************************************************************************/
  
  #include <common.h>
  
  #include <kgdb.h>
  #include <command.h>
4a9cbbe83   wdenk   Initial revision
94
95
96
97
98
99
100
101
102
103
104
  #undef KGDB_DEBUG
  
  /*
   * BUFMAX defines the maximum number of characters in inbound/outbound buffers
   */
  #define BUFMAX 1024
  static char remcomInBuffer[BUFMAX];
  static char remcomOutBuffer[BUFMAX];
  static char remcomRegBuffer[BUFMAX];
  
  static int initialized = 0;
f9f040b21   Peng Fan   kgdb: Remove firs...
105
  static int kgdb_active;
4a9cbbe83   wdenk   Initial revision
106
  static struct pt_regs entry_regs;
cc3843e36   Wolfgang Denk   common/kgdb.c: fi...
107
  static long error_jmp_buf[BUFMAX/2];
4a9cbbe83   wdenk   Initial revision
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  static int longjmp_on_fault = 0;
  #ifdef KGDB_DEBUG
  static int kdebug = 1;
  #endif
  
  static const char hexchars[]="0123456789abcdef";
  
  /* Convert ch from a hex digit to an int */
  static int
  hex(unsigned char ch)
  {
  	if (ch >= 'a' && ch <= 'f')
  		return ch-'a'+10;
  	if (ch >= '0' && ch <= '9')
  		return ch-'0';
  	if (ch >= 'A' && ch <= 'F')
  		return ch-'A'+10;
  	return -1;
  }
  
  /* Convert the memory pointed to by mem into hex, placing result in buf.
   * Return a pointer to the last char put in buf (null).
   */
  static unsigned char *
  mem2hex(char *mem, char *buf, int count)
  {
16035bcd8   Robin Getz   kgdb: update mem2...
134
  	char *tmp;
4a9cbbe83   wdenk   Initial revision
135
  	unsigned char ch;
16035bcd8   Robin Getz   kgdb: update mem2...
136
137
138
139
140
  	/*
  	 * We use the upper half of buf as an intermediate buffer for the
  	 * raw memory copy.  Hex conversion will work against this one.
  	 */
  	tmp = buf + count;
4a9cbbe83   wdenk   Initial revision
141
  	longjmp_on_fault = 1;
16035bcd8   Robin Getz   kgdb: update mem2...
142
143
  
  	memcpy(tmp, mem, count);
4a9cbbe83   wdenk   Initial revision
144
  	while (count-- > 0) {
16035bcd8   Robin Getz   kgdb: update mem2...
145
  		ch = *tmp++;
4a9cbbe83   wdenk   Initial revision
146
147
148
149
150
  		*buf++ = hexchars[ch >> 4];
  		*buf++ = hexchars[ch & 0xf];
  	}
  	*buf = 0;
  	longjmp_on_fault = 0;
77ddac948   Wolfgang Denk   Cleanup for GCC-4.x
151
  	return (unsigned char *)buf;
4a9cbbe83   wdenk   Initial revision
152
153
154
155
156
157
158
159
  }
  
  /* convert the hex array pointed to by buf into binary to be placed in mem
   * return a pointer to the character AFTER the last byte fetched from buf.
  */
  static char *
  hex2mem(char *buf, char *mem, int count)
  {
16035bcd8   Robin Getz   kgdb: update mem2...
160
161
162
163
164
165
166
167
168
  	int hexValue;
  	char *tmp_raw, *tmp_hex;
  
  	/*
  	 * We use the upper half of buf as an intermediate buffer for the
  	 * raw memory that is converted from hex.
  	 */
  	tmp_raw = buf + count * 2;
  	tmp_hex = tmp_raw - 1;
4a9cbbe83   wdenk   Initial revision
169
170
  
  	longjmp_on_fault = 1;
16035bcd8   Robin Getz   kgdb: update mem2...
171
172
173
174
  	while (tmp_hex >= buf) {
  		tmp_raw--;
  		hexValue = hex(*tmp_hex--);
  		if (hexValue < 0)
4a9cbbe83   wdenk   Initial revision
175
  			kgdb_error(KGDBERR_NOTHEXDIG);
16035bcd8   Robin Getz   kgdb: update mem2...
176
177
178
  		*tmp_raw = hexValue;
  		hexValue = hex(*tmp_hex--);
  		if (hexValue < 0)
4a9cbbe83   wdenk   Initial revision
179
  			kgdb_error(KGDBERR_NOTHEXDIG);
16035bcd8   Robin Getz   kgdb: update mem2...
180
  		*tmp_raw |= hexValue << 4;
4a9cbbe83   wdenk   Initial revision
181
  	}
16035bcd8   Robin Getz   kgdb: update mem2...
182
183
184
185
  
  	memcpy(mem, tmp_raw, count);
  
  	kgdb_flush_cache_range((void *)mem, (void *)(mem+count));
4a9cbbe83   wdenk   Initial revision
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
  	longjmp_on_fault = 0;
  
  	return buf;
  }
  
  /*
   * While we find nice hex chars, build an int.
   * Return number of chars processed.
   */
  static int
  hexToInt(char **ptr, int *intValue)
  {
  	int numChars = 0;
  	int hexValue;
  
  	*intValue = 0;
  
  	longjmp_on_fault = 1;
  	while (**ptr) {
  		hexValue = hex(**ptr);
  		if (hexValue < 0)
  			break;
  
  		*intValue = (*intValue << 4) | hexValue;
  		numChars ++;
  
  		(*ptr)++;
  	}
  	longjmp_on_fault = 0;
  
  	return (numChars);
  }
  
  /* scan for the sequence $<data>#<checksum>     */
  static void
  getpacket(char *buffer)
  {
  	unsigned char checksum;
  	unsigned char xmitcsum;
  	int i;
  	int count;
  	unsigned char ch;
  
  	do {
  		/* wait around for the start character, ignore all other
  		 * characters */
  		while ((ch = (getDebugChar() & 0x7f)) != '$') {
  #ifdef KGDB_DEBUG
  			if (kdebug)
  				putc(ch);
  #endif
  			;
  		}
  
  		checksum = 0;
  		xmitcsum = -1;
  
  		count = 0;
  
  		/* now, read until a # or end of buffer is found */
  		while (count < BUFMAX) {
  			ch = getDebugChar() & 0x7f;
  			if (ch == '#')
  				break;
  			checksum = checksum + ch;
  			buffer[count] = ch;
  			count = count + 1;
  		}
  
  		if (count >= BUFMAX)
  			continue;
  
  		buffer[count] = 0;
  
  		if (ch == '#') {
  			xmitcsum = hex(getDebugChar() & 0x7f) << 4;
  			xmitcsum |= hex(getDebugChar() & 0x7f);
  			if (checksum != xmitcsum)
  				putDebugChar('-');	/* failed checksum */
  			else {
  				putDebugChar('+'); /* successful transfer */
  				/* if a sequence char is present, reply the ID */
  				if (buffer[2] == ':') {
  					putDebugChar(buffer[0]);
  					putDebugChar(buffer[1]);
  					/* remove sequence chars from buffer */
  					count = strlen(buffer);
  					for (i=3; i <= count; i++)
  						buffer[i-3] = buffer[i];
  				}
  			}
  		}
  	} while (checksum != xmitcsum);
  }
  
  /* send the packet in buffer.  */
  static void
  putpacket(unsigned char *buffer)
  {
  	unsigned char checksum;
  	int count;
  	unsigned char ch, recv;
  
  	/*  $<packet info>#<checksum>. */
  	do {
  		putDebugChar('$');
  		checksum = 0;
  		count = 0;
  
  		while ((ch = buffer[count])) {
  			putDebugChar(ch);
  			checksum += ch;
  			count += 1;
  		}
  
  		putDebugChar('#');
  		putDebugChar(hexchars[checksum >> 4]);
  		putDebugChar(hexchars[checksum & 0xf]);
  		recv = getDebugChar();
  	} while ((recv & 0x7f) != '+');
  }
  
  /*
   * This function does all command processing for interfacing to gdb.
   */
  static int
  handle_exception (struct pt_regs *regs)
  {
  	int addr;
  	int length;
  	char *ptr;
  	kgdb_data kd;
  	int i;
  
  	if (!initialized) {
  		printf("kgdb: exception before kgdb is initialized! huh?
  ");
  		return (0);
  	}
eae4b2b67   Vagrant Cascadian   Fix spelling of "...
325
  	/* probably should check which exception occurred as well */
4a9cbbe83   wdenk   Initial revision
326
327
  	if (longjmp_on_fault) {
  		longjmp_on_fault = 0;
cc3843e36   Wolfgang Denk   common/kgdb.c: fi...
328
  		kgdb_longjmp(error_jmp_buf, KGDBERR_MEMFAULT);
4a9cbbe83   wdenk   Initial revision
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  		panic("kgdb longjump failed!
  ");
  	}
  
  	if (kgdb_active) {
  		printf("kgdb: unexpected exception from within kgdb
  ");
  		return (0);
  	}
  	kgdb_active = 1;
  
  	kgdb_interruptible(0);
  
  	printf("kgdb: handle_exception; trap [0x%x]
  ", kgdb_trap(regs));
cc3843e36   Wolfgang Denk   common/kgdb.c: fi...
344
  	if (kgdb_setjmp(error_jmp_buf) != 0)
4a9cbbe83   wdenk   Initial revision
345
346
347
348
  		panic("kgdb: error or fault in entry init!
  ");
  
  	kgdb_enter(regs, &kd);
f9f040b21   Peng Fan   kgdb: Remove firs...
349
  	entry_regs = *regs;
4a9cbbe83   wdenk   Initial revision
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  
  	ptr = remcomOutBuffer;
  
  	*ptr++ = 'T';
  
  	*ptr++ = hexchars[kd.sigval >> 4];
  	*ptr++ = hexchars[kd.sigval & 0xf];
  
  	for (i = 0; i < kd.nregs; i++) {
  		kgdb_reg *rp = &kd.regs[i];
  
  		*ptr++ = hexchars[rp->num >> 4];
  		*ptr++ = hexchars[rp->num & 0xf];
  		*ptr++ = ':';
77ddac948   Wolfgang Denk   Cleanup for GCC-4.x
364
  		ptr = (char *)mem2hex((char *)&rp->val, ptr, 4);
4a9cbbe83   wdenk   Initial revision
365
366
367
368
369
370
371
372
373
374
  		*ptr++ = ';';
  	}
  
  	*ptr = 0;
  
  #ifdef KGDB_DEBUG
  	if (kdebug)
  		printf("kgdb: remcomOutBuffer: %s
  ", remcomOutBuffer);
  #endif
77ddac948   Wolfgang Denk   Cleanup for GCC-4.x
375
  	putpacket((unsigned char *)&remcomOutBuffer);
4a9cbbe83   wdenk   Initial revision
376
377
378
379
380
381
382
383
384
385
386
387
388
389
  
  	while (1) {
  		volatile int errnum;
  
  		remcomOutBuffer[0] = 0;
  
  		getpacket(remcomInBuffer);
  		ptr = &remcomInBuffer[1];
  
  #ifdef KGDB_DEBUG
  		if (kdebug)
  			printf("kgdb:  remcomInBuffer: %s
  ", remcomInBuffer);
  #endif
cc3843e36   Wolfgang Denk   common/kgdb.c: fi...
390
  		errnum = kgdb_setjmp(error_jmp_buf);
4a9cbbe83   wdenk   Initial revision
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
  
  		if (errnum == 0) switch (remcomInBuffer[0]) {
  
  		case '?':               /* report most recent signal */
  			remcomOutBuffer[0] = 'S';
  			remcomOutBuffer[1] = hexchars[kd.sigval >> 4];
  			remcomOutBuffer[2] = hexchars[kd.sigval & 0xf];
  			remcomOutBuffer[3] = 0;
  			break;
  
  #ifdef KGDB_DEBUG
  		case 'd':
  			/* toggle debug flag */
  			kdebug ^= 1;
  			break;
  #endif
  
  		case 'g':	/* return the value of the CPU registers. */
  			length = kgdb_getregs(regs, remcomRegBuffer, BUFMAX);
  			mem2hex(remcomRegBuffer, remcomOutBuffer, length);
  			break;
  
  		case 'G':   /* set the value of the CPU registers */
  			length = strlen(ptr);
  			if ((length & 1) != 0) kgdb_error(KGDBERR_BADPARAMS);
  			hex2mem(ptr, remcomRegBuffer, length/2);
  			kgdb_putregs(regs, remcomRegBuffer, length/2);
  			strcpy(remcomOutBuffer,"OK");
  			break;
  
  		case 'm':	/* mAA..AA,LLLL  Read LLLL bytes at address AA..AA */
  				/* Try to read %x,%x.  */
  
  			if (hexToInt(&ptr, &addr)
  			    && *ptr++ == ','
  			    && hexToInt(&ptr, &length))	{
  				mem2hex((char *)addr, remcomOutBuffer, length);
  			} else {
  				kgdb_error(KGDBERR_BADPARAMS);
  			}
  			break;
  
  		case 'M': /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
  			/* Try to read '%x,%x:'.  */
  
  			if (hexToInt(&ptr, &addr)
  			    && *ptr++ == ','
  			    && hexToInt(&ptr, &length)
  			    && *ptr++ == ':') {
  				hex2mem(ptr, (char *)addr, length);
  				strcpy(remcomOutBuffer, "OK");
  			} else {
  				kgdb_error(KGDBERR_BADPARAMS);
  			}
  			break;
  
  
  		case 'k':    /* kill the program, actually return to monitor */
  			kd.extype = KGDBEXIT_KILL;
  			*regs = entry_regs;
4a9cbbe83   wdenk   Initial revision
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
  			goto doexit;
  
  		case 'C':    /* CSS  continue with signal SS */
  			*ptr = '\0';	/* ignore the signal number for now */
  			/* fall through */
  
  		case 'c':    /* cAA..AA  Continue; address AA..AA optional */
  			/* try to read optional parameter, pc unchanged if no parm */
  			kd.extype = KGDBEXIT_CONTINUE;
  
  			if (hexToInt(&ptr, &addr)) {
  				kd.exaddr = addr;
  				kd.extype |= KGDBEXIT_WITHADDR;
  			}
  
  			goto doexit;
  
  		case 'S':    /* SSS  single step with signal SS */
  			*ptr = '\0';	/* ignore the signal number for now */
  			/* fall through */
  
  		case 's':
  			kd.extype = KGDBEXIT_SINGLE;
  
  			if (hexToInt(&ptr, &addr)) {
  				kd.exaddr = addr;
  				kd.extype |= KGDBEXIT_WITHADDR;
  			}
  
  		doexit:
  /* Need to flush the instruction cache here, as we may have deposited a
   * breakpoint, and the icache probably has no way of knowing that a data ref to
   * some location may have changed something that is in the instruction cache.
   */
  			kgdb_flush_cache_all();
  			kgdb_exit(regs, &kd);
  			kgdb_active = 0;
  			kgdb_interruptible(1);
  			return (1);
  
  		case 'r':		/* Reset (if user process..exit ???)*/
  			panic("kgdb reset.");
  			break;
  
  		case 'P':    /* Pr=v  set reg r to value v (r and v are hex) */
  			if (hexToInt(&ptr, &addr)
  			    && *ptr++ == '='
  			    && ((length = strlen(ptr)) & 1) == 0) {
  				hex2mem(ptr, remcomRegBuffer, length/2);
  				kgdb_putreg(regs, addr,
  					remcomRegBuffer, length/2);
  				strcpy(remcomOutBuffer,"OK");
  			} else {
  				kgdb_error(KGDBERR_BADPARAMS);
  			}
  			break;
  		}			/* switch */
  
  		if (errnum != 0)
  			sprintf(remcomOutBuffer, "E%02d", errnum);
  
  #ifdef KGDB_DEBUG
  		if (kdebug)
  			printf("kgdb: remcomOutBuffer: %s
  ", remcomOutBuffer);
  #endif
  
  		/* reply to the request */
77ddac948   Wolfgang Denk   Cleanup for GCC-4.x
519
  		putpacket((unsigned char *)&remcomOutBuffer);
4a9cbbe83   wdenk   Initial revision
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
  
  	} /* while(1) */
  }
  
  /*
   * kgdb_init must be called *after* the
   * monitor is relocated into ram
   */
  void
  kgdb_init(void)
  {
  	kgdb_serial_init();
  	debugger_exception_handler = handle_exception;
  	initialized = 1;
  
  	putDebugStr("kgdb ready
  ");
  	puts("ready
  ");
  }
  
  void
  kgdb_error(int errnum)
  {
  	longjmp_on_fault = 0;
cc3843e36   Wolfgang Denk   common/kgdb.c: fi...
545
  	kgdb_longjmp(error_jmp_buf, errnum);
4a9cbbe83   wdenk   Initial revision
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
  	panic("kgdb_error: longjmp failed!
  ");
  }
  
  /* Output string in GDB O-packet format if GDB has connected. If nothing
     output, returns 0 (caller must then handle output). */
  int
  kgdb_output_string (const char* s, unsigned int count)
  {
  	char buffer[512];
  
  	count = (count <= (sizeof(buffer) / 2 - 2))
  		? count : (sizeof(buffer) / 2 - 2);
  
  	buffer[0] = 'O';
  	mem2hex ((char *)s, &buffer[1], count);
77ddac948   Wolfgang Denk   Cleanup for GCC-4.x
562
  	putpacket((unsigned char *)&buffer);
4a9cbbe83   wdenk   Initial revision
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
  
  	return 1;
  }
  
  void
  breakpoint(void)
  {
  	if (!initialized) {
  		printf("breakpoint() called b4 kgdb init
  ");
  		return;
  	}
  
  	kgdb_breakpoint(0, 0);
  }
  
  int
54841ab50   Wolfgang Denk   Make sure that ar...
580
  do_kgdb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
4a9cbbe83   wdenk   Initial revision
581
582
583
584
585
586
587
588
589
590
  {
      printf("Entering KGDB mode via exception handler...
  
  ");
      kgdb_breakpoint(argc - 1, argv + 1);
      printf("
  Returned from KGDB mode
  ");
      return 0;
  }
0d4983930   wdenk   Patch by Kenneth ...
591
  U_BOOT_CMD(
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
592
  	kgdb, CONFIG_SYS_MAXARGS, 1,	do_kgdb,
2fb2604d5   Peter Tyser   Command usage cle...
593
  	"enter gdb remote debug mode",
8bde7f776   wdenk   * Code cleanup:
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
  	"[arg0 arg1 .. argN]
  "
  	"    - executes a breakpoint so that kgdb mode is
  "
  	"      entered via the exception handler. To return
  "
  	"      to the monitor, the remote gdb debugger must
  "
  	"      execute a \"continue\" or \"quit\" command.
  "
  	"
  "
  	"      if a program is loaded by the remote gdb, any args
  "
  	"      passed to the kgdb command are given to the loaded
  "
  	"      program if it is executed (see the \"hello_world\"
  "
  	"      example program in the U-Boot examples directory)."
  );