arm-trusted-firmware/lib/psci
Antonio Nino Diaz 2644103063 Invalidate TLB entries during warm boot
During the warm boot sequence:

1. The MMU is enabled with the data cache disabled. The MMU table walker
   is set up to access the translation tables as in cacheable memory,
   but its accesses are non-cacheable because SCTLR_EL3.C controls them
   as well.
2. The interconnect is set up and the CPU enters coherency with the
   rest of the system.
3. The data cache is enabled.

If the support for dynamic translation tables is enabled and another CPU
makes changes to a region, the changes may only be present in the data
cache, not in RAM. The CPU that is booting isn't in coherency with the
rest of the system, so the table walker of that CPU isn't either. This
means that it may read old entries from RAM and it may have invalid TLB
entries corresponding to the dynamic mappings.

This is not a problem for the boot code because the mapping is 1:1 and
the regions are static. However, the code that runs after the boot
sequence may need to access the dynamically mapped regions.

This patch invalidates all TLBs during warm boot when the dynamic
translation tables support is enabled to prevent this problem.

Change-Id: I80264802dc0aa1cb3edd77d0b66b91db6961af3d
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
2018-02-27 17:00:41 +00:00
..
aarch32 Invalidate TLB entries during warm boot 2018-02-27 17:00:41 +00:00
aarch64 Invalidate TLB entries during warm boot 2018-02-27 17:00:41 +00:00
psci_common.c Fix PSCI STAT time stamp collection 2017-11-03 13:27:34 +00:00
psci_lib.mk mem_protect: Add mem_protect API 2017-09-25 13:32:20 +01:00
psci_main.c Add support for SMCCC_VERSION in PSCI features 2018-01-29 09:58:57 +00:00
psci_mem_protect.c mem_protect: Add mem_protect API 2017-09-25 13:32:20 +01:00
psci_off.c Reduce time lock in psci_do_cpu_off 2017-09-06 14:48:15 +01:00
psci_on.c PSCI: Publish CPU ON event 2017-10-23 08:15:11 +01:00
psci_private.h mem_protect: Fix PSCI FEATURES API for MEM_PROTECT_CHECK 2017-10-13 12:12:20 +01:00
psci_setup.c ARMv7 may not support Generic Timer Extension 2017-11-08 14:41:47 +01:00
psci_stat.c psci: minor fixes in lib 2017-06-22 22:10:32 +02:00
psci_suspend.c Add PubSub events for CPU powerdown/powerup 2018-01-11 10:33:41 +00:00
psci_system_off.c reset2: Add PSCI system_reset2 function 2017-10-13 08:08:22 +01:00