[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 2/8] aspeed: Load eMMC first boot area as a boot rom
From: |
Cédric Le Goater |
Subject: |
[PATCH v2 2/8] aspeed: Load eMMC first boot area as a boot rom |
Date: |
Wed, 17 Jul 2024 08:30:16 +0200 |
From: Cédric Le Goater <clg@kaod.org>
The first boot area partition (64K) of the eMMC device should contain
an initial boot loader (u-boot SPL). Load it as a ROM only if an eMMC
device is available to boot from but no flash device is.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Andrew Jeffery <andrew@codeconstruct.com.au>
Tested-by: Andrew Jeffery <andrew@codeconstruct.com.au>
---
hw/arm/aspeed.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c
index 105b990233fa..756deb91efd1 100644
--- a/hw/arm/aspeed.c
+++ b/hw/arm/aspeed.c
@@ -364,6 +364,7 @@ static void aspeed_machine_init(MachineState *machine)
AspeedMachineClass *amc = ASPEED_MACHINE_GET_CLASS(machine);
AspeedSoCClass *sc;
int i;
+ DriveInfo *emmc0 = NULL;
bmc->soc = ASPEED_SOC(object_new(amc->soc_name));
object_property_add_child(OBJECT(machine), "soc", OBJECT(bmc->soc));
@@ -440,9 +441,8 @@ static void aspeed_machine_init(MachineState *machine)
}
if (bmc->soc->emmc.num_slots) {
- sdhci_attach_drive(&bmc->soc->emmc.slots[0],
- drive_get(IF_SD, 0, bmc->soc->sdhci.num_slots),
- true);
+ emmc0 = drive_get(IF_SD, 0, bmc->soc->sdhci.num_slots);
+ sdhci_attach_drive(&bmc->soc->emmc.slots[0], emmc0, true);
}
if (!bmc->mmio_exec) {
@@ -452,6 +452,8 @@ static void aspeed_machine_init(MachineState *machine)
if (fmc0) {
uint64_t rom_size = memory_region_size(&bmc->soc->spi_boot);
aspeed_install_boot_rom(bmc, fmc0, rom_size);
+ } else if (emmc0) {
+ aspeed_install_boot_rom(bmc, blk_by_legacy_dinfo(emmc0), 64 * KiB);
}
}
--
2.45.2
- [PATCH v2 0/8] aspeed: Add boot from eMMC support (AST2600), Cédric Le Goater, 2024/07/17
- [PATCH v2 1/8] aspeed: Change type of eMMC device, Cédric Le Goater, 2024/07/17
- [PATCH v2 2/8] aspeed: Load eMMC first boot area as a boot rom,
Cédric Le Goater <=
- [PATCH v2 4/8] aspeed: Introduce a AspeedSoCClass 'boot_from_emmc' handler, Cédric Le Goater, 2024/07/17
- [PATCH v2 3/8] aspeed/scu: Add boot-from-eMMC HW strapping bit for AST2600 SoC, Cédric Le Goater, 2024/07/17
- [PATCH v2 5/8] aspeed: Tune eMMC device properties to reflect HW strapping, Cédric Le Goater, 2024/07/17
- [PATCH v2 6/8] aspeed: Add boot-from-eMMC HW strapping bit to rainier-bmc machine, Cédric Le Goater, 2024/07/17
- [PATCH v2 8/8] aspeed: Introduce a 'boot-emmc' machine option, Cédric Le Goater, 2024/07/17
- [PATCH v2 7/8] aspeed: Introduce a 'hw_strap1' machine attribute, Cédric Le Goater, 2024/07/17
- Re: [PATCH v2 0/8] aspeed: Add boot from eMMC support (AST2600), Philippe Mathieu-Daudé, 2024/07/17
- Re: [PATCH v2 0/8] aspeed: Add boot from eMMC support (AST2600), Cédric Le Goater, 2024/07/18