Skip to content

Commit

Permalink
fs: introduce ZMS a new Memory storage system
Browse files Browse the repository at this point in the history
ZMS is the abreviation of Zephyr Memory Storage.
It is a storage developed to target especially the non erasable devices.

The new memory storage system inherit from the NVS storage multiple
features and introduce new ones :
* Inherited features :
 - light key-value based storage
 - cache for entries
 - Wear Leveling of flash memory
 - Resilience to power failures
* New features :
 - cycle counter for non erasable devices (instead of erase emulation)
 - Keys up to 32-bit
 - Built-in support of CRC32 for data
 - Small size data (<= 4 bytes) integrated within entries

Signed-off-by: Riadh Ghaddab <[email protected]>
  • Loading branch information
rghaddab committed Sep 9, 2024
1 parent 5b15751 commit 5c95d0a
Show file tree
Hide file tree
Showing 7 changed files with 1,896 additions and 0 deletions.
199 changes: 199 additions & 0 deletions include/zephyr/fs/zms.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
/* ZMS: Zephyr Memory Storage
*
* Copyright (c) 2024 BayLibre SAS
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_FS_ZMS_H_
#define ZEPHYR_INCLUDE_FS_ZMS_H_

#include <sys/types.h>
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/toolchain.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
* @brief Zephyr Memory Storage (ZMS)
* @defgroup zms Zephyr Memory Storage (ZMS)
* @ingroup file_system_storage
* @{
* @}
*/

/**
* @brief Zephyr Memory Storage Data Structures
* @defgroup zms_data_structures Zephyr Memory Storage Data Structures
* @ingroup zms
* @{
*/

/**
* @brief Zephyr Memory Storage File system structure
*/
struct zms_fs {
/** File system offset in flash **/
off_t offset;
/** Allocation table entry write address.
* Addresses are stored as uint64_t:
* - high 4 bytes correspond to the sector
* - low 4 bytes are the offset in the sector
*/
uint64_t ate_wra;
/** Data write address */
uint64_t data_wra;
/** File system is split into sectors, each sector must be multiple of flash pages */
uint32_t sector_size;
/** Number of sectors in the file system */
uint32_t sector_count;
/** Current cycle counter of the sector */
uint8_t sector_cycle;
/** Flag indicating if the file system is initialized */
bool ready;
/** Mutex */
struct k_mutex zms_lock;
/** Flash device runtime structure */
const struct device *flash_device;
/** Flash memory parameters structure */
const struct flash_parameters *flash_parameters;
#if CONFIG_ZMS_LOOKUP_CACHE
uint64_t lookup_cache[CONFIG_ZMS_LOOKUP_CACHE_SIZE];
#endif
};

/**
* @}
*/

/**
* @brief Zephyr Memory Storage APIs
* @defgroup zms_high_level_api Zephyr Memory Storage APIs
* @ingroup zms
* @{
*/

/**
* @brief Mount a ZMS file system onto the device specified in @p fs.
*
* @param fs Pointer to file system
* @retval 0 Success
* @retval -ERRNO errno code if error
*/
int zms_mount(struct zms_fs *fs);

/**
* @brief Clear the ZMS file system from device.
*
* @param fs Pointer to file system
* @retval 0 Success
* @retval -ERRNO errno code if error
*/
int zms_clear(struct zms_fs *fs);

/**
* @brief Write an entry to the file system.
*
* @note When @p len parameter is equal to @p 0 then entry is effectively removed (it is
* equivalent to calling of zms_delete). Any calls to zms_read for entries with data of length
* @p 0 will return error.@n It is not possible to distinguish between deleted entry and entry
* with data of length 0.
*
* @param fs Pointer to file system
* @param id Id of the entry to be written
* @param data Pointer to the data to be written
* @param len Number of bytes to be written
*
* @return Number of bytes written. On success, it will be equal to the number of bytes requested
* to be written. When a rewrite of the same data already stored is attempted, nothing is written
* to flash, thus 0 is returned. On error, returns negative value of errno.h defined error codes.
*/
ssize_t zms_write(struct zms_fs *fs, uint32_t id, const void *data, size_t len);

/**
* @brief Delete an entry from the file system
*
* @param fs Pointer to file system
* @param id Id of the entry to be deleted
* @retval 0 Success
* @retval -ERRNO errno code if error
*/
int zms_delete(struct zms_fs *fs, uint32_t id);

