smp : infra for smp minimum support
[openocd.git] / src / target / breakpoints.c
blob80f98dc1101d72df063558e898b14bced1cb68f7
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) ST-Ericsson SA 2011 *
6 * michel.jaouen@stericsson.com : smp minimum support *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #include "target.h"
28 #include <helper/log.h>
29 #include "breakpoints.h"
32 static char *breakpoint_type_strings[] =
34 "hardware",
35 "software"
38 static char *watchpoint_rw_strings[] =
40 "read",
41 "write",
42 "access"
45 // monotonic counter/id-number for breakpoints and watch points
46 static int bpwp_unique_id;
48 int breakpoint_add_internal(struct target *target, uint32_t address, uint32_t length, enum breakpoint_type type)
50 struct breakpoint *breakpoint = target->breakpoints;
51 struct breakpoint **breakpoint_p = &target->breakpoints;
52 char *reason;
53 int retval;
54 int n;
56 n = 0;
57 while (breakpoint)
59 n++;
60 if (breakpoint->address == address) {
61 /* FIXME don't assume "same address" means "same
62 * breakpoint" ... check all the parameters before
63 * succeeding.
65 LOG_DEBUG("Duplicate Breakpoint address: 0x%08" PRIx32 " (BP %d)",
66 address, breakpoint->unique_id );
67 return ERROR_OK;
69 breakpoint_p = &breakpoint->next;
70 breakpoint = breakpoint->next;
73 (*breakpoint_p) = malloc(sizeof(struct breakpoint));
74 (*breakpoint_p)->address = address;
75 (*breakpoint_p)->length = length;
76 (*breakpoint_p)->type = type;
77 (*breakpoint_p)->set = 0;
78 (*breakpoint_p)->orig_instr = malloc(length);
79 (*breakpoint_p)->next = NULL;
80 (*breakpoint_p)->unique_id = bpwp_unique_id++;
82 retval = target_add_breakpoint(target, *breakpoint_p);
83 switch (retval) {
84 case ERROR_OK:
85 break;
86 case ERROR_TARGET_RESOURCE_NOT_AVAILABLE:
87 reason = "resource not available";
88 goto fail;
89 case ERROR_TARGET_NOT_HALTED:
90 reason = "target running";
91 goto fail;
92 default:
93 reason = "unknown reason";
94 fail:
95 LOG_ERROR("can't add breakpoint: %s", reason);
96 free((*breakpoint_p)->orig_instr);
97 free(*breakpoint_p);
98 *breakpoint_p = NULL;
99 return retval;
102 LOG_DEBUG("added %s breakpoint at 0x%8.8" PRIx32 " of length 0x%8.8x, (BPID: %d)",
103 breakpoint_type_strings[(*breakpoint_p)->type],
104 (*breakpoint_p)->address, (*breakpoint_p)->length,
105 (*breakpoint_p)->unique_id );
107 return ERROR_OK;
110 int breakpoint_add(struct target *target, uint32_t address, uint32_t length, enum breakpoint_type type)
113 int retval = ERROR_OK;
114 if (target->smp)
116 struct target_list *head;
117 struct target *curr;
118 head = target->head;
119 while(head != (struct target_list*)NULL)
121 curr = head->target;
122 retval = breakpoint_add_internal(curr, address,length, type);
123 if (retval != ERROR_OK) return retval;
124 head = head->next;
126 return retval;
128 else
129 return(breakpoint_add_internal(target, address, length, type));
133 /* free up a breakpoint */
134 static void breakpoint_free(struct target *target, struct breakpoint *breakpoint_to_remove)
136 struct breakpoint *breakpoint = target->breakpoints;
137 struct breakpoint **breakpoint_p = &target->breakpoints;
138 int retval;
140 while (breakpoint)
142 if (breakpoint == breakpoint_to_remove)
143 break;
144 breakpoint_p = &breakpoint->next;
145 breakpoint = breakpoint->next;
148 if (breakpoint == NULL)
149 return;
151 retval = target_remove_breakpoint(target, breakpoint);
153 LOG_DEBUG("free BPID: %d --> %d", breakpoint->unique_id, retval);
154 (*breakpoint_p) = breakpoint->next;
155 free(breakpoint->orig_instr);
156 free(breakpoint);
159 void breakpoint_remove_internal(struct target *target, uint32_t address)
161 struct breakpoint *breakpoint = target->breakpoints;
162 struct breakpoint **breakpoint_p = &target->breakpoints;
164 while (breakpoint)
166 if (breakpoint->address == address)
167 break;
168 breakpoint_p = &breakpoint->next;
169 breakpoint = breakpoint->next;
172 if (breakpoint)
174 breakpoint_free(target, breakpoint);
176 else
178 LOG_ERROR("no breakpoint at address 0x%8.8" PRIx32 " found", address);
181 void breakpoint_remove(struct target *target, uint32_t address)
183 if ((target->smp))
185 struct target_list *head;
186 struct target *curr;
187 head = target->head;
188 while(head != (struct target_list*)NULL)
190 curr = head->target;
191 breakpoint_remove_internal(curr, address);
192 head = head->next;
195 else breakpoint_remove_internal(target, address);
198 void breakpoint_clear_target_internal(struct target *target)
200 struct breakpoint *breakpoint;
202 LOG_DEBUG("Delete all breakpoints for target: %s",
203 target_name(target));
204 while ((breakpoint = target->breakpoints) != NULL)
206 breakpoint_free(target, breakpoint);
210 void breakpoint_clear_target(struct target *target)
212 if (target->smp)
214 struct target_list *head;
215 struct target *curr;
216 head = target->head;
217 while(head != (struct target_list*)NULL)
219 curr = head->target;
220 breakpoint_clear_target_internal(curr);
221 head = head->next;
224 else breakpoint_clear_target_internal(target);
229 struct breakpoint* breakpoint_find(struct target *target, uint32_t address)
231 struct breakpoint *breakpoint = target->breakpoints;
233 while (breakpoint)
235 if (breakpoint->address == address)
236 return breakpoint;
237 breakpoint = breakpoint->next;
240 return NULL;
243 int watchpoint_add(struct target *target, uint32_t address, uint32_t length,
244 enum watchpoint_rw rw, uint32_t value, uint32_t mask)
246 struct watchpoint *watchpoint = target->watchpoints;
247 struct watchpoint **watchpoint_p = &target->watchpoints;
248 int retval;
249 char *reason;
251 while (watchpoint)
253 if (watchpoint->address == address) {
254 if (watchpoint->length != length
255 || watchpoint->value != value
256 || watchpoint->mask != mask
257 || watchpoint->rw != rw) {
258 LOG_ERROR("address 0x%8.8" PRIx32
259 "already has watchpoint %d",
260 address, watchpoint->unique_id);
261 return ERROR_FAIL;
264 /* ignore duplicate watchpoint */
265 return ERROR_OK;
267 watchpoint_p = &watchpoint->next;
268 watchpoint = watchpoint->next;
271 (*watchpoint_p) = calloc(1, sizeof(struct watchpoint));
272 (*watchpoint_p)->address = address;
273 (*watchpoint_p)->length = length;
274 (*watchpoint_p)->value = value;
275 (*watchpoint_p)->mask = mask;
276 (*watchpoint_p)->rw = rw;
277 (*watchpoint_p)->unique_id = bpwp_unique_id++;
279 retval = target_add_watchpoint(target, *watchpoint_p);
280 switch (retval) {
281 case ERROR_OK:
282 break;
283 case ERROR_TARGET_RESOURCE_NOT_AVAILABLE:
284 reason = "resource not available";
285 goto bye;
286 case ERROR_TARGET_NOT_HALTED:
287 reason = "target running";
288 goto bye;
289 default:
290 reason = "unrecognized error";
291 bye:
292 LOG_ERROR("can't add %s watchpoint at 0x%8.8" PRIx32 ", %s",
293 watchpoint_rw_strings[(*watchpoint_p)->rw],
294 address, reason);
295 free (*watchpoint_p);
296 *watchpoint_p = NULL;
297 return retval;
300 LOG_DEBUG("added %s watchpoint at 0x%8.8" PRIx32
301 " of length 0x%8.8" PRIx32 " (WPID: %d)",
302 watchpoint_rw_strings[(*watchpoint_p)->rw],
303 (*watchpoint_p)->address,
304 (*watchpoint_p)->length,
305 (*watchpoint_p)->unique_id );
307 return ERROR_OK;
310 static void watchpoint_free(struct target *target, struct watchpoint *watchpoint_to_remove)
312 struct watchpoint *watchpoint = target->watchpoints;
313 struct watchpoint **watchpoint_p = &target->watchpoints;
314 int retval;
316 while (watchpoint)
318 if (watchpoint == watchpoint_to_remove)
319 break;
320 watchpoint_p = &watchpoint->next;
321 watchpoint = watchpoint->next;
324 if (watchpoint == NULL)
325 return;
326 retval = target_remove_watchpoint(target, watchpoint);
327 LOG_DEBUG("free WPID: %d --> %d", watchpoint->unique_id, retval);
328 (*watchpoint_p) = watchpoint->next;
329 free(watchpoint);
332 void watchpoint_remove(struct target *target, uint32_t address)
334 struct watchpoint *watchpoint = target->watchpoints;
335 struct watchpoint **watchpoint_p = &target->watchpoints;
337 while (watchpoint)
339 if (watchpoint->address == address)
340 break;
341 watchpoint_p = &watchpoint->next;
342 watchpoint = watchpoint->next;
345 if (watchpoint)
347 watchpoint_free(target, watchpoint);
349 else
351 LOG_ERROR("no watchpoint at address 0x%8.8" PRIx32 " found", address);
355 void watchpoint_clear_target(struct target *target)
357 struct watchpoint *watchpoint;
359 LOG_DEBUG("Delete all watchpoints for target: %s",
360 target_name(target));
361 while ((watchpoint = target->watchpoints) != NULL)
363 watchpoint_free(target, watchpoint);