public inbox for linux-efi@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] EFI updates for v7.0
@ 2026-02-09 18:48 Ard Biesheuvel
  2026-02-10  5:08 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Ard Biesheuvel @ 2026-02-09 18:48 UTC (permalink / raw)
  To: torvalds; +Cc: linux-efi, Ard Biesheuvel

Hi Linus,

Some work going on in the EFI framebuffer area this cycle. Please pull.


The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8:

  Linux 6.19-rc1 (2025-12-14 16:05:07 +1200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next-for-v7.0

for you to fetch changes up to c5a8f13f1e476c90f4bc184a58751d3e7ff88f2b:

  efi: Support EDID information (2025-12-16 14:40:51 +0100)

----------------------------------------------------------------
EFI updates for v7.0

- Quirk the broken EFI framebuffer geometry on the Valve Steam Deck

- Capture the EDID information of the primary display also on non-x86
  EFI systems when booting via the EFI stub.

----------------------------------------------------------------
Thomas Zimmermann (7):
      efi: earlycon: Reduce number of references to global screen_info
      efi: sysfb_efi: Reduce number of references to global screen_info
      sysfb: Add struct sysfb_display_info
      sysfb: Replace screen_info with sysfb_primary_display
      sysfb: Pass sysfb_primary_display to devices
      sysfb: Move edid_info into sysfb_primary_display
      efi: Support EDID information

Tvrtko Ursulin (4):
      efi: sysfb_efi: Replace open coded swap with the macro
      efi: sysfb_efi: Fix lfb_linelength calculation when applying quirks
      efi: sysfb_efi: Convert swap width and height quirk to a callback
      efi: sysfb_efi: Fix efidrmfb and simpledrmfb on Valve Steam Deck

 arch/arm64/kernel/image-vars.h                 |   2 +-
 arch/loongarch/kernel/efi.c                    |  31 +++---
 arch/loongarch/kernel/image-vars.h             |   2 +-
 arch/riscv/kernel/image-vars.h                 |   2 +-
 arch/x86/kernel/kexec-bzimage64.c              |   4 +-
 arch/x86/kernel/setup.c                        |  16 ++-
 arch/x86/video/video-common.c                  |   4 +-
 drivers/firmware/efi/earlycon.c                |  42 ++++----
 drivers/firmware/efi/efi-init.c                |  38 +++----
 drivers/firmware/efi/efi.c                     |   4 +-
 drivers/firmware/efi/libstub/Makefile          |   2 +-
 drivers/firmware/efi/libstub/efi-stub-entry.c  |  17 +--
 drivers/firmware/efi/libstub/efi-stub.c        |  41 ++++---
 drivers/firmware/efi/libstub/efistub.h         |   7 +-
 drivers/firmware/efi/libstub/primary_display.c |  56 ++++++++++
 drivers/firmware/efi/libstub/screen_info.c     |  53 ---------
 drivers/firmware/efi/libstub/zboot.c           |   4 +-
 drivers/firmware/efi/sysfb_efi.c               | 144 ++++++++++++++++++-------
 drivers/firmware/sysfb.c                       |  13 +--
 drivers/firmware/sysfb_simplefb.c              |   2 +-
 drivers/gpu/drm/sysfb/efidrm.c                 |  14 +--
 drivers/gpu/drm/sysfb/vesadrm.c                |  14 +--
 drivers/hv/vmbus_drv.c                         |   6 +-
 drivers/pci/vgaarb.c                           |   4 +-
 drivers/video/Kconfig                          |   8 +-
 drivers/video/fbdev/core/fbmon.c               |   8 +-
 drivers/video/fbdev/efifb.c                    |  10 +-
 drivers/video/fbdev/vesafb.c                   |  10 +-
 drivers/video/fbdev/vga16fb.c                  |   8 +-
 drivers/video/screen_info_pci.c                |   5 +-
 include/linux/efi.h                            |   9 +-
 include/linux/screen_info.h                    |   2 -
 include/linux/sysfb.h                          |  23 +++-
 include/video/edid.h                           |   4 -
 34 files changed, 358 insertions(+), 251 deletions(-)
 create mode 100644 drivers/firmware/efi/libstub/primary_display.c
 delete mode 100644 drivers/firmware/efi/libstub/screen_info.c

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] EFI updates for v7.0
  2026-02-09 18:48 Ard Biesheuvel
