Skip to content

Instantly share code, notes, and snippets.

@xypron
Last active February 10, 2018 09:24
Show Gist options
  • Select an option

  • Save xypron/e0c93e10bafc665262ba2767ebce712b to your computer and use it in GitHub Desktop.

Select an option

Save xypron/e0c93e10bafc665262ba2767ebce712b to your computer and use it in GitHub Desktop.

EFI on U-Boot

The Unified Extensible Firmware Interface Specification (UEFI) [1] has become the default for booting on AArch64 and x86 systems. It provides a stable API for the interaction between drivers and applications with the firmware. The API comprises access to block storage, network, and console to name a few. The Linux kernel and boot loaders like Grub or the FreeBSD loader can be executed.

Building for EFI

The UEFI standard supports only little endian systems. The EFI support can be activated for ARM and x86 by specifying

CONFIG_CMD_BOOTEFI=y
CONFIG_EFI_LOADER=y

in the .config file.

Support for attaching virtual block devices, e.g. iSCSI drives connected by the loaded EFI application [3], requires

CONFIG_BLK=y
CONFIG_PARTITIONS=y

Executing an EFI binary

The bootefi command is used to start EFI applications or to install EFI drivers. It takes two parameters

bootefi <image address> [fdt address]
  • image address - the memory address of the EFI binary
  • fdt address - the memory address of the flattened device tree

Below you find the output of an example session starting Grub.

=> load mmc 0:2 ${fdt_addr_r} boot/dtb
29830 bytes read in 14 ms (2 MiB/s)
=> load mmc 0:1 ${kernel_addr_r} efi/debian/grubaa64.efi
reading efi/debian/grubaa64.efi
120832 bytes read in 7 ms (16.5 MiB/s)
=> bootefi ${kernel_addr_r} ${fdt_addr_r}

The environment variable 'bootargs' is passed as load options in the EFI system table. The Linux kernel EFI stub uses the load options as command line arguments.

Executing the boot manager

The UEFI specfication forsees to define boot entries and boot sequence via EFI variables. Booting according to these variables is possible via

bootefi bootmgr [fdt address]

As of U-Boot v2018.03 EFI variables are not persisted and cannot be set at runtime.

Executing the built in hello world application

A hello world EFI application can be built with

CONFIG_CMD_BOOTEFI_HELLO_COMPILE=y

It can be embedded into the U-Boot binary with

CONFIG_CMD_BOOTEFI_HELLO=y

The bootefi command is used to start the embedded hello world application.

bootefi hello [fdt address]

Below you find the output of an example session.

=> bootefi hello ${fdtcontroladdr}
## Starting EFI application at 01000000 ...
WARNING: using memory device/image path, this may confuse some payloads!
Hello, world!
Running on UEFI 2.7
Have SMBIOS table
Have device tree
Load options: root=/dev/sdb3 init=/sbin/init rootwait ro
## Application terminated, r = 0

Executing the built-in selftest

An EFI selftest suite can be embedded in U-Boot by building with

CONFIG_SELFTEST=y

For testing the EFI implementation bootefi command can be used to start the selftest.

bootefi selftest [fdt address]

The environment variable 'efi_selftest' can be used to select a single test. If it is not provided all tests are executed except those marked as 'on request'. If the environment variable is set to 'list' a list of all tests is shown.

Below you find the output of an example session.

=> setenv efi_selftest simple network protocol
=> bootefi selftest
Testing EFI API implementation
Selected test: 'simple network protocol'
Setting up 'simple network protocol'
Setting up 'simple network protocol' succeeded
Executing 'simple network protocol'
DHCP Discover
DHCP reply received from 192.168.76.2 (52:55:c0:a8:4c:02)
  as broadcast message.
Executing 'simple network protocol' succeeded
Tearing down 'simple network protocol'
Tearing down 'simple network protocol' succeeded
Boot services terminated
Summary: 0 failures
Preparing for reset. Press any key.

The EFI life cycle

After the U-Boot platform has been initialized the UEFI API provides two kinds of services

  • boot services and
  • runtime services.

The API can be extended by loading EFI drivers which come in two variants

  • boot drivers and
  • runtime drivers.

EFI drivers are installed with U-Boot's bootefi command. With the same command EFI applications can be executed.

Loaded images of EFI drivers stay in memory after returning to U-Boot while loaded images of applications are removed from memory.

An EFI application (e.g. an operating system) that wants to take full control of the system calls ExitBootServices. After an EFI application calls ExitBootServices

  • boot services are not available anymore
  • timer events are stopped
  • the memory used by U-Boot except for runtime services is released
  • the memory used by boot time drivers is released

So this is a point of no return. Afterwards it can only return to U-Boot by rebooting.

The EFI object model

EFI offers a flexible and expandable object model. The objects in the EFI API are devices, drivers, and loaded images. These objects are referenced by handles.

The interfaces implemented by the objects are referred to as protocols. These are identified by GUIDs. They can be installed and uninstalled by calling the appropriate boot services.

Handles are created by the InstallProtocolInterface or the InstallMultipleProtocolinterfaces service if NULL is passed as handle.

Handles are deleted when the last protocol has been removed with the UninstallProtocolInterface or the UninstallMultipleProtocolInterfaces service.

Devices offer the EFI_DEVICE_PATH_PROTOCOL. A device path is the concatenation of device nodes. By their device paths all devices of a system are arranged in a tree.

Drivers offer the EFI_DRIVER_BINDING_PROTOCOL. This protocol is used to connect a drivers to devices (which are referenced as controllers in this context).

Loaded images offer the EFI_LOADED_IMAGE_PROTOCOL. This protocol provides meta information about the image and the unload callback function.

The EFI events

In the UEFI terminology an event is a data object referencing a notification function which is queued for calling when the event is signaled. The following types of events exist:

  • periodic and single shot timer events
  • exit boot services events, triggered by calling the ExitBootServices() service
  • virtual address change events (not yet implemented in U-Boot)
  • events that are only triggered programmatically

Events can be created with the CreateEvent service and deleted with CloseEvent service.

The EFI driver model

The device for which a driver is installed is called the controller.

A driver is specific for a single protocol installed on a device. To install a driver on a device the ConnectController service is called.

The EFI_DRIVER_BINDING_PROTOCOL of the driver has three functions:

  • supported - determines if the driver is compatible with the device
  • start - installs the driver by opening the relevant protocol with attribute EFI_OPEN_PROTOCOL_BY_DRIVER
  • stop - uninstalls the driver

The driver may create child controllers (child devices). E.g. a driver for block IO devices will create the device handles for the partitions. The child controllers will open the supported protocol with attribute EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.

A driver can be detached from a device with the DisconnectController service.

EFI uclass

An EFI uclass driver (lib/efi_driver/efi_uclass.c) has been created that maintains a list of all EFI drivers supplied by U-Boot. The uclass is responsible for creating a handle for each of the drivers and installing and handling the EFI_DRIVER_BINDING_PROTOCOL.

U-Boot devices mapped as EFI devices

Some of the U-Boot devices are mapped as EFI devices

  • block IO devices
  • console
  • graphical output
  • network adapter

As of U-Boot 2018.03 the logic for doing this is hard coded.

The development target is to integrate the setup of these EFI devices with the U-Boot driver model. So when a U-Boot device is discovered a handle should be created and the device path protocol and the relevant IO protocol should be installed. The EFI driver then would be attached by calling ConnectController. When a U-Boot device is removed DisconnectController should be called.

EFI devices mapped as U-Boot devices

EFI drivers and applications may create new (virtual) devices, install a protocol and call the ConnectController service. Now the matching EFI driver can be determined.

It is the task of the EFI driver to create a corresponding U-Boot device and to proxy calls for this U-Boot device to the controller.

In U-Boot 2018.03 this has only been implemented for block IO devices.

EFI block IO driver

The EFI block IO driver supports devices exposing the EFI_BLOCK_IO_PROTOCOL.

When connected it creates a new U-Boot block IO device with interface type IF_TYPE_EFI, adds child controllers mapping the partitions, and installs the EFI_SIMPLE_FILE_SYSTEM_PROTOCOL on these. This can be used together with the software iPXE to boot from iSCSI network drives [3].

The driver is only available if U-Boot is configured with

CONFIG_BLK=y
CONFIG_PARTITIONS=y

Open issues as of U-Boot 2018.03

  • unimplemented or incompletely implemented boot services

    • Exit - call unload function, unload applications only
    • ReinstallProtocolInterface
    • UnloadImage
  • unimplemented events

    • EVT_RUNTIME
    • EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE
  • data model

    • manage events in a linked list
    • manage configuration tables in a linked list
  • EFI drivers

    • support DisconnectController for EFI block devices.
  • Sandbox support for CONFIG_EFI_LOADER

  • persisted EFI variables

Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment