]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
RISC-V: Don't print details of CPUs disabled in DT
authorAnup Patel <apatel@ventanamicro.com>
Tue, 14 Oct 2025 16:30:09 +0000 (22:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Oct 2025 13:04:38 +0000 (14:04 +0100)
[ Upstream commit d2721bb165b3ee00dd23525885381af07fec852a ]

Early boot stages may disable CPU DT nodes for unavailable
CPUs based on SKU, pinstraps, eFuse, etc. Currently, the
riscv_early_of_processor_hartid() prints details of a CPU
if it is disabled in DT which has no value and gives a
false impression to the users that there some issue with
the CPU.

Fixes: e3d794d555cd ("riscv: treat cpu devicetree nodes without status as enabled")
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20251014163009.182381-1-apatel@ventanamicro.com
Signed-off-by: Paul Walmsley <pjw@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/riscv/kernel/cpu.c

index 0f76181dc634db4ab449776752db1a919db30f98..e642b3dc42d273f6752168366db511a1db1647ec 100644 (file)
@@ -32,10 +32,8 @@ int riscv_of_processor_hartid(struct device_node *node, unsigned long *hart)
                return -ENODEV;
        }
 
-       if (!of_device_is_available(node)) {
-               pr_info("CPU with hartid=%lu is not available\n", *hart);
+       if (!of_device_is_available(node))
                return -ENODEV;
-       }
 
        if (of_property_read_string(node, "riscv,isa", &isa)) {
                pr_warn("CPU with hartid=%lu has no \"riscv,isa\" property\n", *hart);