]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
aspeed: Fix maximum number of spi controller
authorTroy Lee <troy_lee@aspeedtech.com>
Mon, 17 Mar 2025 06:59:37 +0000 (14:59 +0800)
committerCédric Le Goater <clg@redhat.com>
Sun, 23 Mar 2025 17:42:16 +0000 (18:42 +0100)
Commit 6de4aa8dc544 ("hw/arm/aspeed_ast27x0: Add SoC Support for AST2700
A1") extends ast2700a1 spis_num to 3, but ASPEED_SPIS_NUM defines the
maximum number of spi controller to 2, result in ehci[0] is being
overwritten in runtime.

Signed-off-by: Troy Lee <troy_lee@aspeedtech.com>
Fixes: 6de4aa8dc544 ("hw/arm/aspeed_ast27x0: Add SoC Support for AST2700 A1")
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Link: https://lore.kernel.org/qemu-devel/20250317065938.1902272-1-troy_lee@aspeedtech.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
include/hw/arm/aspeed_soc.h

index f899356ed94c5dc4fa3f0ca3fd8a3f6e9103c0af..f069d17d1629a98c287284b5afdbb3d581660a05 100644 (file)
@@ -42,7 +42,7 @@
 #include "hw/char/serial-mm.h"
 #include "hw/intc/arm_gicv3.h"
 
-#define ASPEED_SPIS_NUM  2
+#define ASPEED_SPIS_NUM  3
 #define ASPEED_EHCIS_NUM 2
 #define ASPEED_WDTS_NUM  8
 #define ASPEED_CPUS_NUM  4