storage/flash_map: Add FLASH_AREA_DEVICE macro

The macro returns pointer to a device object the flash area
exists on.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
This commit is contained in:
Dominik Ermel 2021-11-03 12:49:12 +00:00 committed by Anas Nashif
parent 5b5417a1dd
commit a333ffce1d
3 changed files with 16 additions and 3 deletions

View file

@ -271,6 +271,16 @@ uint8_t flash_area_erased_val(const struct flash_area *fa);
#define FLASH_AREA_SIZE(label) \
DT_REG_SIZE(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
/**
* Get device pointer for device the area/partition resides on
*
* @param label partition label
*
* @return const struct device type pointer
*/
#define FLASH_AREA_DEVICE(label) \
DEVICE_DT_GET(DT_MTD_FROM_FIXED_PARTITION(DT_NODE_BY_FIXED_PARTITION_LABEL(label)))
#ifdef __cplusplus
}
#endif

View file

@ -48,8 +48,7 @@
static struct nvs_fs fs;
#define STORAGE_NODE DT_NODE_BY_FIXED_PARTITION_LABEL(storage)
#define FLASH_NODE DT_MTD_FROM_FIXED_PARTITION(STORAGE_NODE)
#define STORAGE_NODE_LABEL storage
/* 1000 msec = 1 sec */
#define SLEEP_TIME 100
@ -78,7 +77,7 @@ void main(void)
* 3 sectors
* starting at FLASH_AREA_OFFSET(storage)
*/
flash_dev = DEVICE_DT_GET(FLASH_NODE);
flash_dev = FLASH_AREA_DEVICE(STORAGE_NODE_LABEL);
if (!device_is_ready(flash_dev)) {
printk("Flash device %s is not ready\n", flash_dev->name);
return;

View file

@ -26,6 +26,7 @@ void test_flash_area_get_sectors(void)
uint8_t wd[256];
uint8_t rd[256];
const struct device *flash_dev;
const struct device *flash_dev_a = FLASH_AREA_DEVICE(image_1);
rc = flash_area_open(FLASH_AREA_ID(image_1), &fa);
zassert_true(rc == 0, "flash_area_open() fail");
@ -33,6 +34,9 @@ void test_flash_area_get_sectors(void)
/* First erase the area so it's ready for use. */
flash_dev = flash_area_get_device(fa);
/* Device obtained by label should match the one from fa object */
zassert_equal(flash_dev, flash_dev_a, "Device for image_1 do not match");
rc = flash_erase(flash_dev, fa->fa_off, fa->fa_size);
zassert_true(rc == 0, "flash area erase fail");