Where the bloblist is located in internal memory and TF-A's BL31 blob
removes access to this memory, the best option seems to be to relocate
the bloblist just before running TF-A.
We can do the relocation in board-specific code, but need an option to
pick up the correct address within U-Boot proper.
Series-changes: 2
- Move the actual relocation code to a previous board-specific patch
Series-to: u-boot
Series-links: 3:443538 2:443538 1:442878
Series-version: 6
Cover-letter:
VBE serial part H: Implement VBE on Rockchip RK3399
This series completes the work to enable VBE on a suitable board. Most
of it is rockchip-specific patches to support the VPL phase, i.e. the
one which decides which boot patch to take (A, B or recovery).
A good chunk of this series is adding an image for VBE, by creating a
new Binman image. Future work in Binman may make this more automated /
easier, but for now it is written out in full. The work is undertaken
piecemeal so it is easier to review the steps.
VBE allows similar boards to share firmware images, with perhaps just
TPL (around 75K) being different for each board. Using a common image
for VPL, SPL and U-Boot saves a lot of space in the image and makes
builds easier. Of course, each board still needs a separate devicetree.
Here is the layout of the image:
Name Image-pos Size Entry-type Offset Uncomp-size
----------------------------------------------------------------------------------------------
image 0 1b960cf section 0
alternates-fdt 8000 31000 alternates-fdt 8000
mkimage 8000 31000 mkimage 0
u-boot-tpl 8048 12a11 u-boot-tpl 48
vpl 208000 16200 fit 208000
image-vpl 209400 a5a3 section 1400
section 209400 a5a3 section 0
u-boot-vpl-nodtb 10348 u-boot-vpl-nodtb 0
u-boot-vpl-bss-pad 20 u-boot-vpl-bss-pad 10348
@fdt-SEQ 0 0 section 0
vbe-a 800000 39b200 section 800000
spl-a 800000 100000 fit 0
spl 801400 10c97 section 1400
section 801400 10c97 section 0
u-boot-spl-nodtb 1a908 u-boot-spl-nodtb 0
u-boot-spl-bss-pad 1b0 u-boot-spl-bss-pad 1a908
@fdt-SEQ 0 0 section 0
u-boot-a 900000 29b200 fit 100000
spl 902400 10c97 section 2400
section 902400 10c97 section 0
u-boot-spl-nodtb 1a908 u-boot-spl-nodtb 0
u-boot-spl-bss-pad 1b0 u-boot-spl-bss-pad 1a908
u-boot 913200 e4250 section 13200
u-boot-nodtb 913200 e4250 u-boot-nodtb 0
@atf-SEQ 0 0 section 0
atf-bl31 0 0 atf-bl31 0
@tee-SEQ 0 0 section 0
tee-os 0 0 tee-os 0
@fdt-SEQ 0 0 section 0
vbe-b 1000000 39b200 section 1000000
spl-b 1000000 100000 fit 0
spl 1001400 10c97 section 1400
section 1001400 10c97 section 0
u-boot-spl-nodtb 1a908 u-boot-spl-nodtb 0
u-boot-spl-bss-pad 1b0 u-boot-spl-bss-pad 1a908
@fdt-SEQ 0 0 section 0
u-boot-b 1100000 29b200 fit 100000
spl 1102400 10c97 section 2400
section 1102400 10c97 section 0
u-boot-spl-nodtb 1a908 u-boot-spl-nodtb 0
u-boot-spl-bss-pad 1b0 u-boot-spl-bss-pad 1a908
u-boot 1113200 e4250 section 13200
u-boot-nodtb 1113200 e4250 u-boot-nodtb 0
@atf-SEQ 0 0 section 0
atf-bl31 0 0 atf-bl31 0
@tee-SEQ 0 0 section 0
tee-os 0 0 tee-os 0
@fdt-SEQ 0 0 section 0
vbe-recovery 1800000 39b200 section 1800000
spl-recovery 1800000 100000 fit 0
spl 1801400 10c97 section 1400
section 1801400 10c97 section 0
u-boot-spl-nodtb 1a908 u-boot-spl-nodtb 0
u-boot-spl-bss-pad 1b0 u-boot-spl-bss-pad 1a908
@fdt-SEQ 0 0 section 0
u-boot-recovery 1900000 29b200 fit 100000
spl 1902400 10c97 section 2400
section 1902400 10c97 section 0
u-boot-spl-nodtb 1a908 u-boot-spl-nodtb 0
u-boot-spl-bss-pad 1b0 u-boot-spl-bss-pad 1a908
u-boot 1913200 e4250 section 13200
u-boot-nodtb 1913200 e4250 u-boot-nodtb 0
@atf-SEQ 0 0 section 0
atf-bl31 0 0 atf-bl31 0
@tee-SEQ 0 0 section 0
tee-os 0 0 tee-os 0
@fdt-SEQ 0 0 section 0
fdtmap 1b9b200 2ecf fdtmap 1b9b200
This series still includes the bloblist reverts, at the end, just so
that the board doesn't have on boot, but I have a series locally which
should improve things, so I will send that when complete.
This is (mostly) the final VBE series, but there are a few loose ends to
tidy up:
- cache is disabled in SPL, which slows the boot a little
- pinctrl init needs to be tidied up to avoid warnings
- bloblist logic as above
- bloblist-relocation is partly in board-specific code, partly generic
Other things may become apparently after more usage / testing.
END
Signed-off-by: Simon Glass <sjg@chromium.org>
587 lines
14 KiB
C
587 lines
14 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2018 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#define LOG_CATEGORY LOGC_BLOBLIST
|
|
|
|
#include <bloblist.h>
|
|
#include <display_options.h>
|
|
#include <log.h>
|
|
#include <malloc.h>
|
|
#include <mapmem.h>
|
|
#include <passage.h>
|
|
#include <spl.h>
|
|
#include <tables_csum.h>
|
|
#include <asm/global_data.h>
|
|
#include <u-boot/crc.h>
|
|
|
|
/*
|
|
* A bloblist is a single contiguous chunk of memory with a header
|
|
* (struct bloblist_hdr) and a number of blobs in it.
|
|
*
|
|
* Each blob starts on a BLOBLIST_ALIGN boundary relative to the start of the
|
|
* bloblist and consists of a struct bloblist_rec, some padding to the required
|
|
* alignment for the blog and then the actual data. The padding ensures that the
|
|
* start address of the data in each blob is aligned as required. Note that
|
|
* each blob's *data* is aligned to BLOBLIST_ALIGN regardless of the alignment
|
|
* of the bloblist itself or the blob header.
|
|
*/
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
static struct tag_name {
|
|
enum bloblist_tag_t tag;
|
|
const char *name;
|
|
} tag_name[] = {
|
|
{ BLOBLISTT_VOID, "(void)" },
|
|
|
|
/* BLOBLISTT_AREA_FIRMWARE_TOP */
|
|
{ BLOBLISTT_CONTROL_FDT, "Control FDT" },
|
|
{ BLOBLISTT_HOB_BLOCK, "HOB block" },
|
|
{ BLOBLISTT_HOB_LIST, "HOB list" },
|
|
{ BLOBLISTT_ACPI_TABLES, "ACPI tables for x86" },
|
|
{ BLOBLISTT_TPM_EVLOG, "TPM event log defined by TCG EFI" },
|
|
{ BLOBLISTT_TPM_CRB_BASE, "TPM Command Response Buffer address" },
|
|
|
|
/* BLOBLISTT_AREA_FIRMWARE */
|
|
{ BLOBLISTT_TPM2_TCG_LOG, "TPM v2 log space" },
|
|
{ BLOBLISTT_TCPA_LOG, "TPM log space" },
|
|
{ BLOBLISTT_ACPI_GNVS, "ACPI GNVS" },
|
|
|
|
/* BLOBLISTT_AREA_TF */
|
|
{ BLOBLISTT_OPTEE_PAGABLE_PART, "OP-TEE pagable part" },
|
|
|
|
/* BLOBLISTT_AREA_OTHER */
|
|
{ BLOBLISTT_INTEL_VBT, "Intel Video-BIOS table" },
|
|
{ BLOBLISTT_SMBIOS_TABLES, "SMBIOS tables for x86" },
|
|
{ BLOBLISTT_VBOOT_CTX, "Chrome OS vboot context" },
|
|
{ BLOBLISTT_CONTROL_FDT, "Control FDT" },
|
|
|
|
/* BLOBLISTT_PROJECT_AREA */
|
|
{ BLOBLISTT_U_BOOT_SPL_HANDOFF, "SPL hand-off" },
|
|
{ BLOBLISTT_VBE, "VBE" },
|
|
{ BLOBLISTT_U_BOOT_VIDEO, "SPL video handoff" },
|
|
|
|
/* BLOBLISTT_VENDOR_AREA */
|
|
};
|
|
|
|
const char *bloblist_tag_name(enum bloblist_tag_t tag)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(tag_name); i++) {
|
|
if (tag_name[i].tag == tag)
|
|
return tag_name[i].name;
|
|
}
|
|
|
|
return "invalid";
|
|
}
|
|
|
|
static struct bloblist_rec *bloblist_first_blob(struct bloblist_hdr *hdr)
|
|
{
|
|
if (hdr->used_size <= hdr->hdr_size)
|
|
return NULL;
|
|
return (struct bloblist_rec *)((void *)hdr + hdr->hdr_size);
|
|
}
|
|
|
|
static inline uint rec_hdr_size(struct bloblist_rec *rec)
|
|
{
|
|
return (rec->tag_and_hdr_size & BLOBLISTR_HDR_SIZE_MASK) >>
|
|
BLOBLISTR_HDR_SIZE_SHIFT;
|
|
}
|
|
|
|
static inline uint rec_tag(struct bloblist_rec *rec)
|
|
{
|
|
return (rec->tag_and_hdr_size & BLOBLISTR_TAG_MASK) >>
|
|
BLOBLISTR_TAG_SHIFT;
|
|
}
|
|
|
|
static ulong bloblist_blob_end_ofs(struct bloblist_hdr *hdr,
|
|
struct bloblist_rec *rec)
|
|
{
|
|
ulong offset;
|
|
|
|
offset = (void *)rec - (void *)hdr;
|
|
/*
|
|
* The data section of next TE should start from an address aligned
|
|
* to 1 << hdr->align_log2.
|
|
*/
|
|
offset += rec_hdr_size(rec) + rec->size;
|
|
offset = round_up(offset + rec_hdr_size(rec), 1 << hdr->align_log2);
|
|
offset -= rec_hdr_size(rec);
|
|
|
|
return offset;
|
|
}
|
|
|
|
static struct bloblist_rec *bloblist_next_blob(struct bloblist_hdr *hdr,
|
|
struct bloblist_rec *rec)
|
|
{
|
|
ulong offset = bloblist_blob_end_ofs(hdr, rec);
|
|
|
|
if (offset >= hdr->used_size)
|
|
return NULL;
|
|
return (struct bloblist_rec *)((void *)hdr + offset);
|
|
}
|
|
|
|
#define foreach_rec(_rec, _hdr) \
|
|
for (_rec = bloblist_first_blob(_hdr); \
|
|
_rec; \
|
|
_rec = bloblist_next_blob(_hdr, _rec))
|
|
|
|
static struct bloblist_rec *bloblist_findrec(uint tag)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
struct bloblist_rec *rec;
|
|
|
|
if (!hdr)
|
|
return NULL;
|
|
|
|
foreach_rec(rec, hdr) {
|
|
if (rec_tag(rec) == tag)
|
|
return rec;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static int bloblist_addrec(uint tag, int size, int align_log2,
|
|
struct bloblist_rec **recp)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
struct bloblist_rec *rec;
|
|
int data_start, aligned_start, new_alloced;
|
|
|
|
if (!align_log2)
|
|
align_log2 = BLOBLIST_BLOB_ALIGN_LOG2;
|
|
|
|
/* Figure out where the new data will start */
|
|
data_start = map_to_sysmem(hdr) + hdr->used_size + sizeof(*rec);
|
|
|
|
/* Align the address and then calculate the offset from used size */
|
|
aligned_start = ALIGN(data_start, 1U << align_log2) - data_start;
|
|
|
|
/* If we need to create a dummy record, create it */
|
|
if (aligned_start) {
|
|
int void_size = aligned_start - sizeof(*rec);
|
|
struct bloblist_rec *vrec;
|
|
int ret;
|
|
|
|
ret = bloblist_addrec(BLOBLISTT_VOID, void_size, 0, &vrec);
|
|
if (ret)
|
|
return log_msg_ret("void", ret);
|
|
|
|
/* start the record after that */
|
|
data_start = map_to_sysmem(hdr) + hdr->used_size + sizeof(*vrec);
|
|
}
|
|
|
|
/* Calculate the new allocated total */
|
|
new_alloced = data_start - map_to_sysmem(hdr) +
|
|
ALIGN(size, 1U << align_log2);
|
|
|
|
if (new_alloced > hdr->total_size) {
|
|
log_err("Failed to allocate %x bytes\n", size);
|
|
log_err("Used size=%x, total size=%x\n",
|
|
hdr->used_size, hdr->total_size);
|
|
return log_msg_ret("bloblist add", -ENOSPC);
|
|
}
|
|
rec = (void *)hdr + hdr->used_size;
|
|
|
|
rec->tag_and_hdr_size = tag | sizeof(*rec) << BLOBLISTR_HDR_SIZE_SHIFT;
|
|
rec->size = size;
|
|
|
|
/* Zero the record data */
|
|
memset((void *)rec + rec_hdr_size(rec), '\0', rec->size);
|
|
|
|
hdr->used_size = new_alloced;
|
|
*recp = rec;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int bloblist_ensurerec(uint tag, struct bloblist_rec **recp, int size,
|
|
int align_log2)
|
|
{
|
|
struct bloblist_rec *rec;
|
|
|
|
rec = bloblist_findrec(tag);
|
|
if (rec) {
|
|
if (size && size != rec->size) {
|
|
*recp = rec;
|
|
return -ESPIPE;
|
|
}
|
|
} else {
|
|
int ret;
|
|
|
|
ret = bloblist_addrec(tag, size, align_log2, &rec);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
*recp = rec;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void *bloblist_find(uint tag, int size)
|
|
{
|
|
void *blob = NULL;
|
|
int blob_size;
|
|
|
|
blob = bloblist_get_blob(tag, &blob_size);
|
|
|
|
if (size && size != blob_size)
|
|
return NULL;
|
|
|
|
return blob;
|
|
}
|
|
|
|
void *bloblist_get_blob(uint tag, int *sizep)
|
|
{
|
|
struct bloblist_rec *rec;
|
|
|
|
rec = bloblist_findrec(tag);
|
|
if (!rec)
|
|
return NULL;
|
|
|
|
*sizep = rec->size;
|
|
|
|
return (void *)rec + rec_hdr_size(rec);
|
|
}
|
|
|
|
void *bloblist_add(uint tag, int size, int align_log2)
|
|
{
|
|
struct bloblist_rec *rec;
|
|
|
|
if (bloblist_addrec(tag, size, align_log2, &rec))
|
|
return NULL;
|
|
|
|
return (void *)rec + rec_hdr_size(rec);
|
|
}
|
|
|
|
int bloblist_ensure_size(uint tag, int size, int align_log2, void **blobp)
|
|
{
|
|
struct bloblist_rec *rec;
|
|
int ret;
|
|
|
|
ret = bloblist_ensurerec(tag, &rec, size, align_log2);
|
|
if (ret)
|
|
return ret;
|
|
*blobp = (void *)rec + rec_hdr_size(rec);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void *bloblist_ensure(uint tag, int size)
|
|
{
|
|
struct bloblist_rec *rec;
|
|
|
|
if (bloblist_ensurerec(tag, &rec, size, 0))
|
|
return NULL;
|
|
|
|
return (void *)rec + rec_hdr_size(rec);
|
|
}
|
|
|
|
int bloblist_ensure_size_ret(uint tag, int *sizep, void **blobp)
|
|
{
|
|
struct bloblist_rec *rec;
|
|
int ret;
|
|
|
|
ret = bloblist_ensurerec(tag, &rec, *sizep, 0);
|
|
if (ret == -ESPIPE)
|
|
*sizep = rec->size;
|
|
else if (ret)
|
|
return ret;
|
|
*blobp = (void *)rec + rec_hdr_size(rec);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int bloblist_resize_rec(struct bloblist_hdr *hdr,
|
|
struct bloblist_rec *rec,
|
|
int new_size)
|
|
{
|
|
int expand_by; /* Number of bytes to expand by (-ve to contract) */
|
|
int new_alloced;
|
|
ulong next_ofs; /* Offset of the record after @rec */
|
|
|
|
expand_by = ALIGN(new_size - rec->size, BLOBLIST_BLOB_ALIGN);
|
|
new_alloced = ALIGN(hdr->used_size + expand_by, BLOBLIST_BLOB_ALIGN);
|
|
if (new_size < 0) {
|
|
log_debug("Attempt to shrink blob size below 0 (%x)\n",
|
|
new_size);
|
|
return log_msg_ret("size", -EINVAL);
|
|
}
|
|
if (new_alloced > hdr->total_size) {
|
|
log_err("Failed to allocate %x bytes\n", new_size);
|
|
log_err("Used size=%x, total size=%x\n",
|
|
hdr->used_size, hdr->total_size);
|
|
return log_msg_ret("alloc", -ENOSPC);
|
|
}
|
|
|
|
/* Move the following blobs up or down, if this is not the last */
|
|
next_ofs = bloblist_blob_end_ofs(hdr, rec);
|
|
if (next_ofs != hdr->used_size) {
|
|
memmove((void *)hdr + next_ofs + expand_by,
|
|
(void *)hdr + next_ofs, new_alloced - next_ofs);
|
|
}
|
|
hdr->used_size = new_alloced;
|
|
|
|
/* Zero the new part of the blob */
|
|
if (expand_by > 0) {
|
|
memset((void *)rec + rec_hdr_size(rec) + rec->size, '\0',
|
|
new_size - rec->size);
|
|
}
|
|
|
|
/* Update the size of this blob */
|
|
rec->size = new_size;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bloblist_resize(uint tag, int new_size)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
struct bloblist_rec *rec;
|
|
int ret;
|
|
|
|
rec = bloblist_findrec(tag);
|
|
if (!rec)
|
|
return log_msg_ret("find", -ENOENT);
|
|
ret = bloblist_resize_rec(hdr, rec, new_size);
|
|
if (ret)
|
|
return log_msg_ret("resize", ret);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static u32 bloblist_calc_chksum(struct bloblist_hdr *hdr)
|
|
{
|
|
u8 chksum;
|
|
|
|
chksum = table_compute_checksum(hdr, hdr->used_size);
|
|
chksum += hdr->chksum;
|
|
|
|
return chksum;
|
|
}
|
|
|
|
int bloblist_new(ulong addr, uint size, uint flags, uint align_log2)
|
|
{
|
|
struct bloblist_hdr *hdr;
|
|
|
|
if (size < sizeof(*hdr))
|
|
return log_ret(-ENOSPC);
|
|
if (addr & (BLOBLIST_ALIGN - 1))
|
|
return log_ret(-EFAULT);
|
|
hdr = map_sysmem(addr, size);
|
|
memset(hdr, '\0', sizeof(*hdr));
|
|
hdr->version = BLOBLIST_VERSION;
|
|
hdr->hdr_size = sizeof(*hdr);
|
|
hdr->flags = flags;
|
|
hdr->magic = BLOBLIST_MAGIC;
|
|
hdr->used_size = hdr->hdr_size;
|
|
hdr->total_size = size;
|
|
hdr->align_log2 = align_log2 ? align_log2 : BLOBLIST_BLOB_ALIGN_LOG2;
|
|
hdr->chksum = 0;
|
|
gd->bloblist = hdr;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bloblist_check(ulong addr, uint size)
|
|
{
|
|
struct bloblist_hdr *hdr;
|
|
u32 chksum;
|
|
|
|
hdr = map_sysmem(addr, sizeof(*hdr));
|
|
if (hdr->magic != BLOBLIST_MAGIC)
|
|
return log_msg_ret("Bad magic", -ENOENT);
|
|
if (hdr->version != BLOBLIST_VERSION)
|
|
return log_msg_ret("Bad version", -EPROTONOSUPPORT);
|
|
if (!hdr->total_size || (size && hdr->total_size > size))
|
|
return log_msg_ret("Bad total size", -EFBIG);
|
|
if (hdr->used_size > hdr->total_size)
|
|
return log_msg_ret("Bad used size", -ENOENT);
|
|
if (hdr->hdr_size != sizeof(struct bloblist_hdr))
|
|
return log_msg_ret("Bad header size", -ENOENT);
|
|
|
|
chksum = bloblist_calc_chksum(hdr);
|
|
if (hdr->chksum != chksum) {
|
|
log_err("Checksum %x != %x\n", hdr->chksum, chksum);
|
|
return log_msg_ret("Bad checksum", -EIO);
|
|
}
|
|
gd->bloblist = hdr;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bloblist_finish(void)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
|
|
hdr->chksum = bloblist_calc_chksum(hdr);
|
|
log_debug("Finished bloblist size %lx at %lx\n", (ulong)hdr->used_size,
|
|
(ulong)map_to_sysmem(hdr));
|
|
|
|
return 0;
|
|
}
|
|
|
|
ulong bloblist_get_base(void)
|
|
{
|
|
return map_to_sysmem(gd->bloblist);
|
|
}
|
|
|
|
ulong bloblist_get_size(void)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
|
|
return hdr->used_size;
|
|
}
|
|
|
|
ulong bloblist_get_total_size(void)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
|
|
return hdr->total_size;
|
|
}
|
|
|
|
void bloblist_get_stats(ulong *basep, ulong *tsizep, ulong *usizep)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
|
|
*basep = map_to_sysmem(gd->bloblist);
|
|
*tsizep = hdr->total_size;
|
|
*usizep = hdr->used_size;
|
|
}
|
|
|
|
static void show_value(const char *prompt, ulong value)
|
|
{
|
|
printf("%s:%*s %-5lx ", prompt, 10 - (int)strlen(prompt), "", value);
|
|
print_size(value, "\n");
|
|
}
|
|
|
|
void bloblist_show_stats(void)
|
|
{
|
|
ulong base, tsize, usize;
|
|
|
|
bloblist_get_stats(&base, &tsize, &usize);
|
|
printf("base: %lx\n", base);
|
|
show_value("total size", tsize);
|
|
show_value("used size", usize);
|
|
show_value("free", tsize - usize);
|
|
}
|
|
|
|
void bloblist_show_list(void)
|
|
{
|
|
struct bloblist_hdr *hdr = gd->bloblist;
|
|
struct bloblist_rec *rec;
|
|
|
|
printf("%-8s %8s Tag Name\n", "Address", "Size");
|
|
for (rec = bloblist_first_blob(hdr); rec;
|
|
rec = bloblist_next_blob(hdr, rec)) {
|
|
printf("%08lx %8x %4x %s\n",
|
|
(ulong)map_to_sysmem((void *)rec + rec_hdr_size(rec)),
|
|
rec->size, rec_tag(rec),
|
|
bloblist_tag_name(rec_tag(rec)));
|
|
}
|
|
}
|
|
|
|
int bloblist_reloc(void *to, uint to_size)
|
|
{
|
|
struct bloblist_hdr *hdr;
|
|
|
|
if (!to_size)
|
|
return 0;
|
|
|
|
if (to_size < gd->bloblist->total_size)
|
|
return -ENOSPC;
|
|
|
|
memcpy(to, gd->bloblist, gd->bloblist->total_size);
|
|
hdr = to;
|
|
hdr->total_size = to_size;
|
|
gd->bloblist = to;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bloblist_init(void)
|
|
{
|
|
bool fixed = IS_ENABLED(CONFIG_BLOBLIST_FIXED);
|
|
int ret = -ENOENT;
|
|
ulong addr, size;
|
|
bool expected;
|
|
|
|
/**
|
|
* We don't expect to find an existing bloblist in the first phase of
|
|
* U-Boot that runs. The only way to receive the address of an allocated
|
|
* bloblist from a previous stage is with standard passage, so without
|
|
* that, the bloblist must be at a fixed address.
|
|
*/
|
|
expected = (fixed && !xpl_is_first_phase()) || passage_valid();
|
|
if (xpl_prev_phase() == PHASE_TPL && !IS_ENABLED(CONFIG_TPL_BLOBLIST))
|
|
expected = false;
|
|
if (fixed) {
|
|
addr = IF_ENABLED_INT(CONFIG_BLOBLIST_FIXED,
|
|
CONFIG_BLOBLIST_ADDR);
|
|
|
|
if (xpl_phase() == PHASE_BOARD_F &&
|
|
IS_ENABLED(CONFIG_SPL_BLOBLIST_RELOC)) {
|
|
ulong addr = IF_ENABLED_INT(CONFIG_SPL_BLOBLIST_RELOC,
|
|
CONFIG_SPL_BLOBLIST_RELOC_ADDR);
|
|
|
|
log_debug("Using bloblist at %lx\n", addr);
|
|
bloblist_reloc(map_sysmem(addr, 0),
|
|
bloblist_get_total_size());
|
|
}
|
|
log_debug("bloblist addr=%lx\n", addr);
|
|
}
|
|
|
|
size = CONFIG_BLOBLIST_SIZE;
|
|
if (expected) {
|
|
if (passage_valid()) {
|
|
addr = gd_passage_bloblist();
|
|
size = 0;
|
|
}
|
|
ret = bloblist_check(addr, size);
|
|
if (ret) {
|
|
log_warning("Expected bloblist at %lx not found (err=%d)\n",
|
|
addr, ret);
|
|
} else {
|
|
/* Get the real size, if it is not what we expected */
|
|
size = gd->bloblist->total_size;
|
|
}
|
|
}
|
|
if (ret) {
|
|
/*
|
|
* If we don't have a bloblist from a fixed address, or the one
|
|
* in the fixed address is not valid. we must allocate the
|
|
* memory for it now.
|
|
*/
|
|
if (CONFIG_IS_ENABLED(BLOBLIST_ALLOC)) {
|
|
void *ptr = memalign(BLOBLIST_ALIGN, size);
|
|
|
|
if (!ptr)
|
|
return log_msg_ret("alloc", -ENOMEM);
|
|
addr = map_to_sysmem(ptr);
|
|
} else if (!fixed) {
|
|
return log_msg_ret("!fixed", ret);
|
|
}
|
|
log_debug("Creating new bloblist size %lx at %lx\n", size,
|
|
addr);
|
|
ret = bloblist_new(addr, size, 0, 0);
|
|
} else {
|
|
log_debug("Found existing bloblist size %lx at %lx\n", size,
|
|
addr);
|
|
}
|
|
if (ret)
|
|
return log_msg_ret("ini", ret);
|
|
gd->flags |= GD_FLG_BLOBLIST_READY;
|
|
|
|
#ifdef DEBUG
|
|
bloblist_show_stats();
|
|
bloblist_show_list();
|
|
#endif
|
|
|
|
return 0;
|
|
}
|