Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
flash_map.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017 Nordic Semiconductor ASA
3 * Copyright (c) 2015 Runtime Inc
4 * Copyright (c) 2023 Sensorfy B.V.
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
14#ifndef ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_
15#define ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_
16
25/*
26 * This API makes it possible to operate on flash areas easily and
27 * effectively.
28 *
29 * The system contains global data about flash areas. Every area
30 * contains an ID number, offset, and length.
31 */
32
36#include <zephyr/types.h>
37#include <stddef.h>
38#include <sys/types.h>
39#include <zephyr/device.h>
40#include <zephyr/devicetree.h>
41
42#ifdef __cplusplus
43extern "C" {
44#endif
45
47#define SOC_FLASH_0_ID 0
49#define SPI_FLASH_0_ID 1
50
57struct flash_area {
64 size_t fa_size;
66 const struct device *fa_dev;
67#if CONFIG_FLASH_MAP_LABELS
69 const char *fa_label;
70#endif
71};
72
83 size_t fs_size;
84};
85
86#if defined(CONFIG_FLASH_AREA_CHECK_INTEGRITY)
93struct flash_area_check {
94 const uint8_t *match;
95 size_t clen;
96 size_t off;
97 uint8_t *rbuf;
98 size_t rblen;
99};
100
110int flash_area_check_int_sha256(const struct flash_area *fa,
111 const struct flash_area_check *fac);
112#endif
113
127int flash_area_open(uint8_t id, const struct flash_area **fa);
128
137void flash_area_close(const struct flash_area *fa);
138
153int flash_area_read(const struct flash_area *fa, off_t off, void *dst,
154 size_t len);
155
170int flash_area_write(const struct flash_area *fa, off_t off, const void *src,
171 size_t len);
172
186int flash_area_erase(const struct flash_area *fa, off_t off, size_t len);
187
199
212int flash_area_get_sectors(int fa_id, uint32_t *count,
213 struct flash_sector *sectors);
214
222typedef void (*flash_area_cb_t)(const struct flash_area *fa,
223 void *user_data);
224
231void flash_area_foreach(flash_area_cb_t user_cb, void *user_data);
232
241int flash_area_has_driver(const struct flash_area *fa);
242
250const struct device *flash_area_get_device(const struct flash_area *fa);
251
252#if CONFIG_FLASH_MAP_LABELS
260const char *flash_area_label(const struct flash_area *fa);
261#endif
262
273
274#define FLASH_AREA_LABEL_EXISTS(label) __DEPRECATED_MACRO \
275 DT_HAS_FIXED_PARTITION_LABEL(label)
276
277#define FLASH_AREA_LABEL_STR(lbl) __DEPRECATED_MACRO \
278 DT_PROP(DT_NODE_BY_FIXED_PARTITION_LABEL(lbl), label)
279
280#define FLASH_AREA_ID(label) __DEPRECATED_MACRO \
281 DT_FIXED_PARTITION_ID(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
282
283#define FLASH_AREA_OFFSET(label) __DEPRECATED_MACRO \
284 DT_REG_ADDR(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
285
286#define FLASH_AREA_SIZE(label) __DEPRECATED_MACRO \
287 DT_REG_SIZE(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
288
297#define FIXED_PARTITION_EXISTS(label) DT_FIXED_PARTITION_EXISTS(DT_NODELABEL(label))
298
306#define FIXED_PARTITION_ID(label) DT_FIXED_PARTITION_ID(DT_NODELABEL(label))
307
315#define FIXED_PARTITION_OFFSET(label) DT_REG_ADDR(DT_NODELABEL(label))
316
324#define FIXED_PARTITION_SIZE(label) DT_REG_SIZE(DT_NODELABEL(label))
325
333#define FLASH_AREA_DEVICE(label) \
334 DEVICE_DT_GET(DT_MTD_FROM_FIXED_PARTITION(DT_NODE_BY_FIXED_PARTITION_LABEL(label)))
335
343#define FIXED_PARTITION_DEVICE(label) \
344 DEVICE_DT_GET(DT_MTD_FROM_FIXED_PARTITION(DT_NODELABEL(label)))
345
346#ifdef __cplusplus
347}
348#endif
349
354#endif /* ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_ */
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
Devicetree main header.
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.
int flash_area_read(const struct flash_area *fa, off_t off, void *dst, size_t len)
Read flash area data.
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:222
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.
void flash_area_close(const struct flash_area *fa)
Close flash_area.
__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:381
Flash partition.
Definition: flash_map.h:57
off_t fa_off
Start offset from the beginning of the flash device.
Definition: flash_map.h:62
size_t fa_size
Total size.
Definition: flash_map.h:64
const struct device * fa_dev
Backing flash device.
Definition: flash_map.h:66
uint8_t fa_id
ID number.
Definition: flash_map.h:59
uint16_t pad16
Definition: flash_map.h:60
Structure for transfer flash sector boundaries.
Definition: flash_map.h:79
off_t fs_off
Sector offset from the beginning of the flash device.
Definition: flash_map.h:81
size_t fs_size
Sector size in bytes.
Definition: flash_map.h:83