From: David Edmondson <david.edmondson@oracle.com>
To: qemu-devel@nongnu.org
Cc: "Kevin Wolf" <kwolf@redhat.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
qemu-block@nongnu.org, "Michael S. Tsirkin" <mst@redhat.com>,
"Xu Yandong" <xuyandong2@huawei.com>,
"John Snow" <jsnow@redhat.com>,
"Markus Armbruster" <armbru@redhat.com>,
"Max Reitz" <mreitz@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Shannon Zhao" <shannon.zhaosl@gmail.com>,
"Zheng Xiang" <zhengxiang9@huawei.com>,
qemu-arm@nongnu.org, "haibinzhang(张海斌)" <haibinzhang@tencent.com>,
"Stefan Hajnoczi" <stefanha@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Igor Mammedov" <imammedo@redhat.com>,
"David Edmondson" <david.edmondson@oracle.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Stefano Garzarella" <sgarzare@redhat.com>
Subject: [PATCH v4 1/1] hw/pflash_cfi01: Allow backing devices to be smaller than memory region
Date: Tue, 10 Aug 2021 14:40:50 +0100 [thread overview]
Message-ID: <20210810134050.396747-2-david.edmondson@oracle.com> (raw)
In-Reply-To: <20210810134050.396747-1-david.edmondson@oracle.com>
Allow the backing device to be smaller than the extent of the flash
device by mapping it as a subregion of the flash device region.
Return zeroes for all reads of the flash device beyond the extent of
the backing device.
For writes beyond the extent of the underlying device, fail on
read-only devices and discard them for writable devices.
Signed-off-by: David Edmondson <david.edmondson@oracle.com>
---
hw/block/pflash_cfi01.c | 105 ++++++++++++++++++++++++++++++++--------
hw/block/trace-events | 3 ++
2 files changed, 87 insertions(+), 21 deletions(-)
diff --git a/hw/block/pflash_cfi01.c b/hw/block/pflash_cfi01.c
index 81f9f971d8..f3289b6a2f 100644
--- a/hw/block/pflash_cfi01.c
+++ b/hw/block/pflash_cfi01.c
@@ -83,6 +83,8 @@ struct PFlashCFI01 {
uint64_t counter;
unsigned int writeblock_size;
MemoryRegion mem;
+ MemoryRegion mem_outer;
+ char outer_name[64];
char *name;
void *storage;
VMChangeStateEntry *vmstate;
@@ -434,7 +436,6 @@ static inline void pflash_data_write(PFlashCFI01 *pfl, hwaddr offset,
}
break;
}
-
}
static void pflash_write(PFlashCFI01 *pfl, hwaddr offset,
@@ -656,8 +657,44 @@ static void pflash_write(PFlashCFI01 *pfl, hwaddr offset,
}
-static MemTxResult pflash_mem_read_with_attrs(void *opaque, hwaddr addr, uint64_t *value,
- unsigned len, MemTxAttrs attrs)
+static MemTxResult pflash_outer_read_with_attrs(void *opaque, hwaddr addr,
+ uint64_t *value, unsigned len,
+ MemTxAttrs attrs)
+{
+ PFlashCFI01 *pfl = opaque;
+
+ trace_pflash_outer_read(pfl->name, addr, len);
+ *value = 0;
+ return MEMTX_OK;
+}
+
+static MemTxResult pflash_outer_write_with_attrs(void *opaque, hwaddr addr,
+ uint64_t value, unsigned len,
+ MemTxAttrs attrs)
+{
+ PFlashCFI01 *pfl = opaque;
+
+ trace_pflash_outer_write(pfl->name, addr, len);
+ if (pfl->ro) {
+ return MEMTX_ERROR;
+ } else {
+ warn_report_once("%s: "
+ "attempt to write outside of the backing block device "
+ "(offset " TARGET_FMT_plx ") ignored",
+ pfl->name, addr);
+ return MEMTX_OK;
+ }
+}
+
+static const MemoryRegionOps pflash_cfi01_outer_ops = {
+ .read_with_attrs = pflash_outer_read_with_attrs,
+ .write_with_attrs = pflash_outer_write_with_attrs,
+ .endianness = DEVICE_NATIVE_ENDIAN,
+};
+
+static MemTxResult pflash_mem_read_with_attrs(void *opaque, hwaddr addr,
+ uint64_t *value, unsigned len,
+ MemTxAttrs attrs)
{
PFlashCFI01 *pfl = opaque;
bool be = !!(pfl->features & (1 << PFLASH_BE));
@@ -670,8 +707,9 @@ static MemTxResult pflash_mem_read_with_attrs(void *opaque, hwaddr addr, uint64_
return MEMTX_OK;
}
-static MemTxResult pflash_mem_write_with_attrs(void *opaque, hwaddr addr, uint64_t value,
- unsigned len, MemTxAttrs attrs)
+static MemTxResult pflash_mem_write_with_attrs(void *opaque, hwaddr addr,
+ uint64_t value, unsigned len,
+ MemTxAttrs attrs)
{
PFlashCFI01 *pfl = opaque;
bool be = !!(pfl->features & (1 << PFLASH_BE));
@@ -800,7 +838,7 @@ static void pflash_cfi01_realize(DeviceState *dev, Error **errp)
{
ERRP_GUARD();
PFlashCFI01 *pfl = PFLASH_CFI01(dev);
- uint64_t total_len;
+ uint64_t outer_len, inner_len;
int ret;
if (pfl->sector_len == 0) {
@@ -816,35 +854,60 @@ static void pflash_cfi01_realize(DeviceState *dev, Error **errp)
return;
}
- total_len = pfl->sector_len * pfl->nb_blocs;
-
- memory_region_init_rom_device(
- &pfl->mem, OBJECT(dev),
- &pflash_cfi01_ops,
- pfl,
- pfl->name, total_len, errp);
- if (*errp) {
- return;
- }
-
- pfl->storage = memory_region_get_ram_ptr(&pfl->mem);
- sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem);
+ outer_len = pfl->sector_len * pfl->nb_blocs;
if (pfl->blk) {
uint64_t perm;
+
pfl->ro = !blk_supports_write_perm(pfl->blk);
perm = BLK_PERM_CONSISTENT_READ | (pfl->ro ? 0 : BLK_PERM_WRITE);
ret = blk_set_perm(pfl->blk, perm, BLK_PERM_ALL, errp);
if (ret < 0) {
return;
}
+
+ inner_len = blk_getlength(pfl->blk);
+
+ if (inner_len > outer_len) {
+ error_setg(errp, "%s: "
+ "block backend provides %" PRIu64 " bytes, "
+ "device limited to %" PRIu64 " bytes",
+ pfl->name, inner_len, outer_len);
+ return;
+ }
} else {
pfl->ro = false;
+ inner_len = outer_len;
}
+ trace_pflash_realize(pfl->name, pfl->ro, inner_len, outer_len);
+
+ snprintf(pfl->outer_name, sizeof(pfl->outer_name),
+ "%s container", pfl->name);
+ memory_region_init_io(&pfl->mem_outer, OBJECT(dev),
+ &pflash_cfi01_outer_ops,
+ pfl, pfl->outer_name, outer_len);
+
+ memory_region_init_rom_device(&pfl->mem, OBJECT(dev),
+ &pflash_cfi01_ops,
+ pfl, pfl->name, inner_len, errp);
+ if (*errp) {
+ return;
+ }
+
+ memory_region_add_subregion(&pfl->mem_outer, 0, &pfl->mem);
+
+ pfl->storage = memory_region_get_ram_ptr(&pfl->mem);
+ sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem_outer);
+ sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem);
+
if (pfl->blk) {
- if (!blk_check_size_and_read_all(pfl->blk, pfl->storage, total_len,
- errp)) {
+ int ret = blk_pread(pfl->blk, 0, pfl->storage, inner_len);
+
+ if (ret < 0) {
+ error_setg_errno(errp, -ret,
+ "cannot read %" PRIu64 " "
+ "bytes from block backend", inner_len);
vmstate_unregister_ram(&pfl->mem, DEVICE(pfl));
return;
}
diff --git a/hw/block/trace-events b/hw/block/trace-events
index d86b53520c..3d1e07261e 100644
--- a/hw/block/trace-events
+++ b/hw/block/trace-events
@@ -21,10 +21,13 @@ pflash_io_read(const char *name, uint64_t offset, unsigned int size, uint32_t va
pflash_io_write(const char *name, uint64_t offset, unsigned int size, uint32_t value, uint8_t wcycle) "%s: offset:0x%04"PRIx64" size:%u value:0x%04x wcycle:%u"
pflash_manufacturer_id(const char *name, uint16_t id) "%s: read manufacturer ID: 0x%04x"
pflash_mode_read_array(const char *name) "%s: read array mode"
+pflash_outer_read(const char *name, uint64_t addr, unsigned int len) "%s: addr:0x%" PRIx64 " len:%d"
+pflash_outer_write(const char *name, uint64_t addr, unsigned int len) "%s: addr:0x%" PRIx64 " len:%d"
pflash_postload_cb(const char *name) "%s: updating bdrv"
pflash_read_done(const char *name, uint64_t offset, uint64_t ret) "%s: ID:0x%" PRIx64 " ret:0x%" PRIx64
pflash_read_status(const char *name, uint32_t ret) "%s: status:0x%x"
pflash_read_unknown_state(const char *name, uint8_t cmd) "%s: unknown command state:0x%x"
+pflash_realize(const char *name, bool ro, uint64_t blk_len, uint64_t total_len) "%s: ro:%d blk_len:0x%" PRIx64 " total_len:0x%" PRIx64
pflash_reset(const char *name) "%s: reset"
pflash_sector_erase_start(const char *name, int width1, uint64_t start, int width2, uint64_t end) "%s: start sector erase at: 0x%0*" PRIx64 "-0x%0*" PRIx64
pflash_timer_expired(const char *name, uint8_t cmd) "%s: command 0x%02x done"
--
2.30.2
next prev parent reply other threads:[~2021-08-10 13:42 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-10 13:40 [PATCH v4 0/1] hw/pflash_cfi01: Allow an administrator to reduce the memory consumption of flash devices David Edmondson
2021-08-10 13:40 ` David Edmondson [this message]
2021-09-09 9:27 ` [PATCH v4 1/1] hw/pflash_cfi01: Allow backing devices to be smaller than memory region Philippe Mathieu-Daudé
2021-09-14 14:01 ` David Edmondson
2021-08-20 18:19 ` [PATCH v4 0/1] hw/pflash_cfi01: Allow an administrator to reduce the memory consumption of flash devices Philippe Mathieu-Daudé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210810134050.396747-2-david.edmondson@oracle.com \
--to=david.edmondson@oracle.com \
--cc=alex.bennee@linaro.org \
--cc=armbru@redhat.com \
--cc=haibinzhang@tencent.com \
--cc=imammedo@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=sgarzare@redhat.com \
--cc=shannon.zhaosl@gmail.com \
--cc=stefanha@redhat.com \
--cc=xuyandong2@huawei.com \
--cc=zhengxiang9@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).