d90b5f6262d3dafc6ea1bb4c42b90e430397a585
[openocd.git] / src / flash / nor / stm32lx.c
blobd90b5f6262d3dafc6ea1bb4c42b90e430397a585
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2008 by Spencer Oliver *
6 * spen@spen-soft.co.uk *
7 * *
8 * Copyright (C) 2011 by Clement Burin des Roziers *
9 * clement.burin-des-roziers@hikob.com *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
31 #include "imp.h"
32 #include <helper/binarybuffer.h>
33 #include <target/algorithm.h>
34 #include <target/armv7m.h>
35 #include <target/cortex_m.h>
37 /* stm32lx flash register locations */
39 #define FLASH_BASE 0x40023C00
40 #define FLASH_ACR 0x40023C00
41 #define FLASH_PECR 0x40023C04
42 #define FLASH_PDKEYR 0x40023C08
43 #define FLASH_PEKEYR 0x40023C0C
44 #define FLASH_PRGKEYR 0x40023C10
45 #define FLASH_OPTKEYR 0x40023C14
46 #define FLASH_SR 0x40023C18
47 #define FLASH_OBR 0x40023C1C
48 #define FLASH_WRPR 0x40023C20
50 /* FLASH_ACR bites */
51 #define FLASH_ACR__LATENCY (1<<0)
52 #define FLASH_ACR__PRFTEN (1<<1)
53 #define FLASH_ACR__ACC64 (1<<2)
54 #define FLASH_ACR__SLEEP_PD (1<<3)
55 #define FLASH_ACR__RUN_PD (1<<4)
57 /* FLASH_PECR bits */
58 #define FLASH_PECR__PELOCK (1<<0)
59 #define FLASH_PECR__PRGLOCK (1<<1)
60 #define FLASH_PECR__OPTLOCK (1<<2)
61 #define FLASH_PECR__PROG (1<<3)
62 #define FLASH_PECR__DATA (1<<4)
63 #define FLASH_PECR__FTDW (1<<8)
64 #define FLASH_PECR__ERASE (1<<9)
65 #define FLASH_PECR__FPRG (1<<10)
66 #define FLASH_PECR__EOPIE (1<<16)
67 #define FLASH_PECR__ERRIE (1<<17)
68 #define FLASH_PECR__OBL_LAUNCH (1<<18)
70 /* FLASH_SR bits */
71 #define FLASH_SR__BSY (1<<0)
72 #define FLASH_SR__EOP (1<<1)
73 #define FLASH_SR__ENDHV (1<<2)
74 #define FLASH_SR__READY (1<<3)
75 #define FLASH_SR__WRPERR (1<<8)
76 #define FLASH_SR__PGAERR (1<<9)
77 #define FLASH_SR__SIZERR (1<<10)
78 #define FLASH_SR__OPTVERR (1<<11)
80 /* Unlock keys */
81 #define PEKEY1 0x89ABCDEF
82 #define PEKEY2 0x02030405
83 #define PRGKEY1 0x8C9DAEBF
84 #define PRGKEY2 0x13141516
85 #define OPTKEY1 0xFBEAD9C8
86 #define OPTKEY2 0x24252627
88 /* other registers */
89 #define DBGMCU_IDCODE 0xE0042000
90 #define F_SIZE 0x1FF8004C
92 /* Constants */
93 #define FLASH_PAGE_SIZE 256
94 #define FLASH_SECTOR_SIZE 4096
95 #define FLASH_PAGES_PER_SECTOR 16
96 #define FLASH_BANK0_ADDRESS 0x08000000
98 /* stm32lx option byte register location */
99 #define OB_RDP 0x1FF80000
100 #define OB_USER 0x1FF80004
101 #define OB_WRP0_1 0x1FF80008
102 #define OB_WRP2_3 0x1FF8000C
104 /* OB_RDP values */
105 #define OB_RDP__LEVEL0 0xFF5500AA
106 #define OB_RDP__LEVEL1 0xFFFF0000
108 /* stm32lx RCC register locations */
109 #define RCC_CR 0x40023800
110 #define RCC_ICSCR 0x40023804
111 #define RCC_CFGR 0x40023808
113 /* RCC_ICSCR bits */
114 #define RCC_ICSCR__MSIRANGE_MASK (7<<13)
116 static int stm32lx_unlock_program_memory(struct flash_bank *bank);
117 static int stm32lx_lock_program_memory(struct flash_bank *bank);
118 static int stm32lx_enable_write_half_page(struct flash_bank *bank);
119 static int stm32lx_erase_sector(struct flash_bank *bank, int sector);
120 static int stm32lx_wait_until_bsy_clear(struct flash_bank *bank);
122 struct stm32lx_flash_bank {
123 int probed;
124 bool has_dual_banks;
127 /* flash bank stm32lx <base> <size> 0 0 <target#>
129 FLASH_BANK_COMMAND_HANDLER(stm32lx_flash_bank_command)
131 struct stm32lx_flash_bank *stm32lx_info;
132 if (CMD_ARGC < 6)
133 return ERROR_COMMAND_SYNTAX_ERROR;
135 /* Create the bank structure */
136 stm32lx_info = malloc(sizeof(struct stm32lx_flash_bank));
138 /* Check allocation */
139 if (stm32lx_info == NULL) {
140 LOG_ERROR("failed to allocate bank structure");
141 return ERROR_FAIL;
144 bank->driver_priv = stm32lx_info;
146 stm32lx_info->probed = 0;
147 stm32lx_info->has_dual_banks = false;
149 return ERROR_OK;
152 static int stm32lx_protect_check(struct flash_bank *bank)
154 int retval;
155 struct target *target = bank->target;
157 uint32_t wrpr;
159 if (target->state != TARGET_HALTED) {
160 LOG_ERROR("Target not halted");
161 return ERROR_TARGET_NOT_HALTED;
165 * Read the WRPR word, and check each bit (corresponding to each
166 * flash sector
168 retval = target_read_u32(target, FLASH_WRPR, &wrpr);
169 if (retval != ERROR_OK)
170 return retval;
172 for (int i = 0; i < 32; i++) {
173 if (wrpr & (1 << i))
174 bank->sectors[i].is_protected = 1;
175 else
176 bank->sectors[i].is_protected = 0;
178 return ERROR_OK;
181 static int stm32lx_erase(struct flash_bank *bank, int first, int last)
183 int retval;
186 * It could be possible to do a mass erase if all sectors must be
187 * erased, but it is not implemented yet.
190 if (bank->target->state != TARGET_HALTED) {
191 LOG_ERROR("Target not halted");
192 return ERROR_TARGET_NOT_HALTED;
196 * Loop over the selected sectors and erase them
198 for (int i = first; i <= last; i++) {
199 retval = stm32lx_erase_sector(bank, i);
200 if (retval != ERROR_OK)
201 return retval;
202 bank->sectors[i].is_erased = 1;
204 return ERROR_OK;
207 static int stm32lx_protect(struct flash_bank *bank, int set, int first,
208 int last)
210 LOG_WARNING("protection of the STM32L flash is not implemented");
211 return ERROR_OK;
214 static int stm32lx_write_half_pages(struct flash_bank *bank, uint8_t *buffer,
215 uint32_t offset, uint32_t count)
217 struct target *target = bank->target;
218 uint32_t buffer_size = 16384;
219 struct working_area *write_algorithm;
220 struct working_area *source;
221 uint32_t address = bank->base + offset;
223 struct reg_param reg_params[3];
224 struct armv7m_algorithm armv7m_info;
226 int retval = ERROR_OK;
228 /* see contib/loaders/flash/stm32lx.S for src */
230 static const uint8_t stm32lx_flash_write_code[] = {
231 /* write_word: */
232 0x00, 0x23, /* movs r3, #0 */
233 0x04, 0xe0, /* b test_done */
235 /* write_word: */
236 0x51, 0xf8, 0x04, 0xcb, /* ldr ip, [r1], #4 */
237 0x40, 0xf8, 0x04, 0xcb, /* str ip, [r0], #4 */
238 0x01, 0x33, /* adds r3, #1 */
240 /* test_done: */
241 0x93, 0x42, /* cmp r3, r2 */
242 0xf8, 0xd3, /* bcc write_word */
243 0x00, 0xbe, /* bkpt 0 */
246 /* Check if there is an even number of half pages (128bytes) */
247 if (count % 128) {
248 LOG_ERROR("there should be an even number "
249 "of half pages = 128 bytes (count = %" PRIi32 " bytes)", count);
250 return ERROR_FAIL;
253 /* flash write code */
254 if (target_alloc_working_area(target, sizeof(stm32lx_flash_write_code),
255 &write_algorithm) != ERROR_OK) {
256 LOG_DEBUG("no working area for block memory writes");
257 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
260 /* Write the flashing code */
261 retval = target_write_buffer(target,
262 write_algorithm->address,
263 sizeof(stm32lx_flash_write_code),
264 (uint8_t *)stm32lx_flash_write_code);
265 if (retval != ERROR_OK) {
266 target_free_working_area(target, write_algorithm);
267 return retval;
270 /* Allocate half pages memory */
271 while (target_alloc_working_area_try(target, buffer_size, &source) != ERROR_OK) {
272 if (buffer_size > 1024)
273 buffer_size -= 1024;
274 else
275 buffer_size /= 2;
277 if (buffer_size <= 256) {
278 /* we already allocated the writing code, but failed to get a
279 * buffer, free the algorithm */
280 target_free_working_area(target, write_algorithm);
282 LOG_WARNING("no large enough working area available, can't do block memory writes");
283 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
287 armv7m_info.common_magic = ARMV7M_COMMON_MAGIC;
288 armv7m_info.core_mode = ARM_MODE_THREAD;
289 init_reg_param(&reg_params[0], "r0", 32, PARAM_OUT);
290 init_reg_param(&reg_params[1], "r1", 32, PARAM_OUT);
291 init_reg_param(&reg_params[2], "r2", 32, PARAM_OUT);
293 /* Enable half-page write */
294 retval = stm32lx_enable_write_half_page(bank);
295 if (retval != ERROR_OK) {
296 target_free_working_area(target, source);
297 target_free_working_area(target, write_algorithm);
299 destroy_reg_param(&reg_params[0]);
300 destroy_reg_param(&reg_params[1]);
301 destroy_reg_param(&reg_params[2]);
302 return retval;
305 struct armv7m_common *armv7m = target_to_armv7m(target);
306 if (armv7m == NULL) {
308 /* something is very wrong if armv7m is NULL */
309 LOG_ERROR("unable to get armv7m target");
310 return retval;
313 /* save any DEMCR flags and configure target to catch any Hard Faults */
314 uint32_t demcr_save = armv7m->demcr;
315 armv7m->demcr = VC_HARDERR;
317 /* Loop while there are bytes to write */
318 while (count > 0) {
319 uint32_t this_count;
320 this_count = (count > buffer_size) ? buffer_size : count;
322 /* Write the next half pages */
323 retval = target_write_buffer(target, source->address, this_count, buffer);
324 if (retval != ERROR_OK)
325 break;
327 /* 4: Store useful information in the registers */
328 /* the destination address of the copy (R0) */
329 buf_set_u32(reg_params[0].value, 0, 32, address);
330 /* The source address of the copy (R1) */
331 buf_set_u32(reg_params[1].value, 0, 32, source->address);
332 /* The length of the copy (R2) */
333 buf_set_u32(reg_params[2].value, 0, 32, this_count / 4);
335 /* 5: Execute the bunch of code */
336 retval = target_run_algorithm(target, 0, NULL, sizeof(reg_params)
337 / sizeof(*reg_params), reg_params,
338 write_algorithm->address, 0, 10000, &armv7m_info);
339 if (retval != ERROR_OK)
340 break;
342 /* check for Hard Fault */
343 if (armv7m->exception_number == 3)
344 break;
346 /* 6: Wait while busy */
347 retval = stm32lx_wait_until_bsy_clear(bank);
348 if (retval != ERROR_OK)
349 break;
351 buffer += this_count;
352 address += this_count;
353 count -= this_count;
356 /* restore previous flags */
357 armv7m->demcr = demcr_save;
359 if (armv7m->exception_number == 3) {
361 /* the stm32l15x devices seem to have an issue when blank.
362 * if a ram loader is executed on a blank device it will
363 * Hard Fault, this issue does not happen for a already programmed device.
364 * A related issue is described in the stm32l151xx errata (Doc ID 17721 Rev 6 - 2.1.3).
365 * The workaround of handling the Hard Fault exception does work, but makes the
366 * loader more complicated, as a compromise we manually write the pages, programming time
367 * is reduced by 50% using this slower method.
370 LOG_WARNING("couldn't use loader, falling back to page memory writes");
372 while (count > 0) {
373 uint32_t this_count;
374 this_count = (count > 128) ? 128 : count;
376 /* Write the next half pages */
377 retval = target_write_buffer(target, address, this_count, buffer);
378 if (retval != ERROR_OK)
379 break;
381 /* Wait while busy */
382 retval = stm32lx_wait_until_bsy_clear(bank);
383 if (retval != ERROR_OK)
384 break;
386 buffer += this_count;
387 address += this_count;
388 count -= this_count;
392 if (retval == ERROR_OK)
393 retval = stm32lx_lock_program_memory(bank);
395 target_free_working_area(target, source);
396 target_free_working_area(target, write_algorithm);
398 destroy_reg_param(&reg_params[0]);
399 destroy_reg_param(&reg_params[1]);
400 destroy_reg_param(&reg_params[2]);
402 return retval;
405 static int stm32lx_write(struct flash_bank *bank, uint8_t *buffer,
406 uint32_t offset, uint32_t count)
408 struct target *target = bank->target;
410 uint32_t halfpages_number;
411 uint32_t bytes_remaining = 0;
412 uint32_t address = bank->base + offset;
413 uint32_t bytes_written = 0;
414 int retval, retval2;
416 if (bank->target->state != TARGET_HALTED) {
417 LOG_ERROR("Target not halted");
418 return ERROR_TARGET_NOT_HALTED;
421 if (offset & 0x3) {
422 LOG_ERROR("offset 0x%" PRIx32 " breaks required 4-byte alignment", offset);
423 return ERROR_FLASH_DST_BREAKS_ALIGNMENT;
426 retval = stm32lx_unlock_program_memory(bank);
427 if (retval != ERROR_OK)
428 return retval;
430 /* first we need to write any unaligned head bytes upto
431 * the next 128 byte page */
433 if (offset % 128)
434 bytes_remaining = MIN(count, 128 - (offset % 128));
436 while (bytes_remaining > 0) {
437 uint8_t value[4] = {0xff, 0xff, 0xff, 0xff};
439 /* copy remaining bytes into the write buffer */
440 uint32_t bytes_to_write = MIN(4, bytes_remaining);
441 memcpy(value, buffer + bytes_written, bytes_to_write);
443 retval = target_write_buffer(target, address, 4, value);
444 if (retval != ERROR_OK)
445 goto reset_pg_and_lock;
447 bytes_written += bytes_to_write;
448 bytes_remaining -= bytes_to_write;
449 address += 4;
451 retval = stm32lx_wait_until_bsy_clear(bank);
452 if (retval != ERROR_OK)
453 goto reset_pg_and_lock;
456 offset += bytes_written;
457 count -= bytes_written;
459 /* this should always pass this check here */
460 assert((offset % 128) == 0);
462 /* calculate half pages */
463 halfpages_number = count / 128;
465 if (halfpages_number) {
466 retval = stm32lx_write_half_pages(bank, buffer + bytes_written, offset, 128 * halfpages_number);
467 if (retval == ERROR_TARGET_RESOURCE_NOT_AVAILABLE) {
468 /* attempt slow memory writes */
469 LOG_WARNING("couldn't use block writes, falling back to single memory accesses");
470 halfpages_number = 0;
471 } else {
472 if (retval != ERROR_OK)
473 return ERROR_FAIL;
477 /* write any remaining bytes */
478 uint32_t page_bytes_written = 128 * halfpages_number;
479 bytes_written += page_bytes_written;
480 address += page_bytes_written;
481 bytes_remaining = count - page_bytes_written;
483 retval = stm32lx_unlock_program_memory(bank);
484 if (retval != ERROR_OK)
485 return retval;
487 while (bytes_remaining > 0) {
488 uint8_t value[4] = {0xff, 0xff, 0xff, 0xff};
490 /* copy remaining bytes into the write buffer */
491 uint32_t bytes_to_write = MIN(4, bytes_remaining);
492 memcpy(value, buffer + bytes_written, bytes_to_write);
494 retval = target_write_buffer(target, address, 4, value);
495 if (retval != ERROR_OK)
496 goto reset_pg_and_lock;
498 bytes_written += bytes_to_write;
499 bytes_remaining -= bytes_to_write;
500 address += 4;
502 retval = stm32lx_wait_until_bsy_clear(bank);
503 if (retval != ERROR_OK)
504 goto reset_pg_and_lock;
507 reset_pg_and_lock:
508 retval2 = stm32lx_lock_program_memory(bank);
509 if (retval == ERROR_OK)
510 retval = retval2;
512 return retval;
515 static int stm32lx_probe(struct flash_bank *bank)
517 struct target *target = bank->target;
518 struct stm32lx_flash_bank *stm32lx_info = bank->driver_priv;
519 int i;
520 uint16_t flash_size_in_kb;
521 uint16_t max_flash_size_in_kb;
522 uint32_t device_id;
523 uint32_t base_address = FLASH_BANK0_ADDRESS;
524 uint32_t second_bank_base;
525 uint32_t first_bank_size_in_kb;
527 stm32lx_info->probed = 0;
529 /* read stm32 device id register */
530 int retval = target_read_u32(target, DBGMCU_IDCODE, &device_id);
531 if (retval != ERROR_OK)
532 return retval;
534 LOG_DEBUG("device id = 0x%08" PRIx32 "", device_id);
536 /* set max flash size depending on family */
537 switch (device_id & 0xfff) {
538 case 0x416:
539 max_flash_size_in_kb = 128;
540 break;
541 case 0x436:
542 /* According to ST, the devices with id 0x436 have dual bank flash and comes with
543 * a total flash size of 384k or 256kb. However, the first bank is always 192kb,
544 * and second one holds the rest. The reason is that the 256kb version is actually
545 * the same physical flash but only the first 256kb are verified.
547 max_flash_size_in_kb = 384;
548 first_bank_size_in_kb = 192;
549 stm32lx_info->has_dual_banks = true;
550 break;
551 default:
552 LOG_WARNING("Cannot identify target as a STM32L family.");
553 return ERROR_FAIL;
556 /* Get the flash size from target. */
557 retval = target_read_u16(target, F_SIZE, &flash_size_in_kb);
559 /* Failed reading flash size or flash size invalid (early silicon),
560 * default to max target family */
561 if (retval != ERROR_OK || flash_size_in_kb == 0xffff || flash_size_in_kb == 0) {
562 LOG_WARNING("STM32L flash size failed, probe inaccurate - assuming %dk flash",
563 max_flash_size_in_kb);
564 flash_size_in_kb = max_flash_size_in_kb;
565 } else if (flash_size_in_kb > max_flash_size_in_kb) {
566 LOG_WARNING("STM32L probed flash size assumed incorrect since FLASH_SIZE=%dk > %dk, - assuming %dk flash",
567 flash_size_in_kb, max_flash_size_in_kb, max_flash_size_in_kb);
568 flash_size_in_kb = max_flash_size_in_kb;
571 if (stm32lx_info->has_dual_banks) {
572 /* Use the configured base address to determine if this is the first or second flash bank.
573 * Verify that the base address is reasonably correct and determine the flash bank size
575 second_bank_base = base_address + first_bank_size_in_kb * 1024;
576 if (bank->base == second_bank_base) {
577 /* This is the second bank */
578 base_address = second_bank_base;
579 flash_size_in_kb = flash_size_in_kb - first_bank_size_in_kb;
580 } else if (bank->base == 0 || bank->base == base_address) {
581 /* This is the first bank */
582 flash_size_in_kb = first_bank_size_in_kb;
583 } else {
584 LOG_WARNING("STM32L flash bank base address config is incorrect. 0x%x but should rather be 0x%x or 0x%x",
585 bank->base, base_address, second_bank_base);
586 return ERROR_FAIL;
588 LOG_INFO("STM32L flash has dual banks. Bank (%d) size is %dkb, base address is 0x%x",
589 bank->bank_number, flash_size_in_kb, base_address);
590 } else {
591 LOG_INFO("STM32L flash size is %dkb, base address is 0x%x", flash_size_in_kb, base_address);
594 /* if the user sets the size manually then ignore the probed value
595 * this allows us to work around devices that have a invalid flash size register value */
596 if (bank->size) {
597 flash_size_in_kb = bank->size / 1024;
598 LOG_INFO("ignoring flash probed value, using configured bank size: %dkbytes", flash_size_in_kb);
601 /* STM32L - we have 32 sectors, 16 pages per sector -> 512 pages
602 * 16 pages for a protection area */
604 /* calculate numbers of sectors (4kB per sector) */
605 int num_sectors = (flash_size_in_kb * 1024) / FLASH_SECTOR_SIZE;
607 if (bank->sectors) {
608 free(bank->sectors);
609 bank->sectors = NULL;
612 bank->size = flash_size_in_kb * 1024;
613 bank->base = base_address;
614 bank->num_sectors = num_sectors;
615 bank->sectors = malloc(sizeof(struct flash_sector) * num_sectors);
616 if (bank->sectors == NULL) {
617 LOG_ERROR("failed to allocate bank sectors");
618 return ERROR_FAIL;
621 for (i = 0; i < num_sectors; i++) {
622 bank->sectors[i].offset = i * FLASH_SECTOR_SIZE;
623 bank->sectors[i].size = FLASH_SECTOR_SIZE;
624 bank->sectors[i].is_erased = -1;
625 bank->sectors[i].is_protected = 1;
628 stm32lx_info->probed = 1;
630 return ERROR_OK;
633 static int stm32lx_auto_probe(struct flash_bank *bank)
635 struct stm32lx_flash_bank *stm32lx_info = bank->driver_priv;
637 if (stm32lx_info->probed)
638 return ERROR_OK;
640 return stm32lx_probe(bank);
643 static int stm32lx_erase_check(struct flash_bank *bank)
645 struct target *target = bank->target;
646 const int buffer_size = 4096;
647 int i;
648 uint32_t nBytes;
649 int retval = ERROR_OK;
651 if (bank->target->state != TARGET_HALTED) {
652 LOG_ERROR("Target not halted");
653 return ERROR_TARGET_NOT_HALTED;
656 uint8_t *buffer = malloc(buffer_size);
657 if (buffer == NULL) {
658 LOG_ERROR("failed to allocate read buffer");
659 return ERROR_FAIL;
662 for (i = 0; i < bank->num_sectors; i++) {
663 uint32_t j;
664 bank->sectors[i].is_erased = 1;
666 /* Loop chunk by chunk over the sector */
667 for (j = 0; j < bank->sectors[i].size; j += buffer_size) {
668 uint32_t chunk;
669 chunk = buffer_size;
670 if (chunk > (j - bank->sectors[i].size))
671 chunk = (j - bank->sectors[i].size);
673 retval = target_read_memory(target, bank->base
674 + bank->sectors[i].offset + j, 4, chunk / 4, buffer);
675 if (retval != ERROR_OK)
676 break;
678 for (nBytes = 0; nBytes < chunk; nBytes++) {
679 if (buffer[nBytes] != 0x00) {
680 bank->sectors[i].is_erased = 0;
681 break;
685 if (retval != ERROR_OK)
686 break;
688 free(buffer);
690 return retval;
693 static int stm32lx_get_info(struct flash_bank *bank, char *buf, int buf_size)
695 /* This method must return a string displaying information about the bank */
697 struct target *target = bank->target;
698 uint32_t device_id;
699 int printed;
701 /* read stm32 device id register */
702 int retval = target_read_u32(target, DBGMCU_IDCODE, &device_id);
703 if (retval != ERROR_OK)
704 return retval;
706 if ((device_id & 0xfff) == 0x416) {
707 printed = snprintf(buf, buf_size, "stm32lx - Rev: ");
708 buf += printed;
709 buf_size -= printed;
711 switch (device_id >> 16) {
712 case 0x1000:
713 snprintf(buf, buf_size, "A");
714 break;
716 case 0x1008:
717 snprintf(buf, buf_size, "Y");
718 break;
720 case 0x1018:
721 snprintf(buf, buf_size, "X");
722 break;
724 case 0x1038:
725 snprintf(buf, buf_size, "W");
726 break;
728 case 0x1078:
729 snprintf(buf, buf_size, "V");
730 break;
732 default:
733 snprintf(buf, buf_size, "unknown");
734 break;
736 } else if ((device_id & 0xfff) == 0x436) {
737 printed = snprintf(buf, buf_size, "stm32lx (HD) - Rev: ");
738 buf += printed;
739 buf_size -= printed;
741 switch (device_id >> 16) {
742 case 0x1000:
743 snprintf(buf, buf_size, "A");
744 break;
746 case 0x1008:
747 snprintf(buf, buf_size, "Z");
748 break;
750 case 0x1018:
751 snprintf(buf, buf_size, "Y");
752 break;
754 default:
755 snprintf(buf, buf_size, "unknown");
756 break;
758 } else {
759 snprintf(buf, buf_size, "Cannot identify target as a stm32lx");
760 return ERROR_FAIL;
763 return ERROR_OK;
766 static const struct command_registration stm32lx_exec_command_handlers[] = {
767 COMMAND_REGISTRATION_DONE
770 static const struct command_registration stm32lx_command_handlers[] = {
772 .name = "stm32lx",
773 .mode = COMMAND_ANY,
774 .help = "stm32lx flash command group",
775 .usage = "",
776 .chain = stm32lx_exec_command_handlers,
778 COMMAND_REGISTRATION_DONE
781 struct flash_driver stm32lx_flash = {
782 .name = "stm32lx",
783 .commands = stm32lx_command_handlers,
784 .flash_bank_command = stm32lx_flash_bank_command,
785 .erase = stm32lx_erase,
786 .protect = stm32lx_protect,
787 .write = stm32lx_write,
788 .read = default_flash_read,
789 .probe = stm32lx_probe,
790 .auto_probe = stm32lx_auto_probe,
791 .erase_check = stm32lx_erase_check,
792 .protect_check = stm32lx_protect_check,
793 .info = stm32lx_get_info,
796 /* Static methods implementation */
797 static int stm32lx_unlock_program_memory(struct flash_bank *bank)
799 struct target *target = bank->target;
800 int retval;
801 uint32_t reg32;
804 * Unlocking the program memory is done by unlocking the PECR,
805 * then by writing the 2 PRGKEY to the PRGKEYR register
808 /* check flash is not already unlocked */
809 retval = target_read_u32(target, FLASH_PECR, &reg32);
810 if (retval != ERROR_OK)
811 return retval;
813 if ((reg32 & FLASH_PECR__PRGLOCK) == 0)
814 return ERROR_OK;
816 /* To unlock the PECR write the 2 PEKEY to the PEKEYR register */
817 retval = target_write_u32(target, FLASH_PEKEYR, PEKEY1);
818 if (retval != ERROR_OK)
819 return retval;
821 retval = target_write_u32(target, FLASH_PEKEYR, PEKEY2);
822 if (retval != ERROR_OK)
823 return retval;
825 /* Make sure it worked */
826 retval = target_read_u32(target, FLASH_PECR, &reg32);
827 if (retval != ERROR_OK)
828 return retval;
830 if (reg32 & FLASH_PECR__PELOCK) {
831 LOG_ERROR("PELOCK is not cleared :(");
832 return ERROR_FLASH_OPERATION_FAILED;
835 retval = target_write_u32(target, FLASH_PRGKEYR, PRGKEY1);
836 if (retval != ERROR_OK)
837 return retval;
838 retval = target_write_u32(target, FLASH_PRGKEYR, PRGKEY2);
839 if (retval != ERROR_OK)
840 return retval;
842 /* Make sure it worked */
843 retval = target_read_u32(target, FLASH_PECR, &reg32);
844 if (retval != ERROR_OK)
845 return retval;
847 if (reg32 & FLASH_PECR__PRGLOCK) {
848 LOG_ERROR("PRGLOCK is not cleared :(");
849 return ERROR_FLASH_OPERATION_FAILED;
852 return ERROR_OK;
855 static int stm32lx_enable_write_half_page(struct flash_bank *bank)
857 struct target *target = bank->target;
858 int retval;
859 uint32_t reg32;
862 * Unlock the program memory, then set the FPRG bit in the PECR register.
864 retval = stm32lx_unlock_program_memory(bank);
865 if (retval != ERROR_OK)
866 return retval;
868 retval = target_read_u32(target, FLASH_PECR, &reg32);
869 if (retval != ERROR_OK)
870 return retval;
872 reg32 |= FLASH_PECR__FPRG;
873 retval = target_write_u32(target, FLASH_PECR, reg32);
874 if (retval != ERROR_OK)
875 return retval;
877 retval = target_read_u32(target, FLASH_PECR, &reg32);
878 if (retval != ERROR_OK)
879 return retval;
881 reg32 |= FLASH_PECR__PROG;
882 retval = target_write_u32(target, FLASH_PECR, reg32);
884 return retval;
887 static int stm32lx_lock_program_memory(struct flash_bank *bank)
889 struct target *target = bank->target;
890 int retval;
891 uint32_t reg32;
893 /* To lock the program memory, simply set the lock bit and lock PECR */
895 retval = target_read_u32(target, FLASH_PECR, &reg32);
896 if (retval != ERROR_OK)
897 return retval;
899 reg32 |= FLASH_PECR__PRGLOCK;
900 retval = target_write_u32(target, FLASH_PECR, reg32);
901 if (retval != ERROR_OK)
902 return retval;
904 retval = target_read_u32(target, FLASH_PECR, &reg32);
905 if (retval != ERROR_OK)
906 return retval;
908 reg32 |= FLASH_PECR__PELOCK;
909 retval = target_write_u32(target, FLASH_PECR, reg32);
910 if (retval != ERROR_OK)
911 return retval;
913 return ERROR_OK;
916 static int stm32lx_erase_sector(struct flash_bank *bank, int sector)
918 struct target *target = bank->target;
919 int retval;
920 uint32_t reg32;
923 * To erase a sector (i.e. FLASH_PAGES_PER_SECTOR pages),
924 * first unlock the memory, loop over the pages of this sector
925 * and write 0x0 to its first word.
928 retval = stm32lx_unlock_program_memory(bank);
929 if (retval != ERROR_OK)
930 return retval;
932 for (int page = 0; page < FLASH_PAGES_PER_SECTOR; page++) {
933 reg32 = FLASH_PECR__PROG | FLASH_PECR__ERASE;
934 retval = target_write_u32(target, FLASH_PECR, reg32);
935 if (retval != ERROR_OK)
936 return retval;
938 retval = stm32lx_wait_until_bsy_clear(bank);
939 if (retval != ERROR_OK)
940 return retval;
942 uint32_t addr = bank->base + bank->sectors[sector].offset + (page
943 * FLASH_PAGE_SIZE);
944 retval = target_write_u32(target, addr, 0x0);
945 if (retval != ERROR_OK)
946 return retval;
948 retval = stm32lx_wait_until_bsy_clear(bank);
949 if (retval != ERROR_OK)
950 return retval;
953 retval = stm32lx_lock_program_memory(bank);
954 if (retval != ERROR_OK)
955 return retval;
957 return ERROR_OK;
960 static int stm32lx_wait_until_bsy_clear(struct flash_bank *bank)
962 struct target *target = bank->target;
963 uint32_t status;
964 int retval = ERROR_OK;
965 int timeout = 100;
967 /* wait for busy to clear */
968 for (;;) {
969 retval = target_read_u32(target, FLASH_SR, &status);
970 if (retval != ERROR_OK)
971 return retval;
973 if ((status & FLASH_SR__BSY) == 0)
974 break;
975 if (timeout-- <= 0) {
976 LOG_ERROR("timed out waiting for flash");
977 return ERROR_FAIL;
979 alive_sleep(1);
982 if (status & FLASH_SR__WRPERR) {
983 LOG_ERROR("access denied / write protected");
984 retval = ERROR_FAIL;
987 if (status & FLASH_SR__PGAERR) {
988 LOG_ERROR("invalid program address");
989 retval = ERROR_FAIL;
992 return retval;