diff options
author | Glauber Costa <glommer@redhat.com> | 2011-05-16 15:45:08 -0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-06-07 13:52:30 -0500 |
commit | a90d4690074526f54ad0851fce19fa6783f06803 (patch) | |
tree | b19b9e738828223ed7d13b77a70ca754154d8fae /hw/pc.c | |
parent | c1990ebfa11265d3aa9b6a4d5d1a02bd3f9ac5c6 (diff) | |
download | qemu-a90d4690074526f54ad0851fce19fa6783f06803.zip |
Add an isa device for SGA
This patch adds a dummy legacy ISA device whose responsibility is to
deploy sgabios, an option rom for a serial graphics adapter.
The proposal is that this device is always-on when -nographics,
but can otherwise be enable in any setup when -device sga is used.
[v2: suggestions on qdev by Markus ]
[v3: cleanups and documentation, per list suggestions ]
Signed-off-by: Glauber Costa <glommer@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1070,6 +1070,15 @@ void pc_vga_init(PCIBus *pci_bus) isa_vga_init(); } } + + /* + * sga does not suppress normal vga output. So a machine can have both a + * vga card and sga manually enabled. Output will be seen on both. + * For nographic case, sga is enabled at all times + */ + if (display_type == DT_NOGRAPHIC) { + isa_create_simple("sga"); + } } static void cpu_request_exit(void *opaque, int irq, int level) |