All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen: arm: setup sane EL1 state while building domain 0.
@ 2014-03-17 15:31 Ian Campbell
  2014-03-17 15:37 ` Julien Grall
  2014-03-18  3:22 ` Fu Wei
  0 siblings, 2 replies; 8+ messages in thread
From: Ian Campbell @ 2014-03-17 15:31 UTC (permalink / raw)
  To: xen-devel; +Cc: julien.grall, tim, Ian Campbell, Fu Wei, stefano.stabellini

The address translation functions used while building dom0 rely on certain EL1
state being configured. In particular they are subject to the behaviour of
SCTLR_EL1.M (stage 1 MMU enabled).

The Xen (and Linux) boot protocol require that the kernel be entered with the
MMU disabled but they don't say anything explicitly about exception levels
other than the one which is active when entering the kernels. Arguably the
protocol could be said to apply to all exception levels but in any case we
should cope with this and setup the EL1 state as necessary.

Fu Wei discovered this when booting Xen from grub.efi over UEFI, it's not
clear whether grub or UEFI is responsible for leaving stage 1 MMU enabled.

Reported-by: Fu Wei <fu.wei@linaro.org>
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Cc: Fu Wei <fu.wei@linaro.org>
---
Fu Wei, can I add your Tested-by here?
---
 xen/arch/arm/domain_build.c |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c
index 5ca2f15..ea47af5 100644
--- a/xen/arch/arm/domain_build.c
+++ b/xen/arch/arm/domain_build.c
@@ -1022,6 +1022,13 @@ int construct_dom0(struct domain *d)
 
     /* The following loads use the domain's p2m */
     p2m_load_VTTBR(d);
+    /* Various EL2 operations, such as guest address translations used
+     * part of the domain build, rely on EL1 state (i.e. whether the
+     * guest has paging enabled). Since the bootloader may have left
+     * this state in an arbitrary configuration set it to something
+     * safe here.
+     */
+    WRITE_SYSREG32(SCTLR_GUEST_INIT, SCTLR_EL1);
 #ifdef CONFIG_ARM_64
     d->arch.type = kinfo.type;
     if ( is_pv32_domain(d) )
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-03-18 12:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-17 15:31 [PATCH] xen: arm: setup sane EL1 state while building domain 0 Ian Campbell
2014-03-17 15:37 ` Julien Grall
2014-03-17 15:46   ` Ian Campbell
2014-03-17 15:50     ` Julien Grall
2014-03-18  3:22 ` Fu Wei
2014-03-18  9:41   ` Ian Campbell
2014-03-18 12:16     ` Julien Grall
2014-03-18 12:37     ` Fu Wei

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.