From afff8cbdd816ca9b0d71ab54882ce70b21ed84e1 Mon Sep 17 00:00:00 2001 From: Achin Gupta Date: Thu, 26 Jun 2014 08:59:07 +0100 Subject: Make enablement of the MMU more flexible This patch adds a 'flags' parameter to each exception level specific function responsible for enabling the MMU. At present only a single flag which indicates whether the data cache should also be enabled is implemented. Subsequent patches will use this flag when enabling the MMU in the warm boot paths. Change-Id: I0eafae1e678c9ecc604e680851093f1680e9cefa --- services/std_svc/psci/psci_afflvl_on.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services/std_svc/psci/psci_afflvl_on.c') diff --git a/services/std_svc/psci/psci_afflvl_on.c b/services/std_svc/psci/psci_afflvl_on.c index d6201724..1551cfe8 100644 --- a/services/std_svc/psci/psci_afflvl_on.c +++ b/services/std_svc/psci/psci_afflvl_on.c @@ -361,7 +361,7 @@ static unsigned int psci_afflvl0_on_finish(aff_map_node_t *cpu_node) /* * Arch. management: Turn on mmu & restore architectural state */ - bl31_plat_enable_mmu(); + bl31_plat_enable_mmu(0); /* * All the platform specific actions for turning this cpu -- cgit