[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3
|
From: |
Juergen Lock |
|
Subject: |
Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3 |
|
Date: |
Tue, 12 Oct 2010 23:34:50 +0200 (CEST) |
In article <address@hidden> you write:
>After suffering from a prolonged maintainer softlockup, I'm attempting
>to get 0.13.0 release process back on track.
>
>I've tagged qemu-0.13.0-rc3 in git which only carries a few changes
>since 0.13.0-rc1. Most notably, a series of updates from Kevin Wolf and
>Cam Macdonell's ivshmem device.
>
>I think we're pretty good testing wise for the final release but I
>wanted to offer a 24-hour window for last minute fixes. I'm only
>interested in the following:
>
>1) Patches that are *tested* against the stable-0.13 branch that are
>already committed in master. Please tell me explicitly that you've
>tested the patch and how you've tested it.
>
>[...]
First tests:
- vmmouse seems broken (or disabled? I don't see it in `info qdm'...)
- to test arm emulation I tried booting my old zaurus images (-M terrier)
which failed (q&d fix below), and in the process also tested -M n800
w/o an image which failed with:
qemu-system-arm: Duplicate ID 'null' for chardev
Can't create serial device, empty char device
and that I got fixed by cherry-picking this commit from master:
6a8aabd3c132188ee8e0e82ef4aba09f782cbe96
From: Stefan Weil <address@hidden>
Date: Sun, 8 Aug 2010 14:09:26 +0200
Subject: [PATCH] hw/omap: Fix default setup for OMAP UART devices
==========
And the zaurus patch, problem was the 2nd scoop's base address
(0x08800040) gets rounded down to start of page which causes its
io read/write callbacks to be passed addresses 0x40 higher than
the code expects: (as witnessed by "Bad register offset" messages
and failure to attach the internal CF disk aka microdrive at least.)
Signed-off-by: Juergen Lock <address@hidden>
--- a/hw/zaurus.c
+++ b/hw/zaurus.c
@@ -70,6 +70,10 @@ static uint32_t scoop_readb(void *opaque
{
ScoopInfo *s = (ScoopInfo *) opaque;
+ // XXX Workaround for base address (0x08800040 in this case)
+ // rounded down to start of page
+ addr &= 0x3f;
+
switch (addr) {
case SCOOP_MCR:
return s->mcr;
@@ -104,6 +108,10 @@ static void scoop_writeb(void *opaque, t
ScoopInfo *s = (ScoopInfo *) opaque;
value &= 0xffff;
+ // XXX Workaround for base address (0x08800040 in this case)
+ // rounded down to start of page
+ addr &= 0x3f;
+
switch (addr) {
case SCOOP_MCR:
s->mcr = value;
- [Qemu-devel] [RFT] qemu 0.13.0-rc3, Anthony Liguori, 2010/10/11
- [Qemu-devel] Re: [RFT] qemu 0.13.0-rc3, Luiz Capitulino, 2010/10/11
- Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3, Rick Vernam, 2010/10/12
- Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3, Stefan Weil, 2010/10/12
- Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3,
Juergen Lock <=
- Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3, Anthony Liguori, 2010/10/12
- Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3, Juergen Lock, 2010/10/12
- Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3, Juergen Lock, 2010/10/13
- [Qemu-devel] [PATCH] (master, stable-0.13) zaurus: workaround for io base address rounded down, Juergen Lock, 2010/10/13
- Re: [Qemu-devel] [PATCH] (master, stable-0.13) zaurus: workaround for io base address rounded down, Blue Swirl, 2010/10/13
- Re: [Qemu-devel] [PATCH] (master, stable-0.13) zaurus: workaround for io base address rounded down, Juergen Lock, 2010/10/13
Re: [Qemu-devel] [RFT] qemu 0.13.0-rc3, Amit Shah, 2010/10/13