linuxboot/dxe/fvloader.c

68 lines
1.3 KiB
C
Raw Normal View History

/** \file
* Tell DxeCore about an alternate firmware volume in the ROM.
*
* This allows LinuxBoot to locate the Linux kernel and initrd
* outside of the normal DXE volume, which is quite small on some
* systems.
*/
// #define VOLUME_ADDRESS 0xFF840000 // Winterfell
// #define VOLUME_LENGTH 0x20000
#define VOLUME_ADDRESS 0xFF500000
#define VOLUME_LENGTH 0x00400000
#include "serial.h"
//#include "efi.h"
#include <efi/efi.h>
#include "efidxe.h"
static void hexdump(uint64_t p, unsigned len)
{
for(unsigned i = 0 ; i < len ; i += 8)
serial_hex(*(const uint64_t*)(p+i), 16);
}
EFI_STATUS
EFIAPI
efi_main(
EFI_HANDLE image,
EFI_SYSTEM_TABLE * const st
)
{
(void) image;
//gST = st;
//gBS = gST->BootServices;
//gRT = gST->RuntimeServices;
const EFI_DXE_SERVICES * dxe_services = efi_find_table(st, 0x5ad34ba);
if (!dxe_services)
{
serial_string("FvLoader: No DXE system table found...\r\n");
return 0x80000001;
}
serial_string("FvLoader: adding firmware volume 0x");
serial_hex(VOLUME_ADDRESS, 8);
EFI_HANDLE handle;
int rc = dxe_services->ProcessFirmwareVolume(
(void*) VOLUME_ADDRESS,
VOLUME_LENGTH,
&handle
);
if (rc == 0)
{
serial_string("FVLoader: mapped 0x");
serial_hex(VOLUME_LENGTH, 8);
} else {
serial_string("FvLoader: error rc="); serial_hex(rc, 8);
hexdump(VOLUME_ADDRESS, 128);
}
return rc;
}