[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 03/10] hw/arm/aspeed: Add vbootrom support on AST2700 EVB mach
From: |
Jamin Lin |
Subject: |
[PATCH v3 03/10] hw/arm/aspeed: Add vbootrom support on AST2700 EVB machines |
Date: |
Wed, 16 Apr 2025 11:43:18 +0800 |
Introduce a new "vbootrom" field in the AspeedMachineClass to indicate whether
a machine supports the virtual boot ROM region.
Set this field to true by default for the AST2700-A0 and AST2700-A1 EVB
machines.
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
include/hw/arm/aspeed.h | 1 +
hw/arm/aspeed.c | 2 ++
2 files changed, 3 insertions(+)
diff --git a/include/hw/arm/aspeed.h b/include/hw/arm/aspeed.h
index 9cae45a1c9..973277bea6 100644
--- a/include/hw/arm/aspeed.h
+++ b/include/hw/arm/aspeed.h
@@ -40,6 +40,7 @@ struct AspeedMachineClass {
void (*i2c_init)(AspeedMachineState *bmc);
uint32_t uart_default;
bool sdhci_wp_inverted;
+ bool vbootrom;
};
diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c
index 82f42582fa..e852bbc4cb 100644
--- a/hw/arm/aspeed.c
+++ b/hw/arm/aspeed.c
@@ -1689,6 +1689,7 @@ static void
aspeed_machine_ast2700a0_evb_class_init(ObjectClass *oc, void *data)
amc->macs_mask = ASPEED_MAC0_ON | ASPEED_MAC1_ON | ASPEED_MAC2_ON;
amc->uart_default = ASPEED_DEV_UART12;
amc->i2c_init = ast2700_evb_i2c_init;
+ amc->vbootrom = true;
mc->auto_create_sdcard = true;
mc->default_ram_size = 1 * GiB;
aspeed_machine_class_init_cpus_defaults(mc);
@@ -1709,6 +1710,7 @@ static void
aspeed_machine_ast2700a1_evb_class_init(ObjectClass *oc, void *data)
amc->macs_mask = ASPEED_MAC0_ON | ASPEED_MAC1_ON | ASPEED_MAC2_ON;
amc->uart_default = ASPEED_DEV_UART12;
amc->i2c_init = ast2700_evb_i2c_init;
+ amc->vbootrom = true;
mc->auto_create_sdcard = true;
mc->default_ram_size = 1 * GiB;
aspeed_machine_class_init_cpus_defaults(mc);
--
2.43.0
- [PATCH v3 00/10] Support vbootrom for AST2700, Jamin Lin, 2025/04/15
- [PATCH v3 01/10] hw/arm/aspeed_ast27x0: Rename variable sram_name to name in ast2700 realize, Jamin Lin, 2025/04/15
- [PATCH v3 02/10] hw/arm/aspeed_ast27x0 Introduce vbootrom memory region, Jamin Lin, 2025/04/15
- [PATCH v3 03/10] hw/arm/aspeed: Add vbootrom support on AST2700 EVB machines,
Jamin Lin <=
- [PATCH v3 04/10] hw/arm/aspeed: Reuse rom_size variable for vbootrom setup, Jamin Lin, 2025/04/15
- [PATCH v3 05/10] hw/arm/aspeed: Add support for loading vbootrom image via "-bios", Jamin Lin, 2025/04/15
- [PATCH v3 06/10] pc-bios: Add AST27x0 vBootrom, Jamin Lin, 2025/04/15
- [PATCH v3 07/10] tests/functional/aspeed: Move I2C test into shared helper for AST2700 reuse, Jamin Lin, 2025/04/15