@ 2026-02-10  5:08 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2026-02-10  5:08 UTC (permalink / raw)
  To: Ard Biesheuvel; +Cc: torvalds, linux-efi, Ard Biesheuvel

The pull request you sent on Mon,  9 Feb 2026 19:48:05 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next-for-v7.0

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0c61526621ec1916527d6f6226d8a466340cca22

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] EFI updates for v7.0
@ 2026-04-16  7:10 Ard Biesheuvel
  2026-04-16 15:20 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Ard Biesheuvel @ 2026-04-16  7:10 UTC (permalink / raw)
  To: torvalds; +Cc: linux-efi, Ard Biesheuvel

Hi Linus,

Again not a busy cycle for EFI, just some minor tweaks and bug fixes.

Please pull.


The following changes since commit 1f318b96cc84d7c2ab792fcc0bfd42a7ca890681:

  Linux 7.0-rc3 (2026-03-08 16:56:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next-for-v7.1

for you to fetch changes up to 48a428215782321b56956974f23593e40ce84b7a:

  efi/capsule-loader: fix incorrect sizeof in phys array reallocation (2026-04-10 18:14:21 +0200)

----------------------------------------------------------------
EFI updates for v7.0

- Enable boot graphics resource table (BGRT) on Xen/x86

- Correct a misguided assumption in the memory attributes table sanity
  check

- Start tagging efi_mem_reserve()'d regions as MEMBLOCK_RSRV_KERN

- Some other minor fixes and cleanups

----------------------------------------------------------------
Ard Biesheuvel (4):
      efi: Drop unused efi_range_is_wc() function
      efi/memattr: Fix thinko in table size sanity check
      memblock: Permit existing reserved regions to be marked RSRV_KERN
      efi: Tag memblock reservations of boot services regions as RSRV_KERN

Ben Dooks (1):
      efi: libstub: fix type of fdt 32 and 64bit variables

Marek Marczykowski-Górecki (2):
      efi: make efi_mem_type() and efi_mem_attributes() work on Xen PV
      efi: Enable BGRT loading under Xen

Thomas Huth (1):
      efi/capsule-loader: fix incorrect sizeof in phys array reallocation

 drivers/firmware/efi/capsule-loader.c |  2 +-
 drivers/firmware/efi/efi-bgrt.c       |  7 +++++--
 drivers/firmware/efi/efi.c            | 31 ++++++++++++-----------------
 drivers/firmware/efi/libstub/fdt.c    | 12 ++++++------
 drivers/firmware/efi/memattr.c        | 37 ++++++++++++++++++++++++++---------
 include/linux/efi.h                   | 21 --------------------
 include/linux/memblock.h              |  1 +
 mm/memblock.c                         | 15 ++++++++++++++
 8 files changed, 68 insertions(+), 58 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] EFI updates for v7.0
  2026-04-16  7:10 [GIT PULL] EFI updates for v7.0 Ard Biesheuvel
@ 2026-04-16 15:20 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2026-04-16 15:20 UTC (permalink / raw)
  To: Ard Biesheuvel; +Cc: torvalds, linux-efi, Ard Biesheuvel

The pull request you sent on Thu, 16 Apr 2026 09:10:02 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next-for-v7.1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/948ef73f7ec39622ebd27bba4e94d78a983109f6

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-04-16 15:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16  7:10 [GIT PULL] EFI updates for v7.0 Ard Biesheuvel
2026-04-16 15:20 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2026-02-09 18:48 Ard Biesheuvel
2026-02-10  5:08 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox