[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 10/12] aspeed: Get the BlockBackend of FMC0 from the flash
From: |
Joel Stanley |
Subject: |
Re: [PATCH v2 10/12] aspeed: Get the BlockBackend of FMC0 from the flash device |
Date: |
Wed, 7 Jun 2023 10:55:41 +0000 |
On Wed, 7 Jun 2023 at 04:40, Cédric Le Goater <clg@kaod.org> wrote:
>
> and get rid of an unnecessary drive_get(IF_MTD) call.
>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Joel Stanley <joel@jms.id.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 efc112ca37b0..8beed0c2a66e 100644
> --- a/hw/arm/aspeed.c
> +++ b/hw/arm/aspeed.c
> @@ -15,6 +15,7 @@
> #include "hw/arm/aspeed.h"
> #include "hw/arm/aspeed_soc.h"
> #include "hw/arm/aspeed_eeprom.h"
> +#include "hw/block/flash.h"
> #include "hw/i2c/i2c_mux_pca954x.h"
> #include "hw/i2c/smbus_eeprom.h"
> #include "hw/misc/pca9552.h"
> @@ -427,11 +428,12 @@ static void aspeed_machine_init(MachineState *machine)
> }
>
> if (!bmc->mmio_exec) {
> - DriveInfo *mtd0 = drive_get(IF_MTD, 0, 0);
> + DeviceState *dev = ssi_get_cs(bmc->soc.fmc.spi, 0);
> + BlockBackend *fmc0 = dev ? m25p80_get_blk(dev) : NULL;
>
> - if (mtd0) {
> + if (fmc0) {
> uint64_t rom_size = memory_region_size(&bmc->soc.spi_boot);
> - aspeed_install_boot_rom(bmc, blk_by_legacy_dinfo(mtd0),
> rom_size);
> + aspeed_install_boot_rom(bmc, fmc0, rom_size);
> }
> }
>
> --
> 2.40.1
>
- Re: [PATCH v2 05/12] hw/ssi: Introduce a ssi_get_cs() helper, (continued)
- [PATCH v2 06/12] aspeed/smc: Wire CS lines at reset, Cédric Le Goater, 2023/06/07
- [PATCH v2 07/12] hw/ssi: Check for duplicate addresses, Cédric Le Goater, 2023/06/07
- [PATCH v2 09/12] m25p80: Introduce an helper to retrieve the BlockBackend of a device, Cédric Le Goater, 2023/06/07
- [PATCH v2 08/12] aspeed: Create flash devices only when defaults are enabled, Cédric Le Goater, 2023/06/07
- [PATCH v2 10/12] aspeed: Get the BlockBackend of FMC0 from the flash device, Cédric Le Goater, 2023/06/07
- Re: [PATCH v2 10/12] aspeed: Get the BlockBackend of FMC0 from the flash device,
Joel Stanley <=
- [PATCH v2 11/12] aspeed: Introduce a "bmc-console" machine option, Cédric Le Goater, 2023/06/07
- [PATCH v2 12/12] target/arm: Allow users to set the number of VFP registers, Cédric Le Goater, 2023/06/07