Remove coherent stack usage from the cold boot path
authorAchin Gupta <achin.gupta@arm.com>
Wed, 25 Jun 2014 18:26:22 +0000 (19:26 +0100)
committerAchin Gupta <achin.gupta@arm.com>
Sat, 19 Jul 2014 22:31:50 +0000 (23:31 +0100)
commit754a2b7a092d3cf81767f1b5a6ab61531792e45f
tree006669dee127708281859606982fb6b2e59ad8aa
parenta1a441775f64da2cbbd42c4f2c6f818f93278fca
Remove coherent stack usage from the cold boot path

This patch reworks the cold boot path across the BL1, BL2, BL3-1 and BL3-2 boot
loader stages to not use stacks allocated in coherent memory for early platform
setup and enabling the MMU. Stacks allocated in normal memory are used instead.

Attributes for stack memory change from nGnRnE when the MMU is disabled to
Normal WBWA Inner-shareable when the MMU and data cache are enabled. It is
possible for the CPU to read stale stack memory after the MMU is enabled from
another CPUs cache. Hence, it is unsafe to turn on the MMU and data cache while
using normal stacks when multiple CPUs are a part of the same coherency
domain. It is safe to do so in the cold boot path as only the primary cpu
executes it. The secondary cpus are in a quiescent state.

This patch does not remove the allocation of coherent stack memory. That is done
in a subsequent patch.

Change-Id: I12c80b7c7ab23506d425c5b3a8a7de693498f830
bl1/aarch64/bl1_entrypoint.S
bl2/aarch64/bl2_entrypoint.S
bl31/aarch64/bl31_entrypoint.S
bl32/tsp/aarch64/tsp_entrypoint.S