[Qemu-devel] [Bug 1019467] [NEW] Text mode cursor doesn't blink

2012-06-30 Thread Javier Donoso
Public bug reported: Sorry for doing this, but QEMU should support text mode cursor blinking. ** Affects: qemu Importance: Undecided Status: New -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU.

Re: [Qemu-devel] [PATCH] target-i386: Fix compilation with --enable-debug

2012-06-30 Thread Dunrong Huang
2012/6/30 Stefan Weil s...@weilnetz.de: commit c4baa0503d9623f1ce891f525ccd140c598bc29a improved SSE table type safety which now raises compiler errors when latest QEMU was configured with --enable-debug. The error occurs when building with --enable-werror, which is default option, not

Re: [Qemu-devel] [PATCH] target-i386: Fix compilation with --enable-debug

2012-06-30 Thread Stefan Weil
Am 30.06.2012 14:16, schrieb Dunrong Huang: 2012/6/30 Stefan Weil s...@weilnetz.de: commit c4baa0503d9623f1ce891f525ccd140c598bc29a improved SSE table type safety which now raises compiler errors when latest QEMU was configured with --enable-debug. The error occurs when building with

Re: [Qemu-devel] Bad mail header? (was: [PATCH 01/12] savevm: Use a struct to pass all handlers)

2012-06-30 Thread Stefan Weil
Am 28.06.2012 21:21, schrieb Juan Quintela: This would make easier to add more operations in the next patches. Signed-off-by: Juan Quintela quint...@redhat.com --- savevm.c | 54 +- vmstate.h | 7 +++ 2 files changed, 32 insertions(+), 29

Re: [Qemu-devel] Using qemu to profile ARM binaries

2012-06-30 Thread Antti P Miettinen
Joey Klonowski jklonow...@g.hmc.edu writes: Hi all, I'm trying to edit the qemu source code so I can use qemu as a profiler for a benchmark of ARM programs. A good start would be counting loads, stores, int ops, float ops and branch instructions used by each of the binary files. I have two

Re: [Qemu-devel] [PATCH 06/12] savevm: introduce is_active method

2012-06-30 Thread Igor Mitsyanko
On 6/28/2012 11:22 PM, Juan Quintela wrote: Enable the creation of a method to tell migration if that section is active and should be migrate. We use it for blk-migration, that is normally not active. We don't create the method for RAM, as setups without RAM are very strange O:-)

[Qemu-devel] [Bug 1019467] Re: Text mode cursor doesn't blink

2012-06-30 Thread Javier Donoso
** Changed in: qemu Assignee: (unassigned) = Javier Donoso (jedc375) -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1019467 Title: Text mode cursor doesn't blink Status in QEMU: New Bug

[Qemu-devel] [PATCH v8 00/16] QEMU OpenRISC support

2012-06-30 Thread Jia Liu
This is the OpenCores OpenRISC 1200 support for QEMU. Full implementation of the system-model and linux-user-model support. OpenRISC 1200 is a OpenCores open source CPU, its architecture manual can be found at http://opencores.org/svnget,or1k?file=/trunk/docs/openrisc_arch.pdf A OpenRISC Linux

[Qemu-devel] [PATCH v8 02/16] target-or32: Add target machine

2012-06-30 Thread Jia Liu
Add OpenRISC machine. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/cpu.h | 58 - target-openrisc/machine.c | 22 - 2 files changed, 78 insertions(+), 2 deletions(-) diff --git a/target-openrisc/cpu.h

[Qemu-devel] [PATCH v8 01/16] target-or32: Add target stubs and QOM cpu

2012-06-30 Thread Jia Liu
Add OpenRISC target stubs and cpu support. Signed-off-by: Jia Liu pro...@gmail.com --- arch_init.c |2 + arch_init.h |1 + configure| 14 +- cpu-exec.c |2 + default-configs/or32-softmmu.mak |

[Qemu-devel] [PATCH v8 06/16] target-or32: Add int instruction helpers

2012-06-30 Thread Jia Liu
Add OpenRISC int instruction helpers. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/Makefile.objs |2 +- target-openrisc/helper.h |5 +++ target-openrisc/int_helper.c | 87 + 3 files changed, 93 insertions(+), 1 deletion(-)

[Qemu-devel] [PATCH v8 08/16] target-or32: Add instruction translation

2012-06-30 Thread Jia Liu
Add OpenRISC instruction tanslation routines. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/translate.c | 1678 +++ 1 file changed, 1678 insertions(+) diff --git a/target-openrisc/translate.c b/target-openrisc/translate.c index

