[Qemu-devel] qemu/hw pc.c pxa2xx.c

2007-05-23 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu Module name:qemu Changes by: Andrzej Zaborowski 07/05/23 22:21:27 Modified files: hw : pc.c pxa2xx.c Log message: Use i2c_slave_init() to allocate the PXA (dummy) I2C slave. Hush the warning: hw/pc.c:402: warn

[Qemu-devel] qemu/target-m68k op.c

2007-05-23 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/05/23 22:07:36 Modified files: target-m68k: op.c Log message: Speed up m68k by 20%. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/target-m68k/op.c?cvsroot=qemu&r1=1.4&r2=1.5

[Qemu-devel] qemu Makefile.target hw/i2c.h hw/spitz.c hw/max...

2007-05-23 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu Module name:qemu Changes by: Andrzej Zaborowski 07/05/23 22:04:24 Modified files: . : Makefile.target hw : i2c.h spitz.c Added files: hw : max7310.c wm8750.c Log message: Add WM8750

Re: [Qemu-devel] Porting QEMU to PalmOS

2007-05-23 Thread Jonathan Kalbfeld
Wow, if you can make this work I will be thrilled. I <3 my Treo 650. jonathan On 5/23/07, Wolfgang Schildbach <[EMAIL PROTECTED]> wrote: Try compiling as position-dependent (i.e. not PIC) code. GOT is a typical feature of position independent code. - Wolfgang [EMAIL PROTECTED] wrote on 23.0

Re: [Qemu-devel] Timers

2007-05-23 Thread Paul Brook
> > Code looks reasonable to me. The FIXME means you're changing the timer > > parameters after starting the timer. I didn't check whether this does > > anything sensible (this may depend on the device), hence the message. > > It probably needs some attention when reload == 1 && s->enabled. > > >

[Qemu-devel] qemu/hw pxa.h pxa2xx.c pxa2xx_dma.c pxa2xx_lcd....

2007-05-23 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu Module name:qemu Changes by: Andrzej Zaborowski 07/05/23 21:47:51 Modified files: hw : pxa.h pxa2xx.c pxa2xx_dma.c pxa2xx_lcd.c pxa2xx_pcmcia.c pxa2xx_timer.c smbus.c smbus.h Log message: Implement t

Re: [Qemu-devel] Timers

2007-05-23 Thread andrzej zaborowski
On 23/05/07, Paul Brook <[EMAIL PROTECTED]> wrote: On Wednesday 23 May 2007, Blue Swirl wrote: > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > On Wednesday 23 May 2007, Blue Swirl wrote: > > > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > > > I get fed up of having to re-implement

[Qemu-devel] qemu qemu-doc.texi

2007-05-23 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/05/23 20:16:15 Modified files: . : qemu-doc.texi Log message: Document ColdFire system emulation. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/qemu-doc.texi?cvsroot=qemu&r

[Qemu-devel] qemu Makefile.target configure cpu-exec.c exec-...

2007-05-23 Thread Paul Brook
CVSROOT:/sources/qemu Module name:qemu Changes by: Paul Brook 07/05/23 19:58:11 Modified files: . : Makefile.target configure cpu-exec.c exec-all.h softmmu_header.h vl.c vl.h linux-user : main.c target-m68k

Re: [Qemu-devel] Timers

2007-05-23 Thread Paul Brook
On Wednesday 23 May 2007, Blue Swirl wrote: > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > On Wednesday 23 May 2007, Blue Swirl wrote: > > > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > > > I get fed up of having to re-implement a simple countdown timer for > > > > every new board

Re: [Qemu-devel] Timers

2007-05-23 Thread Blue Swirl
On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: On Wednesday 23 May 2007, Blue Swirl wrote: > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > I get fed up of having to re-implement a simple countdown timer for every > > new board, so I've added a simple periodic timer implementation to cv

[Qemu-devel] Guest cannot see more than 1 cpu with -smp

2007-05-23 Thread David Chow
Dear all, With latest qemu 0.9.0, the -smp 2 doesn't work. guest os never sees more than one CPU. I am running suse 10 on host and redhat el4 on guest . Tried several attempts and seems doesn't work. I lookup some pcbios code, it seems bios attempt to read address 0xf000 for num cpus, but no

Re: [Qemu-devel] Timers

2007-05-23 Thread Paul Brook
> > Nice idea! On Sparc the timer can be configured to work in 64-bit > > mode, so could the ptimer_get/set_count be changed to use 64-bit > > values? > > Perhaps the width could be made runtime configurable, e.g. 16, 24, 32, > 64-bits as required for a given system, since there are other targets >

Re: [Qemu-devel] Timers

2007-05-23 Thread George G. Davis
On Wed, May 23, 2007 at 08:00:24PM +0300, Blue Swirl wrote: > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > >I get fed up of having to re-implement a simple countdown timer for every > >new > >board, so I've added a simple periodic timer implementation to cvs > >(ptimer.c). Currently only th

