diff options
author | danh-arm <dan.handley@arm.com> | 2014-04-22 11:01:58 +0100 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2014-04-22 11:01:58 +0100 |
commit | bc1a42b7c26beae06b672e5d3e51223592410ee6 (patch) | |
tree | b23c6d5cce9ad5ceef93aab29df9b97d1de7b030 | |
parent | 19c72525fb17fe9e00cfeb1d12fa00739f5f6579 (diff) | |
parent | 9e1c4bd2960975d53feebb63fac2474eacca3369 (diff) |
Merge pull request #44 from danh-arm/dh/tf-issues#136
Remove redundant code from bl1_plat_helpers.S
-rw-r--r-- | plat/fvp/aarch64/bl1_plat_helpers.S | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plat/fvp/aarch64/bl1_plat_helpers.S b/plat/fvp/aarch64/bl1_plat_helpers.S index fad37aff..15e3a21c 100644 --- a/plat/fvp/aarch64/bl1_plat_helpers.S +++ b/plat/fvp/aarch64/bl1_plat_helpers.S @@ -59,11 +59,6 @@ * ----------------------------------------------------- */ func plat_secondary_cold_boot_setup - bl read_mpidr - mov x19, x0 - bl platform_get_core_pos - mov x20, x0 - /* --------------------------------------------- * Power down this cpu. * TODO: Do we need to worry about powering the @@ -72,8 +67,9 @@ func plat_secondary_cold_boot_setup * loader zeroes out the zi section. * --------------------------------------------- */ + bl read_mpidr ldr x1, =PWRC_BASE - str w19, [x1, #PPOFFR_OFF] + str w0, [x1, #PPOFFR_OFF] /* --------------------------------------------- * Deactivate the gic cpu interface as well |