From patchwork Sun May 17 12:57:47 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ard Biesheuvel X-Patchwork-Id: 194184 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.1 required=3.0 tests=DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A9AFC433E0 for ; Sun, 17 May 2020 12:58:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 16D1F207D4 for ; Sun, 17 May 2020 12:58:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1589720315; bh=Rnx4PKhR9N7HkKTSbEqSZqvHuX0lxDTfH9izm/bufok=; h=From:To:Cc:Subject:Date:List-ID:From; b=aDZEQL4KftoY37Japa9LY7DZXyv9YQpDZXz4FnL1ElAU2DdEsGlq8DX1YnSUtro7F +jddTfAv7J3oeQSUg28O7O0rGg3/1ytBFovdCMKQA+KQiCbRxzLzveSjtOv18PUzOJ ZlMsvAKJ2bE1Cke+VrBnaQXH1W7rm7dB2KeaCgdw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727983AbgEQM6b (ORCPT ); Sun, 17 May 2020 08:58:31 -0400 Received: from mail.kernel.org ([198.145.29.99]:51284 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727893AbgEQM6b (ORCPT ); Sun, 17 May 2020 08:58:31 -0400 Received: from e123331-lin.nice.arm.com (amontpellier-657-1-18-247.w109-210.abo.wanadoo.fr [109.210.65.247]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 893D2204EC; Sun, 17 May 2020 12:58:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1589720310; bh=Rnx4PKhR9N7HkKTSbEqSZqvHuX0lxDTfH9izm/bufok=; h=From:To:Cc:Subject:Date:From; b=Z1lNhALMlTRK79px1LZ6rb2gyoKcocn1rIV58uSDYBbpgE79hr5mnBXqHehXzpgHt s/bJpD3kj1GSAwTcI6SPg3CueSZwZFexx4TMGY01zm1FScj4seBbFyb/k1oAe30CLd 6XA77dQaVezUibpC0eDvv6aLgKghbd2ZXP40wq6Y= From: Ard Biesheuvel To: linux-efi@vger.kernel.org, Ingo Molnar , Thomas Gleixner Cc: Ard Biesheuvel , linux-kernel@vger.kernel.org, Arvind Sankar , Benjamin Thiel , Borislav Petkov , Dave Young , Heinrich Schuchardt , Javier Martinez Canillas , Jerry Snitselaar , Lenny Szubowicz , linux-acpi@vger.kernel.org, Loic Yhuel , Matthew Garrett , Mike Lothian , Punit Agrawal Subject: [GIT PULL 0/7] EFI fixes for v5.7 Date: Sun, 17 May 2020 14:57:47 +0200 Message-Id: <20200517125754.8934-1-ardb@kernel.org> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org The following changes since commit a088b858f16af85e3db359b6c6aaa92dd3bc0921: efi/x86: Revert struct layout change to fix kexec boot regression (2020-04-14 08:32:17 +0200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-urgent for you to fetch changes up to b4f1874c62168159fdb419ced4afc77c1b51c475: tpm: check event log version before reading final events (2020-05-17 11:46:50 +0200) ---------------------------------------------------------------- EFI fixes for v5.7-rcX: - fix EFI framebuffer earlycon for wide fonts - avoid filling screen_info with garbage if the EFI framebuffer is not available - fix a potential host tool build error due to a symbol clash on x86 - work around a EFI firmware bug regarding the binary format of the TPM final events table - fix a missing memory free by reworking the E820 table sizing routine to not do the allocation in the first place - add CPER parsing for firmware errors ---------------------------------------------------------------- Arvind Sankar (1): x86/boot: Mark global variables as static Benjamin Thiel (1): efi: Pull up arch-specific prototype efi_systab_show_arch() Dave Young (1): efi/earlycon: Fix early printk for wider fonts Heinrich Schuchardt (1): efi/libstub: Avoid returning uninitialized data from setup_graphics() Lenny Szubowicz (1): efi/libstub/x86: Avoid EFI map buffer alloc in allocate_e820() Loïc Yhuel (1): tpm: check event log version before reading final events Punit Agrawal (1): efi: cper: Add support for printing Firmware Error Record Reference arch/x86/boot/tools/build.c | 16 ++++----- drivers/firmware/efi/cper.c | 62 +++++++++++++++++++++++++++++++++ drivers/firmware/efi/earlycon.c | 14 ++++---- drivers/firmware/efi/efi.c | 5 +-- drivers/firmware/efi/libstub/arm-stub.c | 6 +++- drivers/firmware/efi/libstub/efistub.h | 13 +++++++ drivers/firmware/efi/libstub/mem.c | 2 -- drivers/firmware/efi/libstub/tpm.c | 5 +-- drivers/firmware/efi/libstub/x86-stub.c | 24 +++++-------- drivers/firmware/efi/tpm.c | 5 ++- include/linux/cper.h | 9 +++++ include/linux/efi.h | 2 ++ 12 files changed, 124 insertions(+), 39 deletions(-)