]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Add kernel interfaces to call EFI Runtime Services.
authorkib <kib@FreeBSD.org>
Wed, 21 Sep 2016 11:31:58 +0000 (11:31 +0000)
committerkib <kib@FreeBSD.org>
Wed, 21 Sep 2016 11:31:58 +0000 (11:31 +0000)
commitdf422cbea30eb0d4db04c75d2b918b20298dcd39
tree750fd4761cf42fb878c75ebd556cc693c84d20e1
parent98f9f3d700fa4e7c44dc44786e05e790ec5aebb3
parente9e29e2686f2e778583cb441d73bf216d6594ae5
Add kernel interfaces to call EFI Runtime Services.

Runtime services require special execution environment for the call.
Besides that, OS must inform firmware about runtime virtual memory map
which will be active during the calls, with the SetVirtualAddressMap()
runtime call, done while the 1:1 mapping is still used.  There are two
complication: the SetVirtualAddressMap() effectively must be done from
loader, which needs to know kernel address map in advance.  More,
despite not explicitely mentioned in the specification, both 1:1 and
the map passed to SetVirtualAddressMap() must be active during the
SetVirtualAddressMap() call.  Second, there are buggy BIOSes which
require both mappings active during runtime calls as well, most likely
because they fail to identify all relocations to perform.

On amd64, we can get rid of both problems by providing 1:1 mapping for
the duration of runtime calls, by temprorary remapping user addresses.
As result, we avoid the need for loader to know about future kernel
address map, and avoid bugs in BIOSes.  Typically BIOS only maps
something in low 4G.  If not runtime bugs, we would take advantage of
the DMAP, as previous versions of this patch did.

Similar but more complicated trick can be used even for i386 and 32bit
runtime, if and when the EFI boot on i386 is supported.  We would need
a trampoline page, since potentially whole 4G of VA would be switched
on calls, instead of only userspace portion on amd64.

Context switches are disabled for the duration of the call, FPU access
is granted, and interrupts are not disabled.  The later is possible
because kernel is mapped during calls.

To test, the sysctl mib debug.efi_time is provided, setting it to 1
makes one call to EFI get_time() runtime service, on success the efitm
structure is printed to the control terminal.  Load efirt.ko, or add
EFIRT option to the kernel config, to enable code.

Discussed with: emaste, imp
Tested by: emaste (mac, qemu)
Sponsored by: The FreeBSD Foundation
MFC after: 2 weeks
sys/amd64/amd64/efirt.c
sys/amd64/conf/NOTES
sys/amd64/include/efi.h
sys/conf/files.amd64
sys/conf/options.amd64
sys/modules/Makefile
sys/modules/efirt/Makefile