| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU ISA MM VGA Emulator. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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-08-12 07:23:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:13 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:34 +02:00
										 |  |  | #include "qemu/bitops.h"
 | 
					
						
							| 
									
										
										
										
											2018-06-25 09:42:06 -03:00
										 |  |  | #include "qemu/units.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-17 13:44:21 -03:00
										 |  |  | #include "hw/display/vga.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"
 | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 09:42:06 -03:00
										 |  |  | #define VGA_RAM_SIZE (8 * MiB)
 | 
					
						
							| 
									
										
										
										
											2012-05-24 09:59:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | typedef struct ISAVGAMMState { | 
					
						
							|  |  |  |     VGACommonState vga; | 
					
						
							|  |  |  |     int it_shift; | 
					
						
							|  |  |  | } ISAVGAMMState; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Memory mapped interface */ | 
					
						
							| 
									
										
										
										
											2018-08-02 16:51:46 +01:00
										 |  |  | static uint64_t vga_mm_read(void *opaque, hwaddr addr, unsigned size) | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     ISAVGAMMState *s = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 16:51:46 +01:00
										 |  |  |     return vga_ioport_read(&s->vga, addr >> s->it_shift) & | 
					
						
							|  |  |  |         MAKE_64BIT_MASK(0, size * 8); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 16:51:46 +01:00
										 |  |  | static void vga_mm_write(void *opaque, hwaddr addr, uint64_t value, | 
					
						
							|  |  |  |                          unsigned size) | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     ISAVGAMMState *s = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-02 16:51:46 +01:00
										 |  |  |     vga_ioport_write(&s->vga, addr >> s->it_shift, | 
					
						
							|  |  |  |                      value & MAKE_64BIT_MASK(0, size * 8)); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  | static const MemoryRegionOps vga_mm_ctrl_ops = { | 
					
						
							| 
									
										
										
										
											2018-08-02 16:51:46 +01:00
										 |  |  |     .read = vga_mm_read, | 
					
						
							|  |  |  |     .write = vga_mm_write, | 
					
						
							|  |  |  |     .valid.min_access_size = 1, | 
					
						
							|  |  |  |     .valid.max_access_size = 4, | 
					
						
							|  |  |  |     .impl.min_access_size = 1, | 
					
						
							|  |  |  |     .impl.max_access_size = 4, | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void vga_mm_init(ISAVGAMMState *s, hwaddr vram_base, | 
					
						
							|  |  |  |                         hwaddr ctrl_base, int it_shift, | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:37 +03:00
										 |  |  |                         MemoryRegion *address_space) | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  |     MemoryRegion *s_ioport_ctrl, *vga_io_memory; | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->it_shift = it_shift; | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     s_ioport_ctrl = g_malloc(sizeof(*s_ioport_ctrl)); | 
					
						
							| 
									
										
										
										
											2013-06-06 05:41:28 -04:00
										 |  |  |     memory_region_init_io(s_ioport_ctrl, NULL, &vga_mm_ctrl_ops, s, | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  |                           "vga-mm-ctrl", 0x100000); | 
					
						
							| 
									
										
										
										
											2012-08-23 13:02:33 +02:00
										 |  |  |     memory_region_set_flush_coalesced(s_ioport_ctrl); | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     vga_io_memory = g_malloc(sizeof(*vga_io_memory)); | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  |     /* XXX: endianness? */ | 
					
						
							| 
									
										
										
										
											2013-06-06 05:41:28 -04:00
										 |  |  |     memory_region_init_io(vga_io_memory, NULL, &vga_mem_ops, &s->vga, | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  |                           "vga-mem", 0x20000); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-25 11:09:07 -06:00
										 |  |  |     vmstate_register(NULL, 0, &vmstate_vga_common, s); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:37 +03:00
										 |  |  |     memory_region_add_subregion(address_space, ctrl_base, s_ioport_ctrl); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  |     s->vga.bank_offset = 0; | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:37 +03:00
										 |  |  |     memory_region_add_subregion(address_space, | 
					
						
							| 
									
										
										
										
											2011-08-08 16:08:57 +03:00
										 |  |  |                                 vram_base + 0x000a0000, vga_io_memory); | 
					
						
							|  |  |  |     memory_region_set_coalescing(vga_io_memory); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | int isa_vga_mm_init(hwaddr vram_base, | 
					
						
							|  |  |  |                     hwaddr ctrl_base, int it_shift, | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:37 +03:00
										 |  |  |                     MemoryRegion *address_space) | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     ISAVGAMMState *s; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     s = g_malloc0(sizeof(*s)); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-25 09:42:06 -03:00
										 |  |  |     s->vga.vram_size_mb = VGA_RAM_SIZE / MiB; | 
					
						
							| 
									
										
										
										
											2018-07-02 18:33:44 +02:00
										 |  |  |     s->vga.global_vmstate = true; | 
					
						
							|  |  |  |     vga_common_init(&s->vga, NULL); | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:37 +03:00
										 |  |  |     vga_mm_init(s, vram_base, ctrl_base, it_shift, address_space); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 15:35:21 +01:00
										 |  |  |     s->vga.con = graphic_console_init(NULL, 0, s->vga.hw_ops, s); | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-09 14:30:08 +01:00
										 |  |  |     memory_region_add_subregion(address_space, | 
					
						
							|  |  |  |                                 VBE_DISPI_LFB_PHYSICAL_ADDRESS, | 
					
						
							|  |  |  |                                 &s->vga.vram); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 16:07:18 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } |