]> git.ipfire.org Git - people/ms/u-boot.git/commit
efi_driver: EFI block driver
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 21 Jan 2018 18:29:30 +0000 (19:29 +0100)
committerAlexander Graf <agraf@suse.de>
Mon, 22 Jan 2018 22:09:14 +0000 (23:09 +0100)
commit05ef48a2484be4d1d232534b919c8e9b4bcfaecd
treed219ce66e9cb5f2b613eb63840047788d63b01c8
parentba45c9e4e1fc98eed69fd778c68e04b21ebbd326
efi_driver: EFI block driver

This patch provides
* a uclass for EFI drivers
* a EFI driver for block devices

For each EFI driver the uclass
* creates a handle
* adds the driver binding protocol

The uclass provides the bind, start, and stop entry points for the driver
binding protocol.

In bind() and stop() it checks if the controller implements the protocol
supported by the EFI driver. In the start() function it calls the bind()
function of the EFI driver. In the stop() function it destroys the child
controllers.

The EFI block driver binds to controllers implementing the block io
protocol.

When the bind function of the EFI block driver is called it creates a
new U-Boot block device. It installs child handles for all partitions and
installs the simple file protocol on these.

The read and write functions of the EFI block driver delegate calls to the
controller that it is bound to.

A usage example is as following:

U-Boot loads the iPXE snp.efi executable. iPXE connects an iSCSI drive and
exposes a handle with the block IO protocol. It calls ConnectController.

Now the EFI block driver installs the partitions with the simple file
protocol.

iPXE uses the simple file protocol to load Grub or the Linux Kernel.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
[agraf: add comment on calloc len]
Signed-off-by: Alexander Graf <agraf@suse.de>
cmd/bootefi.c
drivers/block/blk-uclass.c
include/blk.h
include/config_fallbacks.h
include/dm/uclass-id.h
include/efi_driver.h [new file with mode: 0644]
include/efi_loader.h
lib/Makefile
lib/efi_driver/Makefile [new file with mode: 0644]
lib/efi_driver/efi_block_device.c [new file with mode: 0644]
lib/efi_driver/efi_uclass.c [new file with mode: 0644]