libopencm3 STM32F1xx FLASH Memory
More...
libopencm3 STM32F1xx FLASH Memory
- Version
- 1.0.0
- Author
- © 2010 Thomas Otto tommi.nosp@m.@via.nosp@m.dmin..nosp@m.org
-
© 2010 Mark Butler mbutl.nosp@m.er@p.nosp@m.hysic.nosp@m.s.ot.nosp@m.ago.a.nosp@m.c.nz
- Date
- 14 January 2014
For the STM32F1xx, accessing FLASH memory is described briefly in section 3.3.3 of the STM32F10x Reference Manual. For detailed programming information see: PM0075 programming manual: STM32F10xxx Flash programming August 2010, Doc ID 17863 Rev 1 https://github.com/libopencm3/libopencm3-archive/blob/master/st_micro/CD00283419.pdf
FLASH memory may be used for data storage as well as code, and may be programmatically modified. Note that for firmware upload the STM32F1xx provides a built-in bootloader in system memory that can be entered from a running program.
FLASH must first be unlocked before programming. In this module a write to FLASH is a blocking operation until the end-of-operation flag is asserted.
- Note
- : don't forget to lock it again when all operations are complete.
For the large memory XL series, with two banks of FLASH, the upper bank is accessed with a second set of registers. In principle both banks can be written simultaneously, or one read while the other is written. This module does not support the simultaneous write feature.
LGPL License Terms libopencm3 License
◆ flash_clear_eop_flag()
void flash_clear_eop_flag |
( |
void |
| ) |
|
◆ flash_clear_eop_flag_upper()
void flash_clear_eop_flag_upper |
( |
void |
| ) |
|
◆ flash_clear_pgerr_flag()
void flash_clear_pgerr_flag |
( |
void |
| ) |
|
◆ flash_clear_pgerr_flag_upper()
void flash_clear_pgerr_flag_upper |
( |
void |
| ) |
|
◆ flash_clear_status_flags()
void flash_clear_status_flags |
( |
void |
| ) |
|
◆ flash_clear_wrprterr_flag()
void flash_clear_wrprterr_flag |
( |
void |
| ) |
|
◆ flash_clear_wrprterr_flag_upper()
void flash_clear_wrprterr_flag_upper |
( |
void |
| ) |
|
◆ flash_erase_all_pages()
void flash_erase_all_pages |
( |
void |
| ) |
|
◆ flash_erase_option_bytes()
void flash_erase_option_bytes |
( |
void |
| ) |
|
◆ flash_erase_page()
void flash_erase_page |
( |
uint32_t |
page_address | ) |
|
◆ flash_get_status_flags()
uint32_t flash_get_status_flags |
( |
void |
| ) |
|
Read All Status Flags.
The programming error, end of operation, write protect error and busy flags are returned in the order of appearance in the status register.
Flags for the upper bank, where appropriate, are combined with those for the lower bank using bitwise OR, without distinction.
- Returns
- uint32_t. bit 0: busy, bit 2: programming error, bit 4: write protect error, bit 5: end of operation.
Definition at line 189 of file flash.c.
References desig_get_flash_size(), FLASH_SR, FLASH_SR2, FLASH_SR_BSY, FLASH_SR_EOP, FLASH_SR_PGERR, and FLASH_SR_WRPRTERR.
Referenced by flash_wait_for_last_operation().
◆ flash_halfcycle_disable()
void flash_halfcycle_disable |
( |
void |
| ) |
|
Disable the FLASH Half Cycle Mode.
Definition at line 86 of file flash.c.
References FLASH_ACR.
◆ flash_halfcycle_enable()
void flash_halfcycle_enable |
( |
void |
| ) |
|
Enable the FLASH Half Cycle Mode.
This mode is used for power saving during read access. It is disabled by default on reset.
Note carefully the clock restrictions under which the half cycle mode may be enabled or disabled. This mode may only be used while the clock is running at 8MHz. See the reference manual for details.
Definition at line 76 of file flash.c.
References FLASH_ACR, and FLASH_ACR_HLFCYA.
◆ flash_lock()
◆ flash_lock_upper()
void flash_lock_upper |
( |
void |
| ) |
|
Lock the Flash Program and Erase Controller, upper Bank.
Used to prevent spurious writes to FLASH.
Definition at line 117 of file flash.c.
References FLASH_CR2, and FLASH_CR_LOCK.
◆ flash_prefetch_disable()
void flash_prefetch_disable |
( |
void |
| ) |
|
Note carefully the clock restrictions under which the prefetch buffer may be set to disabled.
See the reference manual for details.
Definition at line 31 of file flash_common_all.c.
References FLASH_ACR.
◆ flash_prefetch_enable()
void flash_prefetch_enable |
( |
void |
| ) |
|
This buffer is used for instruction fetches and may or may not be enabled by default, depending on platform.
(F1: yes, most others: no)
Note carefully the clock restrictions under which the prefetch buffer may be enabled or disabled. Changes are normally made while the clock is running in the power-on low frequency mode before being set to a higher speed mode.
Note carefully that prefetch may also results in increased consumption and can only improve performance on "mostly linear" workloads where there is at least one flash wait state.
See the reference manual for your particular target for more details.
Definition at line 26 of file flash_common_all.c.
References FLASH_ACR, and FLASH_ACR_PRFTEN.
◆ flash_program_half_word()
void flash_program_half_word |
( |
uint32_t |
address, |
|
|
uint16_t |
data |
|
) |
| |
◆ flash_program_option_bytes()
void flash_program_option_bytes |
( |
uint32_t |
address, |
|
|
uint16_t |
data |
|
) |
| |
◆ flash_program_word()
void flash_program_word |
( |
uint32_t |
address, |
|
|
uint32_t |
data |
|
) |
| |
Program a 32 bit Word to FLASH.
This performs all operations necessary to program a 32 bit word to FLASH memory. The program error flag should be checked separately for the event that memory was not properly erased.
Status bit polling is used to detect end of operation.
- Parameters
-
[in] | address | Full address of flash word to be programmed. |
[in] | data | word to write |
Definition at line 82 of file flash_common_f01.c.
References flash_program_half_word().
◆ flash_set_ws()
void flash_set_ws |
( |
uint32_t |
ws | ) |
|
Set the Number of Wait States.
Used to match the system clock to the FLASH memory access time. See the programming manual for more information on clock speed ranges. The latency must be changed to the appropriate value before any increase in clock speed, or after any decrease in clock speed.
- Parameters
-
Definition at line 36 of file flash_common_all.c.
References FLASH_ACR, FLASH_ACR_LATENCY_MASK, and FLASH_ACR_LATENCY_SHIFT.
Referenced by rcc_clock_setup_in_hse_12mhz_out_72mhz(), rcc_clock_setup_in_hse_16mhz_out_72mhz(), rcc_clock_setup_in_hse_25mhz_out_72mhz(), rcc_clock_setup_in_hse_8mhz_out_24mhz(), rcc_clock_setup_in_hse_8mhz_out_72mhz(), rcc_clock_setup_in_hsi_out_24mhz(), rcc_clock_setup_in_hsi_out_48mhz(), rcc_clock_setup_in_hsi_out_64mhz(), and rcc_clock_setup_pll().
◆ flash_unlock()
void flash_unlock |
( |
void |
| ) |
|
◆ flash_unlock_option_bytes()
void flash_unlock_option_bytes |
( |
void |
| ) |
|
◆ flash_unlock_upper()
void flash_unlock_upper |
( |
void |
| ) |
|
◆ flash_wait_for_last_operation()
void flash_wait_for_last_operation |
( |
void |
| ) |
|