Re: [Qemu-devel] [PATCH] sh4: add signal handling support for user space emulator

2007-11-21 Thread Magnus Damm
On Nov 21, 2007 5:40 PM, Paul Mundt <[EMAIL PROTECTED]> wrote: > On Wed, Nov 21, 2007 at 05:16:55PM +0900, Magnus Damm wrote: > > +#define MOVW(n) (0x9300|((n)-2)) /* Move mem word at PC+n to R3 */ > > +#define TRAP_NOARG 0xc310 /* Syscall w/no args (NR in R3) SH3/4 */ > > +#define OR_R0_R

Re: [Qemu-devel] Mainstone II

2007-11-21 Thread andrzej zaborowski
Hi, On 22/11/2007, Armin <[EMAIL PROTECTED]> wrote: > Hello, > > I have just added networking support for the Mainstone II. Since the > source its not in cvs, do I resend a new Mainstone patch or just a diff > from the one I sent out earlier? I think a new patch will make it easier for people to

[Qemu-devel] Mainstone II

2007-11-21 Thread Armin
Hello, I have just added networking support for the Mainstone II. Since the source its not in cvs, do I resend a new Mainstone patch or just a diff from the one I sent out earlier? TIA, Armin

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Thiemo Seufer
Paul Brook wrote: > > Ok the problem comes from bad copy&paste. Please find a patch below that > > fixes the problem on MIPS. > > > > av = float64_val(a); > > -bv = float64_val(a); > > +bv = float64_val(b); > > Applied, thanks for tracking this down. Sorry about the breakage. I saw t

[Qemu-devel] qemu/target-mips helper.c

2007-11-21 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/11/22 00:34:37 Modified files: target-mips: helper.c Log message: Fix off-by-one address checks in MIPS64 MMU, by Aurelien Jarno. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/ta

[Qemu-devel] [PATCH] MIPS64 MMU fixes

2007-11-21 Thread Aurelien Jarno
The trivial patch below fixes a few off-by-one in the MIPS64 MMU code. Index: target-mips/helper.c === RCS file: /sources/qemu/qemu/target-mips/helper.c,v retrieving revision 1.58 diff -u -d -p -r1.58 helper.c --- target-mips/helper.c

Re: [Qemu-devel] [PATCH] SH4 Fix missing 6th arg of syscall.

2007-11-21 Thread Tomoyoshi ASANO
Hello Fabrce-san, I uploaded this URL http://club.lineo.co.jp/~asa/ 4535036 qemu-sh4eb.tar.bz2 Regards, -- On Wed, 21 Nov 2007 10:50:22 +0100 Fabrice Bellard <[EMAIL PROTECTED]> wrote: > Can you provide a glibc and busybox binary for sh4eb so that I can > include them in the linux user tes

[Qemu-devel] qemu qemu-doc.texi

2007-11-21 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/11/21 22:38:37 Modified files: . : qemu-doc.texi Log message: Documentation formatting improvements, by Stefan Weil. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/qemu-d

Re: [Qemu-devel] kqemu in x86_64: (host) exception 0x0d in monitor space

2007-11-21 Thread Werner Dittmann
Even in a fairly new CVS snapshot this problem ist not solved, at least not on my 64bit openSUSE system. Adding -no-kqemu works, slow but when I try to install a 64bit openSUSE in qemu then GRUB hangs (at the very end end of the installation). This IMHO x86_64 bit support in Qemu is somewhat instab

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Blue Swirl
On 11/21/07, Eduardo Felipe <[EMAIL PROTECTED]> wrote: > > > 2007/11/21, Paul Brook <[EMAIL PROTECTED]>: > > > Ok the problem comes from bad copy&paste. Please find a patch below that > > > fixes the problem on MIPS. > > > > > > av = float64_val(a); > > > -bv = float64_val(a); > > > +b

[Qemu-devel] qemu/fpu softfloat.c

2007-11-21 Thread Blue Swirl
CVSROOT:/cvsroot/qemu Module name:qemu Changes by: Blue Swirl 07/11/21 18:57:44 Modified files: fpu: softfloat.c Log message: Fix more typos in softloat code (Eduardo Felipe) CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/fpu/softfloat.c?cvs

[Qemu-devel] qemu/target-i386 helper2.c

2007-11-21 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard07/11/21 16:18:22 Modified files: target-i386: helper2.c Log message: typo fix CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-i386/helper2.c?cvsroot=qemu&r1=1.57&r2=1.58

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Eduardo Felipe
2007/11/21, Paul Brook <[EMAIL PROTECTED]>: > > > Ok the problem comes from bad copy&paste. Please find a patch below that > > fixes the problem on MIPS. > > > > av = float64_val(a); > > -bv = float64_val(a); > > +bv = float64_val(b); > > Applied, thanks for tracking this down. Sorry a

Re: [Qemu-devel] [PATCH] Fix NaN handling in softfloat

