OVMS3-idf/components/wear_levelling
Ivan Grokhotkov 26800ed71e global: update note in the partition tables
The build system automatically determines offsets of partitions from
the partition table, so no manual changes are needed. Instead, add a
note that partition offsets may need to be updated when increasing
the bootloader size.
2019-07-27 10:28:16 +02:00
..
doc Added test for version update from V1 to V2. Problems for tests on host are fixed. Random function changed to esp_random() 2018-07-31 08:45:42 +03:00
include Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00
private_include Version update from V1 to V2 now done in correct way. 2018-10-26 09:21:30 +03:00
test components: use new component registration api 2019-06-21 19:53:29 +08:00
test_wl_host global: update note in the partition tables 2019-07-27 10:28:16 +02:00
.gitignore nvs_flash, wear_levelling: ignore host test files 2017-04-17 11:01:18 +08:00
CMakeLists.txt components: use new component registration api 2019-06-21 19:53:29 +08:00
component.mk add wear_levelling component and example 2017-04-17 11:01:17 +08:00
crc32.cpp separate rom from esp32 component to esp_rom 2019-03-21 18:51:45 +08:00
crc32.h Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00
Kconfig Correct Kconfigs according to the coding style 2019-01-29 13:37:01 +01:00
Partition.cpp Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00
README.rst Doc/review api ref storage 2019-06-17 14:23:52 +08:00
SPI_Flash.cpp Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00
wear_levelling.cpp Added test for version update from V1 to V2. Problems for tests on host are fixed. Random function changed to esp_random() 2018-07-31 08:45:42 +03:00
WL_Ext_Perf.cpp Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00
WL_Ext_Safe.cpp Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00
WL_Flash.cpp Version update from V1 to V2 now done in correct way. 2018-10-26 09:21:30 +03:00

Wear Levelling API
==================

Overview
--------
Most of flash memory and especially SPI flash that is used in ESP32 has a sector-based organization and also has a limited number of erase/modification cycles per memory sector. The wear levelling component helps to distribute wear and tear among sectors more evenly without requiring any attention from the user.

The wear levelling component provides API functions related to reading, writing, erasing, and memory mapping of data in external SPI flash through the partition component. The component also has higher-level API functions which work with the FAT filesystem defined in :doc:`FAT filesystem </api-reference/storage/fatfs>`.

The wear levelling component, together with the FAT FS component, uses FAT FS sectors of 4096 bytes, which is a standard size for flash memory. With this size, the component shows the best performance but needs additional memory in RAM.

To save internal memory, the component has two additional modes which both use sectors of 512 bytes:

- **Performance mode.** Erase sector operation data is stored in RAM, the sector is erased, and then data is copied back to flash memory. However, if a device is powered off for any reason, all 4096 bytes of data is lost.
- **Safety mode.** The data is first saved to flash memory, and after the sector is erased, the data is saved back. If a device is powered off, the data can be recovered as soon as the device boots up.

The default settings are as follows:
- Sector size is 512 bytes
- Performance mode

You can change the settings through the configuration menu.


The wear levelling component does not cache data in RAM. The write and erase functions modify flash directly, and flash contents are consistent when the function returns.


Wear Levelling access API functions
-----------------------------------

This is the set of API functions for working with data in flash:

- ``wl_mount`` - initializes the wear levelling module and mounts the specified partition
- ``wl_unmount`` - unmounts the partition and deinitializes the wear levelling module
- ``wl_erase_range`` - erases a range of addresses in flash
- ``wl_write`` - writes data to a partition
- ``wl_read`` - reads data from a partition
- ``wl_size`` - returns the size of available memory in bytes
- ``wl_sector_size`` - returns the size of one sector

As a rule, try to avoid using raw wear levelling functions and use filesystem-specific functions instead.


Memory Size
-----------

The memory size is calculated in the wear levelling module based on partition parameters. The module uses some sectors of flash for internal data.