flash: use correct device_id mask
[openocd/andreasf.git] / src / flash / nor / stm32lx.c
blob2cd16d6f9773980c91476982249069c63b8707a1
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 ***************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
30 #include "imp.h"
31 #include <helper/binarybuffer.h>
32 #include <target/algorithm.h>
33 #include <target/armv7m.h>
35 /* stm32lx flash register locations */
37 #define FLASH_BASE 0x40023C00
38 #define FLASH_ACR 0x40023C00
39 #define FLASH_PECR 0x40023C04
40 #define FLASH_PDKEYR 0x40023C08
41 #define FLASH_PEKEYR 0x40023C0C
42 #define FLASH_PRGKEYR 0x40023C10
43 #define FLASH_OPTKEYR 0x40023C14
44 #define FLASH_SR 0x40023C18
45 #define FLASH_OBR 0x40023C1C
46 #define FLASH_WRPR 0x40023C20
48 /* FLASH_ACR bites */
49 #define FLASH_ACR__LATENCY (1<<0)
50 #define FLASH_ACR__PRFTEN (1<<1)
51 #define FLASH_ACR__ACC64 (1<<2)
52 #define FLASH_ACR__SLEEP_PD (1<<3)
53 #define FLASH_ACR__RUN_PD (1<<4)
55 /* FLASH_PECR bits */
56 #define FLASH_PECR__PELOCK (1<<0)
57 #define FLASH_PECR__PRGLOCK (1<<1)
58 #define FLASH_PECR__OPTLOCK (1<<2)
59 #define FLASH_PECR__PROG (1<<3)
60 #define FLASH_PECR__DATA (1<<4)
61 #define FLASH_PECR__FTDW (1<<8)
62 #define FLASH_PECR__ERASE (1<<9)
63 #define FLASH_PECR__FPRG (1<<10)
64 #define FLASH_PECR__EOPIE (1<<16)
65 #define FLASH_PECR__ERRIE (1<<17)
66 #define FLASH_PECR__OBL_LAUNCH (1<<18)
68 /* FLASH_SR bits */
69 #define FLASH_SR__BSY (1<<0)
70 #define FLASH_SR__EOP (1<<1)
71 #define FLASH_SR__ENDHV (1<<2)
72 #define FLASH_SR__READY (1<<3)
73 #define FLASH_SR__WRPERR (1<<8)
74 #define FLASH_SR__PGAERR (1<<9)
75 #define FLASH_SR__SIZERR (1<<10)
76 #define FLASH_SR__OPTVERR (1<<11)
78 /* Unlock keys */
79 #define PEKEY1 0x89ABCDEF
80 #define PEKEY2 0x02030405
81 #define PRGKEY1 0x8C9DAEBF
82 #define PRGKEY2 0x13141516
83 #define OPTKEY1 0xFBEAD9C8
84 #define OPTKEY2 0x24252627
86 /* other registers */
87 #define DBGMCU_IDCODE 0xE0042000
88 #define F_SIZE 0x1FF8004C
90 /* Constants */
91 #define FLASH_PAGE_SIZE 256
92 #define FLASH_SECTOR_SIZE 4096
93 #define FLASH_PAGES_PER_SECTOR 16
94 #define FLASH_BANK0_ADDRESS 0x08000000
96 /* stm32lx option byte register location */
97 #define OB_RDP 0x1FF80000
98 #define OB_USER 0x1FF80004
99 #define OB_WRP0_1 0x1FF80008
100 #define OB_WRP2_3 0x1FF8000C
102 /* OB_RDP values */
103 #define OB_RDP__LEVEL0 0xFF5500AA
104 #define OB_RDP__LEVEL1 0xFFFF0000
106 /* stm32lx RCC register locations */
107 #define RCC_CR 0x40023800
108 #define RCC_ICSCR 0x40023804
109 #define RCC_CFGR 0x40023808
111 /* RCC_ICSCR bits */
112 #define RCC_ICSCR__MSIRANGE_MASK (7<<13)
114 static int stm32lx_unlock_program_memory(struct flash_bank *bank);
115 static int stm32lx_lock_program_memory(struct flash_bank *bank);
116 static int stm32lx_enable_write_half_page(struct flash_bank *bank);
117 static int stm32lx_erase_sector(struct flash_bank *bank, int sector);
118 static int stm32lx_wait_until_bsy_clear(struct flash_bank *bank);
120 struct stm32lx_flash_bank
122 struct working_area *write_algorithm;
123 int probed;
126 /* flash bank stm32lx <base> <size> 0 0 <target#>
128 FLASH_BANK_COMMAND_HANDLER(stm32lx_flash_bank_command)
130 struct stm32lx_flash_bank *stm32lx_info;
131 if (CMD_ARGC < 6)
133 return ERROR_COMMAND_SYNTAX_ERROR;
136 // Create the bank structure
137 stm32lx_info = malloc(sizeof(struct stm32lx_flash_bank));
139 // Check allocation
140 if (stm32lx_info == NULL)
142 LOG_ERROR("failed to allocate bank structure");
143 return ERROR_FAIL;
146 bank->driver_priv = stm32lx_info;
148 stm32lx_info->write_algorithm = NULL;
149 stm32lx_info->probed = 0;
151 return ERROR_OK;
154 static int stm32lx_protect_check(struct flash_bank *bank)
156 int retval;
157 struct target *target = bank->target;
159 uint32_t wrpr;
161 if (target->state != TARGET_HALTED)
163 LOG_ERROR("Target not halted");
164 return ERROR_TARGET_NOT_HALTED;
168 * Read the WRPR word, and check each bit (corresponding to each
169 * flash sector
171 retval = target_read_u32(target, FLASH_WRPR, &wrpr);
172 if (retval != ERROR_OK)
173 return retval;
175 for (int i = 0; i < 32; i++)
177 if (wrpr & (1 << i))
179 bank->sectors[i].is_protected = 1;
181 else
183 bank->sectors[i].is_protected = 0;
186 return ERROR_OK;
189 static int stm32lx_erase(struct flash_bank *bank, int first, int last)
191 int retval;
194 * It could be possible to do a mass erase if all sectors must be
195 * erased, but it is not implemented yet.
198 if (bank->target->state != TARGET_HALTED)
200 LOG_ERROR("Target not halted");
201 return ERROR_TARGET_NOT_HALTED;
205 * Loop over the selected sectors and erase them
207 for (int i = first; i <= last; i++)
209 retval = stm32lx_erase_sector(bank, i);
210 if (retval != ERROR_OK)
211 return retval;
212 bank->sectors[i].is_erased = 1;
214 return ERROR_OK;
217 static int stm32lx_protect(struct flash_bank *bank, int set, int first,
218 int last)
220 LOG_WARNING("protection of the STM32L flash is not implemented");
221 return ERROR_OK;
224 static int stm32lx_write_half_pages(struct flash_bank *bank, uint8_t *buffer,
225 uint32_t offset, uint32_t count)
227 struct stm32lx_flash_bank *stm32lx_info = bank->driver_priv;
228 struct target *target = bank->target;
229 uint32_t buffer_size = 4096 * 4;
230 struct working_area *source;
231 uint32_t address = bank->base + offset;
233 struct reg_param reg_params[5];
234 struct armv7m_algorithm armv7m_info;
236 int retval = ERROR_OK;
237 uint32_t reg32;
239 /* see contib/loaders/flash/stm32lx.s for src */
241 static const uint16_t stm32lx_flash_write_code_16[] =
243 // 00000000 <write_word-0x4>:
244 0x2300, // 0: 2300 movs r3, #0
245 0xe004, // 2: e004 b.n e <test_done>
247 // 00000004 <write_word>:
248 0xf851, 0xcb04, // 4: f851 cb04 ldr.w ip, [r1], #4
249 0xf840, 0xcb04, // 8: f840 cb04 str.w ip, [r0], #4
250 0x3301, // c: 3301 adds r3, #1
252 // 0000000e <test_done>:
253 0x4293, // e: 4293 cmp r3, r2
254 0xd3f8, // 10: d3f8 bcc.n 4 <write_word>
255 0xbe00, // 12: be00 bkpt 0x0000
259 // Flip endian
260 uint8_t stm32lx_flash_write_code[sizeof(stm32lx_flash_write_code_16)];
261 for (unsigned int i = 0; i < sizeof(stm32lx_flash_write_code_16) / 2; i++)
263 stm32lx_flash_write_code[i * 2 + 0] = stm32lx_flash_write_code_16[i]
264 & 0xff;
265 stm32lx_flash_write_code[i * 2 + 1] = (stm32lx_flash_write_code_16[i]
266 >> 8) & 0xff;
268 // Check if there is an even number of half pages (128bytes)
269 if (count % 128)
271 LOG_ERROR("there should be an even number "
272 "of half pages = 128 bytes (count = %" PRIi32 " bytes)", count);
273 return ERROR_FAIL;
276 // Allocate working area
277 reg32 = sizeof(stm32lx_flash_write_code);
278 // Add bytes to make 4byte aligned
279 reg32 += (4 - (reg32 % 4)) % 4;
280 retval = target_alloc_working_area(target, reg32,
281 &stm32lx_info->write_algorithm);
282 if (retval != ERROR_OK)
283 return retval;
285 // Write the flashing code
286 retval = target_write_buffer(target,
287 stm32lx_info->write_algorithm->address,
288 sizeof(stm32lx_flash_write_code),
289 (uint8_t*) stm32lx_flash_write_code);
290 if (retval != ERROR_OK)
292 target_free_working_area(target, stm32lx_info->write_algorithm);
293 return retval;
296 // Allocate half pages memory
297 while (target_alloc_working_area_try(target, buffer_size, &source)
298 != ERROR_OK)
300 if (buffer_size > 1024)
301 buffer_size -= 1024;
302 else
303 buffer_size /= 2;
305 if (buffer_size <= 256)
307 /* if we already allocated the writing code, but failed to get a
308 * buffer, free the algorithm */
309 if (stm32lx_info->write_algorithm)
310 target_free_working_area(target, stm32lx_info->write_algorithm);
312 LOG_WARNING("no large enough working area available, can't do block memory writes");
313 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
316 LOG_DEBUG("allocated working area for data (%" PRIx32 " bytes)", buffer_size);
318 armv7m_info.common_magic = ARMV7M_COMMON_MAGIC;
319 armv7m_info.core_mode = ARMV7M_MODE_ANY;
320 init_reg_param(&reg_params[0], "r0", 32, PARAM_OUT);
321 init_reg_param(&reg_params[1], "r1", 32, PARAM_OUT);
322 init_reg_param(&reg_params[2], "r2", 32, PARAM_OUT);
323 init_reg_param(&reg_params[3], "r3", 32, PARAM_IN_OUT);
324 init_reg_param(&reg_params[4], "r4", 32, PARAM_OUT);
326 // Enable half-page write
327 retval = stm32lx_enable_write_half_page(bank);
328 if (retval != ERROR_OK)
331 target_free_working_area(target, source);
332 target_free_working_area(target, stm32lx_info->write_algorithm);
334 destroy_reg_param(&reg_params[0]);
335 destroy_reg_param(&reg_params[1]);
336 destroy_reg_param(&reg_params[2]);
337 destroy_reg_param(&reg_params[3]);
339 return retval;
342 // Loop while there are bytes to write
343 while (count > 0)
345 uint32_t this_count;
346 this_count = (count > buffer_size) ? buffer_size : count;
348 // Write the next half pages
349 retval = target_write_buffer(target, source->address, this_count,
350 buffer);
351 if (retval != ERROR_OK)
352 break;
354 // 4: Store useful information in the registers
355 // the destination address of the copy (R0)
356 buf_set_u32(reg_params[0].value, 0, 32, address);
357 // The source address of the copy (R1)
358 buf_set_u32(reg_params[1].value, 0, 32, source->address);
359 // The length of the copy (R2)
360 buf_set_u32(reg_params[2].value, 0, 32, this_count / 4);
362 // 5: Execute the bunch of code
363 retval = target_run_algorithm(target, 0, NULL, sizeof(reg_params)
364 / sizeof(*reg_params), reg_params,
365 stm32lx_info->write_algorithm->address, 0, 20000, &armv7m_info);
366 if (retval != ERROR_OK)
367 break;
369 // 6: Wait while busy
370 retval = stm32lx_wait_until_bsy_clear(bank);
371 if (retval != ERROR_OK)
372 break;
374 buffer += this_count;
375 address += this_count;
376 count -= this_count;
379 if (retval == ERROR_OK)
380 retval = stm32lx_lock_program_memory(bank);
382 target_free_working_area(target, source);
383 target_free_working_area(target, stm32lx_info->write_algorithm);
385 destroy_reg_param(&reg_params[0]);
386 destroy_reg_param(&reg_params[1]);
387 destroy_reg_param(&reg_params[2]);
388 destroy_reg_param(&reg_params[3]);
390 return retval;
392 static int stm32lx_write(struct flash_bank *bank, uint8_t *buffer,
393 uint32_t offset, uint32_t count)
395 struct target *target = bank->target;
397 uint32_t halfpages_number;
398 uint32_t words_remaining;
399 uint32_t bytes_remaining;
400 uint32_t address = bank->base + offset;
401 uint32_t bytes_written = 0;
402 int retval;
404 if (bank->target->state != TARGET_HALTED)
406 LOG_ERROR("Target not halted");
407 return ERROR_TARGET_NOT_HALTED;
410 if (offset & 0x1)
412 LOG_ERROR("offset 0x%" PRIx32 " breaks required 2-byte alignment", offset);
413 return ERROR_FLASH_DST_BREAKS_ALIGNMENT;
416 // Check if there are some full half pages
417 if (((offset % 128) == 0) && (count >= 128))
419 halfpages_number = count / 128;
420 words_remaining = (count - 128 * halfpages_number) / 4;
421 bytes_remaining = (count & 0x3);
423 else
425 halfpages_number = 0;
426 words_remaining = (count / 4);
427 bytes_remaining = (count & 0x3);
430 if (halfpages_number)
432 retval = stm32lx_write_half_pages(bank, buffer, offset, 128
433 * halfpages_number);
434 if (retval != ERROR_OK)
435 return ERROR_FAIL;
438 bytes_written = 128 * halfpages_number;
440 retval = stm32lx_unlock_program_memory(bank);
441 if (retval != ERROR_OK)
442 return retval;
444 while (words_remaining > 0)
446 uint32_t value;
447 uint8_t* p = buffer + bytes_written;
449 // Prepare the word, Little endian conversion
450 value = p[0] + (p[1] << 8) + (p[2] << 16) + (p[3] << 24);
452 retval = target_write_u32(target, address, value);
453 if (retval != ERROR_OK)
454 return retval;
456 bytes_written += 4;
457 words_remaining--;
458 address += 4;
460 retval = stm32lx_wait_until_bsy_clear(bank);
461 if (retval != ERROR_OK)
462 return retval;
465 if (bytes_remaining)
467 uint8_t last_word[4] = {0xff, 0xff, 0xff, 0xff};
469 /* copy the last remaining bytes into the write buffer */
470 memcpy(last_word, buffer+bytes_written, bytes_remaining);
472 retval = target_write_buffer(target, address, 4, last_word);
473 if (retval != ERROR_OK)
474 return retval;
476 retval = stm32lx_wait_until_bsy_clear(bank);
477 if (retval != ERROR_OK)
478 return retval;
481 retval = stm32lx_lock_program_memory(bank);
482 if (retval != ERROR_OK)
483 return retval;
485 return ERROR_OK;
488 static int stm32lx_probe(struct flash_bank *bank)
490 struct target *target = bank->target;
491 struct stm32lx_flash_bank *stm32lx_info = bank->driver_priv;
492 int i;
493 uint16_t flash_size;
494 uint32_t device_id;
495 uint32_t reg32;
497 stm32lx_info->probed = 0;
499 /* read stm32 device id register */
500 int retval = target_read_u32(target, DBGMCU_IDCODE, &device_id);
501 if (retval != ERROR_OK)
502 return retval;
504 LOG_DEBUG("device id = 0x%08" PRIx32 "", device_id);
506 if ((device_id & 0xfff) != 0x416) {
507 LOG_WARNING("Cannot identify target as a STM32L family.");
508 return ERROR_FAIL;
511 // Read the RDP byte and check if it is 0xAA
512 uint8_t rdp;
513 retval = target_read_u32(target, FLASH_OBR, &reg32);
514 if (retval != ERROR_OK)
515 return retval;
516 rdp = reg32 & 0xFF;
517 if (rdp != 0xAA)
520 * Unlocking the option byte is done by unlocking the PECR, then
521 * by writing the 2 option byte keys to OPTKEYR
524 /* To unlock the PECR write the 2 PEKEY to the PEKEYR register */
525 retval = target_write_u32(target, FLASH_PEKEYR, PEKEY1);
526 if (retval != ERROR_OK)
527 return retval;
529 retval = target_write_u32(target, FLASH_PEKEYR, PEKEY2);
530 if (retval != ERROR_OK)
531 return retval;
533 /* Make sure it worked */
534 retval = target_read_u32(target, FLASH_PECR, &reg32);
535 if (retval != ERROR_OK)
536 return retval;
538 if (reg32 & FLASH_PECR__PELOCK)
539 return ERROR_FLASH_OPERATION_FAILED;
541 retval = target_write_u32(target, FLASH_OPTKEYR, OPTKEY1);
542 if (retval != ERROR_OK)
543 return retval;
544 retval = target_write_u32(target, FLASH_OPTKEYR, OPTKEY2);
545 if (retval != ERROR_OK)
546 return retval;
548 retval = target_read_u32(target, FLASH_PECR, &reg32);
549 if (retval != ERROR_OK)
550 return retval;
552 if (reg32 & FLASH_PECR__OPTLOCK)
554 LOG_ERROR("OPTLOCK is not cleared");
555 return ERROR_FLASH_OPERATION_FAILED;
558 // Then, write RDP to 0x00 to set level 1
559 reg32 = ((~0xAA) << 16) | (0xAA);
560 retval = target_write_u32(target, OB_RDP, reg32);
561 if (retval != ERROR_OK)
562 return retval;
564 // Set Automatic update of the option byte, by setting OBL_LAUNCH in FLASH_PECR
565 reg32 = FLASH_PECR__OBL_LAUNCH;
566 retval = target_write_u32(target, FLASH_PECR, reg32);
567 if (retval != ERROR_OK)
568 return retval;
571 /* get flash size from target. */
572 retval = target_read_u16(target, F_SIZE, &flash_size);
573 if (retval != ERROR_OK)
574 return retval;
576 /* check for valid flash size */
577 if (flash_size == 0xffff)
579 /* number of sectors incorrect on revA */
580 LOG_ERROR("STM32 flash size failed, probe inaccurate");
581 return ERROR_FAIL;
584 /* STM32L - we have 32 sectors, 16 pages per sector -> 512 pages
585 * 16 pages for a protection area */
587 /* calculate numbers of sectors (4kB per sector) */
588 int num_sectors = (flash_size * 1024) / FLASH_SECTOR_SIZE;
589 LOG_INFO("flash size = %dkbytes", flash_size);
591 if (bank->sectors)
593 free(bank->sectors);
594 bank->sectors = NULL;
597 bank->base = FLASH_BANK0_ADDRESS;
598 bank->size = flash_size * 1024;
599 bank->num_sectors = num_sectors;
600 bank->sectors = malloc(sizeof(struct flash_sector) * num_sectors);
601 if (bank->sectors == NULL)
603 LOG_ERROR("failed to allocate bank sectors");
604 return ERROR_FAIL;
607 for (i = 0; i < num_sectors; i++)
609 bank->sectors[i].offset = i * FLASH_SECTOR_SIZE;
610 bank->sectors[i].size = FLASH_SECTOR_SIZE;
611 bank->sectors[i].is_erased = -1;
612 bank->sectors[i].is_protected = 1;
615 stm32lx_info->probed = 1;
617 return ERROR_OK;
620 static int stm32lx_auto_probe(struct flash_bank *bank)
622 struct stm32lx_flash_bank *stm32lx_info = bank->driver_priv;
624 if (stm32lx_info->probed)
626 return ERROR_OK;
629 return stm32lx_probe(bank);
632 static int stm32lx_erase_check(struct flash_bank *bank)
634 struct target *target = bank->target;
635 const int buffer_size = 4096;
636 int i;
637 uint32_t nBytes;
638 int retval = ERROR_OK;
640 if (bank->target->state != TARGET_HALTED)
642 LOG_ERROR("Target not halted");
643 return ERROR_TARGET_NOT_HALTED;
646 uint8_t *buffer = malloc(buffer_size);
647 if (buffer == NULL)
649 LOG_ERROR("failed to allocate read buffer");
650 return ERROR_FAIL;
653 for (i = 0; i < bank->num_sectors; i++)
655 uint32_t j;
656 bank->sectors[i].is_erased = 1;
658 // Loop chunk by chunk over the sector
659 for (j = 0; j < bank->sectors[i].size; j += buffer_size)
661 uint32_t chunk;
662 chunk = buffer_size;
663 if (chunk > (j - bank->sectors[i].size))
665 chunk = (j - bank->sectors[i].size);
668 retval = target_read_memory(target, bank->base
669 + bank->sectors[i].offset + j, 4, chunk / 4, buffer);
670 if (retval != ERROR_OK)
671 break;
673 for (nBytes = 0; nBytes < chunk; nBytes++)
675 if (buffer[nBytes] != 0x00)
677 bank->sectors[i].is_erased = 0;
678 break;
682 if (retval != ERROR_OK)
684 break;
687 free(buffer);
689 return retval;
691 static int stm32lx_get_info(struct flash_bank *bank, char *buf, int buf_size)
693 // This method must return a string displaying information about the bank
695 struct target *target = bank->target;
696 uint32_t device_id;
697 int printed;
699 /* read stm32 device id register */
700 int retval = target_read_u32(target, DBGMCU_IDCODE, &device_id);
701 if (retval != ERROR_OK)
702 return retval;
704 if ((device_id & 0xfff) == 0x416) {
705 printed = snprintf(buf, buf_size, "stm32lx - Rev: ");
706 buf += printed;
707 buf_size -= printed;
709 switch (device_id >> 16)
711 case 0x1000:
712 snprintf(buf, buf_size, "A");
713 break;
715 case 0x1008:
716 snprintf(buf, buf_size, "Y");
717 break;
718 default:
719 snprintf(buf, buf_size, "unknown");
720 break;
723 else
725 snprintf(buf, buf_size, "Cannot identify target as a stm32lx");
726 return ERROR_FAIL;
729 return ERROR_OK;
732 static const struct command_registration stm32lx_exec_command_handlers[] =
734 COMMAND_REGISTRATION_DONE
737 static const struct command_registration stm32lx_command_handlers[] =
740 .name = "stm32lx",
741 .mode = COMMAND_ANY,
742 .help = "stm32lx flash command group",
743 .chain = stm32lx_exec_command_handlers,
745 COMMAND_REGISTRATION_DONE
748 struct flash_driver stm32lx_flash =
750 .name = "stm32lx",
751 .commands = stm32lx_command_handlers,
752 .flash_bank_command = stm32lx_flash_bank_command,
753 .erase = stm32lx_erase,
754 .protect = stm32lx_protect,
755 .write = stm32lx_write,
756 .read = default_flash_read,
757 .probe = stm32lx_probe,
758 .auto_probe = stm32lx_auto_probe,
759 .erase_check = stm32lx_erase_check,
760 .protect_check = stm32lx_protect_check,
761 .info = stm32lx_get_info,
764 // Static methods implementation
766 static int stm32lx_unlock_program_memory(struct flash_bank *bank)
768 struct target *target = bank->target;
769 int retval;
770 uint32_t reg32;
773 * Unlocking the program memory is done by unlocking the PECR,
774 * then by writing the 2 PRGKEY to the PRGKEYR register
777 /* To unlock the PECR write the 2 PEKEY to the PEKEYR register */
778 retval = target_write_u32(target, FLASH_PEKEYR, PEKEY1);
779 if (retval != ERROR_OK)
780 return retval;
782 retval = target_write_u32(target, FLASH_PEKEYR, PEKEY2);
783 if (retval != ERROR_OK)
784 return retval;
786 /* Make sure it worked */
787 retval = target_read_u32(target, FLASH_PECR, &reg32);
788 if (retval != ERROR_OK)
789 return retval;
791 if (reg32 & FLASH_PECR__PELOCK)
793 LOG_ERROR("PELOCK is not cleared :(");
794 return ERROR_FLASH_OPERATION_FAILED;
797 retval = target_write_u32(target, FLASH_PRGKEYR, PRGKEY1);
798 if (retval != ERROR_OK)
799 return retval;
800 retval = target_write_u32(target, FLASH_PRGKEYR, PRGKEY2);
801 if (retval != ERROR_OK)
802 return retval;
804 /* Make sure it worked */
805 retval = target_read_u32(target, FLASH_PECR, &reg32);
806 if (retval != ERROR_OK)
807 return retval;
809 if (reg32 & FLASH_PECR__PRGLOCK)
811 LOG_ERROR("PRGLOCK is not cleared :(");
812 return ERROR_FLASH_OPERATION_FAILED;
814 return ERROR_OK;
817 static int stm32lx_enable_write_half_page(struct flash_bank *bank)
819 struct target *target = bank->target;
820 int retval;
821 uint32_t reg32;
824 * Unlock the program memory, then set the FPRG bit in the PECR register.
826 retval = stm32lx_unlock_program_memory(bank);
827 if (retval != ERROR_OK)
828 return retval;
830 retval = target_read_u32(target, FLASH_PECR, &reg32);
831 if (retval != ERROR_OK)
832 return retval;
834 reg32 |= FLASH_PECR__FPRG;
835 retval = target_write_u32(target, FLASH_PECR, reg32);
836 if (retval != ERROR_OK)
837 return retval;
839 retval = target_read_u32(target, FLASH_PECR, &reg32);
840 if (retval != ERROR_OK)
841 return retval;
843 reg32 |= FLASH_PECR__PROG;
844 retval = target_write_u32(target, FLASH_PECR, reg32);
846 return retval;
849 static int stm32lx_lock_program_memory(struct flash_bank *bank)
851 struct target *target = bank->target;
852 int retval;
853 uint32_t reg32;
855 /* To lock the program memory, simply set the lock bit and lock PECR */
857 retval = target_read_u32(target, FLASH_PECR, &reg32);
858 if (retval != ERROR_OK)
859 return retval;
861 reg32 |= FLASH_PECR__PRGLOCK;
862 retval = target_write_u32(target, FLASH_PECR, reg32);
863 if (retval != ERROR_OK)
864 return retval;
866 retval = target_read_u32(target, FLASH_PECR, &reg32);
867 if (retval != ERROR_OK)
868 return retval;
870 reg32 |= FLASH_PECR__PELOCK;
871 retval = target_write_u32(target, FLASH_PECR, reg32);
872 if (retval != ERROR_OK)
873 return retval;
875 return ERROR_OK;
878 static int stm32lx_erase_sector(struct flash_bank *bank, int sector)
880 struct target *target = bank->target;
881 int retval;
882 uint32_t reg32;
885 * To erase a sector (i.e. FLASH_PAGES_PER_SECTOR pages),
886 * first unlock the memory, loop over the pages of this sector
887 * and write 0x0 to its first word.
890 retval = stm32lx_unlock_program_memory(bank);
891 if (retval != ERROR_OK)
892 return retval;
894 for (int page = 0; page < FLASH_PAGES_PER_SECTOR; page++)
896 reg32 = FLASH_PECR__PROG | FLASH_PECR__ERASE;
897 retval = target_write_u32(target, FLASH_PECR, reg32);
898 if (retval != ERROR_OK)
899 return retval;
901 retval = stm32lx_wait_until_bsy_clear(bank);
902 if (retval != ERROR_OK)
903 return retval;
905 uint32_t addr = bank->base + bank->sectors[sector].offset + (page
906 * FLASH_PAGE_SIZE);
907 retval = target_write_u32(target, addr, 0x0);
908 if (retval != ERROR_OK)
909 return retval;
911 retval = stm32lx_wait_until_bsy_clear(bank);
912 if (retval != ERROR_OK)
913 return retval;
916 retval = stm32lx_lock_program_memory(bank);
917 if (retval != ERROR_OK)
918 return retval;
920 return ERROR_OK;
923 static int stm32lx_wait_until_bsy_clear(struct flash_bank *bank)
925 struct target *target = bank->target;
926 uint32_t status;
927 int retval = ERROR_OK;
928 int timeout = 100;
930 /* wait for busy to clear */
931 for (;;)
933 retval = target_read_u32(target, FLASH_SR, &status);
934 if (retval != ERROR_OK)
935 return retval;
937 if ((status & FLASH_SR__BSY) == 0)
939 break;
941 if (timeout-- <= 0)
943 LOG_ERROR("timed out waiting for flash");
944 return ERROR_FAIL;
946 alive_sleep(1);
949 if (status & FLASH_SR__WRPERR)
951 LOG_ERROR("access denied / write protected");
952 retval = ERROR_FAIL;
955 if (status & FLASH_SR__PGAERR)
957 LOG_ERROR("invalid program address");
958 retval = ERROR_FAIL;
961 return retval;