aboutsummaryrefslogtreecommitdiff
path: root/src/soc/cavium/cn81xx/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/cavium/cn81xx/cpu.c')
-rw-r--r--src/soc/cavium/cn81xx/cpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/cavium/cn81xx/cpu.c b/src/soc/cavium/cn81xx/cpu.c
index bb85029783..14aff58a2a 100644
--- a/src/soc/cavium/cn81xx/cpu.c
+++ b/src/soc/cavium/cn81xx/cpu.c
@@ -11,7 +11,7 @@
uint64_t cpu_get_available_core_mask(void)
{
- return read64((void *)RST_PP_AVAILABLE);
+ return read64p(RST_PP_AVAILABLE);
}
size_t cpu_get_num_available_cores(void)
@@ -75,7 +75,7 @@ size_t start_cpu(size_t cpu, void (*entry_64)(size_t core_id))
write64((void *)MIO_BOOT_AP_JUMP, (uintptr_t)secondary_init);
/* Get coremask of cores in reset */
- const uint64_t reset = read64((void *)RST_PP_RESET);
+ const uint64_t reset = read64p(RST_PP_RESET);
printk(BIOS_INFO, "CPU: Cores currently in reset: 0x%llx\n", reset);
/* Setup entry for secondary core */
@@ -93,7 +93,7 @@ size_t start_cpu(size_t cpu, void (*entry_64)(size_t core_id))
stopwatch_init_usecs_expire(&sw, 1000000);
do {
- pending = read64((void *)RST_PP_PENDING);
+ pending = read64p(RST_PP_PENDING);
} while (!stopwatch_expired(&sw) && (pending & coremask));
if (stopwatch_expired(&sw)) {