[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH RFC 1/2] hw/sd/ssi-sd: Do not create SD card within controlle
From: |
Markus Armbruster |
Subject: |
Re: [PATCH RFC 1/2] hw/sd/ssi-sd: Do not create SD card within controller's realize |
Date: |
Mon, 15 Nov 2021 14:48:46 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) |
Peter Maydell <peter.maydell@linaro.org> writes:
> On Mon, 15 Nov 2021 at 12:56, Markus Armbruster <armbru@redhat.com> wrote:
>>
>> ssi_sd_realize() creates an "sd-card" device. This is inappropriate,
>> and marked FIXME.
>>
>> Move it to the boards that create these devices. Prior art: commit
>> eb4f566bbb for device "generic-sdhci", and commit 26c607b86b for
>> device "pl181".
>>
>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>> ---
>
>> @@ -670,7 +672,7 @@ static void sifive_u_machine_init(MachineState *machine)
>>
>> /* Connect an SPI flash to SPI0 */
>> flash_dev = qdev_new("is25wp256");
>> - dinfo = drive_get_next(IF_MTD);
>> + dinfo = drive_get(IF_MTD, 0, 0);
>> if (dinfo) {
>> qdev_prop_set_drive_err(flash_dev, "drive",
>> blk_by_legacy_dinfo(dinfo),
>
>
> This part looks like it should have been in the other patch.
You're right. Thanks!
- Re: [PATCH RFC 2/2] hw: Replace drive_get_next() by drive_get(), (continued)
[PATCH RFC 1/2] hw/sd/ssi-sd: Do not create SD card within controller's realize, Markus Armbruster, 2021/11/15
Re: [PATCH RFC 0/2] Eliminate drive_get_next(), Peter Maydell, 2021/11/15