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=-14.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 2D1DAC04FF3 for ; Mon, 24 May 2021 16:50:16 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id DFD7E61401 for ; Mon, 24 May 2021 16:50:15 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DFD7E61401 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=XaNRf09ik0A+/aXILnfQkPAn0KxxXvGPRgB8VA6iT7E=; b=CCqb9CaqV1ipYJ ALX6z2hCF+dyTf08KtDyMRwFg4jplNJD14UYtIlBD9adT9cce4svLOJ+ga5ChPu3MxUfpx+dI/EQV /54t2uEDF7+vpfVw784wsthQQAfts8rOlIhP9Ke/GZmTpNRDL/ys1gA9Tp0gDKe2x9uV3cGfnP/nB BttnGNCHtY2MHtQFOsVgtdSXOxyzNUkBZylOzGWyrbFi2yt9i4JDB0f4TSTW+GewNNCFMyjFKIAny NHDm++KW5tc8xWThUI51YFeBR5+8wnScTMUG3a31jPAToANDlRA9GkqcYp5j+ene+QI2WXoulJFHu 2YLsmHYX6qAqF7PTV/hA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1llDkX-001A5Y-8C; Mon, 24 May 2021 16:48:18 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1ll7LN-000oZ3-UW for linux-arm-kernel@lists.infradead.org; Mon, 24 May 2021 09:57:55 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3979C31B; Mon, 24 May 2021 02:57:36 -0700 (PDT) Received: from C02TD0UTHF1T.local (unknown [10.57.38.161]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id B89503F719; Mon, 24 May 2021 02:57:33 -0700 (PDT) Date: Mon, 24 May 2021 10:57:30 +0100 From: Mark Rutland To: Fuad Tabba Cc: linux-arm-kernel@lists.infradead.org, will@kernel.org, catalin.marinas@arm.com, maz@kernel.org, ardb@kernel.org, james.morse@arm.com, alexandru.elisei@arm.com, suzuki.poulose@arm.com, robin.murphy@arm.com Subject: Re: [PATCH v4 04/18] arm64: Do not enable uaccess for flush_icache_range Message-ID: <20210524095730.GB1040@C02TD0UTHF1T.local> References: <20210524083001.2586635-1-tabba@google.com> <20210524083001.2586635-5-tabba@google.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210524083001.2586635-5-tabba@google.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210524_025754_100166_F4BC50C4 X-CRM114-Status: GOOD ( 23.12 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, May 24, 2021 at 09:29:47AM +0100, Fuad Tabba wrote: > __flush_icache_range works on kernel addresses, and doesn't need > uaccess. The existing code is a side-effect of its current > implementation with __flush_cache_user_range fallthrough. > > Instead of fallthrough to share the code, use a common macro for > the two where the caller specifies an optional fixup label if > user access is needed. If provided, this label would be used to > generate an extable entry. > > Simplify the code to use dcache_by_line_op, instead of > replicating much of its functionality. > > No functional change intended. > Possible performance impact due to the reduced number of > instructions. > > Reported-by: Catalin Marinas > Reported-by: Will Deacon > Reported-by: Mark Rutland > Link: https://lore.kernel.org/linux-arch/20200511110014.lb9PEahJ4hVOYrbwIb_qUHXyNy9KQzNFdb_I3YlzY6A@z/ > Link: https://lore.kernel.org/linux-arm-kernel/20210521121846.GB1040@C02TD0UTHF1T.local/ > Signed-off-by: Fuad Tabba Acked-by: Mark Rutland Mark. > --- > arch/arm64/mm/cache.S | 57 ++++++++++++++++++++++++++----------------- > 1 file changed, 34 insertions(+), 23 deletions(-) > > diff --git a/arch/arm64/mm/cache.S b/arch/arm64/mm/cache.S > index 2d881f34dd9d..7c54bcbf5a36 100644 > --- a/arch/arm64/mm/cache.S > +++ b/arch/arm64/mm/cache.S > @@ -14,6 +14,34 @@ > #include > #include > > +/* > + * __flush_cache_range(start,end) [fixup] > + * > + * Ensure that the I and D caches are coherent within specified region. > + * This is typically used when code has been written to a memory region, > + * and will be executed. > + * > + * - start - virtual start address of region > + * - end - virtual end address of region > + * - fixup - optional label to branch to on user fault > + */ > +.macro __flush_cache_range, fixup > +alternative_if ARM64_HAS_CACHE_IDC > + dsb ishst > + b .Ldc_skip_\@ > +alternative_else_nop_endif > + mov x2, x0 > + sub x3, x1, x0 > + dcache_by_line_op cvau, ish, x2, x3, x4, x5, \fixup > +.Ldc_skip_\@: > +alternative_if ARM64_HAS_CACHE_DIC > + isb > + b .Lic_skip_\@ > +alternative_else_nop_endif > + invalidate_icache_by_line x0, x1, x2, x3, \fixup > +.Lic_skip_\@: > +.endm > + > /* > * flush_icache_range(start,end) > * > @@ -25,7 +53,9 @@ > * - end - virtual end address of region > */ > SYM_FUNC_START(__flush_icache_range) > - /* FALLTHROUGH */ > + __flush_cache_range > + ret > +SYM_FUNC_END(__flush_icache_range) > > /* > * __flush_cache_user_range(start,end) > @@ -39,34 +69,15 @@ SYM_FUNC_START(__flush_icache_range) > */ > SYM_FUNC_START(__flush_cache_user_range) > uaccess_ttbr0_enable x2, x3, x4 > -alternative_if ARM64_HAS_CACHE_IDC > - dsb ishst > - b 7f > -alternative_else_nop_endif > - dcache_line_size x2, x3 > - sub x3, x2, #1 > - bic x4, x0, x3 > -1: > -user_alt 9f, "dc cvau, x4", "dc civac, x4", ARM64_WORKAROUND_CLEAN_CACHE > - add x4, x4, x2 > - cmp x4, x1 > - b.lo 1b > - dsb ish > > -7: > -alternative_if ARM64_HAS_CACHE_DIC > - isb > - b 8f > -alternative_else_nop_endif > - invalidate_icache_by_line x0, x1, x2, x3, 9f > -8: mov x0, #0 > + __flush_cache_range 2f > + mov x0, xzr > 1: > uaccess_ttbr0_disable x1, x2 > ret > -9: > +2: > mov x0, #-EFAULT > b 1b > -SYM_FUNC_END(__flush_icache_range) > SYM_FUNC_END(__flush_cache_user_range) > > /* > -- > 2.31.1.818.g46aad6cb9e-goog > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel