| /* |
| * Copyright (c) 2017-2024 Nordic Semiconductor ASA |
| * Copyright (c) 2016 Intel Corporation |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| /** |
| * @file |
| * @brief Public API for FLASH drivers |
| */ |
| |
| #ifndef ZEPHYR_INCLUDE_DRIVERS_FLASH_H_ |
| #define ZEPHYR_INCLUDE_DRIVERS_FLASH_H_ |
| |
| /** |
| * @brief FLASH internal Interface |
| * @defgroup flash_internal_interface FLASH internal Interface |
| * @ingroup io_interfaces |
| * @{ |
| */ |
| |
| #include <errno.h> |
| |
| #include <zephyr/types.h> |
| #include <stddef.h> |
| #include <sys/types.h> |
| #include <zephyr/device.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| #if defined(CONFIG_FLASH_PAGE_LAYOUT) |
| struct flash_pages_layout { |
| size_t pages_count; /* count of pages sequence of the same size */ |
| size_t pages_size; |
| }; |
| #endif /* CONFIG_FLASH_PAGE_LAYOUT */ |
| |
| /** |
| * @} |
| */ |
| |
| /** |
| * @brief FLASH Interface |
| * @defgroup flash_interface FLASH Interface |
| * @since 1.2 |
| * @version 1.0.0 |
| * @ingroup io_interfaces |
| * @{ |
| */ |
| |
| /** |
| * Flash memory parameters. Contents of this structure suppose to be |
| * filled in during flash device initialization and stay constant |
| * through a runtime. |
| */ |
| struct flash_parameters { |
| /** Minimal write alignment and size */ |
| const size_t write_block_size; |
| |
| /** @cond INTERNAL_HIDDEN */ |
| /* User code should call flash_params_get_ functions on flash_parameters |
| * to get capabilities, rather than accessing object contents directly. |
| */ |
| struct { |
| /* Device has no explicit erase, so it either erases on |
| * write or does not require it at all. |
| * This also includes devices that support erase but |
| * do not require it. |
| */ |
| bool no_explicit_erase: 1; |
| } caps; |
| /** @endcond */ |
| /** Value the device is filled in erased areas */ |
| uint8_t erase_value; |
| }; |
| |
| /** Set for ordinary Flash where erase is needed before write of random data */ |
| #define FLASH_ERASE_C_EXPLICIT 0x01 |
| /** Reserved for users as initializer for variables that will later store |
| * capabilities. |
| */ |
| #define FLASH_ERASE_CAPS_UNSET (int)-1 |
| /* The values below are now reserved but not used */ |
| #define FLASH_ERASE_C_SUPPORTED 0x02 |
| #define FLASH_ERASE_C_VAL_BIT 0x04 |
| #define FLASH_ERASE_UNIFORM_PAGE 0x08 |
| |
| |
| /* @brief Parser for flash_parameters for retrieving erase capabilities |
| * |
| * The functions parses flash_parameters type object and returns combination |
| * of erase capabilities of 0 if device does not have any. |
| * Not that in some cases availability of erase may be dependent on driver |
| * options, so even if by hardware design a device provides some erase |
| * capabilities, the function may return 0 if these been disabled or not |
| * implemented by driver. |
| * |
| * @param p pointer to flash_parameters type object |
| * |
| * @return 0 or combination of FLASH_ERASE_C_ capabilities. |
| */ |
| static inline |
| int flash_params_get_erase_cap(const struct flash_parameters *p) |
| { |
| #if defined(CONFIG_FLASH_HAS_EXPLICIT_ERASE) |
| #if defined(CONFIG_FLASH_HAS_NO_EXPLICIT_ERASE) |
| return (p->caps.no_explicit_erase) ? 0 : FLASH_ERASE_C_EXPLICIT; |
| #else |
| return FLASH_ERASE_C_EXPLICIT; |
| #endif |
| #endif |
| return 0; |
| } |
| |
| /** |
| * @} |
| */ |
| |
| /** |
| * @addtogroup flash_internal_interface |
| * @{ |
| */ |
| |
| typedef int (*flash_api_read)(const struct device *dev, off_t offset, |
| void *data, |
| size_t len); |
| /** |
| * @brief Flash write implementation handler type |
| * |
| * @note Any necessary write protection management must be performed by |
| * the driver, with the driver responsible for ensuring the "write-protect" |
| * after the operation completes (successfully or not) matches the write-protect |
| * state when the operation was started. |
| */ |
| typedef int (*flash_api_write)(const struct device *dev, off_t offset, |
| const void *data, size_t len); |
| |
| /** |
| * @brief Flash erase implementation handler type |
| * |
| * @note Any necessary erase protection management must be performed by |
| * the driver, with the driver responsible for ensuring the "erase-protect" |
| * after the operation completes (successfully or not) matches the erase-protect |
| * state when the operation was started. |
| * |
| * The callback is optional for RAM non-volatile devices, which do not |
| * require erase by design, but may be provided if it allows device to |
| * work more effectively, or if device has a support for internal fill |
| * operation the erase in driver uses. |
| */ |
| typedef int (*flash_api_erase)(const struct device *dev, off_t offset, |
| size_t size); |
| |
| typedef const struct flash_parameters* (*flash_api_get_parameters)(const struct device *dev); |
| |
| #if defined(CONFIG_FLASH_PAGE_LAYOUT) |
| /** |
| * @brief Retrieve a flash device's layout. |
| * |
| * A flash device layout is a run-length encoded description of the |
| * pages on the device. (Here, "page" means the smallest erasable |
| * area on the flash device.) |
| * |
| * For flash memories which have uniform page sizes, this routine |
| * returns an array of length 1, which specifies the page size and |
| * number of pages in the memory. |
| * |
| * Layouts for flash memories with nonuniform page sizes will be |
| * returned as an array with multiple elements, each of which |
| * describes a group of pages that all have the same size. In this |
| * case, the sequence of array elements specifies the order in which |
| * these groups occur on the device. |
| * |
| * @param dev Flash device whose layout to retrieve. |
| * @param layout The flash layout will be returned in this argument. |
| * @param layout_size The number of elements in the returned layout. |
| */ |
| typedef void (*flash_api_pages_layout)(const struct device *dev, |
| const struct flash_pages_layout **layout, |
| size_t *layout_size); |
| #endif /* CONFIG_FLASH_PAGE_LAYOUT */ |
| |
| typedef int (*flash_api_sfdp_read)(const struct device *dev, off_t offset, |
| void *data, size_t len); |
| typedef int (*flash_api_read_jedec_id)(const struct device *dev, uint8_t *id); |
| typedef int (*flash_api_ex_op)(const struct device *dev, uint16_t code, |
| const uintptr_t in, void *out); |
| |
| __subsystem struct flash_driver_api { |
| flash_api_read read; |
| flash_api_write write; |
| flash_api_erase erase; |
| flash_api_get_parameters get_parameters; |
| #if defined(CONFIG_FLASH_PAGE_LAYOUT) |
| flash_api_pages_layout page_layout; |
| #endif /* CONFIG_FLASH_PAGE_LAYOUT */ |
| #if defined(CONFIG_FLASH_JESD216_API) |
| flash_api_sfdp_read sfdp_read; |
| flash_api_read_jedec_id read_jedec_id; |
| #endif /* CONFIG_FLASH_JESD216_API */ |
| #if defined(CONFIG_FLASH_EX_OP_ENABLED) |
| flash_api_ex_op ex_op; |
| #endif /* CONFIG_FLASH_EX_OP_ENABLED */ |
| }; |
| |
| /** |
| * @} |
| */ |
| |
| /** |
| * @addtogroup flash_interface |
| * @{ |
| */ |
| |
| /** |
| * @brief Read data from flash |
| * |
| * All flash drivers support reads without alignment restrictions on |
| * the read offset, the read size, or the destination address. |
| * |
| * @param dev : flash dev |
| * @param offset : Offset (byte aligned) to read |
| * @param data : Buffer to store read data |
| * @param len : Number of bytes to read. |
| * |
| * @return 0 on success, negative errno code on fail. |
| */ |
| __syscall int flash_read(const struct device *dev, off_t offset, void *data, |
| size_t len); |
| |
| static inline int z_impl_flash_read(const struct device *dev, off_t offset, |
| void *data, |
| size_t len) |
| { |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| return api->read(dev, offset, data, len); |
| } |
| |
| /** |
| * @brief Write buffer into flash memory. |
| * |
| * All flash drivers support a source buffer located either in RAM or |
| * SoC flash, without alignment restrictions on the source address. |
| * Write size and offset must be multiples of the minimum write block size |
| * supported by the driver. |
| * |
| * Any necessary write protection management is performed by the driver |
| * write implementation itself. |
| * |
| * @param dev : flash device |
| * @param offset : starting offset for the write |
| * @param data : data to write |
| * @param len : Number of bytes to write |
| * |
| * @return 0 on success, negative errno code on fail. |
| */ |
| __syscall int flash_write(const struct device *dev, off_t offset, |
| const void *data, |
| size_t len); |
| |
| static inline int z_impl_flash_write(const struct device *dev, off_t offset, |
| const void *data, size_t len) |
| { |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| int rc; |
| |
| rc = api->write(dev, offset, data, len); |
| |
| return rc; |
| } |
| |
| /** |
| * @brief Erase part or all of a flash memory |
| * |
| * Acceptable values of erase size and offset are subject to |
| * hardware-specific multiples of page size and offset. Please check |
| * the API implemented by the underlying sub driver, for example by |
| * using flash_get_page_info_by_offs() if that is supported by your |
| * flash driver. |
| * |
| * Any necessary erase protection management is performed by the driver |
| * erase implementation itself. |
| * |
| * The function should be used only for devices that are really |
| * explicit erase devices; in case when code relies on erasing |
| * device, i.e. setting it to erase-value, prior to some operations, |
| * but should work with explicit erase and RAM non-volatile devices, |
| * then flash_flatten should rather be used. |
| * |
| * @param dev : flash device |
| * @param offset : erase area starting offset |
| * @param size : size of area to be erased |
| * |
| * @return 0 on success, negative errno code on fail. |
| * |
| * @see flash_flatten() |
| * @see flash_get_page_info_by_offs() |
| * @see flash_get_page_info_by_idx() |
| */ |
| __syscall int flash_erase(const struct device *dev, off_t offset, size_t size); |
| |
| static inline int z_impl_flash_erase(const struct device *dev, off_t offset, |
| size_t size) |
| { |
| int rc = -ENOSYS; |
| |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| if (api->erase != NULL) { |
| rc = api->erase(dev, offset, size); |
| } |
| |
| return rc; |
| } |
| |
| __syscall int flash_fill(const struct device *dev, uint8_t val, off_t offset, size_t size); |
| |
| /** |
| * @brief Erase part or all of a flash memory or level it |
| * |
| * If device is explicit erase type device or device driver provides erase |
| * callback, the callback of the device is called, in which it behaves |
| * the same way as flash_erase. |
| * If a device does not require explicit erase, either because |
| * it has no erase at all or has auto-erase/erase-on-write, |
| * and does not provide erase callback then erase is emulated by |
| * leveling selected device memory area with erase_value assigned to |
| * device. |
| * |
| * Erase page offset and size are constrains of paged, explicit erase devices, |
| * but can be relaxed with devices without such requirement, which means that |
| * it is up to user code to make sure they are correct as the function |
| * will return on, if these constrains are not met, -EINVAL for |
| * paged device, but may succeed on non-explicit erase devices. |
| * For RAM non-volatile devices the erase pages are emulated, |
| * at this point, to allow smooth transition for code relying on |
| * device being paged to function properly; but this is completely |
| * software constrain. |
| * |
| * Generally: if your code previously required device to be erase |
| * prior to some actions to work, replace flash_erase calls with this |
| * function; but if your code can work with non-volatile RAM type devices, |
| * without emulating erase, you should rather have different path |
| * of execution for page-erase, i.e. Flash, devices and call |
| * flash_erase for them. |
| * |
| * @param dev : flash device |
| * @param offset : erase area starting offset |
| * @param size : size of area to be erased |
| * |
| * @return 0 on success, negative errno code on fail. |
| * |
| * @see flash_erase() |
| */ |
| __syscall int flash_flatten(const struct device *dev, off_t offset, size_t size); |
| |
| struct flash_pages_info { |
| off_t start_offset; /* offset from the base of flash address */ |
| size_t size; |
| uint32_t index; |
| }; |
| |
| #if defined(CONFIG_FLASH_PAGE_LAYOUT) |
| /** |
| * @brief Get the size and start offset of flash page at certain flash offset. |
| * |
| * @param dev flash device |
| * @param offset Offset within the page |
| * @param info Page Info structure to be filled |
| * |
| * @return 0 on success, -EINVAL if page of the offset doesn't exist. |
| */ |
| __syscall int flash_get_page_info_by_offs(const struct device *dev, |
| off_t offset, |
| struct flash_pages_info *info); |
| |
| /** |
| * @brief Get the size and start offset of flash page of certain index. |
| * |
| * @param dev flash device |
| * @param page_index Index of the page. Index are counted from 0. |
| * @param info Page Info structure to be filled |
| * |
| * @return 0 on success, -EINVAL if page of the index doesn't exist. |
| */ |
| __syscall int flash_get_page_info_by_idx(const struct device *dev, |
| uint32_t page_index, |
| struct flash_pages_info *info); |
| |
| /** |
| * @brief Get the total number of flash pages. |
| * |
| * @param dev flash device |
| * |
| * @return Number of flash pages. |
| */ |
| __syscall size_t flash_get_page_count(const struct device *dev); |
| |
| /** |
| * @brief Callback type for iterating over flash pages present on a device. |
| * |
| * The callback should return true to continue iterating, and false to halt. |
| * |
| * @param info Information for current page |
| * @param data Private data for callback |
| * @return True to continue iteration, false to halt iteration. |
| * @see flash_page_foreach() |
| */ |
| typedef bool (*flash_page_cb)(const struct flash_pages_info *info, void *data); |
| |
| /** |
| * @brief Iterate over all flash pages on a device |
| * |
| * This routine iterates over all flash pages on the given device, |
| * ordered by increasing start offset. For each page, it invokes the |
| * given callback, passing it the page's information and a private |
| * data object. |
| * |
| * @param dev Device whose pages to iterate over |
| * @param cb Callback to invoke for each flash page |
| * @param data Private data for callback function |
| */ |
| void flash_page_foreach(const struct device *dev, flash_page_cb cb, |
| void *data); |
| #endif /* CONFIG_FLASH_PAGE_LAYOUT */ |
| |
| #if defined(CONFIG_FLASH_JESD216_API) |
| /** |
| * @brief Read data from Serial Flash Discoverable Parameters |
| * |
| * This routine reads data from a serial flash device compatible with |
| * the JEDEC JESD216 standard for encoding flash memory |
| * characteristics. |
| * |
| * Availability of this API is conditional on selecting |
| * @c CONFIG_FLASH_JESD216_API and support of that functionality in |
| * the driver underlying @p dev. |
| * |
| * @param dev device from which parameters will be read |
| * @param offset address within the SFDP region containing data of interest |
| * @param data where the data to be read will be placed |
| * @param len the number of bytes of data to be read |
| * |
| * @retval 0 on success |
| * @retval -ENOTSUP if the flash driver does not support SFDP access |
| * @retval negative values for other errors. |
| */ |
| __syscall int flash_sfdp_read(const struct device *dev, off_t offset, |
| void *data, size_t len); |
| |
| static inline int z_impl_flash_sfdp_read(const struct device *dev, |
| off_t offset, |
| void *data, size_t len) |
| { |
| int rv = -ENOTSUP; |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| if (api->sfdp_read != NULL) { |
| rv = api->sfdp_read(dev, offset, data, len); |
| } |
| return rv; |
| } |
| |
| /** |
| * @brief Read the JEDEC ID from a compatible flash device. |
| * |
| * @param dev device from which id will be read |
| * @param id pointer to a buffer of at least 3 bytes into which id |
| * will be stored |
| * |
| * @retval 0 on successful store of 3-byte JEDEC id |
| * @retval -ENOTSUP if flash driver doesn't support this function |
| * @retval negative values for other errors |
| */ |
| __syscall int flash_read_jedec_id(const struct device *dev, uint8_t *id); |
| |
| static inline int z_impl_flash_read_jedec_id(const struct device *dev, |
| uint8_t *id) |
| { |
| int rv = -ENOTSUP; |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| if (api->read_jedec_id != NULL) { |
| rv = api->read_jedec_id(dev, id); |
| } |
| return rv; |
| } |
| #endif /* CONFIG_FLASH_JESD216_API */ |
| |
| /** |
| * @brief Get the minimum write block size supported by the driver |
| * |
| * The write block size supported by the driver might differ from the write |
| * block size of memory used because the driver might implements write-modify |
| * algorithm. |
| * |
| * @param dev flash device |
| * |
| * @return write block size in bytes. |
| */ |
| __syscall size_t flash_get_write_block_size(const struct device *dev); |
| |
| static inline size_t z_impl_flash_get_write_block_size(const struct device *dev) |
| { |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| return api->get_parameters(dev)->write_block_size; |
| } |
| |
| |
| /** |
| * @brief Get pointer to flash_parameters structure |
| * |
| * Returned pointer points to a structure that should be considered |
| * constant through a runtime, regardless if it is defined in RAM or |
| * Flash. |
| * Developer is free to cache the structure pointer or copy its contents. |
| * |
| * @return pointer to flash_parameters structure characteristic for |
| * the device. |
| */ |
| __syscall const struct flash_parameters *flash_get_parameters(const struct device *dev); |
| |
| static inline const struct flash_parameters *z_impl_flash_get_parameters(const struct device *dev) |
| { |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| return api->get_parameters(dev); |
| } |
| |
| /** |
| * @brief Execute flash extended operation on given device |
| * |
| * Besides of standard flash operations like write or erase, flash controllers |
| * also support additional features like write protection or readout |
| * protection. These features are not available in every flash controller, |
| * what's more controllers can implement it in a different way. |
| * |
| * It doesn't make sense to add a separate flash API function for every flash |
| * controller feature, because it could be unique (supported on small number of |
| * flash controllers) or the API won't be able to represent the same feature on |
| * every flash controller. |
| * |
| * @param dev Flash device |
| * @param code Operation which will be executed on the device. |
| * @param in Pointer to input data used by operation. If operation doesn't |
| * need any input data it could be NULL. |
| * @param out Pointer to operation output data. If operation doesn't produce |
| * any output it could be NULL. |
| * |
| * @retval 0 on success. |
| * @retval -ENOTSUP if given device doesn't support extended operation. |
| * @retval -ENOSYS if support for extended operations is not enabled in Kconfig |
| * @retval negative value on extended operation errors. |
| */ |
| __syscall int flash_ex_op(const struct device *dev, uint16_t code, |
| const uintptr_t in, void *out); |
| |
| /* |
| * Extended operation interface provides flexible way for supporting flash |
| * controller features. Code space is divided equally into Zephyr codes |
| * (MSb == 0) and vendor codes (MSb == 1). This way we can easily add extended |
| * operations to the drivers without cluttering the API or problems with API |
| * incompatibility. Extended operation can be promoted from vendor codes to |
| * Zephyr codes if the feature is available in most flash controllers and |
| * can be represented in the same way. |
| * |
| * It's not forbidden to have operation in Zephyr codes and vendor codes for |
| * the same functionality. In this case, vendor operation could provide more |
| * specific access when abstraction in Zephyr counterpart is insufficient. |
| */ |
| #define FLASH_EX_OP_VENDOR_BASE 0x8000 |
| #define FLASH_EX_OP_IS_VENDOR(c) ((c) & FLASH_EX_OP_VENDOR_BASE) |
| |
| /** |
| * @brief Enumeration for extra flash operations |
| */ |
| enum flash_ex_op_types { |
| /* |
| * Reset flash device. |
| */ |
| FLASH_EX_OP_RESET = 0, |
| }; |
| |
| static inline int z_impl_flash_ex_op(const struct device *dev, uint16_t code, |
| const uintptr_t in, void *out) |
| { |
| #if defined(CONFIG_FLASH_EX_OP_ENABLED) |
| const struct flash_driver_api *api = |
| (const struct flash_driver_api *)dev->api; |
| |
| if (api->ex_op == NULL) { |
| return -ENOTSUP; |
| } |
| |
| return api->ex_op(dev, code, in, out); |
| #else |
| ARG_UNUSED(dev); |
| ARG_UNUSED(code); |
| ARG_UNUSED(in); |
| ARG_UNUSED(out); |
| |
| return -ENOSYS; |
| #endif /* CONFIG_FLASH_EX_OP_ENABLED */ |
| } |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| /** |
| * @} |
| */ |
| |
| #include <zephyr/syscalls/flash.h> |
| |
| #endif /* ZEPHYR_INCLUDE_DRIVERS_FLASH_H_ */ |