2019-10-21 15:12:11 +02:00
|
|
|
/*
|
|
|
|
* QEMU PowerNV PNOR simple model
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015-2019, IBM Corporation.
|
|
|
|
*
|
|
|
|
* This code is licensed under the GPL version 2 or later. See the
|
|
|
|
* COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "qemu/error-report.h"
|
2020-01-08 10:03:47 +01:00
|
|
|
#include "qemu/units.h"
|
2019-10-21 15:12:11 +02:00
|
|
|
#include "sysemu/block-backend.h"
|
|
|
|
#include "sysemu/blockdev.h"
|
|
|
|
#include "hw/loader.h"
|
|
|
|
#include "hw/ppc/pnv_pnor.h"
|
|
|
|
#include "hw/qdev-properties.h"
|
2020-12-11 23:05:12 +01:00
|
|
|
#include "hw/qdev-properties-system.h"
|
2019-10-21 15:12:11 +02:00
|
|
|
|
|
|
|
static uint64_t pnv_pnor_read(void *opaque, hwaddr addr, unsigned size)
|
|
|
|
{
|
|
|
|
PnvPnor *s = PNV_PNOR(opaque);
|
|
|
|
uint64_t ret = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
ret |= (uint64_t) s->storage[addr + i] << (8 * (size - i - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pnv_pnor_update(PnvPnor *s, int offset, int size)
|
|
|
|
{
|
|
|
|
int offset_end;
|
2020-01-07 18:18:08 +01:00
|
|
|
int ret;
|
2019-10-21 15:12:11 +02:00
|
|
|
|
2021-11-02 17:29:05 +01:00
|
|
|
if (!s->blk || !blk_is_writable(s->blk)) {
|
2019-10-21 15:12:11 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset_end = offset + size;
|
|
|
|
offset = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE);
|
|
|
|
offset_end = QEMU_ALIGN_UP(offset_end, BDRV_SECTOR_SIZE);
|
|
|
|
|
2020-01-07 18:18:08 +01:00
|
|
|
ret = blk_pwrite(s->blk, offset, s->storage + offset,
|
|
|
|
offset_end - offset, 0);
|
|
|
|
if (ret < 0) {
|
2020-01-08 10:03:48 +01:00
|
|
|
error_report("Could not update PNOR offset=0x%" PRIx32" : %s", offset,
|
|
|
|
strerror(-ret));
|
2020-01-07 18:18:08 +01:00
|
|
|
}
|
2019-10-21 15:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pnv_pnor_write(void *opaque, hwaddr addr, uint64_t data,
|
|
|
|
unsigned size)
|
|
|
|
{
|
|
|
|
PnvPnor *s = PNV_PNOR(opaque);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
s->storage[addr + i] = (data >> (8 * (size - i - 1))) & 0xFF;
|
|
|
|
}
|
|
|
|
pnv_pnor_update(s, addr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Check endianness: skiboot is BIG, Aspeed AHB is LITTLE, flash
|
|
|
|
* is BIG.
|
|
|
|
*/
|
|
|
|
static const MemoryRegionOps pnv_pnor_ops = {
|
|
|
|
.read = pnv_pnor_read,
|
|
|
|
.write = pnv_pnor_write,
|
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
|
|
|
.valid = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static void pnv_pnor_realize(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
PnvPnor *s = PNV_PNOR(dev);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (s->blk) {
|
|
|
|
uint64_t perm = BLK_PERM_CONSISTENT_READ |
|
2021-01-18 13:34:47 +01:00
|
|
|
(blk_supports_write_perm(s->blk) ? BLK_PERM_WRITE : 0);
|
2019-10-21 15:12:11 +02:00
|
|
|
ret = blk_set_perm(s->blk, perm, BLK_PERM_ALL, errp);
|
|
|
|
if (ret < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->size = blk_getlength(s->blk);
|
|
|
|
if (s->size <= 0) {
|
|
|
|
error_setg(errp, "failed to get flash size");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->storage = blk_blockalign(s->blk, s->size);
|
|
|
|
|
block: Add a 'flags' param to blk_pread()
For consistency with other I/O functions, and in preparation to
implement it using generated_co_wrapper.
Callers were updated using this Coccinelle script:
@@ expression blk, offset, buf, bytes; @@
- blk_pread(blk, offset, buf, bytes)
+ blk_pread(blk, offset, buf, bytes, 0)
It had no effect on hw/block/nand.c, presumably due to the #if, so that
file was updated manually.
Overly-long lines were then fixed by hand.
Signed-off-by: Alberto Faria <afaria@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20220705161527.1054072-3-afaria@redhat.com>
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2022-07-05 18:15:10 +02:00
|
|
|
if (blk_pread(s->blk, 0, s->storage, s->size, 0) < 0) {
|
2019-10-21 15:12:11 +02:00
|
|
|
error_setg(errp, "failed to read the initial flash content");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
s->storage = blk_blockalign(NULL, s->size);
|
|
|
|
memset(s->storage, 0xFF, s->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
memory_region_init_io(&s->mmio, OBJECT(s), &pnv_pnor_ops, s,
|
|
|
|
TYPE_PNV_PNOR, s->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Property pnv_pnor_properties[] = {
|
2020-01-08 10:03:47 +01:00
|
|
|
DEFINE_PROP_INT64("size", PnvPnor, size, 128 * MiB),
|
2019-10-21 15:12:11 +02:00
|
|
|
DEFINE_PROP_DRIVE("drive", PnvPnor, blk),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void pnv_pnor_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
dc->realize = pnv_pnor_realize;
|
2020-01-10 16:30:32 +01:00
|
|
|
device_class_set_props(dc, pnv_pnor_properties);
|
2019-10-21 15:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo pnv_pnor_info = {
|
|
|
|
.name = TYPE_PNV_PNOR,
|
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(PnvPnor),
|
|
|
|
.class_init = pnv_pnor_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void pnv_pnor_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&pnv_pnor_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(pnv_pnor_register_types)
|