[Qemu-devel] [PATCH V2 1/3] vmstate: introduce get_bufsize entry in VMStateField

2011-12-26 Thread Mitsyanko Igor
New get_bufsize field in VMStateField is supposed to help us easily add save/restore support of dynamically allocated buffers in device's states. There are some cases when information about size of dynamically allocated buffer is already presented in specific device's state structure, but in such

Re: [Qemu-devel] MIIPS64el compiler

2011-12-26 Thread 陳韋任
> any one of you know about MIPS64el cross compiler? I would appreciate > your response.. Not sure if http://developer.mips.com/clang-llvm/ support MIPS64el, but you can give it a try. ;) Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Si

[Qemu-devel] MIIPS64el compiler

2011-12-26 Thread Khansa Butt
hi any one of you know about MIPS64el cross compiler? I would appreciate your response.. Thanks

Re: [Qemu-devel] DMA active hw_error

2011-12-26 Thread Richard Cole
Another thing I don't understand is the code from this function https://github.com/qemu/QEMU/blob/master/hw/pl080.c#L289 If I look here http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0218e/ch03s04s15.html it seems to suggest that the src register is located at: 0x100 offset

[Qemu-devel] DMA active hw_error

2011-12-26 Thread Richard Cole
I'm new to QEMU so this might be a rather naive question but why is there a hw_error here: https://github.com/qemu/QEMU/blob/2ac711791b2e4aabc5e4046b7428727828c705eb/hw/pl080.c#L96 It causes QEMU at least on my machine to abort. It would seem to make it so the rest of the function will never be e

Re: [Qemu-devel] [ANNOUNCE] qemu-test: a set of tests scripts for QEMU

2011-12-26 Thread Dor Laor
On 12/26/2011 05:12 PM, Anthony Liguori wrote: Hi Dor, Merry Christmas Anthony, On 12/25/2011 09:19 AM, Dor Laor wrote: On 12/19/2011 07:13 PM, Anthony Liguori wrote: Well, I'm still not convinced that a new standalone package should handle these cases instead of kvm autotest. I'll be happ

[Qemu-devel] [PATCH] Expose tsc deadline timer cpuid to guest

2011-12-26 Thread Liu, Jinsong
>From 19caf1db1f93e6f6b736e1dfd5e91a0c7669adec Mon Sep 17 00:00:00 2001 From: Liu Jinsong Date: Tue, 27 Dec 2011 04:08:27 +0800 Subject: [PATCH] Expose tsc deadline timer cpuid to guest Depend on several factors: 1. Considering live migration, user enable/disable tsc deadline timer; 2. If guest u

[Qemu-devel] [Bug 870990] Re: compile failure on ARMv7 hosts when compiled for thumb if --enable-debug

2011-12-26 Thread Peter Maydell
Patch for this: http://patchwork.ozlabs.org/patch/133202/ ** Changed in: qemu-linaro Status: Confirmed => In Progress ** Changed in: qemu-linaro Milestone: None => 2012.01 -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. h

Re: [Qemu-devel] [PATCH 3/3] QEMU kvm/i386 : Adding KICK_VCPU capability support in i386 target.

2011-12-26 Thread Raghavendra K T
On 12/26/2011 07:37 PM, Avi Kivity wrote: On 12/19/2011 04:11 PM, Jan Kiszka wrote: Backwards compatibility If we want backwards compatibility, we need more than just a simple feature check, no? Oh, you feed that into CPUID? That's nifty. Ok, so you behave like VMX/SVM do on real hardware -

Re: [Qemu-devel] [PATCH 1/3] vmstate: introduce calc_size VMStateField

2011-12-26 Thread Peter Maydell
On 26 December 2011 10:03, Mitsyanko Igor wrote: > New calc_size field in VMStateField is supposed to help us easily add > save/restore > support of dynamically allocated buffers in device's states. > There are some cases when information on size of dynamically allocated buffer > is > already pr

Re: [Qemu-devel] [ANNOUNCE] qemu-test: a set of tests scripts for QEMU

