mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
spl: blk: Support loading images from fs
Add a generic API to support loading of SPL payload from any supported filesystem on a given partition of a block device. Signed-off-by: Mayuresh Chitale <mchitale@ventanamicro.com>
This commit is contained in:
parent
f3228a7232
commit
8ce6a2e175
5 changed files with 146 additions and 0 deletions
|
@ -1268,6 +1268,7 @@ config SPL_NVME
|
|||
depends on BLK
|
||||
select HAVE_BLOCK_DEVICE
|
||||
select FS_LOADER
|
||||
select SPL_BLK_FS
|
||||
help
|
||||
This option enables support for NVM Express devices.
|
||||
It supports basic functions of NVMe (read/write).
|
||||
|
|
|
@ -10,6 +10,7 @@ ifdef CONFIG_SPL_BUILD
|
|||
obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o
|
||||
obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o
|
||||
obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o
|
||||
obj-$(CONFIG_$(SPL_TPL_)BLK_FS) += spl_blk_fs.o
|
||||
obj-$(CONFIG_$(SPL_TPL_)LEGACY_IMAGE_FORMAT) += spl_legacy.o
|
||||
obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o
|
||||
obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o
|
||||
|
|
134
common/spl/spl_blk_fs.c
Normal file
134
common/spl/spl_blk_fs.c
Normal file
|
@ -0,0 +1,134 @@
|
|||
// SPDX-License-Identifier: GPL-2.0+
|
||||
/*
|
||||
* Copyright (C) 2023
|
||||
* Ventana Micro Systems Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <spl.h>
|
||||
#include <image.h>
|
||||
#include <fs.h>
|
||||
|
||||
struct blk_dev {
|
||||
const char *ifname;
|
||||
char dev_part_str[8];
|
||||
};
|
||||
|
||||
static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset,
|
||||
ulong size, void *buf)
|
||||
{
|
||||
loff_t actlen;
|
||||
int ret;
|
||||
struct blk_dev *dev = (struct blk_dev *)load->priv;
|
||||
|
||||
ret = fs_set_blk_dev(dev->ifname, dev->dev_part_str, FS_TYPE_ANY);
|
||||
if (ret) {
|
||||
printf("spl: unable to set blk_dev %s %s. Err - %d\n",
|
||||
dev->ifname, dev->dev_part_str, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = fs_read(load->filename, (ulong)buf, file_offset, size, &actlen);
|
||||
if (ret < 0) {
|
||||
printf("spl: error reading image %s. Err - %d\n",
|
||||
load->filename, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return actlen;
|
||||
}
|
||||
|
||||
int spl_blk_load_image(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev,
|
||||
enum uclass_id uclass_id, int devnum, int partnum)
|
||||
{
|
||||
const char *filename = CONFIG_SPL_PAYLOAD;
|
||||
struct disk_partition part_info = {};
|
||||
struct legacy_img_hdr *header;
|
||||
struct blk_desc *blk_desc;
|
||||
loff_t actlen, filesize;
|
||||
struct blk_dev dev;
|
||||
int ret;
|
||||
|
||||
blk_desc = blk_get_devnum_by_uclass_id(uclass_id, devnum);
|
||||
if (!blk_desc) {
|
||||
printf("blk desc for %d %d not found\n", uclass_id, devnum);
|
||||
goto out;
|
||||
}
|
||||
|
||||
blk_show_device(uclass_id, devnum);
|
||||
header = spl_get_load_buffer(-sizeof(*header), sizeof(*header));
|
||||
ret = part_get_info(blk_desc, 1, &part_info);
|
||||
if (ret) {
|
||||
printf("spl: no partition table found. Err - %d\n", ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
dev.ifname = blk_get_uclass_name(uclass_id);
|
||||
snprintf(dev.dev_part_str, sizeof(dev.dev_part_str) - 1, "%d:%d",
|
||||
devnum, partnum);
|
||||
ret = fs_set_blk_dev(dev.ifname, dev.dev_part_str, FS_TYPE_ANY);
|
||||
if (ret) {
|
||||
printf("spl: unable to set blk_dev %s %s. Err - %d\n",
|
||||
dev.ifname, dev.dev_part_str, ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = fs_read(filename, (ulong)header, 0,
|
||||
sizeof(struct legacy_img_hdr), &actlen);
|
||||
if (ret) {
|
||||
printf("spl: unable to read file %s. Err - %d\n", filename,
|
||||
ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
|
||||
image_get_magic(header) == FDT_MAGIC) {
|
||||
struct spl_load_info load;
|
||||
|
||||
debug("Found FIT\n");
|
||||
load.read = spl_fit_read;
|
||||
load.bl_len = 1;
|
||||
load.filename = (void *)filename;
|
||||
load.priv = &dev;
|
||||
|
||||
return spl_load_simple_fit(spl_image, &load, 0, header);
|
||||
}
|
||||
|
||||
ret = spl_parse_image_header(spl_image, bootdev, header);
|
||||
if (ret) {
|
||||
printf("spl: unable to parse image header. Err - %d\n",
|
||||
ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = fs_set_blk_dev(dev.ifname, dev.dev_part_str, FS_TYPE_ANY);
|
||||
if (ret) {
|
||||
printf("spl: unable to set blk_dev %s %s. Err - %d\n",
|
||||
dev.ifname, dev.dev_part_str, ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = fs_size(filename, &filesize);
|
||||
if (ret) {
|
||||
printf("spl: unable to get file size: %s. Err - %d\n",
|
||||
filename, ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = fs_set_blk_dev(dev.ifname, dev.dev_part_str, FS_TYPE_ANY);
|
||||
if (ret) {
|
||||
printf("spl: unable to set blk_dev %s %s. Err - %d\n",
|
||||
dev.ifname, dev.dev_part_str, ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = fs_read(filename, (ulong)spl_image->load_addr, 0, filesize,
|
||||
&actlen);
|
||||
if (ret)
|
||||
printf("spl: unable to read file %s. Err - %d\n",
|
||||
filename, ret);
|
||||
out:
|
||||
return ret;
|
||||
}
|
|
@ -107,6 +107,13 @@ config EFI_MEDIA
|
|||
|
||||
For sandbox there is a test driver.
|
||||
|
||||
config SPL_BLK_FS
|
||||
bool "Load images from filesystems on block devices"
|
||||
depends on SPL_BLK
|
||||
help
|
||||
Use generic support to load images from fat/ext filesystems on
|
||||
different types of block devices such as NVMe.
|
||||
|
||||
if EFI_MEDIA
|
||||
|
||||
config EFI_MEDIA_SANDBOX
|
||||
|
|
|
@ -672,6 +672,9 @@ int spl_load_image_ext(struct spl_image_info *spl_image,
|
|||
int spl_load_image_ext_os(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev,
|
||||
struct blk_desc *block_dev, int partition);
|
||||
int spl_blk_load_image(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev,
|
||||
enum uclass_id uclass_id, int devnum, int partnum);
|
||||
|
||||
/**
|
||||
* spl_early_init() - Set up device tree and driver model in SPL if enabled
|
||||
|
|
Loading…
Reference in a new issue