2 * QEMU ISA MM VGA Emulator.
4 * Copyright (c) 2003 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 #include "pixel_ops.h"
29 #include "qemu-timer.h"
31 typedef struct ISAVGAMMState
{
36 /* Memory mapped interface */
37 static uint32_t vga_mm_readb (void *opaque
, target_phys_addr_t addr
)
39 ISAVGAMMState
*s
= opaque
;
41 return vga_ioport_read(&s
->vga
, addr
>> s
->it_shift
) & 0xff;
44 static void vga_mm_writeb (void *opaque
,
45 target_phys_addr_t addr
, uint32_t value
)
47 ISAVGAMMState
*s
= opaque
;
49 vga_ioport_write(&s
->vga
, addr
>> s
->it_shift
, value
& 0xff);
52 static uint32_t vga_mm_readw (void *opaque
, target_phys_addr_t addr
)
54 ISAVGAMMState
*s
= opaque
;
56 return vga_ioport_read(&s
->vga
, addr
>> s
->it_shift
) & 0xffff;
59 static void vga_mm_writew (void *opaque
,
60 target_phys_addr_t addr
, uint32_t value
)
62 ISAVGAMMState
*s
= opaque
;
64 vga_ioport_write(&s
->vga
, addr
>> s
->it_shift
, value
& 0xffff);
67 static uint32_t vga_mm_readl (void *opaque
, target_phys_addr_t addr
)
69 ISAVGAMMState
*s
= opaque
;
71 return vga_ioport_read(&s
->vga
, addr
>> s
->it_shift
);
74 static void vga_mm_writel (void *opaque
,
75 target_phys_addr_t addr
, uint32_t value
)
77 ISAVGAMMState
*s
= opaque
;
79 vga_ioport_write(&s
->vga
, addr
>> s
->it_shift
, value
);
82 static CPUReadMemoryFunc
* const vga_mm_read_ctrl
[] = {
88 static CPUWriteMemoryFunc
* const vga_mm_write_ctrl
[] = {
94 static void vga_mm_init(ISAVGAMMState
*s
, target_phys_addr_t vram_base
,
95 target_phys_addr_t ctrl_base
, int it_shift
)
97 int s_ioport_ctrl
, vga_io_memory
;
99 s
->it_shift
= it_shift
;
100 s_ioport_ctrl
= cpu_register_io_memory(vga_mm_read_ctrl
, vga_mm_write_ctrl
, s
);
101 vga_io_memory
= cpu_register_io_memory(vga_mem_read
, vga_mem_write
, s
);
103 vmstate_register(NULL
, 0, &vmstate_vga_common
, s
);
105 cpu_register_physical_memory(ctrl_base
, 0x100000, s_ioport_ctrl
);
106 s
->vga
.bank_offset
= 0;
107 cpu_register_physical_memory(vram_base
+ 0x000a0000, 0x20000, vga_io_memory
);
108 qemu_register_coalesced_mmio(vram_base
+ 0x000a0000, 0x20000);
111 int isa_vga_mm_init(target_phys_addr_t vram_base
,
112 target_phys_addr_t ctrl_base
, int it_shift
)
116 s
= qemu_mallocz(sizeof(*s
));
118 vga_common_init(&s
->vga
, VGA_RAM_SIZE
);
119 vga_mm_init(s
, vram_base
, ctrl_base
, it_shift
);
121 s
->vga
.ds
= graphic_console_init(s
->vga
.update
, s
->vga
.invalidate
,
122 s
->vga
.screen_dump
, s
->vga
.text_update
, s
);
124 vga_init_vbe(&s
->vga
);