2018-04-12 18:42:49 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
|
|
* Copyright (c) 2015 Runtime Inc
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <zephyr.h>
|
|
|
|
#include <flash.h>
|
|
|
|
|
|
|
|
#include "target.h"
|
|
|
|
|
|
|
|
#include <flash_map_backend/flash_map_backend.h>
|
|
|
|
#include <sysflash/sysflash.h>
|
|
|
|
|
|
|
|
#include "bootutil/bootutil_log.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For now, we only support one flash device.
|
|
|
|
*
|
|
|
|
* Pick the SoC Flash driver ID.
|
|
|
|
*/
|
|
|
|
#define FLASH_DEVICE_ID SOC_FLASH_0_ID
|
|
|
|
#define FLASH_DEVICE_BASE CONFIG_FLASH_BASE_ADDRESS
|
|
|
|
|
2018-07-20 17:42:31 +08:00
|
|
|
static struct device *flash_dev;
|
|
|
|
|
|
|
|
struct device *flash_device_get_binding(char *dev_name)
|
|
|
|
{
|
|
|
|
if (!flash_dev) {
|
|
|
|
flash_dev = device_get_binding(dev_name);
|
|
|
|
}
|
|
|
|
return flash_dev;
|
|
|
|
}
|
|
|
|
|
2018-04-12 18:42:49 +08:00
|
|
|
int flash_device_base(uint8_t fd_id, uintptr_t *ret)
|
|
|
|
{
|
|
|
|
if (fd_id != FLASH_DEVICE_ID) {
|
|
|
|
BOOT_LOG_ERR("invalid flash ID %d; expected %d",
|
|
|
|
fd_id, FLASH_DEVICE_ID);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
*ret = FLASH_DEVICE_BASE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This depends on the mappings defined in sysflash.h, and assumes
|
|
|
|
* that slot 0, slot 1, and the scratch areas are contiguous.
|
|
|
|
*/
|
|
|
|
int flash_area_id_from_image_slot(int slot)
|
|
|
|
{
|
|
|
|
return slot + FLASH_AREA_IMAGE_0;
|
|
|
|
}
|
2018-07-20 17:42:31 +08:00
|
|
|
|
|
|
|
int flash_area_sector_from_off(off_t off, struct flash_sector *sector)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct flash_pages_info page;
|
|
|
|
|
|
|
|
rc = flash_get_page_info_by_offs(flash_dev, off, &page);
|
|
|
|
if (rc) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
sector->fs_off = page.start_offset;
|
|
|
|
sector->fs_size = page.size;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|