提交 df374162 编写于 作者: P Peter Maydell

hw/pl080: Use LOG_GUEST_ERROR and LOG_UNIMP

Use LOG_GUEST_ERROR and LOG_UNIMP in preference to hw_error().
Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
上级 abff909c
...@@ -281,7 +281,8 @@ static uint64_t pl080_read(void *opaque, hwaddr offset, ...@@ -281,7 +281,8 @@ static uint64_t pl080_read(void *opaque, hwaddr offset,
return s->sync; return s->sync;
default: default:
bad_offset: bad_offset:
hw_error("pl080_read: Bad offset %x\n", (int)offset); qemu_log_mask(LOG_GUEST_ERROR,
"pl080_read: Bad offset %x\n", (int)offset);
return 0; return 0;
} }
} }
...@@ -327,12 +328,13 @@ static void pl080_write(void *opaque, hwaddr offset, ...@@ -327,12 +328,13 @@ static void pl080_write(void *opaque, hwaddr offset,
case 10: /* SoftLBReq */ case 10: /* SoftLBReq */
case 11: /* SoftLSReq */ case 11: /* SoftLSReq */
/* ??? Implement these. */ /* ??? Implement these. */
hw_error("pl080_write: Soft DMA not implemented\n"); qemu_log_mask(LOG_UNIMP, "pl080_write: Soft DMA not implemented\n");
break; break;
case 12: /* Configuration */ case 12: /* Configuration */
s->conf = value; s->conf = value;
if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) { if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) {
hw_error("pl080_write: Big-endian DMA not implemented\n"); qemu_log_mask(LOG_UNIMP,
"pl080_write: Big-endian DMA not implemented\n");
} }
pl080_run(s); pl080_run(s);
break; break;
...@@ -341,7 +343,8 @@ static void pl080_write(void *opaque, hwaddr offset, ...@@ -341,7 +343,8 @@ static void pl080_write(void *opaque, hwaddr offset,
break; break;
default: default:
bad_offset: bad_offset:
hw_error("pl080_write: Bad offset %x\n", (int)offset); qemu_log_mask(LOG_GUEST_ERROR,
"pl080_write: Bad offset %x\n", (int)offset);
} }
pl080_update(s); pl080_update(s);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册