From mboxrd@z Thu Jan 1 00:00:00 1970 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=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham 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 CBB51C34047 for ; Wed, 19 Feb 2020 09:43:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9DB3324672 for ; Wed, 19 Feb 2020 09:43:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582105429; bh=sIKEUXEhrhihy/PCD1g07Ji9azmc+leKwztylDMz8vU=; h=From:To:Cc:Subject:Date:List-ID:From; b=YYz3CY9o0JFMMazbvT56kz19nhHwjxiScsIUQ3UMWqfcNfUXOc7qluIy95zX57649 nx09xGnxHxNefuX7+KsErBt2jh/6egD4mXLI19BV9GFymLk1jFc8nLKYYgYtPDrM34 qs8zliuVfdvi9SKFUI/4owJfhtS3W4mqF7mXjwqo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726270AbgBSJnt (ORCPT ); Wed, 19 Feb 2020 04:43:49 -0500 Received: from mail.kernel.org ([198.145.29.99]:56116 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726210AbgBSJnt (ORCPT ); Wed, 19 Feb 2020 04:43:49 -0500 Received: from e123331-lin.home (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 DAC682464E; Wed, 19 Feb 2020 09:43:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582105428; bh=sIKEUXEhrhihy/PCD1g07Ji9azmc+leKwztylDMz8vU=; h=From:To:Cc:Subject:Date:From; b=flinfKnP+5qymhAG170Z1tht57sV66eRALIlZAi+gNMk/XJN+keNg08Zp5ECcE8C4 M40Ai6i6DjX1JyP+m6izFSO+jQqZnjyYZJXzHqGdQVryrxm/MkFsJNiiUBuY3GwdwR j/zWFTme30Xn95b7diwH9se5voC0BjU9Sk702bC4= From: Ard Biesheuvel To: linux-efi@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, Ard Biesheuvel , Russell King , Marc Zyngier , Nicolas Pitre , Catalin Marinas , Tony Lindgren Subject: [PATCH v2 0/4] ARM: decompressor: use by-VA cache maintenance for v7 cores Date: Wed, 19 Feb 2020 10:43:36 +0100 Message-Id: <20200219094340.16597-1-ardb@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-efi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-efi@vger.kernel.org While making changes to the EFI stub startup code, I noticed that we are still doing set/way maintenance on the caches when booting on v7 cores. This works today on VMs by virtue of the fact that KVM traps set/way ops and cleans the whole address space by VA on behalf of the guest, and on most v7 hardware, the set/way ops are in fact sufficient when only one core is running, as there usually is no system cache. But on systems like SynQuacer, for which 32-bit firmware is available, the current cache maintenance only pushes the data out to the L3 system cache, where it is not visible to the CPU once it turns the MMU and caches off. So instead, switch to the by-VA cache maintenance that the architecture requires for v7 and later (and ARM1176, as a side effect). Changes since v1: - include the EFI patch that was sent out separately before (#1) - split the preparatory work to pass the region to clean in r0/r1 in a EFI specific one and one for the decompressor - this way, the first two patches can go on a stable branch that is shared between the ARM tree and the EFI tree - document the meaning of the values in r0/r1 upon entry to cache_clean_flush - take care to treat the region end address as exclusive - switch to clean+invalidate to align with the other implementations - drop some code that manages the stack pointer value before calling cache_clean_flush(), which is no longer necessary - take care to clean the entire region that is covered by the relocated zImage if it needs to relocate itself before decompressing https://git.kernel.org/pub/scm/linux/kernel/git/ardb/linux.git/log/?h=arm32-efi-cache-ops Cc: Russell King Cc: Marc Zyngier Cc: Nicolas Pitre Cc: Catalin Marinas Cc: Tony Lindgren Ard Biesheuvel (4): efi/arm: work around missing cache maintenance in decompressor handover efi/arm: pass start and end addresses to cache_clean_flush() ARM: decompressor: prepare cache_clean_flush for doing by-VA maintenance ARM: decompressor: switch to by-VA cache maintenance for v7 cores arch/arm/boot/compressed/head.S | 133 +++++++++++--------- 1 file changed, 74 insertions(+), 59 deletions(-) -- 2.17.1