mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Additional VGA options for MIPS Malta
Support all kinds of pci vga cards (including none) Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6557 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
b4abdfa4fb
commit
1f605a7641
3 changed files with 11 additions and 2 deletions
|
@ -614,6 +614,7 @@ OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds122
|
|||
OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
|
||||
OBJS+= mipsnet.o
|
||||
OBJS+= pflash_cfi01.o
|
||||
OBJS+= vmware_vga.o
|
||||
CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
|
||||
endif
|
||||
ifeq ($(TARGET_BASE_ARCH), cris)
|
||||
|
|
|
@ -941,8 +941,16 @@ void mips_malta_init (ram_addr_t ram_size, int vga_ram_size,
|
|||
network_init(pci_bus);
|
||||
|
||||
/* Optional PCI video card */
|
||||
pci_cirrus_vga_init(pci_bus, phys_ram_base + ram_size,
|
||||
if (cirrus_vga_enabled) {
|
||||
pci_cirrus_vga_init(pci_bus, phys_ram_base + ram_size,
|
||||
ram_size, vga_ram_size);
|
||||
} else if (vmsvga_enabled) {
|
||||
pci_vmsvga_init(pci_bus, phys_ram_base + ram_size,
|
||||
ram_size, vga_ram_size);
|
||||
} else if (std_vga_enabled) {
|
||||
pci_vga_init(pci_bus, phys_ram_base + ram_size,
|
||||
ram_size, vga_ram_size, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
QEMUMachine mips_malta_machine = {
|
||||
|
|
|
@ -2700,7 +2700,7 @@ PCnet32 PCI network card
|
|||
@item
|
||||
Malta FPGA serial device
|
||||
@item
|
||||
Cirrus VGA graphics card
|
||||
Cirrus (default) or any other PCI VGA graphics card
|
||||
@end itemize
|
||||
|
||||
The ACER Pica emulation supports:
|
||||
|
|
Loading…
Reference in a new issue