2006-06-26 00:28:15 +02:00
|
|
|
/*
|
|
|
|
* CFI parallel flash with AMD command set emulation
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2006-06-26 00:28:15 +02:00
|
|
|
* Copyright (c) 2005 Jocelyn Mayer
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2006-06-26 00:28:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For now, this code can emulate flashes of 1, 2 or 4 bytes width.
|
|
|
|
* Supported commands/modes are:
|
|
|
|
* - flash read
|
|
|
|
* - flash write
|
|
|
|
* - flash ID read
|
|
|
|
* - sector erase
|
|
|
|
* - chip erase
|
|
|
|
* - unlock bypass command
|
|
|
|
* - CFI queries
|
|
|
|
*
|
|
|
|
* It does not support flash interleaving.
|
|
|
|
* It does not implement boot blocs with reduced size
|
|
|
|
* It does not implement software data protection as found in many real chips
|
|
|
|
* It does not implement erase suspend/resume commands
|
|
|
|
* It does not implement multiple sectors erase
|
|
|
|
*/
|
|
|
|
|
2016-01-18 19:01:42 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/hw.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/block/flash.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2014-10-07 13:59:18 +02:00
|
|
|
#include "sysemu/block-backend.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/host-utils.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
2018-06-21 19:12:57 +02:00
|
|
|
#include "trace.h"
|
2006-06-26 00:28:15 +02:00
|
|
|
|
|
|
|
//#define PFLASH_DEBUG
|
|
|
|
#ifdef PFLASH_DEBUG
|
2012-12-04 07:04:34 +01:00
|
|
|
#define DPRINTF(fmt, ...) \
|
|
|
|
do { \
|
2013-08-28 05:59:37 +02:00
|
|
|
fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__); \
|
2006-06-26 00:28:15 +02:00
|
|
|
} while (0)
|
|
|
|
#else
|
2009-05-13 19:53:17 +02:00
|
|
|
#define DPRINTF(fmt, ...) do { } while (0)
|
2006-06-26 00:28:15 +02:00
|
|
|
#endif
|
|
|
|
|
2011-04-10 12:53:39 +02:00
|
|
|
#define PFLASH_LAZY_ROMD_THRESHOLD 42
|
|
|
|
|
2013-07-01 12:18:28 +02:00
|
|
|
#define CFI_PFLASH02(obj) OBJECT_CHECK(pflash_t, (obj), TYPE_CFI_PFLASH02)
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
struct pflash_t {
|
2013-07-01 12:18:28 +02:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
2014-10-07 13:59:18 +02:00
|
|
|
BlockBackend *blk;
|
2007-06-08 18:45:23 +02:00
|
|
|
uint32_t sector_len;
|
2012-10-30 08:45:11 +01:00
|
|
|
uint32_t nb_blocs;
|
2008-04-17 01:45:36 +02:00
|
|
|
uint32_t chip_len;
|
2012-10-30 08:45:11 +01:00
|
|
|
uint8_t mappings;
|
|
|
|
uint8_t width;
|
|
|
|
uint8_t be;
|
2006-06-26 00:28:15 +02:00
|
|
|
int wcycle; /* if 0, the flash is read normally */
|
|
|
|
int bypass;
|
|
|
|
int ro;
|
|
|
|
uint8_t cmd;
|
|
|
|
uint8_t status;
|
2012-10-30 08:45:11 +01:00
|
|
|
/* FIXME: implement array device properties */
|
|
|
|
uint16_t ident0;
|
|
|
|
uint16_t ident1;
|
|
|
|
uint16_t ident2;
|
|
|
|
uint16_t ident3;
|
|
|
|
uint16_t unlock_addr0;
|
|
|
|
uint16_t unlock_addr1;
|
2006-06-26 00:28:15 +02:00
|
|
|
uint8_t cfi_table[0x52];
|
|
|
|
QEMUTimer *timer;
|
2011-08-04 14:55:30 +02:00
|
|
|
/* The device replicates the flash memory across its memory space. Emulate
|
|
|
|
* that by having a container (.mem) filled with an array of aliases
|
|
|
|
* (.mem_mappings) pointing to the flash memory (.orig_mem).
|
|
|
|
*/
|
|
|
|
MemoryRegion mem;
|
|
|
|
MemoryRegion *mem_mappings; /* array; one per mapping */
|
|
|
|
MemoryRegion orig_mem;
|
2008-04-17 01:58:02 +02:00
|
|
|
int rom_mode;
|
2011-04-10 12:53:39 +02:00
|
|
|
int read_counter; /* used for lazy switch-back to rom mode */
|
2012-10-30 08:45:11 +01:00
|
|
|
char *name;
|
2006-06-26 00:28:15 +02:00
|
|
|
void *storage;
|
|
|
|
};
|
|
|
|
|
2011-08-04 14:55:30 +02:00
|
|
|
/*
|
|
|
|
* Set up replicated mappings of the same region.
|
|
|
|
*/
|
|
|
|
static void pflash_setup_mappings(pflash_t *pfl)
|
2011-08-04 14:55:30 +02:00
|
|
|
{
|
2011-08-04 14:55:30 +02:00
|
|
|
unsigned i;
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr size = memory_region_size(&pfl->orig_mem);
|
2011-08-04 14:55:30 +02:00
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init(&pfl->mem, OBJECT(pfl), "pflash", pfl->mappings * size);
|
2011-08-04 14:55:30 +02:00
|
|
|
pfl->mem_mappings = g_new(MemoryRegion, pfl->mappings);
|
|
|
|
for (i = 0; i < pfl->mappings; ++i) {
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_alias(&pfl->mem_mappings[i], OBJECT(pfl),
|
|
|
|
"pflash-alias", &pfl->orig_mem, 0, size);
|
2011-08-04 14:55:30 +02:00
|
|
|
memory_region_add_subregion(&pfl->mem, i * size, &pfl->mem_mappings[i]);
|
|
|
|
}
|
|
|
|
}
|
2011-08-25 21:39:18 +02:00
|
|
|
|
2011-08-04 14:55:30 +02:00
|
|
|
static void pflash_register_memory(pflash_t *pfl, int rom_mode)
|
|
|
|
{
|
2013-05-07 19:04:25 +02:00
|
|
|
memory_region_rom_device_set_romd(&pfl->orig_mem, rom_mode);
|
2012-02-04 15:58:02 +01:00
|
|
|
pfl->rom_mode = rom_mode;
|
2008-04-17 01:45:36 +02:00
|
|
|
}
|
|
|
|
|
2006-06-26 00:28:15 +02:00
|
|
|
static void pflash_timer (void *opaque)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
pflash_t *pfl = opaque;
|
2006-06-26 00:28:15 +02:00
|
|
|
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_timer_expired(pfl->cmd);
|
2006-06-26 00:28:15 +02:00
|
|
|
/* Reset flash */
|
|
|
|
pfl->status ^= 0x80;
|
|
|
|
if (pfl->bypass) {
|
|
|
|
pfl->wcycle = 2;
|
|
|
|
} else {
|
2008-04-17 01:45:36 +02:00
|
|
|
pflash_register_memory(pfl, 1);
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->wcycle = 0;
|
|
|
|
}
|
|
|
|
pfl->cmd = 0;
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t pflash_read (pflash_t *pfl, hwaddr offset,
|
2010-03-29 21:23:55 +02:00
|
|
|
int width, int be)
|
2006-06-26 00:28:15 +02:00
|
|
|
{
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr boff;
|
2006-06-26 00:28:15 +02:00
|
|
|
uint32_t ret;
|
|
|
|
uint8_t *p;
|
|
|
|
|
|
|
|
ret = -1;
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_read(offset, pfl->cmd, width, pfl->wcycle);
|
2011-04-10 12:53:39 +02:00
|
|
|
/* Lazy reset to ROMD mode after a certain amount of read accesses */
|
|
|
|
if (!pfl->rom_mode && pfl->wcycle == 0 &&
|
|
|
|
++pfl->read_counter > PFLASH_LAZY_ROMD_THRESHOLD) {
|
|
|
|
pflash_register_memory(pfl, 1);
|
2008-06-09 02:20:13 +02:00
|
|
|
}
|
2008-04-17 01:45:36 +02:00
|
|
|
offset &= pfl->chip_len - 1;
|
2006-06-26 00:28:15 +02:00
|
|
|
boff = offset & 0xFF;
|
|
|
|
if (pfl->width == 2)
|
|
|
|
boff = boff >> 1;
|
|
|
|
else if (pfl->width == 4)
|
|
|
|
boff = boff >> 2;
|
|
|
|
switch (pfl->cmd) {
|
|
|
|
default:
|
|
|
|
/* This should never happen : reset state & treat it as a read*/
|
|
|
|
DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd);
|
|
|
|
pfl->wcycle = 0;
|
|
|
|
pfl->cmd = 0;
|
2013-01-21 13:50:54 +01:00
|
|
|
/* fall through to the read code */
|
2006-06-26 00:28:15 +02:00
|
|
|
case 0x80:
|
|
|
|
/* We accept reads during second unlock sequence... */
|
|
|
|
case 0x00:
|
|
|
|
flash_read:
|
|
|
|
/* Flash area read */
|
|
|
|
p = pfl->storage;
|
|
|
|
switch (width) {
|
|
|
|
case 1:
|
|
|
|
ret = p[offset];
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_data_read8(offset, ret);
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2010-03-29 21:23:55 +02:00
|
|
|
if (be) {
|
|
|
|
ret = p[offset] << 8;
|
|
|
|
ret |= p[offset + 1];
|
|
|
|
} else {
|
|
|
|
ret = p[offset];
|
|
|
|
ret |= p[offset + 1] << 8;
|
|
|
|
}
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_data_read16(offset, ret);
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
case 4:
|
2010-03-29 21:23:55 +02:00
|
|
|
if (be) {
|
|
|
|
ret = p[offset] << 24;
|
|
|
|
ret |= p[offset + 1] << 16;
|
|
|
|
ret |= p[offset + 2] << 8;
|
|
|
|
ret |= p[offset + 3];
|
|
|
|
} else {
|
|
|
|
ret = p[offset];
|
|
|
|
ret |= p[offset + 1] << 8;
|
|
|
|
ret |= p[offset + 2] << 16;
|
|
|
|
ret |= p[offset + 3] << 24;
|
|
|
|
}
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_data_read32(offset, ret);
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x90:
|
|
|
|
/* flash ID read */
|
|
|
|
switch (boff) {
|
|
|
|
case 0x00:
|
|
|
|
case 0x01:
|
2012-10-30 08:45:11 +01:00
|
|
|
ret = boff & 0x01 ? pfl->ident1 : pfl->ident0;
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
case 0x02:
|
|
|
|
ret = 0x00; /* Pretend all sectors are unprotected */
|
|
|
|
break;
|
|
|
|
case 0x0E:
|
|
|
|
case 0x0F:
|
2012-10-30 08:45:11 +01:00
|
|
|
ret = boff & 0x01 ? pfl->ident3 : pfl->ident2;
|
|
|
|
if (ret == (uint8_t)-1) {
|
2006-06-26 00:28:15 +02:00
|
|
|
goto flash_read;
|
2012-10-30 08:45:11 +01:00
|
|
|
}
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto flash_read;
|
|
|
|
}
|
2011-05-22 14:02:39 +02:00
|
|
|
DPRINTF("%s: ID " TARGET_FMT_plx " %x\n", __func__, boff, ret);
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
case 0xA0:
|
|
|
|
case 0x10:
|
|
|
|
case 0x30:
|
|
|
|
/* Status register read */
|
|
|
|
ret = pfl->status;
|
|
|
|
DPRINTF("%s: status %x\n", __func__, ret);
|
|
|
|
/* Toggle bit 6 */
|
|
|
|
pfl->status ^= 0x40;
|
|
|
|
break;
|
|
|
|
case 0x98:
|
|
|
|
/* CFI query mode */
|
2018-04-05 01:32:38 +02:00
|
|
|
if (boff < sizeof(pfl->cfi_table)) {
|
2006-06-26 00:28:15 +02:00
|
|
|
ret = pfl->cfi_table[boff];
|
2018-04-05 01:32:38 +02:00
|
|
|
} else {
|
|
|
|
ret = 0;
|
|
|
|
}
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update flash content on disk */
|
2009-10-01 23:12:16 +02:00
|
|
|
static void pflash_update(pflash_t *pfl, int offset,
|
2006-06-26 00:28:15 +02:00
|
|
|
int size)
|
|
|
|
{
|
|
|
|
int offset_end;
|
2014-10-07 13:59:18 +02:00
|
|
|
if (pfl->blk) {
|
2006-06-26 00:28:15 +02:00
|
|
|
offset_end = offset + size;
|
2016-05-06 18:26:38 +02:00
|
|
|
/* widen to sector boundaries */
|
|
|
|
offset = QEMU_ALIGN_DOWN(offset, BDRV_SECTOR_SIZE);
|
|
|
|
offset_end = QEMU_ALIGN_UP(offset_end, BDRV_SECTOR_SIZE);
|
|
|
|
blk_pwrite(pfl->blk, offset, pfl->storage + offset,
|
|
|
|
offset_end - offset, 0);
|
2006-06-26 00:28:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void pflash_write (pflash_t *pfl, hwaddr offset,
|
2010-03-29 21:23:55 +02:00
|
|
|
uint32_t value, int width, int be)
|
2006-06-26 00:28:15 +02:00
|
|
|
{
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr boff;
|
2006-06-26 00:28:15 +02:00
|
|
|
uint8_t *p;
|
|
|
|
uint8_t cmd;
|
|
|
|
|
2007-04-16 09:14:26 +02:00
|
|
|
cmd = value;
|
|
|
|
if (pfl->cmd != 0xA0 && cmd == 0xF0) {
|
|
|
|
#if 0
|
|
|
|
DPRINTF("%s: flash reset asked (%02x %02x)\n",
|
|
|
|
__func__, pfl->cmd, cmd);
|
|
|
|
#endif
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_write(offset, value, width, pfl->wcycle);
|
2008-04-17 01:45:36 +02:00
|
|
|
offset &= pfl->chip_len - 1;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2010-03-27 19:24:35 +01:00
|
|
|
DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d\n", __func__,
|
2007-04-14 14:17:09 +02:00
|
|
|
offset, value, width);
|
2006-06-26 00:28:15 +02:00
|
|
|
boff = offset & (pfl->sector_len - 1);
|
|
|
|
if (pfl->width == 2)
|
|
|
|
boff = boff >> 1;
|
|
|
|
else if (pfl->width == 4)
|
|
|
|
boff = boff >> 2;
|
|
|
|
switch (pfl->wcycle) {
|
|
|
|
case 0:
|
2008-04-17 01:58:02 +02:00
|
|
|
/* Set the device in I/O access mode if required */
|
|
|
|
if (pfl->rom_mode)
|
|
|
|
pflash_register_memory(pfl, 0);
|
2011-04-10 12:53:39 +02:00
|
|
|
pfl->read_counter = 0;
|
2006-06-26 00:28:15 +02:00
|
|
|
/* We're in read mode */
|
|
|
|
check_unlock0:
|
|
|
|
if (boff == 0x55 && cmd == 0x98) {
|
|
|
|
enter_CFI_mode:
|
|
|
|
/* Enter CFI query mode */
|
|
|
|
pfl->wcycle = 7;
|
|
|
|
pfl->cmd = 0x98;
|
|
|
|
return;
|
|
|
|
}
|
2012-10-30 08:45:11 +01:00
|
|
|
if (boff != pfl->unlock_addr0 || cmd != 0xAA) {
|
2010-03-27 19:24:35 +01:00
|
|
|
DPRINTF("%s: unlock0 failed " TARGET_FMT_plx " %02x %04x\n",
|
2012-10-30 08:45:11 +01:00
|
|
|
__func__, boff, cmd, pfl->unlock_addr0);
|
2006-06-26 00:28:15 +02:00
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
DPRINTF("%s: unlock sequence started\n", __func__);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* We started an unlock sequence */
|
|
|
|
check_unlock1:
|
2012-10-30 08:45:11 +01:00
|
|
|
if (boff != pfl->unlock_addr1 || cmd != 0x55) {
|
2010-03-27 19:24:35 +01:00
|
|
|
DPRINTF("%s: unlock1 failed " TARGET_FMT_plx " %02x\n", __func__,
|
2007-04-14 14:17:09 +02:00
|
|
|
boff, cmd);
|
2006-06-26 00:28:15 +02:00
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
DPRINTF("%s: unlock sequence done\n", __func__);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* We finished an unlock sequence */
|
2012-10-30 08:45:11 +01:00
|
|
|
if (!pfl->bypass && boff != pfl->unlock_addr0) {
|
2010-03-27 19:24:35 +01:00
|
|
|
DPRINTF("%s: command failed " TARGET_FMT_plx " %02x\n", __func__,
|
2007-04-14 14:17:09 +02:00
|
|
|
boff, cmd);
|
2006-06-26 00:28:15 +02:00
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
switch (cmd) {
|
|
|
|
case 0x20:
|
|
|
|
pfl->bypass = 1;
|
|
|
|
goto do_bypass;
|
|
|
|
case 0x80:
|
|
|
|
case 0x90:
|
|
|
|
case 0xA0:
|
|
|
|
pfl->cmd = cmd;
|
|
|
|
DPRINTF("%s: starting command %02x\n", __func__, cmd);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DPRINTF("%s: unknown command %02x\n", __func__, cmd);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
switch (pfl->cmd) {
|
|
|
|
case 0x80:
|
|
|
|
/* We need another unlock sequence */
|
|
|
|
goto check_unlock0;
|
|
|
|
case 0xA0:
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_data_write(offset, value, width, 0);
|
2006-06-26 00:28:15 +02:00
|
|
|
p = pfl->storage;
|
2012-02-22 08:18:49 +01:00
|
|
|
if (!pfl->ro) {
|
|
|
|
switch (width) {
|
|
|
|
case 1:
|
2010-03-29 21:23:55 +02:00
|
|
|
p[offset] &= value;
|
2012-02-22 08:18:49 +01:00
|
|
|
pflash_update(pfl, offset, 1);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (be) {
|
|
|
|
p[offset] &= value >> 8;
|
|
|
|
p[offset + 1] &= value;
|
|
|
|
} else {
|
|
|
|
p[offset] &= value;
|
|
|
|
p[offset + 1] &= value >> 8;
|
|
|
|
}
|
|
|
|
pflash_update(pfl, offset, 2);
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
if (be) {
|
|
|
|
p[offset] &= value >> 24;
|
|
|
|
p[offset + 1] &= value >> 16;
|
|
|
|
p[offset + 2] &= value >> 8;
|
|
|
|
p[offset + 3] &= value;
|
|
|
|
} else {
|
|
|
|
p[offset] &= value;
|
|
|
|
p[offset + 1] &= value >> 8;
|
|
|
|
p[offset + 2] &= value >> 16;
|
|
|
|
p[offset + 3] &= value >> 24;
|
|
|
|
}
|
|
|
|
pflash_update(pfl, offset, 4);
|
|
|
|
break;
|
2010-03-29 21:23:55 +02:00
|
|
|
}
|
2006-06-26 00:28:15 +02:00
|
|
|
}
|
|
|
|
pfl->status = 0x00 | ~(value & 0x80);
|
|
|
|
/* Let's pretend write is immediate */
|
|
|
|
if (pfl->bypass)
|
|
|
|
goto do_bypass;
|
|
|
|
goto reset_flash;
|
|
|
|
case 0x90:
|
|
|
|
if (pfl->bypass && cmd == 0x00) {
|
|
|
|
/* Unlock bypass reset */
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
/* We can enter CFI query mode from autoselect mode */
|
|
|
|
if (boff == 0x55 && cmd == 0x98)
|
|
|
|
goto enter_CFI_mode;
|
|
|
|
/* No break here */
|
|
|
|
default:
|
|
|
|
DPRINTF("%s: invalid write for command %02x\n",
|
|
|
|
__func__, pfl->cmd);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
case 4:
|
|
|
|
switch (pfl->cmd) {
|
|
|
|
case 0xA0:
|
2011-04-28 17:20:38 +02:00
|
|
|
/* Ignore writes while flash data write is occurring */
|
2006-06-26 00:28:15 +02:00
|
|
|
/* As we suppose write is immediate, this should never happen */
|
|
|
|
return;
|
|
|
|
case 0x80:
|
|
|
|
goto check_unlock1;
|
|
|
|
default:
|
|
|
|
/* Should never happen */
|
|
|
|
DPRINTF("%s: invalid command state %02x (wc 4)\n",
|
|
|
|
__func__, pfl->cmd);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
switch (cmd) {
|
|
|
|
case 0x10:
|
2012-10-30 08:45:11 +01:00
|
|
|
if (boff != pfl->unlock_addr0) {
|
2010-03-27 19:24:35 +01:00
|
|
|
DPRINTF("%s: chip erase: invalid address " TARGET_FMT_plx "\n",
|
2006-06-26 00:28:15 +02:00
|
|
|
__func__, offset);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
/* Chip erase */
|
|
|
|
DPRINTF("%s: start chip erase\n", __func__);
|
2012-02-22 08:18:49 +01:00
|
|
|
if (!pfl->ro) {
|
|
|
|
memset(pfl->storage, 0xFF, pfl->chip_len);
|
|
|
|
pflash_update(pfl, 0, pfl->chip_len);
|
|
|
|
}
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->status = 0x00;
|
|
|
|
/* Let's wait 5 seconds before chip erase is done */
|
2016-03-21 17:02:30 +01:00
|
|
|
timer_mod(pfl->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
|
|
|
|
(NANOSECONDS_PER_SECOND * 5));
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
case 0x30:
|
|
|
|
/* Sector erase */
|
|
|
|
p = pfl->storage;
|
|
|
|
offset &= ~(pfl->sector_len - 1);
|
2010-03-27 19:24:35 +01:00
|
|
|
DPRINTF("%s: start sector erase at " TARGET_FMT_plx "\n", __func__,
|
2007-04-14 14:17:09 +02:00
|
|
|
offset);
|
2012-02-22 08:18:49 +01:00
|
|
|
if (!pfl->ro) {
|
|
|
|
memset(p + offset, 0xFF, pfl->sector_len);
|
|
|
|
pflash_update(pfl, offset, pfl->sector_len);
|
|
|
|
}
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->status = 0x00;
|
|
|
|
/* Let's wait 1/2 second before sector erase is done */
|
2016-03-21 17:02:30 +01:00
|
|
|
timer_mod(pfl->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
|
|
|
|
(NANOSECONDS_PER_SECOND / 2));
|
2006-06-26 00:28:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DPRINTF("%s: invalid command %02x (wc 5)\n", __func__, cmd);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
pfl->cmd = cmd;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
switch (pfl->cmd) {
|
|
|
|
case 0x10:
|
|
|
|
/* Ignore writes during chip erase */
|
|
|
|
return;
|
|
|
|
case 0x30:
|
|
|
|
/* Ignore writes during sector erase */
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
/* Should never happen */
|
|
|
|
DPRINTF("%s: invalid command state %02x (wc 6)\n",
|
|
|
|
__func__, pfl->cmd);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 7: /* Special value for CFI queries */
|
|
|
|
DPRINTF("%s: invalid write in CFI query mode\n", __func__);
|
|
|
|
goto reset_flash;
|
|
|
|
default:
|
|
|
|
/* Should never happen */
|
|
|
|
DPRINTF("%s: invalid write state (wc 7)\n", __func__);
|
|
|
|
goto reset_flash;
|
|
|
|
}
|
|
|
|
pfl->wcycle++;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Reset flash */
|
|
|
|
reset_flash:
|
2018-06-21 19:12:57 +02:00
|
|
|
trace_pflash_reset();
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->bypass = 0;
|
|
|
|
pfl->wcycle = 0;
|
|
|
|
pfl->cmd = 0;
|
|
|
|
return;
|
|
|
|
|
|
|
|
do_bypass:
|
|
|
|
pfl->wcycle = 2;
|
|
|
|
pfl->cmd = 0;
|
|
|
|
}
|
|
|
|
|
2018-06-15 15:57:13 +02:00
|
|
|
static uint64_t pflash_be_readfn(void *opaque, hwaddr addr, unsigned size)
|
2010-03-29 21:23:55 +02:00
|
|
|
{
|
2018-06-15 15:57:13 +02:00
|
|
|
return pflash_read(opaque, addr, size, 1);
|
2010-03-29 21:23:55 +02:00
|
|
|
}
|
|
|
|
|
2018-06-15 15:57:13 +02:00
|
|
|
static void pflash_be_writefn(void *opaque, hwaddr addr,
|
|
|
|
uint64_t value, unsigned size)
|
2010-03-29 21:23:55 +02:00
|
|
|
{
|
2018-06-15 15:57:13 +02:00
|
|
|
pflash_write(opaque, addr, value, size, 1);
|
2010-03-29 21:23:55 +02:00
|
|
|
}
|
|
|
|
|
2018-06-15 15:57:13 +02:00
|
|
|
static uint64_t pflash_le_readfn(void *opaque, hwaddr addr, unsigned size)
|
2010-03-29 21:23:55 +02:00
|
|
|
{
|
2018-06-15 15:57:13 +02:00
|
|
|
return pflash_read(opaque, addr, size, 0);
|
2006-06-26 00:28:15 +02:00
|
|
|
}
|
|
|
|
|
2018-06-15 15:57:13 +02:00
|
|
|
static void pflash_le_writefn(void *opaque, hwaddr addr,
|
|
|
|
uint64_t value, unsigned size)
|
2010-03-29 21:23:55 +02:00
|
|
|
{
|
2018-06-15 15:57:13 +02:00
|
|
|
pflash_write(opaque, addr, value, size, 0);
|
2006-06-26 00:28:15 +02:00
|
|
|
}
|
|
|
|
|
2011-08-04 14:55:30 +02:00
|
|
|
static const MemoryRegionOps pflash_cfi02_ops_be = {
|
2018-06-15 15:57:13 +02:00
|
|
|
.read = pflash_be_readfn,
|
|
|
|
.write = pflash_be_writefn,
|
|
|
|
.valid.min_access_size = 1,
|
|
|
|
.valid.max_access_size = 4,
|
2011-08-04 14:55:30 +02:00
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2010-03-29 21:23:55 +02:00
|
|
|
};
|
|
|
|
|
2011-08-04 14:55:30 +02:00
|
|
|
static const MemoryRegionOps pflash_cfi02_ops_le = {
|
2018-06-15 15:57:13 +02:00
|
|
|
.read = pflash_le_readfn,
|
|
|
|
.write = pflash_le_writefn,
|
|
|
|
.valid.min_access_size = 1,
|
|
|
|
.valid.max_access_size = 4,
|
2011-08-04 14:55:30 +02:00
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2006-06-26 00:28:15 +02:00
|
|
|
};
|
|
|
|
|
2013-07-01 12:18:29 +02:00
|
|
|
static void pflash_cfi02_realize(DeviceState *dev, Error **errp)
|
2006-06-26 00:28:15 +02:00
|
|
|
{
|
2013-07-01 12:18:28 +02:00
|
|
|
pflash_t *pfl = CFI_PFLASH02(dev);
|
2012-10-30 08:45:11 +01:00
|
|
|
uint32_t chip_len;
|
2009-08-21 06:57:38 +02:00
|
|
|
int ret;
|
2014-09-09 07:27:57 +02:00
|
|
|
Error *local_err = NULL;
|
2006-06-26 00:28:15 +02:00
|
|
|
|
hw/block/pflash_cfi*.c: fix confusing assert fail message
The patch is to fix the confusing assert fail message caused by
un-initialized device structure (from bite sized tasks).
The bug can be reproduced by
./qemu-system-x86_64 -nographic -device cfi.pflash01
The CFI hardware is dynamically loaded by QOM realizing mechanism,
however the realizing function in pflash_cfi01_realize function
requires the device being initialized manually before calling, like
./qemu-system-x86_64 -nographic
-device cfi.pflash01,num-blocks=1024,sector-length=4096,name=testcard
Once the initializing parameters are left off in the command, it will
leave the device structure not initialized, which makes
pflash_cfi01_realize try to realize a zero-volume card, causing
/mnt/EXT_volume/projects/qemu/qemu-dev/exec.c:1378:
find_ram_offset: Assertion `size != 0\' failed.
Through my test, at least the flash device's block-number, sector-length
and its name is needed for pflash_cfi01_realize to behave correctly. So
I think the new asserts are needed to hint the QEMU user to specify
the device's parameters correctly.
Signed-off-by: Ziyue Yang <skiver.cloud.yzy@gmail.com>
Message-Id: <1481810693-13733-1-git-send-email-skiver.cloud.yzy@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Ziyue Yang <yzylivezh@hotmail.com>
2016-12-15 15:04:53 +01:00
|
|
|
if (pfl->sector_len == 0) {
|
|
|
|
error_setg(errp, "attribute \"sector-length\" not specified or zero.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (pfl->nb_blocs == 0) {
|
|
|
|
error_setg(errp, "attribute \"num-blocks\" not specified or zero.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (pfl->name == NULL) {
|
|
|
|
error_setg(errp, "attribute \"name\" not specified.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-30 08:45:11 +01:00
|
|
|
chip_len = pfl->sector_len * pfl->nb_blocs;
|
2006-06-26 00:28:15 +02:00
|
|
|
/* XXX: to be fixed */
|
2007-04-16 09:14:26 +02:00
|
|
|
#if 0
|
2006-06-26 00:28:15 +02:00
|
|
|
if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) &&
|
|
|
|
total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024))
|
|
|
|
return NULL;
|
2007-04-16 09:14:26 +02:00
|
|
|
#endif
|
2012-10-30 08:45:11 +01:00
|
|
|
|
2017-07-07 16:42:54 +02:00
|
|
|
memory_region_init_rom_device(&pfl->orig_mem, OBJECT(pfl), pfl->be ?
|
2012-10-30 08:45:11 +01:00
|
|
|
&pflash_cfi02_ops_be : &pflash_cfi02_ops_le,
|
2014-09-09 07:27:57 +02:00
|
|
|
pfl, pfl->name, chip_len, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-04 14:55:30 +02:00
|
|
|
pfl->storage = memory_region_get_ram_ptr(&pfl->orig_mem);
|
2008-04-17 01:45:36 +02:00
|
|
|
pfl->chip_len = chip_len;
|
2017-01-24 13:43:31 +01:00
|
|
|
|
|
|
|
if (pfl->blk) {
|
|
|
|
uint64_t perm;
|
|
|
|
pfl->ro = blk_is_read_only(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;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pfl->ro = 0;
|
|
|
|
}
|
|
|
|
|
2014-10-07 13:59:18 +02:00
|
|
|
if (pfl->blk) {
|
2006-06-26 00:28:15 +02:00
|
|
|
/* read the initial flash content */
|
2016-05-06 18:26:38 +02:00
|
|
|
ret = blk_pread(pfl->blk, 0, pfl->storage, chip_len);
|
2009-08-21 06:57:38 +02:00
|
|
|
if (ret < 0) {
|
2013-07-01 12:18:29 +02:00
|
|
|
vmstate_unregister_ram(&pfl->orig_mem, DEVICE(pfl));
|
|
|
|
error_setg(errp, "failed to read the initial flash content");
|
|
|
|
return;
|
2009-08-21 06:57:38 +02:00
|
|
|
}
|
2006-06-26 00:28:15 +02:00
|
|
|
}
|
2012-02-22 08:18:49 +01:00
|
|
|
|
2011-08-04 14:55:30 +02:00
|
|
|
pflash_setup_mappings(pfl);
|
|
|
|
pfl->rom_mode = 1;
|
2013-07-01 12:18:29 +02:00
|
|
|
sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem);
|
2012-02-22 08:18:49 +01:00
|
|
|
|
2013-08-21 17:03:08 +02:00
|
|
|
pfl->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, pflash_timer, pfl);
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->wcycle = 0;
|
|
|
|
pfl->cmd = 0;
|
|
|
|
pfl->status = 0;
|
|
|
|
/* Hardcoded CFI table (mostly from SG29 Spansion flash) */
|
|
|
|
/* Standard "QRY" string */
|
|
|
|
pfl->cfi_table[0x10] = 'Q';
|
|
|
|
pfl->cfi_table[0x11] = 'R';
|
|
|
|
pfl->cfi_table[0x12] = 'Y';
|
|
|
|
/* Command set (AMD/Fujitsu) */
|
|
|
|
pfl->cfi_table[0x13] = 0x02;
|
|
|
|
pfl->cfi_table[0x14] = 0x00;
|
2008-05-08 23:02:43 +02:00
|
|
|
/* Primary extended table address */
|
|
|
|
pfl->cfi_table[0x15] = 0x31;
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->cfi_table[0x16] = 0x00;
|
|
|
|
/* Alternate command set (none) */
|
|
|
|
pfl->cfi_table[0x17] = 0x00;
|
|
|
|
pfl->cfi_table[0x18] = 0x00;
|
|
|
|
/* Alternate extended table (none) */
|
|
|
|
pfl->cfi_table[0x19] = 0x00;
|
|
|
|
pfl->cfi_table[0x1A] = 0x00;
|
|
|
|
/* Vcc min */
|
|
|
|
pfl->cfi_table[0x1B] = 0x27;
|
|
|
|
/* Vcc max */
|
|
|
|
pfl->cfi_table[0x1C] = 0x36;
|
|
|
|
/* Vpp min (no Vpp pin) */
|
|
|
|
pfl->cfi_table[0x1D] = 0x00;
|
|
|
|
/* Vpp max (no Vpp pin) */
|
|
|
|
pfl->cfi_table[0x1E] = 0x00;
|
|
|
|
/* Reserved */
|
|
|
|
pfl->cfi_table[0x1F] = 0x07;
|
2008-05-08 23:02:43 +02:00
|
|
|
/* Timeout for min size buffer write (NA) */
|
|
|
|
pfl->cfi_table[0x20] = 0x00;
|
2006-06-26 00:28:15 +02:00
|
|
|
/* Typical timeout for block erase (512 ms) */
|
|
|
|
pfl->cfi_table[0x21] = 0x09;
|
|
|
|
/* Typical timeout for full chip erase (4096 ms) */
|
|
|
|
pfl->cfi_table[0x22] = 0x0C;
|
|
|
|
/* Reserved */
|
|
|
|
pfl->cfi_table[0x23] = 0x01;
|
2008-05-08 23:02:43 +02:00
|
|
|
/* Max timeout for buffer write (NA) */
|
|
|
|
pfl->cfi_table[0x24] = 0x00;
|
2006-06-26 00:28:15 +02:00
|
|
|
/* Max timeout for block erase */
|
|
|
|
pfl->cfi_table[0x25] = 0x0A;
|
|
|
|
/* Max timeout for chip erase */
|
|
|
|
pfl->cfi_table[0x26] = 0x0D;
|
|
|
|
/* Device size */
|
2008-05-08 23:02:43 +02:00
|
|
|
pfl->cfi_table[0x27] = ctz32(chip_len);
|
2006-06-26 00:28:15 +02:00
|
|
|
/* Flash device interface (8 & 16 bits) */
|
|
|
|
pfl->cfi_table[0x28] = 0x02;
|
|
|
|
pfl->cfi_table[0x29] = 0x00;
|
|
|
|
/* Max number of bytes in multi-bytes write */
|
2007-04-16 09:14:26 +02:00
|
|
|
/* XXX: disable buffered write as it's not supported */
|
|
|
|
// pfl->cfi_table[0x2A] = 0x05;
|
|
|
|
pfl->cfi_table[0x2A] = 0x00;
|
2006-06-26 00:28:15 +02:00
|
|
|
pfl->cfi_table[0x2B] = 0x00;
|
|
|
|
/* Number of erase block regions (uniform) */
|
|
|
|
pfl->cfi_table[0x2C] = 0x01;
|
|
|
|
/* Erase block region 1 */
|
2012-10-30 08:45:11 +01:00
|
|
|
pfl->cfi_table[0x2D] = pfl->nb_blocs - 1;
|
|
|
|
pfl->cfi_table[0x2E] = (pfl->nb_blocs - 1) >> 8;
|
|
|
|
pfl->cfi_table[0x2F] = pfl->sector_len >> 8;
|
|
|
|
pfl->cfi_table[0x30] = pfl->sector_len >> 16;
|
2006-06-26 00:28:15 +02:00
|
|
|
|
2008-05-08 23:02:43 +02:00
|
|
|
/* Extended */
|
|
|
|
pfl->cfi_table[0x31] = 'P';
|
|
|
|
pfl->cfi_table[0x32] = 'R';
|
|
|
|
pfl->cfi_table[0x33] = 'I';
|
|
|
|
|
|
|
|
pfl->cfi_table[0x34] = '1';
|
|
|
|
pfl->cfi_table[0x35] = '0';
|
|
|
|
|
|
|
|
pfl->cfi_table[0x36] = 0x00;
|
|
|
|
pfl->cfi_table[0x37] = 0x00;
|
|
|
|
pfl->cfi_table[0x38] = 0x00;
|
|
|
|
pfl->cfi_table[0x39] = 0x00;
|
|
|
|
|
|
|
|
pfl->cfi_table[0x3a] = 0x00;
|
|
|
|
|
|
|
|
pfl->cfi_table[0x3b] = 0x00;
|
|
|
|
pfl->cfi_table[0x3c] = 0x00;
|
2012-10-30 08:45:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Property pflash_cfi02_properties[] = {
|
2014-10-07 13:59:18 +02:00
|
|
|
DEFINE_PROP_DRIVE("drive", struct pflash_t, blk),
|
2012-10-30 08:45:11 +01:00
|
|
|
DEFINE_PROP_UINT32("num-blocks", struct pflash_t, nb_blocs, 0),
|
|
|
|
DEFINE_PROP_UINT32("sector-length", struct pflash_t, sector_len, 0),
|
|
|
|
DEFINE_PROP_UINT8("width", struct pflash_t, width, 0),
|
|
|
|
DEFINE_PROP_UINT8("mappings", struct pflash_t, mappings, 0),
|
|
|
|
DEFINE_PROP_UINT8("big-endian", struct pflash_t, be, 0),
|
|
|
|
DEFINE_PROP_UINT16("id0", struct pflash_t, ident0, 0),
|
|
|
|
DEFINE_PROP_UINT16("id1", struct pflash_t, ident1, 0),
|
|
|
|
DEFINE_PROP_UINT16("id2", struct pflash_t, ident2, 0),
|
|
|
|
DEFINE_PROP_UINT16("id3", struct pflash_t, ident3, 0),
|
|
|
|
DEFINE_PROP_UINT16("unlock-addr0", struct pflash_t, unlock_addr0, 0),
|
|
|
|
DEFINE_PROP_UINT16("unlock-addr1", struct pflash_t, unlock_addr1, 0),
|
|
|
|
DEFINE_PROP_STRING("name", struct pflash_t, name),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void pflash_cfi02_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
|
2013-07-01 12:18:29 +02:00
|
|
|
dc->realize = pflash_cfi02_realize;
|
2012-10-30 08:45:11 +01:00
|
|
|
dc->props = pflash_cfi02_properties;
|
2014-12-07 19:20:45 +01:00
|
|
|
set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
|
2012-10-30 08:45:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo pflash_cfi02_info = {
|
2013-07-01 12:18:28 +02:00
|
|
|
.name = TYPE_CFI_PFLASH02,
|
2012-10-30 08:45:11 +01:00
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(struct pflash_t),
|
|
|
|
.class_init = pflash_cfi02_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void pflash_cfi02_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&pflash_cfi02_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(pflash_cfi02_register_types)
|
|
|
|
|
|
|
|
pflash_t *pflash_cfi02_register(hwaddr base,
|
|
|
|
DeviceState *qdev, const char *name,
|
|
|
|
hwaddr size,
|
2014-10-07 13:59:18 +02:00
|
|
|
BlockBackend *blk, uint32_t sector_len,
|
2012-10-30 08:45:11 +01:00
|
|
|
int nb_blocs, int nb_mappings, int width,
|
|
|
|
uint16_t id0, uint16_t id1,
|
|
|
|
uint16_t id2, uint16_t id3,
|
|
|
|
uint16_t unlock_addr0, uint16_t unlock_addr1,
|
|
|
|
int be)
|
|
|
|
{
|
2013-07-01 12:18:28 +02:00
|
|
|
DeviceState *dev = qdev_create(NULL, TYPE_CFI_PFLASH02);
|
2012-10-30 08:45:11 +01:00
|
|
|
|
2015-03-09 19:17:26 +01:00
|
|
|
if (blk) {
|
|
|
|
qdev_prop_set_drive(dev, "drive", blk, &error_abort);
|
2012-10-30 08:45:11 +01:00
|
|
|
}
|
|
|
|
qdev_prop_set_uint32(dev, "num-blocks", nb_blocs);
|
|
|
|
qdev_prop_set_uint32(dev, "sector-length", sector_len);
|
|
|
|
qdev_prop_set_uint8(dev, "width", width);
|
|
|
|
qdev_prop_set_uint8(dev, "mappings", nb_mappings);
|
|
|
|
qdev_prop_set_uint8(dev, "big-endian", !!be);
|
|
|
|
qdev_prop_set_uint16(dev, "id0", id0);
|
|
|
|
qdev_prop_set_uint16(dev, "id1", id1);
|
|
|
|
qdev_prop_set_uint16(dev, "id2", id2);
|
|
|
|
qdev_prop_set_uint16(dev, "id3", id3);
|
|
|
|
qdev_prop_set_uint16(dev, "unlock-addr0", unlock_addr0);
|
|
|
|
qdev_prop_set_uint16(dev, "unlock-addr1", unlock_addr1);
|
|
|
|
qdev_prop_set_string(dev, "name", name);
|
|
|
|
qdev_init_nofail(dev);
|
|
|
|
|
2013-07-01 12:18:28 +02:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, base);
|
|
|
|
return CFI_PFLASH02(dev);
|
2006-06-26 00:28:15 +02:00
|
|
|
}
|