flash: use stm32f2x flash size register
authorSpencer Oliver <spen@spen-soft.co.uk>
Wed, 4 Jan 2012 22:43:59 +0000 (22:43 +0000)
committerSpencer Oliver <spen@spen-soft.co.uk>
Mon, 9 Jan 2012 09:49:54 +0000 (09:49 +0000)
Use the flash size register to calculate flash info.

Change-Id: Ia230db8a08d440710c030a9e5001f20561c9f420
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/337
Tested-by: jenkins
Reviewed-by: Mathias Küster <kesmtp@freenet.de>
src/flash/nor/stm32f2x.c

index ec5527bcdf136ca844d1f1ff6011c29be97da65d..1fca3eba42251572eee9e3bbb5d399d2b64684c0 100644 (file)
@@ -575,7 +575,7 @@ static int stm32x_probe(struct flash_bank *bank)
        struct target *target = bank->target;
        struct stm32x_flash_bank *stm32x_info = bank->driver_priv;
        int i;
-       uint16_t num_pages;
+       uint16_t flash_size_in_kb;
        uint32_t device_id;
        uint32_t base_address = 0x08000000;
 
@@ -587,22 +587,38 @@ static int stm32x_probe(struct flash_bank *bank)
                return retval;
        LOG_INFO("device id = 0x%08" PRIx32 "", device_id);
 
-       if ((device_id & 0x7ff) != 0x411)
-       {
-               LOG_WARNING("Cannot identify target as a STM32 family, try the other STM32 drivers.");
+       /* get flash size from target. */
+       retval = target_read_u16(target, 0x1FFF7A10, &flash_size_in_kb);
+       if (retval != ERROR_OK) {
+               LOG_WARNING("failed reading flash size, default to max target family");
+               /* failed reading flash size, default to max target family */
+               flash_size_in_kb = 0xffff;
+       }
+
+       if ((device_id & 0x7ff) == 0x411) {
+               /* check for early silicon */
+               if (flash_size_in_kb == 0xffff) {
+                       /* number of sectors may be incorrrect on early silicon */
+                       LOG_WARNING("STM32 flash size failed, probe inaccurate - assuming 512k flash");
+                       flash_size_in_kb = 512;
+               }
+       } else {
+               LOG_WARNING("Cannot identify target as a STM32 family.");
                return ERROR_FAIL;
        }
 
-       /* sectors sizes vary, handle this in a different code path
-        * than the rest.
-        */
-       // Uhhh.... what to use here?
+       LOG_INFO("flash size = %dkbytes", flash_size_in_kb);
 
-       /* calculate numbers of pages*/
-       num_pages = 4 + 1 + 7;
+       /* did we assign flash size? */
+       assert(flash_size_in_kb != 0xffff);
 
-       if (bank->sectors)
-       {
+       /* calculate numbers of pages */
+       int num_pages = (flash_size_in_kb / 128) + 4;
+
+       /* check that calculation result makes sense */
+       assert(num_pages > 0);
+
+       if (bank->sectors) {
                free(bank->sectors);
                bank->sectors = NULL;
        }
@@ -610,20 +626,20 @@ static int stm32x_probe(struct flash_bank *bank)
        bank->base = base_address;
        bank->num_sectors = num_pages;
        bank->sectors = malloc(sizeof(struct flash_sector) * num_pages);
-
        bank->size = 0;
+
+       /* fixed memory */
        setup_sector(bank, 0, 4, 16 * 1024);
        setup_sector(bank, 4, 1, 64 * 1024);
-       setup_sector(bank, 4+1, 7, 128 * 1024);
 
-       for (i = 0; i < num_pages; i++)
-       {
+       /* dynamic memory */
+       setup_sector(bank, 4 + 1, num_pages - 5, 128 * 1024);
+
+       for (i = 0; i < num_pages; i++) {
                bank->sectors[i].is_erased = -1;
                bank->sectors[i].is_protected = 0;
        }
 
-       LOG_INFO("flash size = %dkBytes", bank->size / 1024);
-
        stm32x_info->probed = 1;
 
        return 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)