diff options
author | Thomas Huth <thuth@redhat.com> | 2021-11-19 11:25:49 +0100 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2021-11-22 10:43:54 +1000 |
commit | 6b717a8d4482fa88fb2a40b5afd5a55e7a0ba412 (patch) | |
tree | cbd5d77e032a17503517999c10decf8748179ba2 /hw | |
parent | c5fbdd60cf1fb52f01bdfe342b6fa65d5343e1b1 (diff) | |
download | qemu-6b717a8d4482fa88fb2a40b5afd5a55e7a0ba412.zip qemu-6b717a8d4482fa88fb2a40b5afd5a55e7a0ba412.tar.gz qemu-6b717a8d4482fa88fb2a40b5afd5a55e7a0ba412.tar.bz2 |
hw/misc/sifive_u_otp: Use IF_PFLASH for the OTP device instead of IF_NONE
Configuring a drive with "if=none" is meant for creation of a backend
only, it should not get automatically assigned to a device frontend.
Use "if=pflash" for the One-Time-Programmable device instead (like
it is e.g. also done for the efuse device in hw/arm/xlnx-zcu102.c).
Since the old way of configuring the device has already been published
with the previous QEMU versions, we cannot remove this immediately, but
have to deprecate it and support it for at least two more releases.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20211119102549.217755-1-thuth@redhat.com
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/misc/sifive_u_otp.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/misc/sifive_u_otp.c b/hw/misc/sifive_u_otp.c index 18aa0bd..cf6098f 100644 --- a/hw/misc/sifive_u_otp.c +++ b/hw/misc/sifive_u_otp.c @@ -209,7 +209,14 @@ static void sifive_u_otp_realize(DeviceState *dev, Error **errp) TYPE_SIFIVE_U_OTP, SIFIVE_U_OTP_REG_SIZE); sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->mmio); - dinfo = drive_get_next(IF_NONE); + dinfo = drive_get_next(IF_PFLASH); + if (!dinfo) { + dinfo = drive_get_next(IF_NONE); + if (dinfo) { + warn_report("using \"-drive if=none\" for the OTP is deprecated, " + "use \"-drive if=pflash\" instead."); + } + } if (dinfo) { int ret; uint64_t perm; |