NOR/core bugfix: restore invariants
authorDavid Brownell <dbrownell@users.sourceforge.net>
Fri, 16 Apr 2010 02:48:55 +0000 (19:48 -0700)
committerDavid Brownell <dbrownell@users.sourceforge.net>
Fri, 16 Apr 2010 02:48:55 +0000 (19:48 -0700)
The The patch labeled "CFI CORE: bug-fix protect single sector" was merged
rged without some requested bugfixes.  Most significantly it broke invariants
in the code, invalidating descriptions and changing the calling convention
for underlying drivers.  (It (Also wasn't CFI-specific...)

Fix that, and Include an update from Antonio Borneo for the degenerate
"nothing to do" case, (although that's still in the  wrong location.  which
is presumably why that is it was working in some cases but not all.)

 src/flash/nor/core.c |   21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
src/flash/nor/core.c

index 18012c650b55d0f03603e24f9094bbe6dd12b6a8..15e460a1b0f9469c17979895d2ba016809ab9117 100644 (file)
@@ -56,7 +56,10 @@ int flash_driver_protect(struct flash_bank *bank, int set, int first, int last)
        int retval;
        bool updated = false;
 
-       /* NOTE: "first == last" means protect just that sector */
+       /* NOTE: "first == last" means (un?)protect just that sector.
+        code including Lower level ddrivers may rely on this "first <= last"
+        * invariant.
+       */
 
        /* callers may not supply illegal parameters ... */
        if (first < 0 || first > last || last >= bank->num_sectors)
@@ -90,10 +93,10 @@ scan:
                 * REVISIT we could handle discontiguous regions by issuing
                 * more than one driver request.  How much would that matter?
                 */
-               if (i == first) {
+               if (i == first && i != last) {
                        updated = true;
                        first++;
-               } else if (i == last) {
+               } else if (i == last && i != first) {
                        updated = true;
                        last--;
                }
@@ -107,11 +110,19 @@ scan:
                goto scan;
        }
 
-       /* Single sector, already protected?  Nothing to do! */
-       if (first > last)
+       /* Single sector, already protected?  Nothing to do!
+        * We may have trimmed our parameters into this degenerate case.
+        *
+        * FIXME repeating the "is_protected==set" test is a giveaway that
+        * this fast-exit belongs earlier, in the trim-it-down loop; mve.
+        * */
+       if (first == last && bank->sectors[first].is_protected == set)
                return ERROR_OK;
 
 
+       /* Note that we don't pass illegal parameters to drivers; any
+        * trimming just turns one valid range into another one.
+        */
        retval = bank->driver->protect(bank, set, first, last);
        if (retval != ERROR_OK)
        {

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)