All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Grall <julien@xen.org>
To: xen-devel@lists.xenproject.org
Cc: marco.solieri@minervasys.tech, lucmiccio@gmail.com,
	carlo.nonato@minervasys.tech, Julien Grall <jgrall@amazon.com>,
	Stefano Stabellini <sstabellini@kernel.org>,
	Julien Grall <julien@xen.org>,
	Bertrand Marquis <bertrand.marquis@arm.com>,
	Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
Subject: [RFC v2 03/12] xen/arm32: head: Introduce an helper to flush the TLBs
Date: Sat, 22 Oct 2022 16:04:13 +0100	[thread overview]
Message-ID: <20221022150422.17707-4-julien@xen.org> (raw)
In-Reply-To: <20221022150422.17707-1-julien@xen.org>

From: Julien Grall <jgrall@amazon.com>

The sequence for flushing the TLBs is 4 instruction long and often
require an explanation how it works.

So create an helper and use it in the boot code (switch_ttbr() is left
alone for now).

Note that in secondary_switched, we were also flushing the instruction
cache and branch predictor. Neither of them was necessary because:
    * We are only supporting IVIPT cache on arm32, so the instruction
      cache flush is only necessary when executable code is modified.
      None of the boot code is doing that.
    * The instruction cache is not invalidated and misprediction is not
      a problem at boot.

Signed-off-by: Julien Grall <jgrall@amazon.com>
---
 xen/arch/arm/arm32/head.S | 31 ++++++++++++++++++-------------
 1 file changed, 18 insertions(+), 13 deletions(-)

diff --git a/xen/arch/arm/arm32/head.S b/xen/arch/arm/arm32/head.S
index 163bd6596dec..aeaa8d105aeb 100644
--- a/xen/arch/arm/arm32/head.S
+++ b/xen/arch/arm/arm32/head.S
@@ -66,6 +66,21 @@
         add   \rb, \rb, r10
 .endm
 
+/*
+ * Flush local TLBs
+ *
+ * tmp1:    Scratch register
+ *
+ * See asm/arm32/flushtlb.h for the explanation of the sequence.
+ */
+.macro flush_xen_tlb_local tmp1
+        /* See asm/arm32/flushtlb.h for the explanation of the sequence. */
+        dsb   nshst
+        mcr   CP32(\tmp1, TLBIALLH)
+        dsb   nsh
+        isb
+.endm
+
 /*
  * Common register usage in this file:
  *   r0  -
@@ -233,11 +248,7 @@ secondary_switched:
         mcrr  CP64(r4, r5, HTTBR)
         dsb
         isb
-        mcr   CP32(r0, TLBIALLH)     /* Flush hypervisor TLB */
-        mcr   CP32(r0, ICIALLU)      /* Flush I-cache */
-        mcr   CP32(r0, BPIALL)       /* Flush branch predictor */
-        dsb                          /* Ensure completion of TLB+BP flush */
-        isb
+        flush_xen_tlb_local r0
 
 #ifdef CONFIG_EARLY_PRINTK
         /* Use a virtual address to access the UART. */
@@ -530,8 +541,7 @@ enable_mmu:
          * The state of the TLBs is unknown before turning on the MMU.
          * Flush them to avoid stale one.
          */
-        mcr   CP32(r0, TLBIALLH)     /* Flush hypervisor TLBs */
-        dsb   nsh
+        flush_xen_tlb_local r0
 
         /* Write Xen's PT's paddr into the HTTBR */
         load_paddr r0, boot_pgtable
@@ -606,12 +616,7 @@ remove_identity_mapping:
         strd  r2, r3, [r0, r1]
 
 identity_mapping_removed:
-        /* See asm/arm32/flushtlb.h for the explanation of the sequence. */
-        dsb   nshst
-        mcr   CP32(r0, TLBIALLH)
-        dsb   nsh
-        isb
-
+        flush_xen_tlb_local r0
         mov   pc, lr
 ENDPROC(remove_identity_mapping)
 
-- 
2.37.1



  parent reply	other threads:[~2022-10-22 15:04 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-22 15:04 [RFC v2 00/12] xen/arm: Don't switch TTBR while the MMU is on Julien Grall
2022-10-22 15:04 ` [RFC v2 01/12] xen/arm: Clean-up the memory layout Julien Grall
2022-10-24 14:59   ` Luca Fancellu
2022-10-25  9:21   ` Michal Orzel
2022-10-25 10:31     ` Julien Grall
2022-10-25 10:36       ` Michal Orzel
2022-10-25 20:07         ` Julien Grall
2022-10-22 15:04 ` [RFC v2 02/12] xen/arm32: head: Jump to the runtime mapping in enable_mmu() Julien Grall
2022-10-25  9:45   ` Michal Orzel
2022-10-25 10:05     ` Julien Grall
2022-10-22 15:04 ` Julien Grall [this message]
2022-10-25  9:53   ` [RFC v2 03/12] xen/arm32: head: Introduce an helper to flush the TLBs Michal Orzel
2022-10-25 10:41     ` Julien Grall
2022-10-22 15:04 ` [RFC v2 04/12] xen/arm32: head: Remove restriction where to load Xen Julien Grall
2022-10-25 11:56   ` Luca Fancellu
2022-11-17 20:18     ` Julien Grall
2022-11-25 15:50       ` Luca Fancellu
2022-12-06 18:29         ` Julien Grall
2022-10-22 15:04 ` [RFC v2 05/12] xen/arm32: head: Widen the use of the temporary mapping Julien Grall
2022-10-22 15:04 ` [RFC v2 06/12] xen/arm: Enable use of dump_pt_walk() early during boot Julien Grall
2022-10-22 15:04 ` [RFC v2 07/12] xen/arm64: Rework the memory layout Julien Grall
2022-10-22 15:04 ` [RFC v2 08/12] xen/arm: mm: Allow xen_pt_update() to work with the current root table Julien Grall
2022-10-22 15:04 ` [RFC v2 09/12] xen/arm: mm: Allow dump_hyp_walk() to work on " Julien Grall
2022-10-22 15:04 ` [RFC v2 10/12] xen/arm64: mm: Introduce helpers to prepare/enable/disable the identity mapping Julien Grall
2022-10-22 15:04 ` [RFC v2 11/12] xen/arm64: mm: Rework switch_ttbr() Julien Grall
2022-10-22 15:04 ` [RFC v2 12/12] xen/arm64: smpboot: Directly switch to the runtime page-tables Julien Grall
2022-10-24 15:39 ` [RFC v2 00/12] xen/arm: Don't switch TTBR while the MMU is on Xenia Ragiadakou
2022-10-24 15:46   ` Julien Grall

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221022150422.17707-4-julien@xen.org \
    --to=julien@xen.org \
    --cc=Volodymyr_Babchuk@epam.com \
    --cc=bertrand.marquis@arm.com \
    --cc=carlo.nonato@minervasys.tech \
    --cc=jgrall@amazon.com \
    --cc=lucmiccio@gmail.com \
    --cc=marco.solieri@minervasys.tech \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.