aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/kernel/setup.c
diff options
context:
space:
mode:
authorSuzuki K. Poulose <suzuki.poulose@arm.com>2015-10-19 09:24:38 -0400
committerCatalin Marinas <catalin.marinas@arm.com>2015-10-21 10:32:47 -0400
commit64f17818977d0989f7d05347670777611b295799 (patch)
tree0c0b3345c09cd2aa8a7064ff2ebc6cdf466d1cde /arch/arm64/kernel/setup.c
parent56a3f30e029396948989b96716f27b87e3510e0f (diff)
arm64: Make the CPU information more clear
At early boot, we print the CPU version/revision. On a heterogeneous system, we could have different types of CPUs. Print the CPU info for all active cpus. Also, the secondary CPUs prints the message only when they turn online. Also, remove the redundant 'revision' information which doesn't make any sense without the 'variant' field. Signed-off-by: Suzuki K. Poulose <suzuki.poulose@arm.com> Tested-by: Dave Martin <Dave.Martin@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/kernel/setup.c')
-rw-r--r--arch/arm64/kernel/setup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c
index 79df79a2ea61..1d503e2d6957 100644
--- a/arch/arm64/kernel/setup.c
+++ b/arch/arm64/kernel/setup.c
@@ -203,8 +203,7 @@ static void __init setup_processor(void)
203 u32 cwg; 203 u32 cwg;
204 int cls; 204 int cls;
205 205
206 printk("CPU: AArch64 Processor [%08x] revision %d\n", 206 pr_info("Boot CPU: AArch64 Processor [%08x]\n", read_cpuid_id());
207 read_cpuid_id(), read_cpuid_id() & 15);
208 207
209 sprintf(init_utsname()->machine, ELF_PLATFORM); 208 sprintf(init_utsname()->machine, ELF_PLATFORM);
210 elf_hwcap = 0; 209 elf_hwcap = 0;