[PATCH v6 0/5] xen/arm: Don't switch TTBR while the MMU is on

Julien Grall posted 5 patches 1 year, 1 month ago
Test gitlab-ci failed
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20230302145916.44035-1-julien@xen.org
There is a newer version of this series
xen/arch/arm/arm32/head.S           |  86 +++------------
xen/arch/arm/arm32/smpboot.c        |   4 +
xen/arch/arm/arm64/Makefile         |   1 +
xen/arch/arm/arm64/head.S           |  82 +++++++-------
xen/arch/arm/arm64/mm.c             | 161 ++++++++++++++++++++++++++++
xen/arch/arm/arm64/smpboot.c        |  15 ++-
xen/arch/arm/include/asm/arm32/mm.h |   4 +
xen/arch/arm/include/asm/arm64/mm.h |  13 +++
xen/arch/arm/include/asm/config.h   |  34 ++++--
xen/arch/arm/include/asm/mm.h       |   2 +
xen/arch/arm/include/asm/setup.h    |  11 ++
xen/arch/arm/include/asm/smp.h      |   1 +
xen/arch/arm/mm.c                   |  19 ++--
xen/arch/arm/smpboot.c              |   1 +
14 files changed, 306 insertions(+), 128 deletions(-)
create mode 100644 xen/arch/arm/arm64/mm.c
[PATCH v6 0/5] xen/arm: Don't switch TTBR while the MMU is on
Posted by Julien Grall 1 year, 1 month ago
From: Julien Grall <jgrall@amazon.com>

Hi all,

Currently, Xen on Arm will switch TTBR whilst the MMU is on. This is
similar to replacing existing mappings with new ones. So we need to
follow a break-before-make sequence.

When switching the TTBR, we need to temporarily disable the MMU
before updating the TTBR. This means the page-tables must contain an
identity mapping.

The current memory layout is not very flexible and has an higher chance
to clash with the identity mapping.

On Arm64, we have plenty of unused virtual address space Therefore, we can
simply reshuffle the layout to leave the first part of the virtual
address space empty.

On Arm32, the virtual address space is already quite full. Even if we
find space, it would be necessary to have a dynamic layout. So a
different approach will be necessary. The chosen one is to have
a temporary mapping that will be used to jumped from the ID mapping
to the runtime mapping (or vice versa). The temporary mapping will
be overlapping with the domheap area as it should not be used when
switching on/off the MMU.

The Arm32 part is not yet addressed and will be handled in a follow-up
series.

After this series, most of Xen page-table code should be compliant
with the Arm Arm. The last two issues I am aware of are:
 - domheap: Mappings are replaced without using the Break-Before-Make
   approach.
 - The cache is not cleaned/invalidated when updating the page-tables
   with Data cache off (like during early boot).

The long term plan is to get rid of boot_* page tables and then
directly use the runtime pages. This means for coloring, we will
need to build the pages in the relocated Xen rather than the current
Xen.

For convience, I pushed a branch with everything applied:

https://xenbits.xen.org/git-http/people/julieng/xen-unstable.git
branch boot-pt-rework-v6

Cheers,

Julien Grall (5):
  xen/arm32: head: Widen the use of the temporary mapping
  xen/arm64: Rework the memory layout
  xen/arm64: mm: Introduce helpers to prepare/enable/disable the
    identity mapping
  xen/arm64: mm: Rework switch_ttbr()
  xen/arm64: smpboot: Directly switch to the runtime page-tables

 xen/arch/arm/arm32/head.S           |  86 +++------------
 xen/arch/arm/arm32/smpboot.c        |   4 +
 xen/arch/arm/arm64/Makefile         |   1 +
 xen/arch/arm/arm64/head.S           |  82 +++++++-------
 xen/arch/arm/arm64/mm.c             | 161 ++++++++++++++++++++++++++++
 xen/arch/arm/arm64/smpboot.c        |  15 ++-
 xen/arch/arm/include/asm/arm32/mm.h |   4 +
 xen/arch/arm/include/asm/arm64/mm.h |  13 +++
 xen/arch/arm/include/asm/config.h   |  34 ++++--
 xen/arch/arm/include/asm/mm.h       |   2 +
 xen/arch/arm/include/asm/setup.h    |  11 ++
 xen/arch/arm/include/asm/smp.h      |   1 +
 xen/arch/arm/mm.c                   |  19 ++--
 xen/arch/arm/smpboot.c              |   1 +
 14 files changed, 306 insertions(+), 128 deletions(-)
 create mode 100644 xen/arch/arm/arm64/mm.c

-- 
2.39.1