Improve pflash cfi01 debug messages (Thomas Petazzoni).
This patches slightly improves the debugging messages in pflash_read() and pflash_write(). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5410 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3656744cdd
commit
06adb549e6
@ -111,8 +111,8 @@ static uint32_t pflash_read (pflash_t *pfl, target_ulong offset, int width)
|
|||||||
else if (pfl->width == 4)
|
else if (pfl->width == 4)
|
||||||
boff = boff >> 2;
|
boff = boff >> 2;
|
||||||
|
|
||||||
DPRINTF("%s: reading offset " TARGET_FMT_lx " under cmd %02x\n",
|
DPRINTF("%s: reading offset " TARGET_FMT_lx " under cmd %02x width %d\n",
|
||||||
__func__, boff, pfl->cmd);
|
__func__, offset, pfl->cmd, width);
|
||||||
|
|
||||||
switch (pfl->cmd) {
|
switch (pfl->cmd) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
@ -205,7 +205,7 @@ static void pflash_write (pflash_t *pfl, target_ulong offset, uint32_t value,
|
|||||||
cmd = value;
|
cmd = value;
|
||||||
offset -= pfl->base;
|
offset -= pfl->base;
|
||||||
|
|
||||||
DPRINTF("%s: offset " TARGET_FMT_lx " %08x %d wcycle 0x%x\n",
|
DPRINTF("%s: writing offset " TARGET_FMT_lx " value %08x width %d wcycle 0x%x\n",
|
||||||
__func__, offset, value, width, pfl->wcycle);
|
__func__, offset, value, width, pfl->wcycle);
|
||||||
|
|
||||||
/* Set the device in I/O access mode */
|
/* Set the device in I/O access mode */
|
||||||
|
Loading…
Reference in New Issue
Block a user