]> xenbits.xensource.com Git - people/dwmw2/xen.git/commitdiff
xen/arm64: head: Correctly report the HW CPU ID
authorJulien Grall <julien.grall@arm.com>
Thu, 11 Apr 2019 20:03:17 +0000 (21:03 +0100)
committerJulien Grall <julien.grall@arm.com>
Wed, 29 May 2019 17:35:08 +0000 (18:35 +0100)
There are no reason to consider the HW CPU ID will be 0 when the
processor is part of a uniprocessor system. At best, this will result to
conflicting output as the rest of Xen use the value directly read from
MPIDR_EL1.

So remove the zeroing and logic to check if the CPU is part of a
uniprocessor system.

Signed-off-by: Julien Grall <julien.grall@arm.com>
Reviewed-by: Andrii Anisov <andrii_anisov@epam.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
xen/arch/arm/arm64/head.S

index a7ef0d7759070702c6cd59beb3aabf0127f8babb..cf8823f225a2f7169b964878d552e34004fea4f4 100644 (file)
@@ -277,15 +277,9 @@ GLOBAL(init_secondary)
         mov   x26, #1                /* X26 := skip_zero_bss */
 
 common_start:
-        mov   x24, #0                /* x24 := CPU ID. Initialy zero until we
-                                      * find that multiprocessor extensions are
-                                      * present and the system is SMP  */
         mrs   x0, mpidr_el1
-        tbnz  x0, _MPIDR_UP, 1f      /* Uniprocessor system? */
-
         ldr   x13, =(~MPIDR_HWID_MASK)
         bic   x24, x0, x13           /* Mask out flags to get CPU ID */
-1:
 
         /* Non-boot CPUs wait here until __cpu_up is ready for them */
         cbz   x22, 1f