diff mbox series

[1/1] configs/raspberrypi5_defconfig: use correct CPU

Message ID 20240809114345.693108-1-gael.portay@rtone.fr
State Accepted
Headers show
Series [1/1] configs/raspberrypi5_defconfig: use correct CPU | expand

Commit Message

Gaël PORTAY Aug. 9, 2024, 11:43 a.m. UTC
From: Athaariq Ardhiansyah <foss@athaariq.my.id>

The Raspberry Pi 5 uses a quad-core ARM Cortex-A76 CPU cluster[1].

This fixes incorrect CPU as it is no big.LITTLE CPU.

[1]: https://www.raspberrypi.com/documentation/computers/processors.html#bcm2712

Signed-off-by: Athaariq Ardhiansyah <foss@athaariq.my.id>
Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr>
---
Hello Athaariq,

I hope you do not mind if I upstream the fix you made about the CPU?

	# for i in /proc/device-tree/cpus/cpu@*/compatible; do cat "$i"; echo; done
	arm,cortex-a76
	arm,cortex-a76
	arm,cortex-a76
	arm,cortex-a76

Regards,
Gaël

 configs/raspberrypi5_defconfig | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Athaariq Ardhiansyah Aug. 9, 2024, 12:11 p.m. UTC | #1
Hello Gaël,

> I hope you do not mind if I upstream the fix you made about the CPU?

Yeah sure, please take control of RPi5 support. I can't afford
RPi5 for now. The price is rising in my region.

Regards,
Athaariq
Thomas Petazzoni Aug. 9, 2024, 10:06 p.m. UTC | #2
On Fri,  9 Aug 2024 13:43:45 +0200
"Gaël PORTAY" <gael.portay@gmail.com> wrote:

> From: Athaariq Ardhiansyah <foss@athaariq.my.id>
> 
> The Raspberry Pi 5 uses a quad-core ARM Cortex-A76 CPU cluster[1].
> 
> This fixes incorrect CPU as it is no big.LITTLE CPU.
> 
> [1]: https://www.raspberrypi.com/documentation/computers/processors.html#bcm2712
> 
> Signed-off-by: Athaariq Ardhiansyah <foss@athaariq.my.id>
> Signed-off-by: Gaël PORTAY <gael.portay@rtone.fr>
> ---
> Hello Athaariq,

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/configs/raspberrypi5_defconfig b/configs/raspberrypi5_defconfig
index 0d753399e2..d43503ab26 100644
--- a/configs/raspberrypi5_defconfig
+++ b/configs/raspberrypi5_defconfig
@@ -1,6 +1,5 @@ 
 BR2_aarch64=y
-BR2_cortex_a76_a55=y
-BR2_ARM_FPU_VFPV4=y
+BR2_cortex_a76=y
 
 # patches
 BR2_GLOBAL_PATCH_DIR="board/raspberrypi/patches"