Re: [Qemu-devel] Timers

2007-05-23 Thread Paul Brook
On Wednesday 23 May 2007, Blue Swirl wrote: > On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > I get fed up of having to re-implement a simple countdown timer for every > > new board, so I've added a simple periodic timer implementation to cvs > > (ptimer.c). Currently only the Arm PrimeCell b

Re: [Qemu-devel] Timers

2007-05-23 Thread Blue Swirl
On 5/23/07, Paul Brook <[EMAIL PROTECTED]> wrote: I get fed up of having to re-implement a simple countdown timer for every new board, so I've added a simple periodic timer implementation to cvs (ptimer.c). Currently only the Arm PrimeCell based boards use this, but I've a few other uses in the p

Re: [Qemu-devel] Porting QEMU to PalmOS

2007-05-23 Thread Wolfgang Schildbach
Try compiling as position-dependent (i.e. not PIC) code. GOT is a typical feature of position independent code. - Wolfgang [EMAIL PROTECTED] wrote on 23.05.2007 13:20:22: > Hi Johannes, > >thanks for your quick response. > I thought QEMU was already compiled and run on an ARM machine? > I

[Qemu-devel] linux 2.6.21 tickless kernel problem

2007-05-23 Thread zjs
Hi, all Host os:linux(kernel 2.6.21 with CONFIG_NO_HZ=y to enable tickless feature) Guest os:RTEMS or Haiku etc. QEMU:0.9.0, no kvm and no kqemu The Guest oses halted. RTEMS gave a message:"problem #2 in offset computation in Calibrate_loop_1ms in file libbsp/i386/pc386/timer/timer.c". I reco

[Qemu-devel] Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-23 Thread Avi Kivity
David Abrahams wrote: > on Mon May 21 2007, Avi Kivity > wrote: > > >> David Abrahams wrote: >> >>> When I have windows XP running under kvm, I get >>> >>> [EMAIL PROTECTED]:/tmp$ aplay /usr/share/sounds/gaim/receive.wav >>> ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open

[Qemu-devel] problem with qemu-img to create boot disk

2007-05-23 Thread kaiven long
Hi,folks I am using QEMU to debug Linux Kernel. And a boot disk is create through qemu-img. It can cannot be booted with other built kernel. The process is as the following show: create disk image like this: qemu-img create -f raw rootdisk.img 8G install redhat EL4 U4:

Re: [Qemu-devel] Large USB-Patch Documentation and todays CVS patch

2007-05-23 Thread Per Åstrand
Hello! I just wanted to hear about the Large USB patch that was discussed quite alot here a couple of months ago. As I understood it the patch was put on hold until the 0.90 release, but I've heard nothing more about it... Is anybody (Tino, Lonnie?) working on getting the patch into CVS? Would

Re: [Qemu-devel] Porting QEMU to PalmOS

2007-05-23 Thread sinisa marovic
Hi Johannes, thanks for your quick response. I thought QEMU was already compiled and run on an ARM machine? If so, how come that noone else had such problem (I searched for it on google), and PXA255 is a standard ARM CPU with a few additional instructions. And how to make them not come from GOT

Re: [Qemu-devel] Porting QEMU to PalmOS

2007-05-23 Thread Johannes Schindelin
Hi, On Wed, 23 May 2007, sinisa marovic wrote: > Relocation types that fail are 25 and 26, which are R_ARM_GOTPC and > R_ARM_GOT32 respectively. Their names are: > > _GLOBAL_OFFSET_TABLE_ > cc_table > __op_param1 > __op_param2 > __op_param3 > > Is there a way to fix this? The GOT is an offset

[Qemu-devel] Porting QEMU to PalmOS

2007-05-23 Thread sinisa marovic
Hi, I started porting QEMU to PalmOS. I already ported some projects successfuly (Like UAE and dosbox) but dosbox is so slow. QEMU has less compatibility with games but it is much faster. Now, I am having some problems with dyngen. Since QEMU supports ARM hosts I do not have to modify the co

[Qemu-devel] qemu Makefile.target

2007-05-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/05/23 08:35:19 Modified files: . : Makefile.target Log message: Add more cpu.h dependencies. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/Makefile.target?cvsroot=qemu&r

[Qemu-devel] qemu/target-mips cpu.h helper.c op.c translate.c

2007-05-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/05/23 08:24:25 Modified files: target-mips: cpu.h helper.c op.c translate.c Log message: The 24k wants more watch and srsmap registers. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/q

[Qemu-devel] qemu/target-mips op.c translate.c

2007-05-23 Thread Thiemo Seufer
CVSROOT:/sources/qemu Module name:qemu Changes by: Thiemo Seufer 07/05/23 08:18:27 Modified files: target-mips: op.c translate.c Log message: The previous patch to make breakpoints work was a performance disaster, use a similiar hack as ARM does i