Re: [Qemu-devel] [PATCH] target-arm: tcg temp variable usage cleanup

2009-10-31 Thread Laurent Desnogues
On Thu, Oct 29, 2009 at 3:01 PM, wrote: > From: Juha Riihimäki > > TCG temporary variable handling in target-arm/translate.c is currently > somewhat inconsistent; some functions allocate new temporaries that the > calling function is expected to free and some other functions free > temporaries t

[Qemu-devel] [PATCH] e1000 fix: read access to some registers is missing.

2009-10-31 Thread Kay Ackermann
While writing working on an e1000 driver for my university's OS I noticed that some registers aren't readable in QEMU, but they should be readable as stated in Intels Driver Developer Manual (and also verified on real hardware). diff --git a/hw/e1000.c b/hw/e1000.c index 028afd1..3987e70 100644 -

Re: [Qemu-devel] Re: PC machine types switched to SeaBIOS/gPXE

2009-10-31 Thread Jan Kiszka
Stefan Weil wrote: > Anthony Liguori schrieb: >> Jan Kiszka wrote: >>> Anthony Liguori wrote: >>> Hi, I just wanted to let everyone know that I've switched the PC machine type to SeaBIOS and gPXE. SeaBIOS is a port of the Bochs BIOS to GCC, by Kevin O'Conner, along with

[Qemu-devel] Re: PC machine types switched to SeaBIOS/gPXE

2009-10-31 Thread Stefan Weil
Anthony Liguori schrieb: > Jan Kiszka wrote: >> Anthony Liguori wrote: >> >>> Hi, >>> >>> I just wanted to let everyone know that I've switched the PC machine >>> type to SeaBIOS and gPXE. SeaBIOS is a port of the Bochs BIOS to GCC, >>> by Kevin O'Conner, along with quite a lot of clean up and n

[Qemu-devel] Re: PC machine types switched to SeaBIOS/gPXE

2009-10-31 Thread Jan Kiszka
Stefan Weil wrote: > Anthony Liguori schrieb: >> Hi, >> >> I just wanted to let everyone know that I've switched the PC machine >> type to SeaBIOS and gPXE. SeaBIOS is a port of the Bochs BIOS to GCC, >> by Kevin O'Conner, along with quite a lot of clean up and new feature >> work. >> >> gPXE is t

Re: [Qemu-devel] PC machine types switched to SeaBIOS/gPXE

2009-10-31 Thread Stefan Weil
Anthony Liguori schrieb: > Hi, > > I just wanted to let everyone know that I've switched the PC machine > type to SeaBIOS and gPXE. SeaBIOS is a port of the Bochs BIOS to GCC, > by Kevin O'Conner, along with quite a lot of clean up and new feature > work. > > gPXE is the new development tree of et

[Qemu-devel] [PATCH] Makefile: Prettify logging

2009-10-31 Thread Stefan Weil
Replace GEN config-all-devices.mak by GEN config-all-devices.mak Like this, the logging output is column aligned. Signed-off-by: Stefan Weil --- Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index c783aa4..c78d9ea 10064

[Qemu-devel] [PATCH] serial: Add interface to set reference oscillator frequency

2009-10-31 Thread Stefan Weil
Many (most?) serial interfaces have a programmable clock which provides the reference frequency ("baudbase"). So a fixed baudbase which is only set once can be wrong. omap1.c is an example which could use the new interface to change baudbase when the programmable clock changes. ar7 system emulatio