summaryrefslogtreecommitdiff
path: root/make_helpers
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2018-10-12 16:26:20 +0100
committerSoby Mathew <soby.mathew@arm.com>2018-10-29 09:54:31 +0000
commit6a7b30057806c3573ee0194b7aa583bd60c89371 (patch)
tree33e09ffc84f804cdb24ecabe112538df09a0868a /make_helpers
parent9aabd11a424770e11dd89251960678d3e3332df6 (diff)
Add helper to return reference to a symbol
This patch adds a utility function to return the address of a symbol. By default, the compiler generates adr/adrp instruction pair to return the reference and this utility is used to override this compiler generated to code and use `ldr` instruction. This is needed for Position Independent Executable when it needs to reference a symbol which is constant and does not depend on the execute address of the binary. For example, on the FVP, the GICv3 register context is stored in a secure carveout (arm_el3_tzc_dram) within DDR and does not relocate with the BL image. Now if BL31 is executing at a different address other than the compiled address, using adrp/adr instructions to reference this memory will not work as they generate an address that is PC relative. The way to get around this problem is to reference it as non-PC relative (i.e non-relocatable location) via `ldr` instruction. Change-Id: I5008a951b007144258121690afb68dc8e12ee6f7 Signed-off-by: Soby Mathew <soby.mathew@arm.com>
Diffstat (limited to 'make_helpers')
0 files changed, 0 insertions, 0 deletions