* [Qemu-devel] [PATCH] misc: zynq_slcr: Fix MMIO writes
@ 2015-10-10 2:53 Peter Crosthwaite
2015-10-12 17:53 ` Alistair Francis
2015-10-13 17:20 ` Peter Maydell
0 siblings, 2 replies; 3+ messages in thread
From: Peter Crosthwaite @ 2015-10-10 2:53 UTC (permalink / raw)
To: qemu-devel
Cc: Peter Crosthwaite, qemu-stable, Guenter Roeck, alistair.francis
The /4 for offset calculation in MMIO writes was happening twice giving
wrong write offsets. Fix.
While touching the code, change the if-else to be a short returning if
and convert the debug message to a GUEST_ERROR, which is more accurate
for this condition.
Cc: qemu-stable@nongnu.org
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
hw/misc/zynq_slcr.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/hw/misc/zynq_slcr.c b/hw/misc/zynq_slcr.c
index 964f253..3d78708 100644
--- a/hw/misc/zynq_slcr.c
+++ b/hw/misc/zynq_slcr.c
@@ -393,12 +393,12 @@ static void zynq_slcr_write(void *opaque, hwaddr offset,
return;
}
- if (!s->regs[LOCKSTA]) {
- s->regs[offset / 4] = val;
- } else {
- DB_PRINT("SCLR registers are locked. Unlock them first\n");
+ if (s->regs[LOCKSTA]) {
+ qemu_log_mask(LOG_GUEST_ERROR,
+ "SCLR registers are locked. Unlock them first\n");
return;
}
+ s->regs[offset] = val;
switch (offset) {
case PSS_RST_CTRL:
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] misc: zynq_slcr: Fix MMIO writes
2015-10-10 2:53 [Qemu-devel] [PATCH] misc: zynq_slcr: Fix MMIO writes Peter Crosthwaite
@ 2015-10-12 17:53 ` Alistair Francis
2015-10-13 17:20 ` Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Alistair Francis @ 2015-10-12 17:53 UTC (permalink / raw)
To: Peter Crosthwaite
Cc: qemu-stable, Alistair Francis, qemu-devel@nongnu.org Developers,
Guenter Roeck, Peter Crosthwaite
On Fri, Oct 9, 2015 at 7:53 PM, Peter Crosthwaite
<crosthwaitepeter@gmail.com> wrote:
> The /4 for offset calculation in MMIO writes was happening twice giving
> wrong write offsets. Fix.
>
> While touching the code, change the if-else to be a short returning if
> and convert the debug message to a GUEST_ERROR, which is more accurate
> for this condition.
>
> Cc: qemu-stable@nongnu.org
> Cc: Guenter Roeck <linux@roeck-us.net>
> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
We actually already had the divide by four fix internally.
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Thanks,
Alistair
> ---
> hw/misc/zynq_slcr.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/misc/zynq_slcr.c b/hw/misc/zynq_slcr.c
> index 964f253..3d78708 100644
> --- a/hw/misc/zynq_slcr.c
> +++ b/hw/misc/zynq_slcr.c
> @@ -393,12 +393,12 @@ static void zynq_slcr_write(void *opaque, hwaddr offset,
> return;
> }
>
> - if (!s->regs[LOCKSTA]) {
> - s->regs[offset / 4] = val;
> - } else {
> - DB_PRINT("SCLR registers are locked. Unlock them first\n");
> + if (s->regs[LOCKSTA]) {
> + qemu_log_mask(LOG_GUEST_ERROR,
> + "SCLR registers are locked. Unlock them first\n");
> return;
> }
> + s->regs[offset] = val;
>
> switch (offset) {
> case PSS_RST_CTRL:
> --
> 1.9.1
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] misc: zynq_slcr: Fix MMIO writes
2015-10-10 2:53 [Qemu-devel] [PATCH] misc: zynq_slcr: Fix MMIO writes Peter Crosthwaite
2015-10-12 17:53 ` Alistair Francis
@ 2015-10-13 17:20 ` Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2015-10-13 17:20 UTC (permalink / raw)
To: Peter Crosthwaite
Cc: qemu-stable, Alistair Francis, QEMU Developers, Guenter Roeck,
Peter Crosthwaite
On 10 October 2015 at 03:53, Peter Crosthwaite
<crosthwaitepeter@gmail.com> wrote:
> The /4 for offset calculation in MMIO writes was happening twice giving
> wrong write offsets. Fix.
>
> While touching the code, change the if-else to be a short returning if
> and convert the debug message to a GUEST_ERROR, which is more accurate
> for this condition.
>
> Cc: qemu-stable@nongnu.org
> Cc: Guenter Roeck <linux@roeck-us.net>
> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> ---
> hw/misc/zynq_slcr.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
Applied to target-arm.next, thanks.
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-13 17:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-10 2:53 [Qemu-devel] [PATCH] misc: zynq_slcr: Fix MMIO writes Peter Crosthwaite
2015-10-12 17:53 ` Alistair Francis
2015-10-13 17:20 ` Peter Maydell
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).