14#ifndef ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_
15#define ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_
64#if CONFIG_FLASH_MAP_LABELS
83#if defined(CONFIG_FLASH_AREA_CHECK_INTEGRITY)
90struct flash_area_check {
107int flash_area_check_int_sha256(
const struct flash_area *fa,
108 const struct flash_area_check *fac);
329#if CONFIG_FLASH_MAP_LABELS
337const char *flash_area_label(
const struct flash_area *fa);
360#define FIXED_PARTITION_EXISTS(label) \
361 UTIL_OR(DT_FIXED_PARTITION_EXISTS(DT_NODELABEL(label)), \
362 DT_FIXED_SUBPARTITION_EXISTS(DT_NODELABEL(label)))
371#define FIXED_PARTITION_ID(label) DT_FIXED_PARTITION_ID(DT_NODELABEL(label))
380#define FIXED_PARTITION_OFFSET(label) DT_REG_ADDR(DT_NODELABEL(label))
389#define FIXED_PARTITION_ADDRESS(label) \
390 (COND_CODE_1(DT_FIXED_SUBPARTITION_EXISTS(DT_NODELABEL(label)), \
391 (DT_FIXED_SUBPARTITION_ADDR(DT_NODELABEL(label))), \
392 (DT_FIXED_PARTITION_ADDR(DT_NODELABEL(label)))))
401#define FIXED_PARTITION_NODE_ADDRESS(node) \
402 (COND_CODE_1(DT_FIXED_SUBPARTITION_EXISTS(node), \
403 (DT_FIXED_SUBPARTITION_ADDR(node)), \
404 (DT_FIXED_PARTITION_ADDR(node))))
413#define FIXED_PARTITION_NODE_OFFSET(node) DT_REG_ADDR(node)
422#define FIXED_PARTITION_SIZE(label) DT_REG_SIZE(DT_NODELABEL(label))
431#define FIXED_PARTITION_NODE_SIZE(node) DT_REG_SIZE(node)
440#define FLASH_AREA_DEVICE(label) \
441 DEVICE_DT_GET(DT_MTD_FROM_FIXED_PARTITION(DT_NODE_BY_FIXED_PARTITION_LABEL(label)))
450#define FIXED_PARTITION_DEVICE(label) \
451 DEVICE_DT_GET(COND_CODE_1( \
452 DT_FIXED_SUBPARTITION_EXISTS(DT_NODELABEL(label)), \
453 (DT_MTD_FROM_FIXED_SUBPARTITION(DT_NODELABEL(label))), \
454 (DT_MTD_FROM_FIXED_PARTITION(DT_NODELABEL(label)))))
462#define FIXED_PARTITION_NODE_DEVICE(node) \
463 DEVICE_DT_GET(COND_CODE_1( \
464 DT_FIXED_SUBPARTITION_EXISTS(node), \
465 (DT_MTD_FROM_FIXED_SUBPARTITION(node)), \
466 (DT_MTD_FROM_FIXED_PARTITION(node))))
475#define FIXED_PARTITION(label) FIXED_PARTITION_1(DT_NODELABEL(label))
484#define FIXED_PARTITION_BY_NODE(node) FIXED_PARTITION_1(node)
487#define FIXED_PARTITION_1(node) FIXED_PARTITION_0(DT_DEP_ORD(node))
488#define FIXED_PARTITION_0(ord) \
489 ((const struct flash_area *)&DT_CAT(global_fixed_partition_ORD_, ord))
491#define DECLARE_PARTITION(node) DECLARE_PARTITION_0(DT_DEP_ORD(node))
492#define DECLARE_PARTITION_0(ord) \
493 extern const struct flash_area DT_CAT(global_fixed_partition_ORD_, ord);
494#define FOR_EACH_PARTITION_TABLE(table) DT_FOREACH_CHILD(table, DECLARE_PARTITION)
499#undef DECLARE_PARTITION
500#undef DECLARE_PARTITION_0
501#undef FOR_EACH_PARTITION_TABLE
503#define FIXED_SUBPARTITION_1(node) FIXED_SUBPARTITION_0(DT_DEP_ORD(node))
504#define FIXED_SUBPARTITION_0(ord) \
505 ((const struct flash_area *)&DT_CAT(global_fixed_subpartition_ORD_, ord))
507#define DECLARE_SUBPARTITION(node) DECLARE_SUBPARTITION_0(DT_DEP_ORD(node))
508#define DECLARE_SUBPARTITION_0(ord) \
509 extern const struct flash_area DT_CAT(global_fixed_subpartition_ORD_, ord);
510#define FOR_EACH_SUBPARTITION_TABLE(table) DT_FOREACH_CHILD(table, DECLARE_SUBPARTITION)
515#undef DECLARE_SUBPARTITION
516#undef DECLARE_SUBPARTITION_0
517#undef FOR_EACH_SUBPARTITION_TABLE
irp nz macro MOVR cc s mov cc s endm endr irp aw macro LDR aa off
Definition asm-macro-32-bit-gnu.h:17
bool device_is_ready(const struct device *dev)
Verify that a device is ready for use.
#define DT_FOREACH_STATUS_OKAY(compat, fn)
Invokes fn for each status okay node of a compatible.
Definition devicetree.h:3466
int flash_area_sectors(const struct flash_area *fa, uint32_t *count, struct flash_sector *sectors)
Retrieve info about sectors within the area.
uint32_t flash_area_align(const struct flash_area *fa)
Get write block size of the flash area.
uint8_t flash_area_erased_val(const struct flash_area *fa)
Get the value expected to be read when accessing any erased flash byte.
void flash_area_foreach(flash_area_cb_t user_cb, void *user_data)
Iterate over flash map.
int flash_area_has_driver(const struct flash_area *fa)
Check whether given flash area has supporting flash driver in the system.
int flash_area_get_sectors(int fa_id, uint32_t *count, struct flash_sector *sectors)
Retrieve info about sectors within the area.
int flash_area_open(uint8_t id, const struct flash_area **fa)
Retrieve partitions flash area from the flash_map.
static ALWAYS_INLINE bool flash_area_device_is_ready(const struct flash_area *fa)
Verify that a device assigned to flash area is ready for use.
Definition flash_map.h:152
int flash_area_read(const struct flash_area *fa, off_t off, void *dst, size_t len)
Read flash area data.
int flash_area_copy(const struct flash_area *src_fa, off_t src_off, const struct flash_area *dst_fa, off_t dst_off, off_t len, uint8_t *buf, size_t buf_size)
Copy flash memory from one flash area to another.
int flash_area_write(const struct flash_area *fa, off_t off, const void *src, size_t len)
Write data to flash area.
void(* flash_area_cb_t)(const struct flash_area *fa, void *user_data)
Flash map iteration callback.
Definition flash_map.h:299
int flash_area_erase(const struct flash_area *fa, off_t off, size_t len)
Erase flash area.
const struct device * flash_area_get_device(const struct flash_area *fa)
Get driver for given flash area.
int flash_area_flatten(const struct flash_area *fa, off_t off, size_t len)
Erase flash area or fill with erase-value.
void flash_area_close(const struct flash_area *fa)
Close flash_area.
#define NULL
Definition iar_missing_defs.h:20
__INTPTR_TYPE__ off_t
Definition types.h:36
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition device.h:510
Flash partition.
Definition flash_map.h:54
off_t fa_off
Start offset from the beginning of the flash device.
Definition flash_map.h:59
size_t fa_size
Total size.
Definition flash_map.h:61
const struct device * fa_dev
Backing flash device.
Definition flash_map.h:63
uint8_t fa_id
ID number.
Definition flash_map.h:56
uint16_t pad16
Definition flash_map.h:57
Structure for transfer flash sector boundaries.
Definition flash_map.h:76
off_t fs_off
Sector offset from the beginning of the flash device.
Definition flash_map.h:78
size_t fs_size
Sector size in bytes.
Definition flash_map.h:80