mbox series

[0/7] EFI stub cleanup work

Message ID 20241220112214.2598872-9-ardb+git@google.com
Headers show
Series EFI stub cleanup work | expand

Message

Ard Biesheuvel Dec. 20, 2024, 11:22 a.m. UTC
From: Ard Biesheuvel <ardb@kernel.org>

Some code cleanup for the EFI stub, to drop obsolete code, and to switch
to newer and more ergonomic APIs for managing pool allocations and EFI
handle buffers.

No functional changes intended, except for the UGA removal.

Ard Biesheuvel (7):
  x86/efistub: Drop long obsolete UGA support
  efi/libstub: Use C99-style for loop to traverse handle buffer
  efi/libstub: Simplify GOP handling code
  efi/libstub: Refactor and cleanup GOP resolution picker code
  efi/libstub: Simplify PCI I/O handle buffer traversal
  efi/libstub: Use cleanup helpers for freeing copies of the memory map
  efi/libstub: Use __free() helper for pool deallocations

 arch/x86/include/asm/efi.h                     |   3 +
 arch/x86/platform/efi/efi.c                    |   2 -
 drivers/firmware/efi/libstub/efi-stub-helper.c |   9 +-
 drivers/firmware/efi/libstub/efi-stub.c        |  49 ++-
 drivers/firmware/efi/libstub/efistub.h         |  16 +-
 drivers/firmware/efi/libstub/gop.c             | 323 ++++++++------------
 drivers/firmware/efi/libstub/kaslr.c           |   4 +-
 drivers/firmware/efi/libstub/mem.c             |  20 +-
 drivers/firmware/efi/libstub/pci.c             |  34 +--
 drivers/firmware/efi/libstub/randomalloc.c     |   4 +-
 drivers/firmware/efi/libstub/relocate.c        |  10 +-
 drivers/firmware/efi/libstub/x86-stub.c        | 164 ++--------
 include/linux/efi.h                            |   2 -
 13 files changed, 198 insertions(+), 442 deletions(-)