[Qemu-devel] [PATCH v8 11/16] target-or32: Add a IIS dummy board

2012-06-30 Thread Jia Liu
Add a IIS dummy board. Signed-off-by: Jia Liu pro...@gmail.com --- hw/openrisc/Makefile.objs |2 +- hw/openrisc_sim.c | 150 + 2 files changed, 151 insertions(+), 1 deletion(-) create mode 100644 hw/openrisc_sim.c diff --git

[Qemu-devel] [PATCH v8 13/16] target-or32: Add gdb stub support

2012-06-30 Thread Jia Liu
Add OpenRISC gdb stub support. Signed-off-by: Jia Liu pro...@gmail.com --- gdbstub.c | 64 + 1 file changed, 64 insertions(+) diff --git a/gdbstub.c b/gdbstub.c index 08cf864..5d37dd9 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -1155,6

[Qemu-devel] [PATCH v8 03/16] target-or32: Add MMU support

2012-06-30 Thread Jia Liu
Add OpenRISC MMU support. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/cpu.h| 79 +++- target-openrisc/mmu.c| 206 +- target-openrisc/mmu_helper.c | 20 3 files changed, 303 insertions(+), 2 deletions(-)

[Qemu-devel] [PATCH v8 05/16] target-or32: Add exception support

2012-06-30 Thread Jia Liu
Add OpenRISC exception support. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/Makefile.objs |4 ++-- target-openrisc/excp.c| 27 +++ target-openrisc/excp.h| 28 target-openrisc/excp_helper.c | 29

[Qemu-devel] [PATCH v8 09/16] target-or32: Add PIC support

2012-06-30 Thread Jia Liu
Add OpenRISC Programmable Interrupt Controller support. Signed-off-by: Jia Liu pro...@gmail.com --- hw/openrisc/Makefile.objs |2 ++ hw/openrisc_pic.c | 60 + target-openrisc/cpu.h |3 +++ 3 files changed, 65 insertions(+) create

[Qemu-devel] [PATCH v8 15/16] target-or32: Add linux user support

2012-06-30 Thread Jia Liu
Add QEMU OpenRISC linux user support. Signed-off-by: Jia Liu pro...@gmail.com --- configure |1 + default-configs/or32-linux-user.mak |1 + linux-user/elfload.c| 41 +++ linux-user/main.c | 100 +++

[Qemu-devel] [PATCH v8 07/16] target-or32: Add float instruction helpers

2012-06-30 Thread Jia Liu
Add OpenRISC float instruction helpers. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/Makefile.objs |2 +- target-openrisc/fpu_helper.c | 300 + target-openrisc/helper.h | 33 + 3 files changed, 334 insertions(+), 1

[Qemu-devel] [PATCH v8 04/16] target-or32: Add interrupt support

2012-06-30 Thread Jia Liu
Add OpenRISC interrupt support. Signed-off-by: Jia Liu pro...@gmail.com --- cpu-exec.c | 17 target-openrisc/Makefile.objs |2 +- target-openrisc/cpu.h |8 +- target-openrisc/helper.h| 25 +

[Qemu-devel] [PATCH v8 12/16] target-or32: Add system instructions

2012-06-30 Thread Jia Liu
Add OpenRISC system instructions. Signed-off-by: Jia Liu pro...@gmail.com --- target-openrisc/Makefile.objs |3 +- target-openrisc/cpu.h |3 + target-openrisc/helper.h |4 + target-openrisc/sys_helper.c | 287 +

[Qemu-devel] [PATCH v8 10/16] target-or32: Add timer support

2012-06-30 Thread Jia Liu
Add OpenRISC timer support. Signed-off-by: Jia Liu pro...@gmail.com --- hw/openrisc/Makefile.objs |2 +- hw/openrisc_timer.c | 101 + target-openrisc/cpu.h | 22 ++ 3 files changed, 124 insertions(+), 1 deletion(-) create mode

[Qemu-devel] [PATCH v8 14/16] target-or32: Add linux syscall, signal and termbits

2012-06-30 Thread Jia Liu
Add OpenRISC linux syscall, signal and termbits. Signed-off-by: Jia Liu pro...@gmail.com --- linux-user/openrisc/syscall.h | 24 ++ linux-user/openrisc/syscall_nr.h| 506 +++ linux-user/openrisc/target_signal.h | 26 ++