* [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
@ 2009-05-30 20:51 Juergen Lock
2009-05-30 23:06 ` [Qemu-devel] " Sebastian Herbszt
2009-05-31 9:29 ` [Qemu-devel] " Andreas Färber
0 siblings, 2 replies; 7+ messages in thread
From: Juergen Lock @ 2009-05-30 20:51 UTC (permalink / raw)
To: qemu-devel; +Cc: jan.kiszka, freebsd-emulation
Hi!
I just committed Jan's kqemu patch series to the FreeBSD kqemu port
(yes FreeBSD is another one of those `left behind' OSes where kvm
doesn't really work yet...) - and I also committed an old NetBSD/OpenBSD
guest kqemu patch,
http://lists.gnu.org/archive/html/qemu-devel/2007-11/msg00125.html
and then played with a NetBSD guest in qemu 0.10.5 a little, where I
found out a few things:
1. A few times I even got NetBSD 5.0/i386 running with -kernel-kqemu now,
tho a few other times I also got guest processes segfaulting etc.
`Regualr' kqemu seems stable now tho.
2. NetBSD doesn't seem to particularly like qemu's acpi tables, it
apparenly doesn't find a pci bus and anything on it in that case
(like a nic our audio card; `pcictl pci0 list' says Device not configured.)
3. When I disable acpi either via the boot menu or via -no-acpi it still
has trouble assigning pci irqs correctly (like, uses irq 12 instead of 11
for the nic) - this seems to have something to do with the emulated
io-apic that it still picks up in that case - if I disable that by
building a new bios that has this patch reverted,
pc-bios/bios-pq/0003_kvm-bios-generate-mptable-unconditionally.patch
the irqs at least get assigned correctly. (Maybe the bios should only
pass an mptable for a single cpu when there also is acpi?)
4. most of qemu's emulated nics NetBSD still doesn't like, I had most
luck with pcnet.
(5. vbox has troubles with NetBSD too, it only boots here when I enable
svm _and_ npt. Luckily that's also when a vm runs the fastest, but of
course npt/ept are also still pretty rare...)
Oh, if anyone wants dmesg.s of the various with/without acpi/io-apic
combinations I can post those too, the patched bios I just put at:
http://people.freebsd.org/~nox/qemu/pc-bios-0.10.5-no-default-mptable/bios.bin
(I had to end up building it on a Linux guest, our assembler said things
like
rombios32start.S:56: Error: `0(%ebx)' is not a valid 16 bit base/index expression
.)
Thanx,
Juergen
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Qemu-devel] Re: Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
2009-05-30 20:51 [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests Juergen Lock
@ 2009-05-30 23:06 ` Sebastian Herbszt
2009-05-31 0:37 ` Juergen Lock
2009-05-31 9:29 ` [Qemu-devel] " Andreas Färber
1 sibling, 1 reply; 7+ messages in thread
From: Sebastian Herbszt @ 2009-05-30 23:06 UTC (permalink / raw)
To: Juergen Lock, qemu-devel; +Cc: jan.kiszka, freebsd-emulation
Juergen Lock wrote:
> 2. NetBSD doesn't seem to particularly like qemu's acpi tables, it
> apparenly doesn't find a pci bus and anything on it in that case
> (like a nic our audio card; `pcictl pci0 list' says Device not configured.)
>
> 3. When I disable acpi either via the boot menu or via -no-acpi it still
> has trouble assigning pci irqs correctly (like, uses irq 12 instead of 11
> for the nic) - this seems to have something to do with the emulated
> io-apic that it still picks up in that case - if I disable that by
> building a new bios that has this patch reverted,
> pc-bios/bios-pq/0003_kvm-bios-generate-mptable-unconditionally.patch
> the irqs at least get assigned correctly. (Maybe the bios should only
> pass an mptable for a single cpu when there also is acpi?)
With "-no-acpi" there is no PIIX4 PM added to the bus. If i don't mistake the
mp and acpi tables aren't affected by this.
The mptable doesn't contain a pci bus entry (just isa). The linux kernel does
complain if booted with "acpi=off"; maybe NetBSD is more picky.
> Oh, if anyone wants dmesg.s of the various with/without acpi/io-apic
> combinations I can post those too, the patched bios I just put at:
> http://people.freebsd.org/~nox/qemu/pc-bios-0.10.5-no-default-mptable/bios.bin
I would like to see the output.
> (I had to end up building it on a Linux guest, our assembler said things
> like
> rombios32start.S:56: Error: `0(%ebx)' is not a valid 16 bit base/index expression
> .)
What's your tool chain (gcc, binutils,...) ?
- Sebastian
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Qemu-devel] Re: Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
2009-05-30 23:06 ` [Qemu-devel] " Sebastian Herbszt
@ 2009-05-31 0:37 ` Juergen Lock
0 siblings, 0 replies; 7+ messages in thread
From: Juergen Lock @ 2009-05-31 0:37 UTC (permalink / raw)
To: Sebastian Herbszt; +Cc: jan.kiszka, freebsd-emulation, qemu-devel
On Sun, May 31, 2009 at 01:06:31AM +0200, Sebastian Herbszt wrote:
> Juergen Lock wrote:
> > 2. NetBSD doesn't seem to particularly like qemu's acpi tables, it
> > apparenly doesn't find a pci bus and anything on it in that case
> > (like a nic our audio card; `pcictl pci0 list' says Device not configured.)
> >
> > 3. When I disable acpi either via the boot menu or via -no-acpi it still
> > has trouble assigning pci irqs correctly (like, uses irq 12 instead of 11
> > for the nic) - this seems to have something to do with the emulated
> > io-apic that it still picks up in that case - if I disable that by
> > building a new bios that has this patch reverted,
> > pc-bios/bios-pq/0003_kvm-bios-generate-mptable-unconditionally.patch
> > the irqs at least get assigned correctly. (Maybe the bios should only
> > pass an mptable for a single cpu when there also is acpi?)
>
> With "-no-acpi" there is no PIIX4 PM added to the bus. If i don't mistake the
> mp and acpi tables aren't affected by this.
>
> The mptable doesn't contain a pci bus entry (just isa). The linux kernel does
> complain if booted with "acpi=off"; maybe NetBSD is more picky.
>
Aha so maybe NetBSD is expectig to see the pci bus listed in acpi then...
> > Oh, if anyone wants dmesg.s of the various with/without acpi/io-apic
> > combinations I can post those too, the patched bios I just put at:
> > http://people.freebsd.org/~nox/qemu/pc-bios-0.10.5-no-default-mptable/bios.bin
>
> I would like to see the output.
>
OK I'll append below.
> > (I had to end up building it on a Linux guest, our assembler said things
> > like
> > rombios32start.S:56: Error: `0(%ebx)' is not a valid 16 bit base/index expression
> > .)
>
> What's your tool chain (gcc, binutils,...) ?
Whatever is in FreeBSD 7.2-stable base, lets see...
zsh triton% as --version
GNU assembler 2.15 [FreeBSD] 2004-05-23
zsh triton% ld --version
GNU ld version 2.15 [FreeBSD] 2004-05-23
Heh doesn't look particularly new indeed :)
Thanx,
Juergen
1. acpi + mptable: (upstream bios; notice no pci0, piixide0, pcn0, and
auich0)
--------snip------------
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008
The NetBSD Foundation, Inc. All rights reserved.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
NetBSD 5.0 (GENERIC) #0: Sun Apr 26 18:50:08 UTC 2009
builds@b6.netbsd.org:/home/builds/ab/netbsd-5-0-RELEASE/i386/200904260229Z-obj/home/builds/ab/netbsd-5-0-RELEASE/src/sys/arch/i386/compile/GENERIC
total memory = 1023 MB
avail memory = 994 MB
timecounter: Timecounters tick every 10.000 msec
timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100
Generic PC
mainbus0 (root)
cpu0 at mainbus0 apid 0: Intel 686-class, id 0x633
ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 11, 24 pins
acpi0 at mainbus0: Intel ACPICA 20080321
acpi0: X/RSDT: OemId <QEMU ,QEMURSDT,00000001>, AslId <QEMU,00000001>
acpi0: SCI interrupting at int 9
acpi0: fixed-feature power button present
timecounter: Timecounter "ACPI-Safe" frequency 3579545 Hz quality 900
ACPI-Safe 24-bit timer
pckbc1 at acpi0 (KBD, PNP0303): kbd port
pckbc1: io 0x60,0x64 irq 1
pckbc2 at acpi0 (MOU, PNP0F13): aux port
pckbc2: irq 12
FDC0 (PNP0700) at acpi0 not configured
LPT (PNP0400) at acpi0 not configured
COM1 (PNP0501) at acpi0 not configured
apm0 at acpi0: Power Management spec V1.2
pckbd0 at pckbc1 (kbd slot)
pckbc1: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard
pms0 at pckbc1 (aux slot)
pckbc1: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
isa0 at mainbus0
lpt0 at isa0 port 0x378-0x37b irq 7
com0 at isa0 port 0x3f8-0x3ff irq 4: ns16550a, working fifo
attimer0 at isa0 port 0x40-0x43: AT Timer
wdc0 at isa0 port 0x1f0-0x1f7 irq 14
atabus0 at wdc0 channel 0
wdc1 at isa0 port 0x170-0x177 irq 15
atabus1 at wdc1 channel 0
vga0 at isa0 port 0x3b0-0x3df iomem 0xa0000-0xbffff
wsdisplay0 at vga0 kbdmux 1: console (80x25, vt100 emulation), using wskbd0
wsmux1: connecting to wsdisplay0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker (CPU-intensive output)
sysbeep0 at pcppi0
isapnp0 at isa0 port 0x279: ISA Plug 'n Play device support
npx0 at isa0 port 0xf0-0xff
npx0: reported by CPUID; using exception 16
fdc0 at isa0 port 0x3f0-0x3f7 irq 6 drq 2
attimer0: attached to pcppi0
isapnp0: no ISA Plug 'n Play devices found
timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0
wd0 at atabus0 drive 0: <QEMU HARDDISK>
wd0: drive supports 16-sector PIO transfers, LBA48 addressing
wd0: 10240 MB, 20805 cyl, 16 head, 63 sec, 512 bytes/sect x 20971520 sectors
atapibus0 at atabus1: 2 targets
cd0 at atapibus0 drive 0: <QEMU DVD-ROM, QM00003, 0.10.5> cdrom removable
Kernelized RAIDframe activated
pad0: outputs: 44100Hz, 16-bit, stereo
audio0 at pad0: half duplex
boot device: wd0
root on wd0a dumps on wd0b
root file system type: ffs
wsdisplay0: screen 1 added (80x25, vt100 emulation)
wsdisplay0: screen 2 added (80x25, vt100 emulation)
wsdisplay0: screen 3 added (80x25, vt100 emulation)
wsdisplay0: screen 4 added (80x25, vt100 emulation)
--------snip------------
2. -no-acpi + mptable (notice wrong pcn0 irq, and `ioapic0 pin 12:
can't share type 3 with 2' as a result):
--------snip------------
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008
The NetBSD Foundation, Inc. All rights reserved.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
NetBSD 5.0 (GENERIC) #0: Sun Apr 26 18:50:08 UTC 2009
builds@b6.netbsd.org:/home/builds/ab/netbsd-5-0-RELEASE/i386/200904260229Z-obj/home/builds/ab/netbsd-5-0-RELEASE/src/sys/arch/i386/compile/GENERIC
total memory = 1023 MB
avail memory = 994 MB
timecounter: Timecounters tick every 10.000 msec
timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100
Generic PC
mainbus0 (root)
ACPI Error (tbxfroot-0308): A valid RSDP was not found [20080321]
ACPI: unable to initialize ACPI tables: AE_NOT_FOUND
mainbus0: Intel MP Specification (Version 1.4) (QEMUCPU 0.1 )
cpu0 at mainbus0 apid 0: Intel 686-class, id 0x633
mpbios: bus 0 is type ISA
ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 11, 24 pins
pci0 at mainbus0 bus 0: configuration mode 1
pci0: i/o space, memory space enabled, rd/line, rd/mult, wr/inv ok
pchb0 at pci0 dev 0 function 0
pchb0: vendor 0x8086 product 0x1237 (rev. 0x02)
pcib0 at pci0 dev 1 function 0
pcib0: vendor 0x8086 product 0x7000 (rev. 0x00)
piixide0 at pci0 dev 1 function 1
piixide0: Intel 82371SB IDE Interface (PIIX3) (rev. 0x00)
piixide0: bus-master DMA support present
piixide0: primary channel wired to compatibility mode
piixide0: primary channel interrupting at ioapic0 pin 14
atabus0 at piixide0 channel 0
piixide0: secondary channel wired to compatibility mode
piixide0: secondary channel interrupting at ioapic0 pin 15
atabus1 at piixide0 channel 1
vga1 at pci0 dev 2 function 0: vendor 0x1013 product 0x00b8 (rev. 0x00)
wsdisplay0 at vga1 kbdmux 1: console (80x25, vt100 emulation)
wsmux1: connecting to wsdisplay0
drm at vga1 not configured
pcn0 at pci0 dev 3 function 0: AMD PCnet-PCI Ethernet
pcn0: Am79c970A PCnet-PCI II rev 0, Ethernet address 52:54:00:12:34:56
pcn0: interrupting at ioapic0 pin 12
pcn0: 10base5, 10base5-FDX, 10baseT, 10baseT-FDX, auto, auto-FDX
auich0 at pci0 dev 4 function 0: i82801AA (ICH) AC-97 Audio
auich0: interrupting at ioapic0 pin 9
auich0: ac97: SigmaTel STAC9700 codec; no 3D stereo
auich0: ac97: ext id 809<AC97_23,VRM,VRA>
vendor 0x1af4 product 0x1002 (RAM memory) at pci0 dev 5 function 0 not configured
isa0 at pcib0
lpt0 at isa0 port 0x378-0x37b irq 7
com0 at isa0 port 0x3f8-0x3ff irq 4: ns16550a, working fifo
pckbc0 at isa0 port 0x60-0x64
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
intr_establish: pic ioapic0 pin 12: can't share type 3 with 2
pckbc0: unable to establish interrupt for aux slot
wsmouse0 at pms0 mux 0
attimer0 at isa0 port 0x40-0x43: AT Timer
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker (CPU-intensive output)
sysbeep0 at pcppi0
isapnp0 at isa0 port 0x279: ISA Plug 'n Play device support
npx0 at isa0 port 0xf0-0xff
npx0: reported by CPUID; using exception 16
fdc0 at isa0 port 0x3f0-0x3f7 irq 6 drq 2
attimer0: attached to pcppi0
isapnp0: no ISA Plug 'n Play devices found
timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0
auich0: measured ac97 link rate at 45801 Hz, will use 48000 Hz
audio0 at auich0: full duplex, mmap, independent
wd0 at atabus0 drive 0: <QEMU HARDDISK>
wd0: drive supports 16-sector PIO transfers, LBA48 addressing
wd0: 10240 MB, 20805 cyl, 16 head, 63 sec, 512 bytes/sect x 20971520 sectors
wd0: 32-bit data port
wd0(piixide0:0:0): using PIO mode 0
atapibus0 at atabus1: 2 targets
cd0 at atapibus0 drive 0: <QEMU DVD-ROM, QM00003, 0.10.5> cdrom removable
cd0: 32-bit data port
cd0(piixide0:1:0): using PIO mode 3
Kernelized RAIDframe activated
pad0: outputs: 44100Hz, 16-bit, stereo
audio1 at pad0: half duplex
boot device: wd0
root on wd0a dumps on wd0b
root file system type: ffs
wsdisplay0: screen 1 added (80x25, vt100 emulation)
wsdisplay0: screen 2 added (80x25, vt100 emulation)
wsdisplay0: screen 3 added (80x25, vt100 emulation)
wsdisplay0: screen 4 added (80x25, vt100 emulation)
--------snip------------
3. -no-acpi + no mptable: (patched bios; only this combination works)
--------snip------------
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008
The NetBSD Foundation, Inc. All rights reserved.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
NetBSD 5.0 (GENERIC) #0: Sun Apr 26 18:50:08 UTC 2009
builds@b6.netbsd.org:/home/builds/ab/netbsd-5-0-RELEASE/i386/200904260229Z-obj/home/builds/ab/netbsd-5-0-RELEASE/src/sys/arch/i386/compile/GENERIC
total memory = 1023 MB
avail memory = 994 MB
timecounter: Timecounters tick every 10.000 msec
timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100
Generic PC
mainbus0 (root)
ACPI Error (tbxfroot-0308): A valid RSDP was not found [20080321]
ACPI: unable to initialize ACPI tables: AE_NOT_FOUND
cpu0 at mainbus0: Intel 686-class, id 0x633
pci0 at mainbus0 bus 0: configuration mode 1
pci0: i/o space, memory space enabled, rd/line, rd/mult, wr/inv ok
pchb0 at pci0 dev 0 function 0
pchb0: vendor 0x8086 product 0x1237 (rev. 0x02)
pcib0 at pci0 dev 1 function 0
pcib0: vendor 0x8086 product 0x7000 (rev. 0x00)
piixide0 at pci0 dev 1 function 1
piixide0: Intel 82371SB IDE Interface (PIIX3) (rev. 0x00)
piixide0: bus-master DMA support present
piixide0: primary channel wired to compatibility mode
piixide0: primary channel interrupting at irq 14
atabus0 at piixide0 channel 0
piixide0: secondary channel wired to compatibility mode
piixide0: secondary channel interrupting at irq 15
atabus1 at piixide0 channel 1
vga1 at pci0 dev 2 function 0: vendor 0x1013 product 0x00b8 (rev. 0x00)
wsdisplay0 at vga1 kbdmux 1: console (80x25, vt100 emulation)
wsmux1: connecting to wsdisplay0
drm at vga1 not configured
pcn0 at pci0 dev 3 function 0: AMD PCnet-PCI Ethernet
pcn0: Am79c970A PCnet-PCI II rev 0, Ethernet address 52:54:00:12:34:56
pcn0: interrupting at irq 11
pcn0: 10base5, 10base5-FDX, 10baseT, 10baseT-FDX, auto, auto-FDX
auich0 at pci0 dev 4 function 0: i82801AA (ICH) AC-97 Audio
auich0: interrupting at irq 9
auich0: ac97: SigmaTel STAC9700 codec; no 3D stereo
auich0: ac97: ext id 809<AC97_23,VRM,VRA>
vendor 0x1af4 product 0x1002 (RAM memory) at pci0 dev 5 function 0 not configured
isa0 at pcib0
lpt0 at isa0 port 0x378-0x37b irq 7
com0 at isa0 port 0x3f8-0x3ff irq 4: ns16550a, working fifo
pckbc0 at isa0 port 0x60-0x64
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
pckbc0: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
attimer0 at isa0 port 0x40-0x43: AT Timer
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker (CPU-intensive output)
sysbeep0 at pcppi0
isapnp0 at isa0 port 0x279: ISA Plug 'n Play device support
npx0 at isa0 port 0xf0-0xff
npx0: reported by CPUID; using exception 16
fdc0 at isa0 port 0x3f0-0x3f7 irq 6 drq 2
attimer0: attached to pcppi0
isapnp0: no ISA Plug 'n Play devices found
timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0
auich0: measured ac97 link rate at 46040 Hz, will use 48000 Hz
audio0 at auich0: full duplex, mmap, independent
wd0 at atabus0 drive 0: <QEMU HARDDISK>
wd0: drive supports 16-sector PIO transfers, LBA48 addressing
wd0: 10240 MB, 20805 cyl, 16 head, 63 sec, 512 bytes/sect x 20971520 sectors
wd0: 32-bit data port
wd0(piixide0:0:0): using PIO mode 0
atapibus0 at atabus1: 2 targets
cd0 at atapibus0 drive 0: <QEMU DVD-ROM, QM00003, 0.10.5> cdrom removable
cd0: 32-bit data port
cd0(piixide0:1:0): using PIO mode 3
Kernelized RAIDframe activated
pad0: outputs: 44100Hz, 16-bit, stereo
audio1 at pad0: half duplex
boot device: wd0
root on wd0a dumps on wd0b
root file system type: ffs
wsdisplay0: screen 1 added (80x25, vt100 emulation)
wsdisplay0: screen 2 added (80x25, vt100 emulation)
wsdisplay0: screen 3 added (80x25, vt100 emulation)
wsdisplay0: screen 4 added (80x25, vt100 emulation)
--------snip------------
4. and for completeness sake, acpi + no mptable: (patched bios; again
no pci devices)
--------snip------------
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008
The NetBSD Foundation, Inc. All rights reserved.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
NetBSD 5.0 (GENERIC) #0: Sun Apr 26 18:50:08 UTC 2009
builds@b6.netbsd.org:/home/builds/ab/netbsd-5-0-RELEASE/i386/200904260229Z-obj/home/builds/ab/netbsd-5-0-RELEASE/src/sys/arch/i386/compile/GENERIC
total memory = 1023 MB
avail memory = 994 MB
timecounter: Timecounters tick every 10.000 msec
timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100
Generic PC
mainbus0 (root)
cpu0 at mainbus0 apid 0: Intel 686-class, id 0x633
ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 11, 24 pins
acpi0 at mainbus0: Intel ACPICA 20080321
acpi0: X/RSDT: OemId <QEMU ,QEMURSDT,00000001>, AslId <QEMU,00000001>
acpi0: SCI interrupting at int 9
acpi0: fixed-feature power button present
timecounter: Timecounter "ACPI-Safe" frequency 3579545 Hz quality 900
ACPI-Safe 24-bit timer
pckbc1 at acpi0 (KBD, PNP0303): kbd port
pckbc1: io 0x60,0x64 irq 1
pckbc2 at acpi0 (MOU, PNP0F13): aux port
pckbc2: irq 12
FDC0 (PNP0700) at acpi0 not configured
LPT (PNP0400) at acpi0 not configured
COM1 (PNP0501) at acpi0 not configured
apm0 at acpi0: Power Management spec V1.2
pckbd0 at pckbc1 (kbd slot)
pckbc1: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard
pms0 at pckbc1 (aux slot)
pckbc1: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
isa0 at mainbus0
lpt0 at isa0 port 0x378-0x37b irq 7
com0 at isa0 port 0x3f8-0x3ff irq 4: ns16550a, working fifo
attimer0 at isa0 port 0x40-0x43: AT Timer
wdc0 at isa0 port 0x1f0-0x1f7 irq 14
atabus0 at wdc0 channel 0
wdc1 at isa0 port 0x170-0x177 irq 15
atabus1 at wdc1 channel 0
vga0 at isa0 port 0x3b0-0x3df iomem 0xa0000-0xbffff
wsdisplay0 at vga0 kbdmux 1: console (80x25, vt100 emulation), using wskbd0
wsmux1: connecting to wsdisplay0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker (CPU-intensive output)
sysbeep0 at pcppi0
isapnp0 at isa0 port 0x279: ISA Plug 'n Play device support
npx0 at isa0 port 0xf0-0xff
npx0: reported by CPUID; using exception 16
fdc0 at isa0 port 0x3f0-0x3f7 irq 6 drq 2
attimer0: attached to pcppi0
isapnp0: no ISA Plug 'n Play devices found
timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0
wd0 at atabus0 drive 0: <QEMU HARDDISK>
wd0: drive supports 16-sector PIO transfers, LBA48 addressing
wd0: 10240 MB, 20805 cyl, 16 head, 63 sec, 512 bytes/sect x 20971520 sectors
atapibus0 at atabus1: 2 targets
cd0 at atapibus0 drive 0: <QEMU DVD-ROM, QM00003, 0.10.5> cdrom removable
Kernelized RAIDframe activated
pad0: outputs: 44100Hz, 16-bit, stereo
audio0 at pad0: half duplex
boot device: wd0
root on wd0a dumps on wd0b
root file system type: ffs
wsdisplay0: screen 1 added (80x25, vt100 emulation)
wsdisplay0: screen 2 added (80x25, vt100 emulation)
wsdisplay0: screen 3 added (80x25, vt100 emulation)
wsdisplay0: screen 4 added (80x25, vt100 emulation)
--------snip------------
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
2009-05-30 20:51 [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests Juergen Lock
2009-05-30 23:06 ` [Qemu-devel] " Sebastian Herbszt
@ 2009-05-31 9:29 ` Andreas Färber
2009-05-31 14:41 ` Juergen Lock
1 sibling, 1 reply; 7+ messages in thread
From: Andreas Färber @ 2009-05-31 9:29 UTC (permalink / raw)
To: Juergen Lock
Cc: freebsd-emulation, Mikolaj Kucharski, Enache Adrian, qemu-devel
Hi Jürgen,
Am 30.05.2009 um 22:51 schrieb Juergen Lock:
> I just committed Jan's kqemu patch series to the FreeBSD kqemu port
> (yes FreeBSD is another one of those `left behind' OSes where kvm
> doesn't really work yet...) - and I also committed an old NetBSD/
> OpenBSD
> guest kqemu patch,
> http://lists.gnu.org/archive/html/qemu-devel/2007-11/msg00125.html
> and then played with a NetBSD guest in qemu 0.10.5 a little, where I
> found out a few things:
>
> 1. A few times I even got NetBSD 5.0/i386 running with -kernel-kqemu
> now,
> tho a few other times I also got guest processes segfaulting etc.
> `Regualr' kqemu seems stable now tho.
Thanks for the pointer. I've pushed it to a pick-up branch for now to
facilitate testing. Did you test non-BSD guests, too?
I noticed that Adrian has patches for OpenBSD host support in their
ports CVS repository, as pointed out by Mikolaj.
There appears to be some FreeBSD code in-tree though - so, is the
above patch the only one you've queued, or do you have host patches as
well that we could push "upstream"?
Regards,
Andreas
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
2009-05-31 9:29 ` [Qemu-devel] " Andreas Färber
@ 2009-05-31 14:41 ` Juergen Lock
2009-05-31 15:59 ` Mikolaj Kucharski
0 siblings, 1 reply; 7+ messages in thread
From: Juergen Lock @ 2009-05-31 14:41 UTC (permalink / raw)
To: Andreas Färber
Cc: freebsd-emulation, Mikolaj Kucharski, Enache Adrian, qemu-devel
On Sun, May 31, 2009 at 11:29:28AM +0200, Andreas Färber wrote:
> Hi Jürgen,
Hi!
>
> Am 30.05.2009 um 22:51 schrieb Juergen Lock:
>
> > I just committed Jan's kqemu patch series to the FreeBSD kqemu port
> > (yes FreeBSD is another one of those `left behind' OSes where kvm
> > doesn't really work yet...) - and I also committed an old NetBSD/
> > OpenBSD
> > guest kqemu patch,
> > http://lists.gnu.org/archive/html/qemu-devel/2007-11/msg00125.html
> > and then played with a NetBSD guest in qemu 0.10.5 a little, where I
> > found out a few things:
> >
> > 1. A few times I even got NetBSD 5.0/i386 running with -kernel-kqemu
> > now,
> > tho a few other times I also got guest processes segfaulting etc.
> > `Regualr' kqemu seems stable now tho.
>
> Thanks for the pointer. I've pushed it to a pick-up branch for now to
> facilitate testing. Did you test non-BSD guests, too?
>
Oh yes I tested Linux too (and FreeBSD), and I tested a Windows 7 beta
guest that I had installed a while ago more out of curiosity than
anything else, and that one seemed to bluescreen a little less than
it used to also... (it usually only bluescreen at boot and sometimes
at shutdown, once it gets past the boot stage it keeps running, altho
slowly. Oh and -kernel-kqemu seems to always make it bluescreen so
only `regular' kqemu is useful for that guest.)
Everything else I tested seemed to still run like it used to, the
Linux guests even _appeared_ to run a little faster than they used to,
possibly because of the added verr/verw and lar/lsl handling in Jan's
patches...
> I noticed that Adrian has patches for OpenBSD host support in their
> ports CVS repository, as pointed out by Mikolaj.
> There appears to be some FreeBSD code in-tree though - so, is the
> above patch the only one you've queued, or do you have host patches as
> well that we could push "upstream"?
I have a few more, as you can see on cvsweb:
http://www.freebsd.org/cgi/cvsweb.cgi/ports/emulators/kqemu-kmod-devel/files/
(patch-tssworkaround is only applied for FreeBSD < 7.1 since later
versions no longer have the issue it works around; look in that patch's
commitlogs if you want links to the gory details...)
Cheers,
Juergen
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
2009-05-31 14:41 ` Juergen Lock
@ 2009-05-31 15:59 ` Mikolaj Kucharski
2009-05-31 17:10 ` Juergen Lock
0 siblings, 1 reply; 7+ messages in thread
From: Mikolaj Kucharski @ 2009-05-31 15:59 UTC (permalink / raw)
To: Juergen Lock
Cc: Andreas Färber, freebsd-emulation, Enache Adrian, qemu-devel
Is there anything new for OpenBSD which I could help test? Patches in
OpenBSD CVS are for kqemu 1.3.0pre11, version 1.4.0pre1 doesn't work.
References
1. http://www.openbsd.org/cgi-bin/cvsweb/ports/emulators/kqemu/
On Sun, May 31, 2009 at 04:41:33PM +0200, Juergen Lock wrote:
> On Sun, May 31, 2009 at 11:29:28AM +0200, Andreas Färber wrote:
> > Hi Jürgen,
> Hi!
> >
> > Am 30.05.2009 um 22:51 schrieb Juergen Lock:
> >
> > > I just committed Jan's kqemu patch series to the FreeBSD kqemu port
> > > (yes FreeBSD is another one of those `left behind' OSes where kvm
> > > doesn't really work yet...) - and I also committed an old NetBSD/
> > > OpenBSD
> > > guest kqemu patch,
> > > http://lists.gnu.org/archive/html/qemu-devel/2007-11/msg00125.html
> > > and then played with a NetBSD guest in qemu 0.10.5 a little, where I
> > > found out a few things:
> > >
> > > 1. A few times I even got NetBSD 5.0/i386 running with -kernel-kqemu
> > > now,
> > > tho a few other times I also got guest processes segfaulting etc.
> > > `Regualr' kqemu seems stable now tho.
> >
> > Thanks for the pointer. I've pushed it to a pick-up branch for now to
> > facilitate testing. Did you test non-BSD guests, too?
> >
> Oh yes I tested Linux too (and FreeBSD), and I tested a Windows 7 beta
> guest that I had installed a while ago more out of curiosity than
> anything else, and that one seemed to bluescreen a little less than
> it used to also... (it usually only bluescreen at boot and sometimes
> at shutdown, once it gets past the boot stage it keeps running, altho
> slowly. Oh and -kernel-kqemu seems to always make it bluescreen so
> only `regular' kqemu is useful for that guest.)
>
> Everything else I tested seemed to still run like it used to, the
> Linux guests even _appeared_ to run a little faster than they used to,
> possibly because of the added verr/verw and lar/lsl handling in Jan's
> patches...
>
> > I noticed that Adrian has patches for OpenBSD host support in their
> > ports CVS repository, as pointed out by Mikolaj.
> > There appears to be some FreeBSD code in-tree though - so, is the
> > above patch the only one you've queued, or do you have host patches as
> > well that we could push "upstream"?
>
> I have a few more, as you can see on cvsweb:
> http://www.freebsd.org/cgi/cvsweb.cgi/ports/emulators/kqemu-kmod-devel/files/
> (patch-tssworkaround is only applied for FreeBSD < 7.1 since later
> versions no longer have the issue it works around; look in that patch's
> commitlogs if you want links to the gory details...)
>
> Cheers,
> Juergen
--
best regards
q#
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests
2009-05-31 15:59 ` Mikolaj Kucharski
@ 2009-05-31 17:10 ` Juergen Lock
0 siblings, 0 replies; 7+ messages in thread
From: Juergen Lock @ 2009-05-31 17:10 UTC (permalink / raw)
To: Mikolaj Kucharski, Andreas Färber, qemu-devel,
freebsd-emulation, Enache Adrian
On Sun, May 31, 2009 at 04:59:27PM +0100, Mikolaj Kucharski wrote:
> Is there anything new for OpenBSD which I could help test? Patches in
> OpenBSD CVS are for kqemu 1.3.0pre11, version 1.4.0pre1 doesn't work.
>
> References
> 1. http://www.openbsd.org/cgi-bin/cvsweb/ports/emulators/kqemu/
I don't know, but iirc the only thing I had to change when forward-porting
the FreeBSD kqemu-kmod port from 1.3.0pre* to 1.4.0pre* (kqemu-kmod-devel)
was adding code for the new KQEMU_SET_PHYS_MEM ioctl, as you can see here:
http://www.freebsd.org/cgi/cvsweb.cgi/ports/emulators/kqemu-kmod-devel/files/patch-kqemu-freebsd.c?annotate=1.9
(the D_NEEDMINOR change is unrelated.)
So I would at least suspect it should be as easy for OpenBSD?
HTH,
Juergen
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-05-31 17:14 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-30 20:51 [Qemu-devel] Thanx for the kqemu patches; some notes about NetBSD/OpenBSD guests Juergen Lock
2009-05-30 23:06 ` [Qemu-devel] " Sebastian Herbszt
2009-05-31 0:37 ` Juergen Lock
2009-05-31 9:29 ` [Qemu-devel] " Andreas Färber
2009-05-31 14:41 ` Juergen Lock
2009-05-31 15:59 ` Mikolaj Kucharski
2009-05-31 17:10 ` Juergen Lock
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.