2011-12-26 Thread Anthony Liguori
Hi Dor, On 12/25/2011 09:19 AM, Dor Laor wrote: On 12/19/2011 07:13 PM, Anthony Liguori wrote: Well, I'm still not convinced that a new standalone package should handle these cases instead of kvm autotest. I'll be happy to integrate the tests to kvm autotest anyway and the more the merrier but

Re: [Qemu-devel] [PATCH 2/3] hw/sd.c: add SD card save/load support

2011-12-26 Thread Peter Maydell
On 26 December 2011 10:03, Mitsyanko Igor wrote: > We couldn't properly implement save/restore functionality of SD host > controllers > states without SD card's state VMStateDescription implementation. This patch > updates SD card emulation to support save/load of card's state. > > Signed-off-by:

Re: [Qemu-devel] [PATCH 3/3] QEMU kvm/i386 : Adding KICK_VCPU capability support in i386 target.

2011-12-26 Thread Avi Kivity
On 12/19/2011 04:11 PM, Jan Kiszka wrote: > >> > >> Backwards compatibility > > > > If we want backwards compatibility, we need more than just a simple feature > > check, no? Oh, you feed that into CPUID? That's nifty. Ok, so you behave > > like VMX/SVM do on real hardware - you always expose th

Re: [Qemu-devel] [PATCH 3/3] hw/: Introduce spec. ver. 2.00 compliant SD host controller

2011-12-26 Thread malc
On Mon, 26 Dec 2011, Mitsyanko Igor wrote: > This patch adds implementation of "SD specification version 2.00" compliant > SD host controller. Also it provides interface to implement SoC-specific > controllers on top of this specification-compliant one. > [..snip..] > + > +void sdhcv2_reset(SDHC

[Qemu-devel] [PATCH 2/3] hw/sd.c: add SD card save/load support

2011-12-26 Thread Mitsyanko Igor
We couldn't properly implement save/restore functionality of SD host controllers states without SD card's state VMStateDescription implementation. This patch updates SD card emulation to support save/load of card's state. Signed-off-by: Mitsyanko Igor --- hw/milkymist-memcard.c |2 + hw/sd.c

[Qemu-devel] [PATCH 1/3] vmstate: introduce calc_size VMStateField

2011-12-26 Thread Mitsyanko Igor
New calc_size field in VMStateField is supposed to help us easily add save/restore support of dynamically allocated buffers in device's states. There are some cases when information on size of dynamically allocated buffer is already presented in specific device's state structure, but in such a for

[Qemu-devel] [PATCH 0/3] Improve SD controllers emulation

2011-12-26 Thread Mitsyanko Igor
First patch of this patch set modifies existing VMStateField interface to ease save/restore functionality implementation for device's dynamically allocated buffers. This modification is used later in second patch to implement SD card's VMStateDescription structure. Third patch adds imlementation of

Re: [Qemu-devel] [Spice-devel] Seem thread Competition

2011-12-26 Thread ZhouPeng
On Mon, Dec 26, 2011 at 5:31 PM, Alon Levy wrote: > On Mon, Dec 26, 2011 at 02:36:55PM +0800, ZhouPeng wrote: >> On Thu, Dec 22, 2011 at 8:49 PM, ZhouPeng wrote: >> > On Thu, Dec 22, 2011 at 6:53 PM, Alon Levy wrote: >> >> On Thu, Dec 22, 2011 at 10:00:18AM +, Alon Levy wrote: >> >>> On Thu,

Re: [Qemu-devel] [Spice-devel] Seem thread Competition

2011-12-26 Thread Alon Levy
On Mon, Dec 26, 2011 at 02:36:55PM +0800, ZhouPeng wrote: > On Thu, Dec 22, 2011 at 8:49 PM, ZhouPeng wrote: > > On Thu, Dec 22, 2011 at 6:53 PM, Alon Levy wrote: > >> On Thu, Dec 22, 2011 at 10:00:18AM +, Alon Levy wrote: > >>> On Thu, Dec 22, 2011 at 05:42:29PM +0800, ZhouPeng wrote: > >>>