Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1520394
| From | Matt Fleming <matt@codeblueprint.co.uk> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [GIT PULL 0/9] EFI changes for v4.10 |
| Date | 2016-11-12 22:40 +0100 |
| Message-ID | <sCObL-7JU-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Folks, please pull the following v4.10 material. There isn't a huge
amount of stuff here. The biggest change is the EFI dev path parser
code from Lukas to get thunderbolt working on his macbook.
[ The thunderbolt patch has been ACK'd by Andreas and given the OK to
take it through the EFI tree ]
The following changes since commit a75dcb5848359f488c32c0aef8711d9bd37a77b8:
efi/efivar_ssdt_load: Don't return success on allocation failure (2016-10-18 17:11:20 +0200)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-next
for you to fetch changes up to 9110bc036062fcd31994a35540d63f8deed22efa:
thunderbolt: Use Device ROM retrieved from EFI (2016-11-12 21:14:43 +0000)
----------------------------------------------------------------
* Fix an allocation bug in the generic EFI libstub where alignment
and adjusted size isn't taken into account - Roy Franz
* Update the EFI MAINTAINERS entry to include ARM and arm64 files and
directories - Ard Biesheuvel
* Add new feature to seed the RNG from the stashed value returned by
EFI_RNG_PROTOCOL in EFI stub and wire up for ARM/arm64 - Ard Biesheuvel
* Retrieve Apple device properties from within the EFI stub to fully
support thunderbolt devices on Apple Macbooks - Lukas Wunner
----------------------------------------------------------------
Ard Biesheuvel (4):
MAINTAINERS: Add ARM and arm64 EFI specific files to EFI subsystem
efi: Add support for seeding the RNG from a UEFI config table
efi/libstub: Add random.c to ARM build
efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table
Lukas Wunner (4):
efi: Add device path parser
efi: Allow bitness-agnostic protocol calls
x86/efi: Retrieve and assign Apple device properties
thunderbolt: Use Device ROM retrieved from EFI
Roy Franz (1):
efi/libstub: Fix allocation size calculations
Documentation/kernel-parameters.txt | 5 +
MAINTAINERS | 6 +-
arch/arm/include/asm/efi.h | 3 +
arch/arm64/include/asm/efi.h | 3 +
arch/x86/boot/compressed/eboot.c | 65 +++++++
arch/x86/include/asm/efi.h | 16 +-
arch/x86/include/uapi/asm/bootparam.h | 1 +
drivers/firmware/efi/Kconfig | 18 ++
drivers/firmware/efi/Makefile | 2 +
drivers/firmware/efi/apple-properties.c | 248 +++++++++++++++++++++++++
drivers/firmware/efi/dev-path-parser.c | 203 ++++++++++++++++++++
drivers/firmware/efi/efi.c | 72 +++++++
drivers/firmware/efi/libstub/Makefile | 4 +-
drivers/firmware/efi/libstub/arm-stub.c | 2 +
drivers/firmware/efi/libstub/efi-stub-helper.c | 33 ++--
drivers/firmware/efi/libstub/efistub.h | 11 ++
drivers/firmware/efi/libstub/random.c | 56 +++++-
drivers/thunderbolt/Kconfig | 1 +
drivers/thunderbolt/eeprom.c | 43 +++++
drivers/thunderbolt/switch.c | 2 +-
include/linux/efi.h | 46 +++++
21 files changed, 808 insertions(+), 32 deletions(-)
create mode 100644 drivers/firmware/efi/apple-properties.c
create mode 100644 drivers/firmware/efi/dev-path-parser.c
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[GIT PULL 0/9] EFI changes for v4.10 Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[PATCH 3/9] efi: Add support for seeding the RNG from a UEFI config table Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] efi: Add support for seeding the RNG from a UEFI config table tip-bot for Ard Biesheuvel <tipbot@zytor.com> - 2016-11-13 10:10 +0100
[PATCH 4/9] efi/libstub: Add random.c to ARM build Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] efi/libstub: Add random.c to ARM build tip-bot for Ard Biesheuvel <tipbot@zytor.com> - 2016-11-13 10:10 +0100
[PATCH 2/9] MAINTAINERS: Add ARM and arm64 EFI specific files to EFI subsystem Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] MAINTAINERS: Add ARM and arm64 EFI specific files to EFI subsystem tip-bot for Ard Biesheuvel <tipbot@zytor.com> - 2016-11-13 10:10 +0100
[PATCH 7/9] efi: Allow bitness-agnostic protocol calls Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] efi: Allow bitness-agnostic protocol calls tip-bot for Lukas Wunner <tipbot@zytor.com> - 2016-11-13 10:10 +0100
[PATCH 8/9] x86/efi: Retrieve and assign Apple device properties Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] x86/efi: Retrieve and assign Apple device properties tip-bot for Lukas Wunner <tipbot@zytor.com> - 2016-11-13 10:20 +0100
[PATCH 5/9] efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
Re: [PATCH 5/9] efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table Ingo Molnar <mingo@kernel.org> - 2016-11-13 08:20 +0100
Re: [PATCH 5/9] efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-14 14:30 +0100
Re: [PATCH 5/9] efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table Ingo Molnar <mingo@kernel.org> - 2016-11-14 15:00 +0100
Re: [PATCH 5/9] efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-14 15:10 +0100
Re: [PATCH 5/9] efi/arm*: libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table Lukas Wunner <lukas@wunner.de> - 2016-11-14 16:10 +0100
[tip:efi/core] thunderbolt, efi: Fix Kconfig dependencies tip-bot for Lukas Wunner <tipbot@zytor.com> - 2016-11-15 12:00 +0100
[tip:efi/core] efi/arm*/libstub: Invoke EFI_RNG_PROTOCOL to seed the UEFI RNG table tip-bot for Ard Biesheuvel <tipbot@zytor.com> - 2016-11-13 10:10 +0100
[PATCH 1/9] efi/libstub: Fix allocation size calculations Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] efi/libstub: Fix allocation size calculations tip-bot for Roy Franz <tipbot@zytor.com> - 2016-11-13 10:10 +0100
[PATCH 9/9] thunderbolt: Use Device ROM retrieved from EFI Matt Fleming <matt@codeblueprint.co.uk> - 2016-11-12 22:40 +0100
[tip:efi/core] thunderbolt: Use Device ROM retrieved from EFI tip-bot for Lukas Wunner <tipbot@zytor.com> - 2016-11-13 10:20 +0100
csiph-web