| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU PCI VGA Emulator. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:56 +02:00
										 |  |  |  * see docs/specs/standard-vga.txt for virtual hardware specs. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  |  * Copyright (c) 2003 Fabrice Bellard | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:13 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/pci/pci.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2013-03-18 17:36:02 +01:00
										 |  |  | #include "vga_int.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-28 12:06:30 +01:00
										 |  |  | #include "ui/pixel_ops.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/timer.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/loader.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  | #include "hw/display/edid.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | #include "qom/object.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  | enum vga_pci_flags { | 
					
						
							|  |  |  |     PCI_VGA_FLAG_ENABLE_MMIO = 1, | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |     PCI_VGA_FLAG_ENABLE_QEXT = 2, | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     PCI_VGA_FLAG_ENABLE_EDID = 3, | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | struct PCIVGAState { | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  |     PCIDevice dev; | 
					
						
							|  |  |  |     VGACommonState vga; | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     uint32_t flags; | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     qemu_edid_info edid_info; | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     MemoryRegion mmio; | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     MemoryRegion mrs[4]; | 
					
						
							| 
									
										
										
										
											2021-04-27 17:08:24 +02:00
										 |  |  |     uint8_t edid[384]; | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  | #define TYPE_PCI_VGA "pci-vga"
 | 
					
						
							| 
									
										
										
										
											2020-09-16 14:25:19 -04:00
										 |  |  | OBJECT_DECLARE_SIMPLE_TYPE(PCIVGAState, PCI_VGA) | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 15:42:44 +02:00
										 |  |  | static const VMStateDescription vmstate_vga_pci = { | 
					
						
							|  |  |  |     .name = "vga", | 
					
						
							|  |  |  |     .version_id = 2, | 
					
						
							|  |  |  |     .minimum_version_id = 2, | 
					
						
							| 
									
										
										
										
											2014-04-16 15:32:32 +02:00
										 |  |  |     .fields = (VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2009-10-14 15:42:44 +02:00
										 |  |  |         VMSTATE_PCI_DEVICE(dev, PCIVGAState), | 
					
						
							|  |  |  |         VMSTATE_STRUCT(vga, PCIVGAState, 0, vmstate_vga_common, VGACommonState), | 
					
						
							|  |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-10-14 15:42:44 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t pci_vga_ioport_read(void *ptr, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |                                     unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     VGACommonState *s = ptr; | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     uint64_t ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (size) { | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |         ret = vga_ioport_read(s, addr + 0x3c0); | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |         ret  = vga_ioport_read(s, addr + 0x3c0); | 
					
						
							|  |  |  |         ret |= vga_ioport_read(s, addr + 0x3c1) << 8; | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void pci_vga_ioport_write(void *ptr, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |                                  uint64_t val, unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     VGACommonState *s = ptr; | 
					
						
							| 
									
										
										
										
											2012-11-12 22:33:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     switch (size) { | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |         vga_ioport_write(s, addr + 0x3c0, val); | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Update bytes in little endian order.  Allows to update | 
					
						
							|  |  |  |          * indexed registers with a single word write because the | 
					
						
							|  |  |  |          * index byte is updated first. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |         vga_ioport_write(s, addr + 0x3c0, val & 0xff); | 
					
						
							|  |  |  |         vga_ioport_write(s, addr + 0x3c1, (val >> 8) & 0xff); | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const MemoryRegionOps pci_vga_ioport_ops = { | 
					
						
							|  |  |  |     .read = pci_vga_ioport_read, | 
					
						
							|  |  |  |     .write = pci_vga_ioport_write, | 
					
						
							|  |  |  |     .valid.min_access_size = 1, | 
					
						
							|  |  |  |     .valid.max_access_size = 4, | 
					
						
							|  |  |  |     .impl.min_access_size = 1, | 
					
						
							|  |  |  |     .impl.max_access_size = 2, | 
					
						
							|  |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t pci_vga_bochs_read(void *ptr, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |                                    unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     VGACommonState *s = ptr; | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     int index = addr >> 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     vbe_ioport_write_index(s, 0, index); | 
					
						
							|  |  |  |     return vbe_ioport_read_data(s, 0); | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void pci_vga_bochs_write(void *ptr, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |                                 uint64_t val, unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     VGACommonState *s = ptr; | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     int index = addr >> 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     vbe_ioport_write_index(s, 0, index); | 
					
						
							|  |  |  |     vbe_ioport_write_data(s, 0, val); | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const MemoryRegionOps pci_vga_bochs_ops = { | 
					
						
							|  |  |  |     .read = pci_vga_bochs_read, | 
					
						
							|  |  |  |     .write = pci_vga_bochs_write, | 
					
						
							|  |  |  |     .valid.min_access_size = 1, | 
					
						
							|  |  |  |     .valid.max_access_size = 4, | 
					
						
							|  |  |  |     .impl.min_access_size = 2, | 
					
						
							|  |  |  |     .impl.max_access_size = 2, | 
					
						
							|  |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | static uint64_t pci_vga_qext_read(void *ptr, hwaddr addr, unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     VGACommonState *s = ptr; | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (addr) { | 
					
						
							|  |  |  |     case PCI_VGA_QEXT_REG_SIZE: | 
					
						
							|  |  |  |         return PCI_VGA_QEXT_SIZE; | 
					
						
							|  |  |  |     case PCI_VGA_QEXT_REG_BYTEORDER: | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |         return s->big_endian_fb ? | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |             PCI_VGA_QEXT_BIG_ENDIAN : PCI_VGA_QEXT_LITTLE_ENDIAN; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pci_vga_qext_write(void *ptr, hwaddr addr, | 
					
						
							|  |  |  |                                uint64_t val, unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |     VGACommonState *s = ptr; | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (addr) { | 
					
						
							|  |  |  |     case PCI_VGA_QEXT_REG_BYTEORDER: | 
					
						
							|  |  |  |         if (val == PCI_VGA_QEXT_BIG_ENDIAN) { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |             s->big_endian_fb = true; | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (val == PCI_VGA_QEXT_LITTLE_ENDIAN) { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:09:49 +02:00
										 |  |  |             s->big_endian_fb = false; | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-10 15:36:15 +11:00
										 |  |  | static bool vga_get_big_endian_fb(Object *obj, Error **errp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     PCIVGAState *d = PCI_VGA(PCI_DEVICE(obj)); | 
					
						
							| 
									
										
										
										
											2015-02-10 15:36:15 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return d->vga.big_endian_fb; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void vga_set_big_endian_fb(Object *obj, bool value, Error **errp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     PCIVGAState *d = PCI_VGA(PCI_DEVICE(obj)); | 
					
						
							| 
									
										
										
										
											2015-02-10 15:36:15 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |     d->vga.big_endian_fb = value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | static const MemoryRegionOps pci_vga_qext_ops = { | 
					
						
							|  |  |  |     .read = pci_vga_qext_read, | 
					
						
							|  |  |  |     .write = pci_vga_qext_write, | 
					
						
							|  |  |  |     .valid.min_access_size = 4, | 
					
						
							|  |  |  |     .valid.max_access_size = 4, | 
					
						
							|  |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | void pci_std_vga_mmio_region_init(VGACommonState *s, | 
					
						
							| 
									
										
										
										
											2018-06-26 08:09:41 +02:00
										 |  |  |                                   Object *owner, | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |                                   MemoryRegion *parent, | 
					
						
							|  |  |  |                                   MemoryRegion *subs, | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |                                   bool qext, bool edid) | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     PCIVGAState *d = container_of(s, PCIVGAState, vga); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-26 08:09:41 +02:00
										 |  |  |     memory_region_init_io(&subs[0], owner, &pci_vga_ioport_ops, s, | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |                           "vga ioports remapped", PCI_VGA_IOPORT_SIZE); | 
					
						
							|  |  |  |     memory_region_add_subregion(parent, PCI_VGA_IOPORT_OFFSET, | 
					
						
							|  |  |  |                                 &subs[0]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-26 08:09:41 +02:00
										 |  |  |     memory_region_init_io(&subs[1], owner, &pci_vga_bochs_ops, s, | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |                           "bochs dispi interface", PCI_VGA_BOCHS_SIZE); | 
					
						
							|  |  |  |     memory_region_add_subregion(parent, PCI_VGA_BOCHS_OFFSET, | 
					
						
							|  |  |  |                                 &subs[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (qext) { | 
					
						
							| 
									
										
										
										
											2018-06-26 08:09:41 +02:00
										 |  |  |         memory_region_init_io(&subs[2], owner, &pci_vga_qext_ops, s, | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |                               "qemu extended regs", PCI_VGA_QEXT_SIZE); | 
					
						
							|  |  |  |         memory_region_add_subregion(parent, PCI_VGA_QEXT_OFFSET, | 
					
						
							|  |  |  |                                     &subs[2]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (edid) { | 
					
						
							|  |  |  |         qemu_edid_generate(d->edid, sizeof(d->edid), &d->edid_info); | 
					
						
							|  |  |  |         qemu_edid_region_io(&subs[3], owner, d->edid, sizeof(d->edid)); | 
					
						
							|  |  |  |         memory_region_add_subregion(parent, 0, &subs[3]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-19 15:52:30 +01:00
										 |  |  | static void pci_std_vga_realize(PCIDevice *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     PCIVGAState *d = PCI_VGA(dev); | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:54 +02:00
										 |  |  |     VGACommonState *s = &d->vga; | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |     bool qext = false; | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     bool edid = false; | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:54 +02:00
										 |  |  |     /* vga + console init */ | 
					
						
							| 
									
										
										
										
											2018-07-02 18:33:44 +02:00
										 |  |  |     vga_common_init(s, OBJECT(dev)); | 
					
						
							| 
									
										
										
										
											2013-06-06 21:21:13 -04:00
										 |  |  |     vga_init(s, OBJECT(dev), pci_address_space(dev), pci_address_space_io(dev), | 
					
						
							|  |  |  |              true); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 15:35:21 +01:00
										 |  |  |     s->con = graphic_console_init(DEVICE(dev), 0, s->hw_ops, s); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:54 +02:00
										 |  |  |     /* XXX: VGA_RAM_SIZE must be a power of two */ | 
					
						
							|  |  |  |     pci_register_bar(&d->dev, 0, PCI_BASE_ADDRESS_MEM_PREFETCH, &s->vram); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     /* mmio bar for vga register access */ | 
					
						
							|  |  |  |     if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_MMIO)) { | 
					
						
							| 
									
										
										
										
											2020-03-09 11:00:09 +01:00
										 |  |  |         memory_region_init_io(&d->mmio, OBJECT(dev), &unassigned_io_ops, NULL, | 
					
						
							|  |  |  |                               "vga.mmio", PCI_VGA_MMIO_SIZE); | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_QEXT)) { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |             qext = true; | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |             pci_set_byte(&d->dev.config[PCI_REVISION_ID], 2); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |         if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_EDID)) { | 
					
						
							|  |  |  |             edid = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         pci_std_vga_mmio_region_init(s, OBJECT(dev), &d->mmio, d->mrs, | 
					
						
							|  |  |  |                                      qext, edid); | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |         pci_register_bar(&d->dev, 2, PCI_BASE_ADDRESS_SPACE_MEMORY, &d->mmio); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-19 15:52:30 +01:00
										 |  |  | static void pci_secondary_vga_realize(PCIDevice *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     PCIVGAState *d = PCI_VGA(dev); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     VGACommonState *s = &d->vga; | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |     bool qext = false; | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     bool edid = false; | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* vga + console init */ | 
					
						
							| 
									
										
										
										
											2018-07-02 18:33:44 +02:00
										 |  |  |     vga_common_init(s, OBJECT(dev)); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     s->con = graphic_console_init(DEVICE(dev), 0, s->hw_ops, s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* mmio bar */ | 
					
						
							| 
									
										
										
										
											2020-03-09 11:00:09 +01:00
										 |  |  |     memory_region_init_io(&d->mmio, OBJECT(dev), &unassigned_io_ops, NULL, | 
					
						
							|  |  |  |                           "vga.mmio", PCI_VGA_MMIO_SIZE); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |     if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_QEXT)) { | 
					
						
							| 
									
										
										
										
											2015-04-08 09:50:46 +02:00
										 |  |  |         qext = true; | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |         pci_set_byte(&d->dev.config[PCI_REVISION_ID], 2); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_EDID)) { | 
					
						
							|  |  |  |         edid = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     pci_std_vga_mmio_region_init(s, OBJECT(dev), &d->mmio, d->mrs, qext, edid); | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     pci_register_bar(&d->dev, 0, PCI_BASE_ADDRESS_MEM_PREFETCH, &s->vram); | 
					
						
							|  |  |  |     pci_register_bar(&d->dev, 2, PCI_BASE_ADDRESS_SPACE_MEMORY, &d->mmio); | 
					
						
							| 
									
										
										
										
											2015-02-10 15:36:15 +11:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-13 11:17:29 -06:00
										 |  |  | static void pci_secondary_vga_exit(PCIDevice *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PCIVGAState *d = PCI_VGA(dev); | 
					
						
							|  |  |  |     VGACommonState *s = &d->vga; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     graphic_console_close(s->con); | 
					
						
							| 
									
										
										
										
											2018-10-02 14:19:35 +02:00
										 |  |  |     memory_region_del_subregion(&d->mmio, &d->mrs[0]); | 
					
						
							|  |  |  |     memory_region_del_subregion(&d->mmio, &d->mrs[1]); | 
					
						
							|  |  |  |     if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_QEXT)) { | 
					
						
							|  |  |  |         memory_region_del_subregion(&d->mmio, &d->mrs[2]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (d->flags & (1 << PCI_VGA_FLAG_ENABLE_EDID)) { | 
					
						
							|  |  |  |         memory_region_del_subregion(&d->mmio, &d->mrs[3]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-13 11:17:29 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-10 15:36:15 +11:00
										 |  |  | static void pci_secondary_vga_init(Object *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Expose framebuffer byteorder via QOM */ | 
					
						
							|  |  |  |     object_property_add_bool(obj, "big-endian-framebuffer", | 
					
						
							| 
									
										
											  
											
												qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists.  Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent.  Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers.  Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL.  Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call.  ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification".  Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
											
										 
											2020-05-05 17:29:22 +02:00
										 |  |  |                              vga_get_big_endian_fb, vga_set_big_endian_fb); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pci_secondary_vga_reset(DeviceState *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     PCIVGAState *d = PCI_VGA(PCI_DEVICE(dev)); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     vga_common_reset(&d->vga); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-24 09:59:44 +02:00
										 |  |  | static Property vga_pci_properties[] = { | 
					
						
							| 
									
										
										
										
											2012-06-11 10:42:53 +02:00
										 |  |  |     DEFINE_PROP_UINT32("vgamem_mb", PCIVGAState, vga.vram_size_mb, 16), | 
					
						
							| 
									
										
										
										
											2012-10-15 08:02:55 +02:00
										 |  |  |     DEFINE_PROP_BIT("mmio", PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_MMIO, true), | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |     DEFINE_PROP_BIT("qemu-extended-regs", | 
					
						
							|  |  |  |                     PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_QEXT, true), | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     DEFINE_PROP_BIT("edid", | 
					
						
							| 
									
										
										
										
											2019-06-07 10:34:44 +02:00
										 |  |  |                     PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_EDID, true), | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     DEFINE_EDID_PROPERTIES(PCIVGAState, edid_info), | 
					
						
							| 
									
										
										
										
											2018-07-02 18:33:44 +02:00
										 |  |  |     DEFINE_PROP_BOOL("global-vmstate", PCIVGAState, vga.global_vmstate, false), | 
					
						
							| 
									
										
										
										
											2012-05-24 09:59:44 +02:00
										 |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | static Property secondary_pci_properties[] = { | 
					
						
							|  |  |  |     DEFINE_PROP_UINT32("vgamem_mb", PCIVGAState, vga.vram_size_mb, 16), | 
					
						
							| 
									
										
										
										
											2014-09-23 12:45:56 +02:00
										 |  |  |     DEFINE_PROP_BIT("qemu-extended-regs", | 
					
						
							|  |  |  |                     PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_QEXT, true), | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     DEFINE_PROP_BIT("edid", | 
					
						
							| 
									
										
										
										
											2019-06-07 10:34:44 +02:00
										 |  |  |                     PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_EDID, true), | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |     DEFINE_EDID_PROPERTIES(PCIVGAState, edid_info), | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  | static void vga_pci_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							|  |  |  |     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     k->vendor_id = PCI_VENDOR_ID_QEMU; | 
					
						
							|  |  |  |     k->device_id = PCI_DEVICE_ID_QEMU_VGA; | 
					
						
							|  |  |  |     dc->vmsd = &vmstate_vga_pci; | 
					
						
							|  |  |  |     set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo vga_pci_type_info = { | 
					
						
							|  |  |  |     .name = TYPE_PCI_VGA, | 
					
						
							|  |  |  |     .parent = TYPE_PCI_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(PCIVGAState), | 
					
						
							|  |  |  |     .abstract = true, | 
					
						
							|  |  |  |     .class_init = vga_pci_class_init, | 
					
						
							| 
									
										
										
										
											2017-09-27 16:56:34 -03:00
										 |  |  |     .interfaces = (InterfaceInfo[]) { | 
					
						
							|  |  |  |         { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | 
					
						
							|  |  |  |         { }, | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 12:22:06 -06:00
										 |  |  | static void vga_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2011-12-04 12:22:06 -06:00
										 |  |  |     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-19 15:52:30 +01:00
										 |  |  |     k->realize = pci_std_vga_realize; | 
					
						
							| 
									
										
										
										
											2011-12-04 12:22:06 -06:00
										 |  |  |     k->romfile = "vgabios-stdvga.bin"; | 
					
						
							|  |  |  |     k->class_id = PCI_CLASS_DISPLAY_VGA; | 
					
						
							| 
									
										
										
										
											2020-01-10 19:30:32 +04:00
										 |  |  |     device_class_set_props(dc, vga_pci_properties); | 
					
						
							| 
									
										
										
										
											2014-02-05 16:36:48 +01:00
										 |  |  |     dc->hotpluggable = false; | 
					
						
							| 
									
										
										
										
											2020-09-21 18:10:42 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Expose framebuffer byteorder via QOM */ | 
					
						
							|  |  |  |     object_class_property_add_bool(klass, "big-endian-framebuffer", | 
					
						
							|  |  |  |                                    vga_get_big_endian_fb, vga_set_big_endian_fb); | 
					
						
							| 
									
										
										
										
											2011-12-04 12:22:06 -06:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-05-25 10:58:31 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | static void secondary_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							|  |  |  |     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-19 15:52:30 +01:00
										 |  |  |     k->realize = pci_secondary_vga_realize; | 
					
						
							| 
									
										
										
										
											2018-03-13 11:17:29 -06:00
										 |  |  |     k->exit = pci_secondary_vga_exit; | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     k->class_id = PCI_CLASS_DISPLAY_OTHER; | 
					
						
							| 
									
										
										
										
											2020-01-10 19:30:32 +04:00
										 |  |  |     device_class_set_props(dc, secondary_pci_properties); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     dc->reset = pci_secondary_vga_reset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo vga_info = { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .name          = "VGA", | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     .parent        = TYPE_PCI_VGA, | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .class_init    = vga_class_init, | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  | static const TypeInfo secondary_info = { | 
					
						
							|  |  |  |     .name          = "secondary-vga", | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     .parent        = TYPE_PCI_VGA, | 
					
						
							| 
									
										
										
										
											2015-02-10 15:36:15 +11:00
										 |  |  |     .instance_init = pci_secondary_vga_init, | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     .class_init    = secondary_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | static void vga_register_types(void) | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-12 17:27:08 +08:00
										 |  |  |     type_register_static(&vga_pci_type_info); | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     type_register_static(&vga_info); | 
					
						
							| 
									
										
										
										
											2012-11-12 14:29:47 +01:00
										 |  |  |     type_register_static(&secondary_info); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:15 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | type_init(vga_register_types) |