From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932531AbcBAWHP (ORCPT ); Mon, 1 Feb 2016 17:07:15 -0500 Received: from mail-wm0-f44.google.com ([74.125.82.44]:32982 "EHLO mail-wm0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753866AbcBAWHM (ORCPT ); Mon, 1 Feb 2016 17:07:12 -0500 From: Matt Fleming To: Ingo Molnar , "H . Peter Anvin" , Thomas Gleixner Cc: linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org, Matt Fleming , Andy Shevchenko , Ard Biesheuvel , Geliang Tang , Josh Triplett , Laszlo Ersek , Leif Lindholm , =?UTF-8?q?M=C3=B4she=20van=20der=20Sterre?= , Peter Jones , Robert Elliott , Taku Izumi Subject: [GIT PULL 00/14] EFI changes for v4.6 Date: Mon, 1 Feb 2016 22:06:54 +0000 Message-Id: <1454364428-494-1-git-send-email-matt@codeblueprint.co.uk> X-Mailer: git-send-email 2.6.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Folks, please pull the following changes for v4.6. This mostly consists of cleanups but the patches to execute EFI runtime services with interrupts enabled would benefit from a thorough baking in linux-next. I'm sending this pull nice and early so that we can shake out any bugs before the next merge window. The following changes since commit 753b11ef8e92a1c1bbe97f2a5ec14bdd1ef2e6fe: x86/efi: Setup separate EFI page tables in kexec paths (2016-01-21 21:01:34 +0100) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git tags/efi-next for you to fetch changes up to 921c2e93a5d7f14a803663389b9541f14744d048: x86/efi: Print size in binary units in efi_print_memmap (2016-02-01 20:52:49 +0000) ---------------------------------------------------------------- * Run EFI runtime services with interrupts enabled for the benefit of uniprocessor machines with slow variable stores and because there's no good reason to disable them since we don't invoke runtime services from IRQ code paths - Ard Biesheuvel * Use the existing to_efivar_entry() accessor function in the efivars code instead of open-coding it - Geliang Tang * Align the ACPI BGRT driver more closely with how Windows interprets the 'status' field so we can use the BGRT image - Môshe van der Sterre * checkpatch.pl cleanup of the GUIDs in efi.h which has the added benefit of making them more closely resemble how they're presented in the UEFI specification - Peter Jones * Refactor the x86 EFI memory map printing code and add improved support for printing Persistent Memory entries - Robert Elliott, Andy Shevchenko ---------------------------------------------------------------- Ard Biesheuvel (7): efi: Expose non-blocking set_variable() wrapper to efivars efi: Remove redundant efi_set_variable_nonblocking prototype efi: runtime-wrappers: Add a nonblocking version of QueryVariableInfo efi: Add nonblocking option to efi_query_variable_store() efi: runtime-wrappers: Remove out of date comment regarding in_nmi() efi: runtime-wrapper: Get rid of the rtc_lock spinlock efi: runtime-wrappers: Run UEFI Runtime Services with interrupts enabled Geliang Tang (1): efivars: Use to_efivar_entry Môshe van der Sterre (1): x86/efi-bgrt: Don't ignore the BGRT if the 'valid' bit is 0 Peter Jones (1): efi: Make checkpatch complain less about efi.h GUID additions Robert Elliott (4): x86/efi: Show actual ending addresses in efi_print_memmap efi: Add NV memory attribute efi: Add Persistent Memory type name x86/efi: Print size in binary units in efi_print_memmap arch/x86/platform/efi/efi-bgrt.c | 10 +-- arch/x86/platform/efi/efi.c | 25 +++++-- arch/x86/platform/efi/quirks.c | 33 ++++++++- drivers/firmware/efi/efi.c | 9 ++- drivers/firmware/efi/efivars.c | 2 +- drivers/firmware/efi/runtime-wrappers.c | 115 ++++++++++++-------------------- drivers/firmware/efi/vars.c | 16 ++++- include/linux/efi.h | 85 ++++++++++++++--------- 8 files changed, 173 insertions(+), 122 deletions(-)