ARM DPM: disable some nyet-ready breakpoint code
authorDavid Brownell <dbrownell@users.sourceforge.net>
Fri, 15 Jan 2010 20:53:26 +0000 (12:53 -0800)
committerDavid Brownell <dbrownell@users.sourceforge.net>
Fri, 15 Jan 2010 20:53:26 +0000 (12:53 -0800)
Until we manage breakpoints at runtime (patches not ready for 0.4)
the only way this code should touch them is to disable them at server
startup (a previous debug session may have left them active).

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
src/target/arm_dpm.c

index 0908ca92d0088c81ad8820cfa9455843d3dba99d..4bd22ffbf53cc7fa3807a8387d9728d60c015df2 100644 (file)
@@ -341,13 +341,21 @@ int arm_dpm_write_dirty_registers(struct arm_dpm *dpm, bool bpwp)
        if (retval != ERROR_OK)
                goto done;
 
-       /* enable/disable hardware breakpoints */
-       for (unsigned i = 0; i < dpm->nbp; i++) {
-               struct dpm_bp *dbp = dpm->dbp + i;
-               struct breakpoint *bp = dbp->bp;
+       /* If we're managing hardware breakpoints for this core, enable
+        * or disable them as requested.
+        *
+        * REVISIT We don't yet manage them for ANY cores.  Eventually
+        * we should be able to assume we handle them; but until then,
+        * cope with the hand-crafted breakpoint code.
+        */
+       if (0) {
+               for (unsigned i = 0; i < dpm->nbp; i++) {
+                       struct dpm_bp *dbp = dpm->dbp + i;
+                       struct breakpoint *bp = dbp->bp;
 
-               retval = dpm_maybe_update_bpwp(dpm, bpwp, &dbp->bpwp,
-                               bp ? &bp->set : NULL);
+                       retval = dpm_maybe_update_bpwp(dpm, bpwp, &dbp->bpwp,
+                                       bp ? &bp->set : NULL);
+               }
        }
 
        /* enable/disable watchpoints */