/**
* @brief Read an entry from the file system.
*
* @param fs Pointer to file system
* @param id Id of the entry to be read
* @param data Pointer to data buffer
* @param len Number of bytes to be read
*
* @return Number of bytes read. On success, it will be equal to the number of bytes requested
* to be read. When the return value is larger than the number of bytes requested to read this
* indicates not all bytes were read, and more data is available. On error, returns negative
* value of errno.h defined error codes.
*/
ssize_t zms_read(struct zms_fs *fs, uint32_t id, void *data, size_t len);

/**
* @brief Read a history entry from the file system.
*
* @param fs Pointer to file system
* @param id Id of the entry to be read
* @param data Pointer to data buffer
* @param len Number of bytes to be read
* @param cnt History counter: 0: latest entry, 1: one before latest ...
*
* @return Number of bytes read. On success, it will be equal to the number of bytes requested
* to be read. When the return value is larger than the number of bytes requested to read this
* indicates not all bytes were read, and more data is available. On error, returns negative
* value of errno.h defined error codes.
*/
ssize_t zms_read_hist(struct zms_fs *fs, uint32_t id, void *data, size_t len, uint32_t cnt);

/**
* @brief Calculate the available free space in the file system.
*
* @param fs Pointer to file system
*
* @return Number of bytes free. On success, it will be equal to the number of bytes that can
* still be written to the file system. Calculating the free space is a time consuming operation,
* especially on spi flash. On error, returns negative value of errno.h defined error codes.
*/
ssize_t zms_calc_free_space(struct zms_fs *fs);

/**
* @brief Tell how many contiguous free space remains in the currently active ZMS sector.
*
* @param fs Pointer to the file system.
*
* @return Number of free bytes.
*/
size_t zms_sector_max_data_size(struct zms_fs *fs);

/**
* @brief Close the currently active sector and switch to the next one.
*
* @note The garbage collector is called on the new sector.
*
* @warning This routine is made available for specific use cases.
* It breaks the aim of the ZMS to avoid any unnecessary flash erases.
* Using this routine extensively can result in premature failure of the flash device.
*
* @param fs Pointer to the file system.
*
* @return 0 on success. On error, returns negative value of errno.h defined error codes.
*/
int zms_sector_use_next(struct zms_fs *fs);

/**
* @}
*/

#ifdef __cplusplus
}
#endif

#endif /* ZEPHYR_INCLUDE_FS_ZMS_H_ */
1 change: 1 addition & 0 deletions subsys/fs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ endif()

add_subdirectory_ifdef(CONFIG_FCB ./fcb)
add_subdirectory_ifdef(CONFIG_NVS ./nvs)
add_subdirectory_ifdef(CONFIG_ZMS ./zms)

if(CONFIG_FUSE_FS_ACCESS)
zephyr_library_named(FS_FUSE)
Expand Down
1 change: 1 addition & 0 deletions subsys/fs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,6 @@ endif # FILE_SYSTEM

rsource "fcb/Kconfig"
rsource "nvs/Kconfig"
rsource "zms/Kconfig"

endmenu
3 changes: 3 additions & 0 deletions subsys/fs/zms/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#SPDX-License-Identifier: Apache-2.0

zephyr_sources(zms.c)
40 changes: 40 additions & 0 deletions subsys/fs/zms/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#Zephyr Memory Storage ZMS

#Copyright(c) 2024 Riadh Ghaddab < rghaddab @baylibre.fr>

#SPDX-License-Identifier: Apache-2.0

config ZMS
bool "Zephyr Memory Storage"
select CRC
help
Enable support of Zephyr Memory Storage.

if ZMS

config ZMS_LOOKUP_CACHE
bool "ZMS lookup cache"
help
Enable ZMS cache, used to reduce the ZMS data lookup time.
Each cache entry holds an address of the most recent allocation
table entry (ATE) for all ZMS IDs that fall into that cache position.

config ZMS_LOOKUP_CACHE_SIZE
int "ZMS Storage lookup cache size"
default 128
range 1 65536
depends on ZMS_LOOKUP_CACHE
help
Number of entries in ZMS lookup cache.
It is recommended that it be a power of 2.

config ZMS_DATA_CRC
bool "ZMS DATA CRC"
help
Enables DATA CRC

module = ZMS
module-str = zms
source "subsys/logging/Kconfig.template.log_config"

endif # ZMS
Loading

0 comments on commit 5c95d0a

Please sign in to comment.