blob: 92f89578b0ed36090ef6a42dedb74799a48d7935 [file] [log] [blame]
wdenk1dda0b12002-08-27 10:52:29 +00001/*
2 * Bedbug Functions specific to the MPC603e core
3 */
4
5#include <common.h>
6#include <command.h>
7#include <linux/ctype.h>
wdenk57b2d802003-06-27 21:31:46 +00008#include <bedbug/type.h>
wdenk1dda0b12002-08-27 10:52:29 +00009#include <bedbug/bedbug.h>
10#include <bedbug/regs.h>
11#include <bedbug/ppc.h>
12
Jon Loeliger526e5ce2007-07-09 19:06:00 -050013#if defined(CONFIG_CMD_BEDBUG) \
Jon Loeliger6637e4c2007-06-11 19:03:08 -050014 && (defined(CONFIG_MPC824X) || defined(CONFIG_MPC8260))
wdenk1dda0b12002-08-27 10:52:29 +000015
16#define MAX_BREAK_POINTS 1
17
18extern CPU_DEBUG_CTX bug_ctx;
19
20void bedbug603e_init __P((void));
Wolfgang Denk6262d0212010-06-28 22:00:46 +020021void bedbug603e_do_break __P((cmd_tbl_t*,int,int,char*const[]));
wdenk1dda0b12002-08-27 10:52:29 +000022void bedbug603e_break_isr __P((struct pt_regs*));
23int bedbug603e_find_empty __P((void));
24int bedbug603e_set __P((int,unsigned long));
25int bedbug603e_clear __P((int));
26
27
28/* ======================================================================
29 * Initialize the global bug_ctx structure for the processor. Clear all
30 * of the breakpoints.
31 * ====================================================================== */
32
33void bedbug603e_init( void )
34{
35 int i;
36 /* -------------------------------------------------- */
37
38 bug_ctx.hw_debug_enabled = 0;
39 bug_ctx.stopped = 0;
40 bug_ctx.current_bp = 0;
41 bug_ctx.regs = NULL;
42
43 bug_ctx.do_break = bedbug603e_do_break;
44 bug_ctx.break_isr = bedbug603e_break_isr;
45 bug_ctx.find_empty = bedbug603e_find_empty;
46 bug_ctx.set = bedbug603e_set;
47 bug_ctx.clear = bedbug603e_clear;
48
49 for( i = 1; i <= MAX_BREAK_POINTS; ++i )
50 (*bug_ctx.clear)( i );
51
52 puts ("BEDBUG:ready\n");
53 return;
54} /* bedbug_init_breakpoints */
55
56
57
58/* ======================================================================
59 * Set/clear/show the hardware breakpoint for the 603e. The "off"
60 * string will disable a specific breakpoint. The "show" string will
61 * display the current breakpoints. Otherwise an address will set a
62 * breakpoint at that address. Setting a breakpoint uses the CPU-specific
63 * set routine which will assign a breakpoint number.
64 * ====================================================================== */
65
66void bedbug603e_do_break (cmd_tbl_t *cmdtp, int flag, int argc,
Wolfgang Denk6262d0212010-06-28 22:00:46 +020067 char * const argv[])
wdenk1dda0b12002-08-27 10:52:29 +000068{
69 long addr; /* Address to break at */
70 int which_bp; /* Breakpoint number */
71 /* -------------------------------------------------- */
72
Wolfgang Denk1cabed52010-08-19 00:27:33 +020073 if (argc < 2) {
74 cmd_usage(cmdtp);
75 return;
76 }
wdenk1dda0b12002-08-27 10:52:29 +000077
78 /* Turn off a breakpoint */
79
80 if( strcmp( argv[ 1 ], "off" ) == 0 )
81 {
82 if( bug_ctx.hw_debug_enabled == 0 )
83 {
wdenk42c05472004-03-23 22:14:11 +000084 puts ( "No breakpoints enabled\n" );
wdenk1dda0b12002-08-27 10:52:29 +000085 return;
86 }
87
88 which_bp = simple_strtoul( argv[ 2 ], NULL, 10 );
89
90 if( bug_ctx.clear )
91 (*bug_ctx.clear)( which_bp );
92
93 printf( "Breakpoint %d removed\n", which_bp );
94 return;
95 }
96
97 /* Show a list of breakpoints */
98
99 if( strcmp( argv[ 1 ], "show" ) == 0 )
100 {
101 for( which_bp = 1; which_bp <= MAX_BREAK_POINTS; ++which_bp )
102 {
103
104 addr = GET_IABR();
105
106 printf( "Breakpoint [%d]: ", which_bp );
107 if( (addr & 0x00000002) == 0 )
wdenk42c05472004-03-23 22:14:11 +0000108 puts ( "NOT SET\n" );
wdenk1dda0b12002-08-27 10:52:29 +0000109 else
110 disppc( (unsigned char *)(addr & 0xFFFFFFFC), 0, 1, bedbug_puts, F_RADHEX );
111 }
112 return;
113 }
114
115 /* Set a breakpoint at the address */
116
117 if(!(( isdigit( argv[ 1 ][ 0 ] )) ||
wdenk57b2d802003-06-27 21:31:46 +0000118 (( argv[ 1 ][ 0 ] >= 'a' ) && ( argv[ 1 ][ 0 ] <= 'f' )) ||
Wolfgang Denk1cabed52010-08-19 00:27:33 +0200119 (( argv[ 1 ][ 0 ] >= 'A' ) && ( argv[ 1 ][ 0 ] <= 'F' )))) {
120 cmd_usage(cmdtp);
121 return;
122 }
wdenk1dda0b12002-08-27 10:52:29 +0000123
124 addr = simple_strtoul( argv[ 1 ], NULL, 16 );
125
126 if(( bug_ctx.set ) && ( which_bp = (*bug_ctx.set)( 0, addr )) > 0 )
127 {
128 printf( "Breakpoint [%d]: ", which_bp );
129 disppc( (unsigned char *)addr, 0, 1, bedbug_puts, F_RADHEX );
130 }
131
132 return;
133} /* bedbug603e_do_break */
134
135
136
137/* ======================================================================
138 * Handle a breakpoint. Enter a mini main loop. Stay in the loop until
139 * the stopped flag in the debug context is cleared.
140 * ====================================================================== */
141
142void bedbug603e_break_isr( struct pt_regs *regs )
143{
144 unsigned long addr; /* Address stopped at */
145 /* -------------------------------------------------- */
146
147 bug_ctx.current_bp = 1;
148 addr = GET_IABR() & 0xFFFFFFFC;
149
150 bedbug_main_loop( addr, regs );
151 return;
152} /* bedbug603e_break_isr */
153
154
155
156/* ======================================================================
157 * See if the hardware breakpoint is available.
158 * ====================================================================== */
159
160int bedbug603e_find_empty( void )
161{
162 /* -------------------------------------------------- */
163
164 if( (GET_IABR() && 0x00000002) == 0 )
165 return 1;
166
167 return 0;
168} /* bedbug603e_find_empty */
169
170
171
172/* ======================================================================
173 * Set a breakpoint. If 'which_bp' is zero then find an unused breakpoint
174 * number, otherwise reassign the given breakpoint. If hardware debugging
175 * is not enabled, then turn it on via the MSR and DBCR0. Set the break
176 * address in the IABR register.
177 * ====================================================================== */
178
179int bedbug603e_set( int which_bp, unsigned long addr )
180{
181 /* -------------------------------------------------- */
182
183 if(( addr & 0x00000003 ) != 0 )
184 {
wdenk42c05472004-03-23 22:14:11 +0000185 puts ( "Breakpoints must be on a 32 bit boundary\n" );
wdenk1dda0b12002-08-27 10:52:29 +0000186 return 0;
187 }
188
189 /* Only look if which_bp == 0, else use which_bp */
190 if(( bug_ctx.find_empty ) && ( !which_bp ) &&
191 ( which_bp = (*bug_ctx.find_empty)()) == 0 )
192 {
wdenk42c05472004-03-23 22:14:11 +0000193 puts ( "All breakpoints in use\n" );
wdenk1dda0b12002-08-27 10:52:29 +0000194 return 0;
195 }
196
197 if( which_bp < 1 || which_bp > MAX_BREAK_POINTS )
198 {
199 printf( "Invalid break point # %d\n", which_bp );
200 return 0;
201 }
202
203 if( ! bug_ctx.hw_debug_enabled )
204 {
205 bug_ctx.hw_debug_enabled = 1;
206 }
207
208 SET_IABR( addr | 0x00000002 );
209
210 return which_bp;
211} /* bedbug603e_set */
212
213
214
215/* ======================================================================
216 * Disable a specific breakoint by setting the IABR register to zero.
217 * ====================================================================== */
218
219int bedbug603e_clear( int which_bp )
220{
221 /* -------------------------------------------------- */
222
223 if( which_bp < 1 || which_bp > MAX_BREAK_POINTS )
224 {
225 printf( "Invalid break point # (%d)\n", which_bp );
226 return -1;
227 }
228
229 SET_IABR( 0 );
230
231 return 0;
232} /* bedbug603e_clear */
233
234
235/* ====================================================================== */
236#endif