2007-11-21 Thread Aurelien Jarno
> I have looked quickly at your patch, it looks like the right approach to > define target specific things at only one place in the file. I will get > a closer tomorrow. > Sorry I have been busy with real life stuff, and haven't looked at your patch. I have seen you have committed it. I have reb

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Paul Brook
> Ok the problem comes from bad copy&paste. Please find a patch below that > fixes the problem on MIPS. > > av = float64_val(a); > -bv = float64_val(a); > +bv = float64_val(b); Applied, thanks for tracking this down. Sorry about the breakage. Paul

[Qemu-devel] qemu/fpu softfloat.c

2007-11-21 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/11/21 15:32:12 Modified files: fpu: softfloat.c Log message: Fix typo in softfloat code. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/fpu/softfloat.c?cvsroot=qemu&r1=1.8&r2

Re: [Qemu-devel] qemu hw/pc.c target-i386/cpu.h target-i386/help...

2007-11-21 Thread Dan Kenigsberg
On Thu, Nov 08, 2007 at 01:28:47PM +, Fabrice Bellard wrote: > CVSROOT: /sources/qemu > Module name: qemu > Changes by: Fabrice Bellard07/11/08 13:28:47 > > Modified files: > hw : pc.c > target-i386: cpu.h helper2.c > > Log message: > added

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Aurelien Jarno
On Wed, Nov 21, 2007 at 11:40:13AM +0100, Aurelien Jarno wrote: > Aurelien Jarno a écrit : > > Blue Swirl a écrit : > >> On 11/18/07, Paul Brook <[EMAIL PROTECTED]> wrote: > >>> CVSROOT:/sources/qemu > >>> Module name:qemu > >>> Changes by: Paul Brook 07/11/18 14:33:24 > >>> >

[Qemu-devel] qemu/target-ppc cpu.h translate_init.c

2007-11-21 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/11/21 13:08:23 Modified files: target-ppc : cpu.h translate_init.c Log message: Fix PowerPC 7xx definitions. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-ppc/cpu.h?cvsroot=qe

[Qemu-devel] qemu/linux-user syscall_defs.h

2007-11-21 Thread Jocelyn Mayer
CVSROOT:/sources/qemu Module name:qemu Changes by: Jocelyn Mayer 07/11/21 13:06:54 Modified files: linux-user : syscall_defs.h Log message: Fix PowerPC 64 stat and statfs structures definitions. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/linux-use

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Aurelien Jarno
Aurelien Jarno a écrit : > Blue Swirl a écrit : >> On 11/18/07, Paul Brook <[EMAIL PROTECTED]> wrote: >>> CVSROOT:/sources/qemu >>> Module name:qemu >>> Changes by: Paul Brook 07/11/18 14:33:24 >>> >>> Modified files: >>> fpu: softfloat-specialize.h softfloa

Re: [Qemu-devel] [PATCH] SH4 Fix missing 6th arg of syscall.

2007-11-21 Thread Fabrice Bellard
Can you provide a glibc and busybox binary for sh4eb so that I can include them in the linux user tests ? Regards, Fabrice. Tomoyoshi ASANO wrote: Hello, I tested big-endian binaries by sh4(eb)-linux-user with a small patch(attached) for building sh4eb-linux-user. But I don't understand th

[Qemu-devel] USB performance Question

2007-11-21 Thread [EMAIL PROTECTED]
I could get very complicated USB devices to work under Qemu with Windows as guest, Linux as host. This is pretty amazing development and I must congratulate the Qemu developers. The only problem is the USB speed. I get only about 10kbit/s max! This is measured by downloading a 1MByte scientifi

Re: [Qemu-devel] qemu fpu/softfloat-specialize.h fpu/softfloat.c...

2007-11-21 Thread Aurelien Jarno
Blue Swirl a écrit : > On 11/18/07, Paul Brook <[EMAIL PROTECTED]> wrote: >> CVSROOT:/sources/qemu >> Module name:qemu >> Changes by: Paul Brook 07/11/18 14:33:24 >> >> Modified files: >> fpu: softfloat-specialize.h softfloat.c softfloat.h >> target-

Re: [Qemu-devel] [PATCH] sh4: add signal handling support for user space emulator

2007-11-21 Thread Paul Mundt
On Wed, Nov 21, 2007 at 05:16:55PM +0900, Magnus Damm wrote: > +#define MOVW(n) (0x9300|((n)-2)) /* Move mem word at PC+n to R3 */ > +#define TRAP_NOARG 0xc310 /* Syscall w/no args (NR in R3) SH3/4 */ > +#define OR_R0_R0 0x200b /* or r0,r0 (insert to avoid hardware bug) > */ Thi

[Qemu-devel] [PATCH] sh4: add signal handling support for user space emulator

2007-11-21 Thread Magnus Damm
Hi everyone, This adds SH support to the user space signal emulation code. Please apply. Thanks, / magnus qemu-cvs-20071121c-sh4-signal.patch Description: Binary data

Re: [Qemu-devel] [PATCH] SH4 Fix missing 6th arg of syscall.

2007-11-21 Thread Magnus Damm
Hi there, On Nov 21, 2007 2:07 PM, Tomoyoshi ASANO <[EMAIL PROTECTED]> wrote: > I tested big-endian binaries by sh4(eb)-linux-user > with a small patch(attached) for building sh4eb-linux-user. > But I don't understand that this patch is needed or not. I'm not sure if that patch is all that is nee