blob: 69afeafecb5652d180d6329f24db8bf3af535cf8 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
2 * BedBug Functions
3 */
4
5#include <common.h>
Simon Glass18d66532014-04-10 20:01:25 -06006#include <cli.h>
wdenk47d1a6e2002-11-03 00:01:44 +00007#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -07008#include <console.h>
wdenk47d1a6e2002-11-03 00:01:44 +00009#include <linux/ctype.h>
10#include <net.h>
wdenk8bde7f72003-06-27 21:31:46 +000011#include <bedbug/type.h>
wdenk47d1a6e2002-11-03 00:01:44 +000012#include <bedbug/bedbug.h>
13#include <bedbug/regs.h>
14#include <bedbug/ppc.h>
wdenk47d1a6e2002-11-03 00:01:44 +000015
Wolfgang Denkd87080b2006-03-31 18:32:53 +020016DECLARE_GLOBAL_DATA_PTR;
17
Wolfgang Denkd87080b2006-03-31 18:32:53 +020018extern void show_regs __P ((struct pt_regs *));
19extern int run_command __P ((const char *, int));
wdenk47d1a6e2002-11-03 00:01:44 +000020
Wolfgang Denkd87080b2006-03-31 18:32:53 +020021ulong dis_last_addr = 0; /* Last address disassembled */
22ulong dis_last_len = 20; /* Default disassembler length */
23CPU_DEBUG_CTX bug_ctx; /* Bedbug context structure */
Simon Glasse1bf8242014-04-10 20:01:27 -060024
Wolfgang Denkd87080b2006-03-31 18:32:53 +020025
wdenk47d1a6e2002-11-03 00:01:44 +000026/* ======================================================================
27 * U-Boot's puts function does not append a newline, so the bedbug stuff
28 * will use this for the output of the dis/assembler.
29 * ====================================================================== */
30
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031int bedbug_puts (const char *str)
wdenk47d1a6e2002-11-03 00:01:44 +000032{
Wolfgang Denkd87080b2006-03-31 18:32:53 +020033 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +000034
Wolfgang Denkd87080b2006-03-31 18:32:53 +020035 printf ("%s\r\n", str);
36 return 0;
37} /* bedbug_puts */
Simon Glasse1bf8242014-04-10 20:01:27 -060038
Wolfgang Denkd87080b2006-03-31 18:32:53 +020039
40
wdenk47d1a6e2002-11-03 00:01:44 +000041/* ======================================================================
42 * Initialize the bug_ctx structure used by the bedbug debugger. This is
43 * specific to the CPU since each has different debug registers and
44 * settings.
45 * ====================================================================== */
46
Wolfgang Denkd87080b2006-03-31 18:32:53 +020047void bedbug_init (void)
wdenk47d1a6e2002-11-03 00:01:44 +000048{
Wolfgang Denkd87080b2006-03-31 18:32:53 +020049 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +000050
51#if defined(CONFIG_4xx)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020052 void bedbug405_init (void);
53
54 bedbug405_init ();
wdenkd126bfb2003-04-10 11:18:18 +000055#elif defined(CONFIG_8xx)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020056 void bedbug860_init (void);
57
58 bedbug860_init ();
wdenk47d1a6e2002-11-03 00:01:44 +000059#endif
60
61#if defined(CONFIG_MPC824X) || defined(CONFIG_MPC8260)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020062 /* Processors that are 603e core based */
63 void bedbug603e_init (void);
wdenk47d1a6e2002-11-03 00:01:44 +000064
Wolfgang Denkd87080b2006-03-31 18:32:53 +020065 bedbug603e_init ();
wdenk47d1a6e2002-11-03 00:01:44 +000066#endif
67
Wolfgang Denkd87080b2006-03-31 18:32:53 +020068 return;
69} /* bedbug_init */
Simon Glasse1bf8242014-04-10 20:01:27 -060070
Wolfgang Denkd87080b2006-03-31 18:32:53 +020071
72
wdenk47d1a6e2002-11-03 00:01:44 +000073/* ======================================================================
74 * Entry point from the interpreter to the disassembler. Repeated calls
75 * will resume from the last disassembled address.
76 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020077int do_bedbug_dis (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +000078{
Wolfgang Denkd87080b2006-03-31 18:32:53 +020079 ulong addr; /* Address to start disassembly from */
80 ulong len; /* # of instructions to disassemble */
wdenk47d1a6e2002-11-03 00:01:44 +000081
Wolfgang Denkd87080b2006-03-31 18:32:53 +020082 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +000083
Wolfgang Denkd87080b2006-03-31 18:32:53 +020084 /* Setup to go from the last address if none is given */
85 addr = dis_last_addr;
86 len = dis_last_len;
wdenk47d1a6e2002-11-03 00:01:44 +000087
Wolfgang Denk47e26b12010-07-17 01:06:04 +020088 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000089 return CMD_RET_USAGE;
wdenk47d1a6e2002-11-03 00:01:44 +000090
Wolfgang Denkd87080b2006-03-31 18:32:53 +020091 if ((flag & CMD_FLAG_REPEAT) == 0) {
92 /* New command */
93 addr = simple_strtoul (argv[1], NULL, 16);
wdenk47d1a6e2002-11-03 00:01:44 +000094
Wolfgang Denkd87080b2006-03-31 18:32:53 +020095 /* If an extra param is given then it is the length */
96 if (argc > 2)
97 len = simple_strtoul (argv[2], NULL, 16);
98 }
wdenk47d1a6e2002-11-03 00:01:44 +000099
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200100 /* Run the disassembler */
101 disppc ((unsigned char *) addr, 0, len, bedbug_puts, F_RADHEX);
102
103 dis_last_addr = addr + (len * 4);
104 dis_last_len = len;
105 return 0;
106} /* do_bedbug_dis */
107
108U_BOOT_CMD (ds, 3, 1, do_bedbug_dis,
Peter Tyser2fb26042009-01-27 18:03:12 -0600109 "disassemble memory",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200110 "ds <address> [# instructions]");
Simon Glasse1bf8242014-04-10 20:01:27 -0600111
wdenk47d1a6e2002-11-03 00:01:44 +0000112/* ======================================================================
113 * Entry point from the interpreter to the assembler. Assembles
114 * instructions in consecutive memory locations until a '.' (period) is
115 * entered on a line by itself.
116 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200117int do_bedbug_asm (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000118{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200119 long mem_addr; /* Address to assemble into */
120 unsigned long instr; /* Machine code for text */
121 char prompt[15]; /* Prompt string for user input */
122 int asm_err; /* Error code from the assembler */
wdenk47d1a6e2002-11-03 00:01:44 +0000123
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200124 /* -------------------------------------------------- */
125 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000126
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200127 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000128 return CMD_RET_USAGE;
wdenk47d1a6e2002-11-03 00:01:44 +0000129
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200130 printf ("\nEnter '.' when done\n");
131 mem_addr = simple_strtoul (argv[1], NULL, 16);
wdenk47d1a6e2002-11-03 00:01:44 +0000132
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200133 while (1) {
134 putc ('\n');
135 disppc ((unsigned char *) mem_addr, 0, 1, bedbug_puts,
136 F_RADHEX);
wdenk47d1a6e2002-11-03 00:01:44 +0000137
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200138 sprintf (prompt, "%08lx: ", mem_addr);
Simon Glasse1bf8242014-04-10 20:01:27 -0600139 cli_readline(prompt);
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200140
141 if (console_buffer[0] && strcmp (console_buffer, ".")) {
142 if ((instr =
143 asmppc (mem_addr, console_buffer,
144 &asm_err)) != 0) {
145 *(unsigned long *) mem_addr = instr;
146 mem_addr += 4;
147 } else {
148 printf ("*** Error: %s ***\n",
149 asm_error_str (asm_err));
150 rcode = 1;
151 }
152 } else {
153 break;
154 }
155 }
156 return rcode;
157} /* do_bedbug_asm */
158
159U_BOOT_CMD (as, 2, 0, do_bedbug_asm,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200160 "assemble memory", "as <address>");
Simon Glasse1bf8242014-04-10 20:01:27 -0600161
wdenk47d1a6e2002-11-03 00:01:44 +0000162/* ======================================================================
163 * Used to set a break point from the interpreter. Simply calls into the
164 * CPU-specific break point set routine.
165 * ====================================================================== */
166
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200167int do_bedbug_break (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000168{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200169 /* -------------------------------------------------- */
170 if (bug_ctx.do_break)
171 (*bug_ctx.do_break) (cmdtp, flag, argc, argv);
172 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000173
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200174} /* do_bedbug_break */
175
176U_BOOT_CMD (break, 3, 0, do_bedbug_break,
Peter Tyser2fb26042009-01-27 18:03:12 -0600177 "set or clear a breakpoint",
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200178 " - Set or clear a breakpoint\n"
179 "break <address> - Break at an address\n"
180 "break off <bp#> - Disable breakpoint.\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200181 "break show - List breakpoints.");
Simon Glasse1bf8242014-04-10 20:01:27 -0600182
wdenk47d1a6e2002-11-03 00:01:44 +0000183/* ======================================================================
184 * Called from the debug interrupt routine. Simply calls the CPU-specific
185 * breakpoint handling routine.
186 * ====================================================================== */
187
188void do_bedbug_breakpoint (struct pt_regs *regs)
189{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200190 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000191
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200192 if (bug_ctx.break_isr)
193 (*bug_ctx.break_isr) (regs);
wdenk47d1a6e2002-11-03 00:01:44 +0000194
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200195 return;
196} /* do_bedbug_breakpoint */
Simon Glasse1bf8242014-04-10 20:01:27 -0600197
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200198
199
wdenk47d1a6e2002-11-03 00:01:44 +0000200/* ======================================================================
201 * Called from the CPU-specific breakpoint handling routine. Enter a
202 * mini main loop until the stopped flag is cleared from the breakpoint
203 * context.
204 *
205 * This handles the parts of the debugger that are common to all CPU's.
206 * ====================================================================== */
207
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200208void bedbug_main_loop (unsigned long addr, struct pt_regs *regs)
wdenk47d1a6e2002-11-03 00:01:44 +0000209{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200210 int len; /* Length of command line */
211 int flag; /* Command flags */
212 int rc = 0; /* Result from run_command */
213 char prompt_str[20]; /* Prompt string */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200214 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0 }; /* previous command */
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200215 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000216
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200217 if (bug_ctx.clear)
218 (*bug_ctx.clear) (bug_ctx.current_bp);
wdenk47d1a6e2002-11-03 00:01:44 +0000219
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200220 printf ("Breakpoint %d: ", bug_ctx.current_bp);
221 disppc ((unsigned char *) addr, 0, 1, bedbug_puts, F_RADHEX);
wdenk47d1a6e2002-11-03 00:01:44 +0000222
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200223 bug_ctx.stopped = 1;
224 bug_ctx.regs = regs;
wdenk47d1a6e2002-11-03 00:01:44 +0000225
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200226 sprintf (prompt_str, "BEDBUG.%d =>", bug_ctx.current_bp);
wdenk47d1a6e2002-11-03 00:01:44 +0000227
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200228 /* A miniature main loop */
229 while (bug_ctx.stopped) {
Simon Glasse1bf8242014-04-10 20:01:27 -0600230 len = cli_readline(prompt_str);
wdenk47d1a6e2002-11-03 00:01:44 +0000231
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200232 flag = 0; /* assume no special flags for now */
wdenk47d1a6e2002-11-03 00:01:44 +0000233
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200234 if (len > 0)
235 strcpy (lastcommand, console_buffer);
236 else if (len == 0)
237 flag |= CMD_FLAG_REPEAT;
wdenk47d1a6e2002-11-03 00:01:44 +0000238
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200239 if (len == -1)
240 printf ("<INTERRUPT>\n");
241 else
Thomas Betker52715f82014-06-05 20:07:58 +0200242 rc = run_command_repeatable(lastcommand, flag);
wdenk47d1a6e2002-11-03 00:01:44 +0000243
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200244 if (rc <= 0) {
245 /* invalid command or not repeatable, forget it */
246 lastcommand[0] = 0;
247 }
248 }
wdenk47d1a6e2002-11-03 00:01:44 +0000249
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200250 bug_ctx.regs = NULL;
251 bug_ctx.current_bp = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000252
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200253 return;
254} /* bedbug_main_loop */
Simon Glasse1bf8242014-04-10 20:01:27 -0600255
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200256
257
wdenk47d1a6e2002-11-03 00:01:44 +0000258/* ======================================================================
259 * Interpreter command to continue from a breakpoint. Just clears the
260 * stopped flag in the context so that the breakpoint routine will
261 * return.
262 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200263int do_bedbug_continue (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000264{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200265 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000266
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200267 if (!bug_ctx.stopped) {
268 printf ("Not at a breakpoint\n");
269 return 1;
270 }
wdenk47d1a6e2002-11-03 00:01:44 +0000271
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200272 bug_ctx.stopped = 0;
273 return 0;
274} /* do_bedbug_continue */
275
276U_BOOT_CMD (continue, 1, 0, do_bedbug_continue,
Peter Tyser2fb26042009-01-27 18:03:12 -0600277 "continue from a breakpoint",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200278 "");
Simon Glasse1bf8242014-04-10 20:01:27 -0600279
wdenk47d1a6e2002-11-03 00:01:44 +0000280/* ======================================================================
281 * Interpreter command to continue to the next instruction, stepping into
282 * subroutines. Works by calling the find_next_addr() routine to compute
283 * the address passes control to the CPU-specific set breakpoint routine
284 * for the current breakpoint number.
285 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200286int do_bedbug_step (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000287{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200288 unsigned long addr; /* Address to stop at */
wdenk47d1a6e2002-11-03 00:01:44 +0000289
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200290 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000291
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200292 if (!bug_ctx.stopped) {
293 printf ("Not at a breakpoint\n");
294 return 1;
295 }
wdenk47d1a6e2002-11-03 00:01:44 +0000296
York Sun472d5462013-04-01 11:29:11 -0700297 if (!find_next_address((unsigned char *) &addr, false, bug_ctx.regs))
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200298 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000299
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200300 if (bug_ctx.set)
301 (*bug_ctx.set) (bug_ctx.current_bp, addr);
302
303 bug_ctx.stopped = 0;
304 return 0;
305} /* do_bedbug_step */
306
307U_BOOT_CMD (step, 1, 1, do_bedbug_step,
Peter Tyser2fb26042009-01-27 18:03:12 -0600308 "single step execution.",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200309 "");
Simon Glasse1bf8242014-04-10 20:01:27 -0600310
wdenk47d1a6e2002-11-03 00:01:44 +0000311/* ======================================================================
312 * Interpreter command to continue to the next instruction, stepping over
313 * subroutines. Works by calling the find_next_addr() routine to compute
314 * the address passes control to the CPU-specific set breakpoint routine
315 * for the current breakpoint number.
316 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200317int do_bedbug_next (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000318{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200319 unsigned long addr; /* Address to stop at */
wdenk47d1a6e2002-11-03 00:01:44 +0000320
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200321 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000322
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200323 if (!bug_ctx.stopped) {
324 printf ("Not at a breakpoint\n");
325 return 1;
326 }
wdenk47d1a6e2002-11-03 00:01:44 +0000327
York Sun472d5462013-04-01 11:29:11 -0700328 if (!find_next_address((unsigned char *) &addr, true, bug_ctx.regs))
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200329 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000330
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200331 if (bug_ctx.set)
332 (*bug_ctx.set) (bug_ctx.current_bp, addr);
333
334 bug_ctx.stopped = 0;
335 return 0;
336} /* do_bedbug_next */
337
338U_BOOT_CMD (next, 1, 1, do_bedbug_next,
Peter Tyser2fb26042009-01-27 18:03:12 -0600339 "single step execution, stepping over subroutines.",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200340 "");
Simon Glasse1bf8242014-04-10 20:01:27 -0600341
wdenk47d1a6e2002-11-03 00:01:44 +0000342/* ======================================================================
343 * Interpreter command to print the current stack. This assumes an EABI
344 * architecture, so it starts with GPR R1 and works back up the stack.
345 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200346int do_bedbug_stack (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000347{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200348 unsigned long sp; /* Stack pointer */
349 unsigned long func; /* LR from stack */
350 int depth; /* Stack iteration level */
351 int skip = 1; /* Flag to skip the first entry */
352 unsigned long top; /* Top of memory address */
wdenk47d1a6e2002-11-03 00:01:44 +0000353
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200354 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000355
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200356 if (!bug_ctx.stopped) {
357 printf ("Not at a breakpoint\n");
358 return 1;
359 }
wdenk47d1a6e2002-11-03 00:01:44 +0000360
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200361 top = gd->bd->bi_memstart + gd->bd->bi_memsize;
362 depth = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000363
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200364 printf ("Depth PC\n");
365 printf ("----- --------\n");
366 printf ("%5d %08lx\n", depth++, bug_ctx.regs->nip);
wdenk47d1a6e2002-11-03 00:01:44 +0000367
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200368 sp = bug_ctx.regs->gpr[1];
369 func = *(unsigned long *) (sp + 4);
wdenk47d1a6e2002-11-03 00:01:44 +0000370
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200371 while ((func < top) && (sp < top)) {
372 if (!skip)
373 printf ("%5d %08lx\n", depth++, func);
374 else
375 --skip;
wdenk47d1a6e2002-11-03 00:01:44 +0000376
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200377 sp = *(unsigned long *) sp;
378 func = *(unsigned long *) (sp + 4);
379 }
380 return 0;
381} /* do_bedbug_stack */
382
383U_BOOT_CMD (where, 1, 1, do_bedbug_stack,
Peter Tyser2fb26042009-01-27 18:03:12 -0600384 "Print the running stack.",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200385 "");
Simon Glasse1bf8242014-04-10 20:01:27 -0600386
wdenk47d1a6e2002-11-03 00:01:44 +0000387/* ======================================================================
388 * Interpreter command to dump the registers. Calls the CPU-specific
389 * show registers routine.
390 * ====================================================================== */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200391int do_bedbug_rdump (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000392{
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200393 /* -------------------------------------------------- */
wdenk47d1a6e2002-11-03 00:01:44 +0000394
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200395 if (!bug_ctx.stopped) {
396 printf ("Not at a breakpoint\n");
397 return 1;
398 }
wdenk47d1a6e2002-11-03 00:01:44 +0000399
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200400 show_regs (bug_ctx.regs);
401 return 0;
402} /* do_bedbug_rdump */
403
404U_BOOT_CMD (rdump, 1, 1, do_bedbug_rdump,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200405 "Show registers.", "");
wdenk47d1a6e2002-11-03 00:01:44 +0000406/* ====================================================================== */
wdenk47d1a6e2002-11-03 00:01:44 +0000407
408
409/*
410 * Copyright (c) 2001 William L. Pitts
411 * All rights reserved.
412 *
413 * Redistribution and use in source and binary forms are freely
414 * permitted provided that the above copyright notice and this
415 * paragraph and the following disclaimer are duplicated in all
416 * such forms.
417 *
418 * This software is provided "AS IS" and without any express or
419 * implied warranties, including, without limitation, the implied
420 * warranties of merchantability and fitness for a particular
421 * purpose.
422 */