AN201 - Writing To Flash From Firmware
AN201 - Writing To Flash From Firmware
AN201 - Writing To Flash From Firmware
W R IT I N G TO F LASH FR OM F IRMWARE
1. Introduction
The flash memory on all Silicon Labs MCU devices is readable and writable from application code. This capability
allows user software to store values to the flash such as calibration constants or system parameters, and to
implement a boot loading feature in which user firmware can be updated in-system from a remote site.
The flash that is not used by application code can be treated like an EEPROM, thus negating the need to connect
an external EEPROM to the device.
This document starts with the basics of accessing flash from application code on any device, including device
specific details. Then, it discusses advanced routines that can be developed using the basic routines. Finally, it
describes precautions to take when writing to flash.
Example code for the basic and advanced flash access routines for all devices is included at the end of this
application note. The code accompanying this application note provides examples for most C8051Fxxx devices.
The code can also be ported to other devices in the Silicon Labs microcontroller range.
2. Key Points
Itis strongly recommended that the VDD monitor be enabled during flash write and erase operations to
prevent data corruption resulting from power irregularities or power-down conditions.
Disable interrupts before setting PSWE to 1 to prevent interrupt service routines, which may access
variables in xdata space, from generating MOVX writes which could corrupt flash memory.
Be cautious when using the Large and Compact memory models, which target xdata and pdata spaces for
user variables, both of which generate MOVX write opcodes.
In the C8051F3xx, C8051F4xx, C8051F5xx, C8051F9xx, and Si10xx series devices, a Lock and Key
sequence must be executed before each flash write or erase operation.
In the C8051F3xx, C8051F4xx, C8051F5xx, C8051F9xx, and Si10xx series devices, attempts to read,
write, or erase code memory locations located in reserved space will generate a device reset.
Attempts to read, write, or erase code memory locations in reserved space will be ignored by the hardware
on F0xx, F1xx, and F2xx devices.
The CPU is stalled during flash write and erase operations, although peripherals (UART, ADC, timers, etc.)
remain active.
Interrupts which are posted during a flash write or erase operation will be held pending until the completion
of the flash operation, after which time they will be serviced in priority order.
The flash page containing the lock byte or bytes cannot be erased from application code.
PROGRAM
MEMORY
0x1FFF
Reserved
0x1E00 Lock Byte Decoding
Lock Byte 0x1DFF
0x1DFE Bit Description
0x1C00 7 if any of these are
6 '0', Flash is Write/
Erase locked
5 across the C2
Flash memory
organized in 512-byte 4 interface
pages 3
if any of these are
2 '0', Flash is Read
0x0200 1 locked across the
C2 interface
0x0000
0
Figure 1. Flash Memory Organization and Security for the C8051F30x Series
Some devices also have a separate scratchpad area of flash. This scratchpad area is ideal for storing constants
and system parameters because of its smaller size.
2 Rev. 0.7
AN201
3.2. Device Specific Notes
Various MCUs have features that require consideration when accessing flash. These considerations are described
below.
3.2.1. C8051F12x-13x and C8051F58x-59x Code Banking
The C8051F12x-13x and C8051F58x-59x devices support up to 128 kB of flash which is divided into 4 banks.
Addresses in the range 0x00000 to 0x07FFF are mapped to first bank of flash. Addresses in the range of 0x08000
to 0x0FFFF are mapped to one of the other three banks based on the settings of the PSBANK register. Whenever
accessing flash from the address range 0x08000 to 0x07FFF, precaution must be taken to select the correct bank
using the PSBANK register.
3.2.2. C8051F3xx, C8051F4xx, C8051F5xx, and C8051F9xx, Si10xx Flash Unlock Bytes
All C8051F3xx, C8051F4xx, C8051F5xx, and C8051F9xx devices' writes and erases to flash are protected with a
lock and key function. The flash Lock and Key Register (FLKEY) must be written with the correct key codes, in
sequence, before flash operations may be performed. The key codes are: 0xA5, 0xF1. The timing does not matter,
but the codes must be written in order. If the key codes are written out of order, or the wrong codes are written,
flash writes and erases will be disabled until the next system reset. Flash writes and erases will also be disabled if
a flash write or erase is attempted before the key codes have been written properly. The flash lock resets after each
write or erase; the key codes must be written again before a following flash operation can be performed.
3.2.3. Flash Timing
This applies to the following:
C8051F0xx C8051F50x-F51x C8051F92x-F93x
C8051F2xx C8051F52x-F53x C8051F96x
C8051F34x C8051F54x C8051F98x-F99x
C8051F35x C8051F55x-F56x- Si100x
F57x
C8051F36x C8051F58x-F59x Si101x
C8051F41x
Some of the device families require a flash timing register, FLSCL, to be set to correctly access flash. The register
value is based upon the SYSCLK speed. This register only needs to be set once. See the relevant data sheet for
device specific information regarding the FLSCL register.
3.2.4. C8051F4xx and C8051F5xx VDD Monitor Level
The C8051F41x and C8051F5xx devices have two settings for the VDD monitor threshold—low and high. When
writing or erasing flash, the VDD monitor threshold should be set to the high setting. See the Reset Sources chapter
in the device's data sheet for detailed information on enabling the high threshold.
3.3. Flash Read, Write, and Erase Operations
There are three basic operations that can be performed on the flash: read, write, and erase. The basic read and
write operations read or write one byte from flash. The erase operation applies to a full page of flash.
Flash read operations are accomplished by using the standard 8051 MOVC instruction (in the C language, MOVC
instructions are generated by using pointers of memory type 'code'). Flash write and erase operations on Silicon
Labs MCU devices are accomplished by using the MOVX instruction. The default target for MOVX write operations
is external memory (XRAM); however, devices can be configured such that MOVX write operations target flash
memory instead. MOVX instructions are generated in C by using pointers of memory type xdata or pdata.
Flash erase operations occur on page boundaries. The erase operation sets all the bits in the flash page to logic 1.
Flash write operations, which set bits to logic 0, occur on single byte boundaries. To successfully complete a write
to flash, the target bytes must be erased to 0xFF because the write instruction can only clear bits in a byte.
MOVX write operations on all Silicon Labs MCU devices can target flash by setting bits in the PSCTL register.
When the PSWE bit (PSCTL.0) is set to a logic 1, MOVX write opcodes target flash memory instead of External
Memory (XRAM). When both PSWE and PSEE (PSCTL.0 and PSCTL.1) are set to logic 1, MOVX write opcodes
erase the flash page containing the target address. The target address can be any address in the target page.
Rev. 0.7 3
AN201
4. Basic Flash Operations
The basic procedure to do the three basic flash operations is the same on all devices. Some devices will require
setting additional registers to enable flash operations. The pseudocode for the different operations is detailed
below for all devices. Also included below the pseudocode are the exceptions for the various device families. The
code that implements these routines for each device family is provided at the end of this application note in the files
named Fxxx_Primitives.h and Fxxx_Primitives.c.
4.1. Reading A Byte
1. Disable interrupts. This is optional for most devices, but recommended for the 'F12x and 'F13x devices.
2. Read the byte.
3. Restore interrupts if originally enabled.
Exceptions:
1. Set the SFLE bit before reading if the target address is in the scratchpad area.
1. If the device supports code banking, check the address and set the correct bank in the PSBANK register.
4.2. Writing A Byte
1. Disable interrupts. This is optional for most devices, but recommended for the 'F12x and 'F13x devices.
2. Set PSWE to 1 by writing PSCTL = 0x01 (PSEE must be 0).
3. Confirm VDD monitor is enabled.
4. Write the data to an erased byte.
5. Set PSWE and PSEE to 0 if no further erases are necessary.
6. Restore interrupts if originally enabled.
Exceptions:
1. Set the SFLE bit before writing if the target address is in the scratchpad are
2. If the device is a 'F3xx, 'F4xx, 'F5xx, ‘F9xx, or Si10xx device, write FLKEY = 0xA5 then FLKEY = 0xF1
before writing the byte.
3. If the device supports code banking, check the address and set the correct bank in the PSBANK register.
4. For all ‘F0xx, ‘F1xx, and 'F2xx devices, enable flash writes in the FLSCL Register (FLSCL = 0x01) before
writing the byte. Disable the bit after the byte has been written to flash.
4.3. Erasing a Page
1. Disable interrupts. This is optional for most devices, but recommended for the 'F12x and 'F13x devices.
2. Set PSWE and PSEE to 1s by writing PSCTL = 0x03.
3. Confirm VDD monitor is enabled.
4. Write a data byte to any location within the 512-byte page to be erased.
5. Set PSWE and PSEE to 0 if no further erases are necessary.
6. Restore interrupts if originally enabled.
Exceptions:
1. Set the SFLE bit before writing if the target address is in the scratchpad area.
2. If the device is a ‘F3xx, 'F4xx, 'F5xx, ‘F9xx, or Si100x device, device, write FLKEY = 0xA5 then FLKEY =
0xF1 before writing the byte.
3. If the device supports code banking, check the address and set the correct bank in the PSBANK register.
4. For all ‘F0xx, ‘F1xx, and 'F2xx devices, enable flash writes in the FLSCL Register (FLSCL = 0x01) before
writing the byte. Disable the bit after the byte has been written to flash.
4 Rev. 0.7
AN201
4.4. Example Code Implementation Notes
The example code that comes with this application note is written for the largest flash device in the device family.
The file name Fxxx_FlashPrimitives.h contains two #defines (FLASH_LAST and FLASH_TEMP) that must be
changed to reflect the target's actual flash size.
Also, the example code explicitly enables the VDD monitor as a reset source through the RSTSRC register. The
code that writes to the RSTSRC register uses a direct assignment: RSTSRC = 0x02;
This code will only enable the VDD monitor as a reset source, and will disable any other reset sources. If your
project requires other reset sources, change the example code to enable all of the required reset sources using a
single assignment to the RSTSRC register. This code is in the devices's Fxxx_FlashPrimitives.c file.
Rev. 0.7 5
AN201
5. Advanced Flash Operations
The basic routines described in Section 4 can be incorporated into more advanced routines that provide greater
flexibility. The following functions are commonly used flash routines that expand upon the basic routines. The code
that implements these routines for each device family is provided at the end of this application note in the files
named Fxxx_Utils.h and Fxxx_Utils.c.
Flash_Read—This routine reads multiple bytes from flash and returns a character string.
char * FLASH_Read (char *dest, FLADDR src, unsigned numbytes);
Flash_Write—This routine writes multiple bytes to flash. This function assumes that the target bytes have been
cleared to 0xFF. If the bytes are not cleared to 0xFF, incorrect values might be stored in flash.
void FLASH_Write (FLADDR dest, char *src, unsigned numbytes);
Flash_Clear—This routines clears a string of bytes to 0xFF. The implementation of this function first copies the
data to temporary space, erases the page or pages, then copies the non-cleared bytes back to the original page or
pages. This routine requires a spare page of flash to run, and it will clear up to one page size worth of data.
The FLASH_Clear routine can be used to clear bytes before they are written.
void FLASH_Clear (FLADDR addr, unsigned numbytes);
Flash_Update—This first clears the locations that are going to be written, and then writes the bytes. This routine
requires a spare page of flash to run, and it will update up to one page size worth of data.
The FLASH_Update routine combines FLASH_Clear and FLASH_Write into one routine.
FLASH_Update (FLADDR dest, char *src, unsigned numbytes);
Flash_Copy—This routine copies bytes from one location in flash to another location in flash. It assumes that the
bytes are cleared to 0xFF. FLASH_Clear can be used to clear the bytes.
FLASH_Copy (FLADDR dest, FLADDR src, unsigned numbytes);
Flash_Fill—This routine fills bytes of flash with certain values. It assumes that bytes have been previously cleared
to 0xFF.
void FLASH_Fill (FLADDR addr, ULONG length, UCHAR fill);
6 Rev. 0.7
AN201
6. Flash Write and Erase Guidelines
Any system which contains routines which write or erase flash memory from software involves some risk that the
write or erase routines will execute unintentionally if the CPU is operating outside its specified operating range of
VDD, system clock frequency, or temperature. This accidental execution of flash modifying code can result in alter-
ation of flash memory contents causing a system failure that is only recoverable by re-flashing the code in the
device.
The following guidelines are recommended for any system which contains routines which write or erase flash from
code.
Rev. 0.7 7
AN201
Family How to enable the VDD monitor How to enable as a reset source
8 Rev. 0.7
AN201
6.2. PSWE Maintenance
1. Reduce the number of places in code where the PSWE bit (b0 in PSCTL) is set to a 1. There should be
exactly one routine in code that sets PSWE to a 1 to write flash bytes and one routine in code that sets
PSWE and PSEE both to a 1 to erase flash pages.
2. Minimize the number of variable accesses while PSWE is set to a 1. Handle pointer address updates and
loop variable maintenance outside the "PSWE = 1; ... PSWE = 0;" area.
3. Disable interrupts prior to setting PSWE to a 1 and leave them disabled until after PSWE has been reset to
0. Any interrupts posted during the flash write or erase operation will be serviced in priority order after the
flash operation has been completed and interrupts have been re-enabled by software.
4. Ensure that the flash write and erase pointer variables are not located in XRAM. See your compiler
documentation for instructions regarding how to explicitly locate variables in different memory areas.
5. Add address bounds checking to the routines that write or erase flash memory to ensure that a routine
called with an illegal address does not result in modification of the flash.
6.3. System Clock
1. If operating from an external crystal, be advised that crystal performance is susceptible to electrical
interference and is sensitive to layout and to changes in temperature. If the system is operating in an
electrically noisy environment, use the internal oscillator or use an external CMOS clock.
2. If operating from the external oscillator, switch to the internal oscillator during flash write or erase
operations. The external oscillator can continue to run, and the CPU can switch back to the external
oscillator after the flash operation has completed.
Rev. 0.7 9
AN201
DOCUMENT CHANGE LIST
Revision 0.1 to Revision 0.2
Updated list of relevant devices.
Add all new content to "6. Flash Write and Erase
Guidelines" on page 7.
Added example code for 'F340 devices.
Added example code for 'F326/7 devices.
Fixed example code for 'F320 devices.
10 Rev. 0.7
Simplicity Studio
One-click access to MCU and
wireless tools, documentation,
software, source code libraries &
more. Available for Windows,
Mac and Linux!
Disclaimer
Silicon Labs intends to provide customers with the latest, accurate, and in-depth documentation of all peripherals and modules available for system and software implementers using or
intending to use the Silicon Labs products. Characterization data, available modules and peripherals, memory sizes and memory addresses refer to each specific device, and "Typical"
parameters provided can and do vary in different applications. Application examples described herein are for illustrative purposes only. Silicon Labs reserves the right to make changes
without further notice and limitation to product information, specifications, and descriptions herein, and does not give warranties as to the accuracy or completeness of the included
information. Silicon Labs shall have no liability for the consequences of use of the information supplied herein. This document does not imply or express copyright licenses granted
hereunder to design or fabricate any integrated circuits. The products are not designed or authorized to be used within any Life Support System without the specific written consent of
Silicon Labs. A "Life Support System" is any product or system intended to support or sustain life and/or health, which, if it fails, can be reasonably expected to result in significant personal
injury or death. Silicon Labs products are not designed or authorized for military applications. Silicon Labs products shall under no circumstances be used in weapons of mass
destruction including (but not limited to) nuclear, biological or chemical weapons, or missiles capable of delivering such weapons.
Trademark Information
Silicon Laboratories Inc.® , Silicon Laboratories®, Silicon Labs®, SiLabs® and the Silicon Labs logo®, Bluegiga®, Bluegiga Logo®, Clockbuilder®, CMEMS®, DSPLL®, EFM®, EFM32®,
EFR, Ember®, Energy Micro, Energy Micro logo and combinations thereof, "the world’s most energy friendly microcontrollers", Ember®, EZLink®, EZRadio®, EZRadioPRO®,
Gecko®, ISOmodem®, Precision32®, ProSLIC®, Simplicity Studio®, SiPHY®, Telegesis, the Telegesis Logo®, USBXpress® and others are trademarks or registered trademarks of Silicon
Labs. ARM, CORTEX, Cortex-M3 and THUMB are trademarks or registered trademarks of ARM Holdings. Keil is a registered trademark of ARM Limited. All other products or brand
names mentioned herein are trademarks of their respective holders.
http://www.silabs.com