linuxboot/dxe
Devon Bautista 323eb0a152
Use fiano create-ffs when USE_UTK is specified
Signed-off-by: Devon Bautista <devonb@lanl.gov>
2021-11-15 19:10:26 +00:00
..
efi fix the prototype for CreateEventEx and reduce the number of headers required 2018-08-09 07:20:07 -04:00
efidxe.h
efifv.c
efifv.h
elf_x86_64_efi.lds
fvloader.c
hello.c
linuxboot.c
Makefile Use fiano create-ffs when USE_UTK is specified 2021-11-15 19:10:26 +00:00
README.md
serial.h

Overview

These are small DXE modules that help bootstrap the LinuxBoot kernel. They depend on the gnu-efi-devel package for the headers.

Developing DXE

Calling conventions

The EFI environment uses the Microsoft ABI, so gcc must be told which functions are called from or call into the EFI system. This is done with the EFIAPI macro, which annotates the functions with the gcc x86 extension __attribute__((ms_abi))

The entry point into the DXE module must be named efi_main() and should have the prototype:

EFI_STATUS
EFIAPI
efi_main(
	EFI_HANDLE image,
	EFI_SYSTEM_TABLE * st
);

Any callbacks that are registered, such as for the ExitBootServices event, must also be flagged with EFIAPI.

Memory allocation

There are lots of pools of memory allocation during EFI, some of which are cleared when the OS starts, some of which stay resident, etc. In general you can request memory with:

    void * buf;

    if (gST->BootServices->AllocatePool(
            EfiBootServicesData,
            len,
            &buf
    ) != 0) {
	// handle an error...
}