Difference between revisions of "QEMU"
(Document the lack of a MIPS BIOS and workaround.) |
(PIT is working also.) |
||
| Line 14: | Line 14: | ||
=== Interrupt controller === | === Interrupt controller === | ||
Qemu is emulating the standard builtin interrrupt controller including soft interrupts and the count/compare interrupt of [[R4000]]-class processors. Cascaded externally to that is a [[i8259]] [[i8259|PIC]] interrupt controller that is cascaded to the CPU's INT0. | Qemu is emulating the standard builtin interrrupt controller including soft interrupts and the count/compare interrupt of [[R4000]]-class processors. Cascaded externally to that is a [[i8259]] [[i8259|PIC]] interrupt controller that is cascaded to the CPU's INT0. | ||
| + | |||
| + | === Timer === | ||
| + | In addition to the CPU builtin timer Linux support the [[i8254]] [[i8254|PIT]] (''Programmable Interval Timer'') which is cascaded to the PIC's interrupt 0 input. | ||
=== Graphics card === | === Graphics card === | ||
Revision as of 10:43, 15 August 2005
Qemu is a generic open source processor and system emulator. It achieves good performance from using a Just-in-time compilation.
Contents |
System architecture
This paragraph describes the architecture of the MIPS system that currently is being emulated by Qemu. As Qemu is still very much work in progress this is expected to change.
Firmware
There currently is no firmware for Qemu. This is only a minor problem as unlike on a real system Qemu's virtual hardware is mostly initialized after a reset.
Processor
Qemu is simulating a 4Kc MIPS32 processor with a 16 entry TLB. Both I-cache and D-cache are 4kB each, 2-way set-associative with 16 bytes per cacheline however the cache effects are not simulated and cacheops are treated as noops. This is a design decission to iprove performance over accuracy. No benchmarking has been done however it is expected that the performance of the virtual MIPS system will be comparable to emulation of the other processors.
Qemu's source code can also be configured to be built with support for a 4Km processor. However being TLB-less this processor is not of interest for Linux, so does not currently receive any sort of attention.
Interrupt controller
Qemu is emulating the standard builtin interrrupt controller including soft interrupts and the count/compare interrupt of R4000-class processors. Cascaded externally to that is a i8259 PIC interrupt controller that is cascaded to the CPU's INT0.
Timer
In addition to the CPU builtin timer Linux support the i8254 PIT (Programmable Interval Timer) which is cascaded to the PIC's interrupt 0 input.
Graphics card
Qemu is emulating a standard VGA graphics card however underlined, bold and blinking attributes are not supported.
Serial interface
Qemu is emulating a PC-style 8250-based serial interface.
Network interface
Qemu is emulating a single ISA NE2000 network card.
Other peripherals
Qemu supports other peripherals however support for them has not been integrated or tested into the MIPS port.
Status
At this time the MIPS support still is in pre-alpha stage. There is no firmware for qemu yet and the kernel will only run to the point where it enters userspace.
Patches
Currently MIPS support has not yet been integrated into Qemu nor the Linux kernel yet, so you'll need to apply some patches.
Kernel patches
Qemu currently doesn't emulate any existing MIPS system. Therefor the Linux kernel needs patches to add support the Qemu platform. The patch is meant to be applied on top of a Linux 2.6 kernel from the CVS archive.
Qemu patches
All MIPS Qemu patches have been integrated into the Qemu CVS.
Common Problems
MIPS BIOS not found on startup
[ralf@box qemu]$ qemu-system-mips -kernel /tftboot/192.168.0.1/vmlinux.bin -m 16 -nographic (qemu) mips_r4k_init: start mips_r4k_init: load BIOS '/usr/local/share/qemu/mips_bios.bin' size 131072 qemu: could not load MIPS bios '/usr/local/share/qemu/mips_bios.bin' [ralf@box qemu]$
There currently is no MIPS BIOS file for Qemu. However if passed a -kernel argument qemu will not call the firmware at all, so this does no harm at all. Therefor a command such as
dd if=/dev/zero of=/usr/local/share/qemu/mips_bios.bin bs=1024 count=128
will generate a firmware file that will do the job for now.
See also
- The Qemu homepage at http://fabrice.bellard.free.fr/qemu.
Credits
Originally authored by French wizzard Fabrice Bellard, Jocelyn Mayer did add support for MIPS as a target, others are now trying to complete the project.