Don't use LDR to load a pointer to a function. This will generate a
literal which cannot be relocated. Use ADR which is PC-relative and
therefore can easily be relocated.
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
* table (each elem is padded to 64 bytes)
*/
lsl x1, x10, #6
- ldr x0, =__spin_table
+ adr x0, __spin_table
/* physical address of this cpus spin table element */
add x11, x1, x0
- ldr x0, =__real_cntfrq
+ adr x0, __real_cntfrq
ldr x0, [x0]
msr cntfrq_el0, x0 /* set with real frequency */
str x9, [x11, #16] /* LPID */
orr x10, x2, x1, lsl #2 /* x10 has LPID */
lsl x1, x10, #6
- ldr x0, =__spin_table
+ adr x0, __spin_table
/* physical address of this cpus spin table element */
add x11, x1, x0