2 * TPR optimization for 32-bit Windows guests (XP and Server 2003)
4 * Copyright (C) 2007-2008 Qumranet Technologies
5 * Copyright (C) 2012 Jan Kiszka, Siemens AG
7 * This work is licensed under the terms of the GNU GPL version 2, or
8 * (at your option) any later version. See the COPYING file in the
11 #include "sysemu/sysemu.h"
12 #include "sysemu/cpus.h"
13 #include "sysemu/kvm.h"
14 #include "hw/i386/apic_internal.h"
15 #include "hw/sysbus.h"
17 #define VAPIC_IO_PORT 0x7e
19 #define VAPIC_CPU_SHIFT 7
21 #define ROM_BLOCK_SIZE 512
22 #define ROM_BLOCK_MASK (~(ROM_BLOCK_SIZE - 1))
24 typedef enum VAPICMode
{
30 typedef struct VAPICHandlers
{
34 uint32_t get_tpr_stack
;
35 } QEMU_PACKED VAPICHandlers
;
37 typedef struct GuestROMState
{
45 uint32_t real_tpr_addr
;
48 } QEMU_PACKED GuestROMState
;
50 typedef struct VAPICROMState
{
55 uint32_t rom_state_paddr
;
56 uint32_t rom_state_vaddr
;
58 uint32_t real_tpr_addr
;
59 GuestROMState rom_state
;
61 bool rom_mapped_writable
;
64 #define TYPE_VAPIC "kvmvapic"
65 #define VAPIC(obj) OBJECT_CHECK(VAPICROMState, (obj), TYPE_VAPIC)
67 #define TPR_INSTR_ABS_MODRM 0x1
68 #define TPR_INSTR_MATCH_MODRM_REG 0x2
70 typedef struct TPRInstruction
{
79 /* must be sorted by length, shortest first */
80 static const TPRInstruction tpr_instr
[] = {
81 { /* mov abs to eax */
83 .access
= TPR_ACCESS_READ
,
87 { /* mov eax to abs */
89 .access
= TPR_ACCESS_WRITE
,
93 { /* mov r32 to r/m32 */
95 .flags
= TPR_INSTR_ABS_MODRM
,
96 .access
= TPR_ACCESS_WRITE
,
100 { /* mov r/m32 to r32 */
102 .flags
= TPR_INSTR_ABS_MODRM
,
103 .access
= TPR_ACCESS_READ
,
110 .flags
= TPR_INSTR_ABS_MODRM
| TPR_INSTR_MATCH_MODRM_REG
,
111 .access
= TPR_ACCESS_READ
,
115 { /* mov imm32, r/m32 (c7/0) */
118 .flags
= TPR_INSTR_ABS_MODRM
| TPR_INSTR_MATCH_MODRM_REG
,
119 .access
= TPR_ACCESS_WRITE
,
125 static void read_guest_rom_state(VAPICROMState
*s
)
127 cpu_physical_memory_rw(s
->rom_state_paddr
, (void *)&s
->rom_state
,
128 sizeof(GuestROMState
), 0);
131 static void write_guest_rom_state(VAPICROMState
*s
)
133 cpu_physical_memory_rw(s
->rom_state_paddr
, (void *)&s
->rom_state
,
134 sizeof(GuestROMState
), 1);
137 static void update_guest_rom_state(VAPICROMState
*s
)
139 read_guest_rom_state(s
);
141 s
->rom_state
.real_tpr_addr
= cpu_to_le32(s
->real_tpr_addr
);
142 s
->rom_state
.vcpu_shift
= cpu_to_le32(VAPIC_CPU_SHIFT
);
144 write_guest_rom_state(s
);
147 static int find_real_tpr_addr(VAPICROMState
*s
, CPUX86State
*env
)
149 CPUState
*cs
= CPU(x86_env_get_cpu(env
));
153 if (s
->state
== VAPIC_ACTIVE
) {
157 * If there is no prior TPR access instruction we could analyze (which is
158 * the case after resume from hibernation), we need to scan the possible
159 * virtual address space for the APIC mapping.
161 for (addr
= 0xfffff000; addr
>= 0x80000000; addr
-= TARGET_PAGE_SIZE
) {
162 paddr
= cpu_get_phys_page_debug(cs
, addr
);
163 if (paddr
!= APIC_DEFAULT_ADDRESS
) {
166 s
->real_tpr_addr
= addr
+ 0x80;
167 update_guest_rom_state(s
);
173 static uint8_t modrm_reg(uint8_t modrm
)
175 return (modrm
>> 3) & 7;
178 static bool is_abs_modrm(uint8_t modrm
)
180 return (modrm
& 0xc7) == 0x05;
183 static bool opcode_matches(uint8_t *opcode
, const TPRInstruction
*instr
)
185 return opcode
[0] == instr
->opcode
&&
186 (!(instr
->flags
& TPR_INSTR_ABS_MODRM
) || is_abs_modrm(opcode
[1])) &&
187 (!(instr
->flags
& TPR_INSTR_MATCH_MODRM_REG
) ||
188 modrm_reg(opcode
[1]) == instr
->modrm_reg
);
191 static int evaluate_tpr_instruction(VAPICROMState
*s
, X86CPU
*cpu
,
192 target_ulong
*pip
, TPRAccess access
)
194 CPUState
*cs
= CPU(cpu
);
195 const TPRInstruction
*instr
;
196 target_ulong ip
= *pip
;
198 uint32_t real_tpr_addr
;
201 if ((ip
& 0xf0000000ULL
) != 0x80000000ULL
&&
202 (ip
& 0xf0000000ULL
) != 0xe0000000ULL
) {
207 * Early Windows 2003 SMP initialization contains a
211 * instruction that is patched by TPR optimization. The problem is that
212 * RSP, used by the patched instruction, is zero, so the guest gets a
213 * double fault and dies.
215 if (cpu
->env
.regs
[R_ESP
] == 0) {
219 if (kvm_enabled() && !kvm_irqchip_in_kernel()) {
221 * KVM without kernel-based TPR access reporting will pass an IP that
222 * points after the accessing instruction. So we need to look backward
223 * to find the reason.
225 for (i
= 0; i
< ARRAY_SIZE(tpr_instr
); i
++) {
226 instr
= &tpr_instr
[i
];
227 if (instr
->access
!= access
) {
230 if (cpu_memory_rw_debug(cs
, ip
- instr
->length
, opcode
,
231 sizeof(opcode
), 0) < 0) {
234 if (opcode_matches(opcode
, instr
)) {
241 if (cpu_memory_rw_debug(cs
, ip
, opcode
, sizeof(opcode
), 0) < 0) {
244 for (i
= 0; i
< ARRAY_SIZE(tpr_instr
); i
++) {
245 instr
= &tpr_instr
[i
];
246 if (opcode_matches(opcode
, instr
)) {
255 * Grab the virtual TPR address from the instruction
256 * and update the cached values.
258 if (cpu_memory_rw_debug(cs
, ip
+ instr
->addr_offset
,
259 (void *)&real_tpr_addr
,
260 sizeof(real_tpr_addr
), 0) < 0) {
263 real_tpr_addr
= le32_to_cpu(real_tpr_addr
);
264 if ((real_tpr_addr
& 0xfff) != 0x80) {
267 s
->real_tpr_addr
= real_tpr_addr
;
268 update_guest_rom_state(s
);
274 static int update_rom_mapping(VAPICROMState
*s
, CPUX86State
*env
, target_ulong ip
)
276 CPUState
*cs
= CPU(x86_env_get_cpu(env
));
278 uint32_t rom_state_vaddr
;
279 uint32_t pos
, patch
, offset
;
281 /* nothing to do if already activated */
282 if (s
->state
== VAPIC_ACTIVE
) {
286 /* bail out if ROM init code was not executed (missing ROM?) */
287 if (s
->state
== VAPIC_INACTIVE
) {
291 /* find out virtual address of the ROM */
292 rom_state_vaddr
= s
->rom_state_paddr
+ (ip
& 0xf0000000);
293 paddr
= cpu_get_phys_page_debug(cs
, rom_state_vaddr
);
297 paddr
+= rom_state_vaddr
& ~TARGET_PAGE_MASK
;
298 if (paddr
!= s
->rom_state_paddr
) {
301 read_guest_rom_state(s
);
302 if (memcmp(s
->rom_state
.signature
, "kvm aPiC", 8) != 0) {
305 s
->rom_state_vaddr
= rom_state_vaddr
;
307 /* fixup addresses in ROM if needed */
308 if (rom_state_vaddr
== le32_to_cpu(s
->rom_state
.vaddr
)) {
311 for (pos
= le32_to_cpu(s
->rom_state
.fixup_start
);
312 pos
< le32_to_cpu(s
->rom_state
.fixup_end
);
314 cpu_physical_memory_rw(paddr
+ pos
- s
->rom_state
.vaddr
,
315 (void *)&offset
, sizeof(offset
), 0);
316 offset
= le32_to_cpu(offset
);
317 cpu_physical_memory_rw(paddr
+ offset
, (void *)&patch
,
319 patch
= le32_to_cpu(patch
);
320 patch
+= rom_state_vaddr
- le32_to_cpu(s
->rom_state
.vaddr
);
321 patch
= cpu_to_le32(patch
);
322 cpu_physical_memory_rw(paddr
+ offset
, (void *)&patch
,
325 read_guest_rom_state(s
);
326 s
->vapic_paddr
= paddr
+ le32_to_cpu(s
->rom_state
.vapic_vaddr
) -
327 le32_to_cpu(s
->rom_state
.vaddr
);
333 * Tries to read the unique processor number from the Kernel Processor Control
334 * Region (KPCR) of 32-bit Windows XP and Server 2003. Returns -1 if the KPCR
335 * cannot be accessed or is considered invalid. This also ensures that we are
336 * not patching the wrong guest.
338 static int get_kpcr_number(X86CPU
*cpu
)
340 CPUX86State
*env
= &cpu
->env
;
348 if (cpu_memory_rw_debug(CPU(cpu
), env
->segs
[R_FS
].base
,
349 (void *)&kpcr
, sizeof(kpcr
), 0) < 0 ||
350 kpcr
.self
!= env
->segs
[R_FS
].base
) {
356 static int vapic_enable(VAPICROMState
*s
, X86CPU
*cpu
)
358 int cpu_number
= get_kpcr_number(cpu
);
360 static const uint8_t enabled
= 1;
362 if (cpu_number
< 0) {
365 vapic_paddr
= s
->vapic_paddr
+
366 (((hwaddr
)cpu_number
) << VAPIC_CPU_SHIFT
);
367 cpu_physical_memory_rw(vapic_paddr
+ offsetof(VAPICState
, enabled
),
368 (void *)&enabled
, sizeof(enabled
), 1);
369 apic_enable_vapic(cpu
->env
.apic_state
, vapic_paddr
);
371 s
->state
= VAPIC_ACTIVE
;
376 static void patch_byte(X86CPU
*cpu
, target_ulong addr
, uint8_t byte
)
378 cpu_memory_rw_debug(CPU(cpu
), addr
, &byte
, 1, 1);
381 static void patch_call(VAPICROMState
*s
, X86CPU
*cpu
, target_ulong ip
,
386 offset
= cpu_to_le32(target
- ip
- 5);
387 patch_byte(cpu
, ip
, 0xe8); /* call near */
388 cpu_memory_rw_debug(CPU(cpu
), ip
+ 1, (void *)&offset
, sizeof(offset
), 1);
391 static void patch_instruction(VAPICROMState
*s
, X86CPU
*cpu
, target_ulong ip
)
393 CPUState
*cs
= CPU(cpu
);
394 CPUX86State
*env
= &cpu
->env
;
395 VAPICHandlers
*handlers
;
398 target_ulong current_pc
= 0;
399 target_ulong current_cs_base
= 0;
400 int current_flags
= 0;
403 handlers
= &s
->rom_state
.up
;
405 handlers
= &s
->rom_state
.mp
;
408 if (!kvm_enabled()) {
409 cpu_restore_state(env
, env
->mem_io_pc
);
410 cpu_get_tb_cpu_state(env
, ¤t_pc
, ¤t_cs_base
,
416 cpu_memory_rw_debug(cs
, ip
, opcode
, sizeof(opcode
), 0);
419 case 0x89: /* mov r32 to r/m32 */
420 patch_byte(cpu
, ip
, 0x50 + modrm_reg(opcode
[1])); /* push reg */
421 patch_call(s
, cpu
, ip
+ 1, handlers
->set_tpr
);
423 case 0x8b: /* mov r/m32 to r32 */
424 patch_byte(cpu
, ip
, 0x90);
425 patch_call(s
, cpu
, ip
+ 1, handlers
->get_tpr
[modrm_reg(opcode
[1])]);
427 case 0xa1: /* mov abs to eax */
428 patch_call(s
, cpu
, ip
, handlers
->get_tpr
[0]);
430 case 0xa3: /* mov eax to abs */
431 patch_call(s
, cpu
, ip
, handlers
->set_tpr_eax
);
433 case 0xc7: /* mov imm32, r/m32 (c7/0) */
434 patch_byte(cpu
, ip
, 0x68); /* push imm32 */
435 cpu_memory_rw_debug(cs
, ip
+ 6, (void *)&imm32
, sizeof(imm32
), 0);
436 cpu_memory_rw_debug(cs
, ip
+ 1, (void *)&imm32
, sizeof(imm32
), 1);
437 patch_call(s
, cpu
, ip
+ 5, handlers
->set_tpr
);
439 case 0xff: /* push r/m32 */
440 patch_byte(cpu
, ip
, 0x50); /* push eax */
441 patch_call(s
, cpu
, ip
+ 1, handlers
->get_tpr_stack
);
449 if (!kvm_enabled()) {
450 cs
->current_tb
= NULL
;
451 tb_gen_code(env
, current_pc
, current_cs_base
, current_flags
, 1);
452 cpu_resume_from_signal(env
, NULL
);
456 void vapic_report_tpr_access(DeviceState
*dev
, CPUState
*cs
, target_ulong ip
,
459 VAPICROMState
*s
= VAPIC(dev
);
460 X86CPU
*cpu
= X86_CPU(cs
);
461 CPUX86State
*env
= &cpu
->env
;
463 cpu_synchronize_state(cs
);
465 if (evaluate_tpr_instruction(s
, cpu
, &ip
, access
) < 0) {
466 if (s
->state
== VAPIC_ACTIVE
) {
467 vapic_enable(s
, cpu
);
471 if (update_rom_mapping(s
, env
, ip
) < 0) {
474 if (vapic_enable(s
, cpu
) < 0) {
477 patch_instruction(s
, cpu
, ip
);
480 typedef struct VAPICEnableTPRReporting
{
483 } VAPICEnableTPRReporting
;
485 static void vapic_do_enable_tpr_reporting(void *data
)
487 VAPICEnableTPRReporting
*info
= data
;
489 apic_enable_tpr_access_reporting(info
->apic
, info
->enable
);
492 static void vapic_enable_tpr_reporting(bool enable
)
494 VAPICEnableTPRReporting info
= {
504 info
.apic
= env
->apic_state
;
505 run_on_cpu(cs
, vapic_do_enable_tpr_reporting
, &info
);
509 static void vapic_reset(DeviceState
*dev
)
511 VAPICROMState
*s
= VAPIC(dev
);
513 s
->state
= VAPIC_INACTIVE
;
514 s
->rom_state_paddr
= 0;
515 vapic_enable_tpr_reporting(false);
519 * Set the IRQ polling hypercalls to the supported variant:
520 * - vmcall if using KVM in-kernel irqchip
521 * - 32-bit VAPIC port write otherwise
523 static int patch_hypercalls(VAPICROMState
*s
)
525 hwaddr rom_paddr
= s
->rom_state_paddr
& ROM_BLOCK_MASK
;
526 static const uint8_t vmcall_pattern
[] = { /* vmcall */
527 0xb8, 0x1, 0, 0, 0, 0xf, 0x1, 0xc1
529 static const uint8_t outl_pattern
[] = { /* nop; outl %eax,0x7e */
530 0xb8, 0x1, 0, 0, 0, 0x90, 0xe7, 0x7e
532 uint8_t alternates
[2];
533 const uint8_t *pattern
;
534 const uint8_t *patch
;
539 rom
= g_malloc(s
->rom_size
);
540 cpu_physical_memory_rw(rom_paddr
, rom
, s
->rom_size
, 0);
542 for (pos
= 0; pos
< s
->rom_size
- sizeof(vmcall_pattern
); pos
++) {
543 if (kvm_irqchip_in_kernel()) {
544 pattern
= outl_pattern
;
545 alternates
[0] = outl_pattern
[7];
546 alternates
[1] = outl_pattern
[7];
547 patch
= &vmcall_pattern
[5];
549 pattern
= vmcall_pattern
;
550 alternates
[0] = vmcall_pattern
[7];
551 alternates
[1] = 0xd9; /* AMD's VMMCALL */
552 patch
= &outl_pattern
[5];
554 if (memcmp(rom
+ pos
, pattern
, 7) == 0 &&
555 (rom
[pos
+ 7] == alternates
[0] || rom
[pos
+ 7] == alternates
[1])) {
556 cpu_physical_memory_rw(rom_paddr
+ pos
+ 5, (uint8_t *)patch
,
559 * Don't flush the tb here. Under ordinary conditions, the patched
560 * calls are miles away from the current IP. Under malicious
561 * conditions, the guest could trick us to crash.
568 if (patches
!= 0 && patches
!= 2) {
576 * For TCG mode or the time KVM honors read-only memory regions, we need to
577 * enable write access to the option ROM so that variables can be updated by
580 static int vapic_map_rom_writable(VAPICROMState
*s
)
582 hwaddr rom_paddr
= s
->rom_state_paddr
& ROM_BLOCK_MASK
;
583 MemoryRegionSection section
;
588 as
= sysbus_address_space(&s
->busdev
);
590 if (s
->rom_mapped_writable
) {
591 memory_region_del_subregion(as
, &s
->rom
);
592 memory_region_destroy(&s
->rom
);
595 /* grab RAM memory region (region @rom_paddr may still be pc.rom) */
596 section
= memory_region_find(as
, 0, 1);
598 /* read ROM size from RAM region */
599 ram
= memory_region_get_ram_ptr(section
.mr
);
600 rom_size
= ram
[rom_paddr
+ 2] * ROM_BLOCK_SIZE
;
604 s
->rom_size
= rom_size
;
606 /* We need to round to avoid creating subpages
607 * from which we cannot run code. */
608 rom_size
+= rom_paddr
& ~TARGET_PAGE_MASK
;
609 rom_paddr
&= TARGET_PAGE_MASK
;
610 rom_size
= TARGET_PAGE_ALIGN(rom_size
);
612 memory_region_init_alias(&s
->rom
, OBJECT(s
), "kvmvapic-rom", section
.mr
,
613 rom_paddr
, rom_size
);
614 memory_region_add_subregion_overlap(as
, rom_paddr
, &s
->rom
, 1000);
615 s
->rom_mapped_writable
= true;
616 memory_region_unref(section
.mr
);
621 static int vapic_prepare(VAPICROMState
*s
)
623 if (vapic_map_rom_writable(s
) < 0) {
627 if (patch_hypercalls(s
) < 0) {
631 vapic_enable_tpr_reporting(true);
636 static void vapic_write(void *opaque
, hwaddr addr
, uint64_t data
,
639 CPUState
*cs
= current_cpu
;
640 X86CPU
*cpu
= X86_CPU(cs
);
641 CPUX86State
*env
= &cpu
->env
;
643 VAPICROMState
*s
= opaque
;
645 cpu_synchronize_state(cs
);
648 * The VAPIC supports two PIO-based hypercalls, both via port 0x7E.
649 * o 16-bit write access:
650 * Reports the option ROM initialization to the hypervisor. Written
651 * value is the offset of the state structure in the ROM.
652 * o 8-bit write access:
653 * Reactivates the VAPIC after a guest hibernation, i.e. after the
654 * option ROM content has been re-initialized by a guest power cycle.
655 * o 32-bit write access:
656 * Poll for pending IRQs, considering the current VAPIC state.
660 if (s
->state
== VAPIC_INACTIVE
) {
661 rom_paddr
= (env
->segs
[R_CS
].base
+ env
->eip
) & ROM_BLOCK_MASK
;
662 s
->rom_state_paddr
= rom_paddr
+ data
;
664 s
->state
= VAPIC_STANDBY
;
666 if (vapic_prepare(s
) < 0) {
667 s
->state
= VAPIC_INACTIVE
;
668 s
->rom_state_paddr
= 0;
675 * Disable triggering instruction in ROM by writing a NOP.
677 * We cannot do this in TCG mode as the reported IP is not
681 patch_byte(cpu
, env
->eip
- 2, 0x66);
682 patch_byte(cpu
, env
->eip
- 1, 0x90);
686 if (s
->state
== VAPIC_ACTIVE
) {
689 if (update_rom_mapping(s
, env
, env
->eip
) < 0) {
692 if (find_real_tpr_addr(s
, env
) < 0) {
695 vapic_enable(s
, cpu
);
699 if (!kvm_irqchip_in_kernel()) {
700 apic_poll_irq(env
->apic_state
);
706 static uint64_t vapic_read(void *opaque
, hwaddr addr
, unsigned size
)
711 static const MemoryRegionOps vapic_ops
= {
712 .write
= vapic_write
,
714 .endianness
= DEVICE_NATIVE_ENDIAN
,
717 static void vapic_realize(DeviceState
*dev
, Error
**errp
)
719 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
720 VAPICROMState
*s
= VAPIC(dev
);
722 memory_region_init_io(&s
->io
, OBJECT(s
), &vapic_ops
, s
, "kvmvapic", 2);
723 sysbus_add_io(sbd
, VAPIC_IO_PORT
, &s
->io
);
724 sysbus_init_ioports(sbd
, VAPIC_IO_PORT
, 2);
726 option_rom
[nb_option_roms
].name
= "kvmvapic.bin";
727 option_rom
[nb_option_roms
].bootindex
= -1;
731 static void do_vapic_enable(void *data
)
733 VAPICROMState
*s
= data
;
734 X86CPU
*cpu
= X86_CPU(first_cpu
);
736 vapic_enable(s
, cpu
);
739 static int vapic_post_load(void *opaque
, int version_id
)
741 VAPICROMState
*s
= opaque
;
745 * The old implementation of qemu-kvm did not provide the state
746 * VAPIC_STANDBY. Reconstruct it.
748 if (s
->state
== VAPIC_INACTIVE
&& s
->rom_state_paddr
!= 0) {
749 s
->state
= VAPIC_STANDBY
;
752 if (s
->state
!= VAPIC_INACTIVE
) {
753 if (vapic_prepare(s
) < 0) {
757 if (s
->state
== VAPIC_ACTIVE
) {
759 run_on_cpu(first_cpu
, do_vapic_enable
, s
);
761 zero
= g_malloc0(s
->rom_state
.vapic_size
);
762 cpu_physical_memory_rw(s
->vapic_paddr
, zero
,
763 s
->rom_state
.vapic_size
, 1);
771 static const VMStateDescription vmstate_handlers
= {
772 .name
= "kvmvapic-handlers",
774 .minimum_version_id
= 1,
775 .minimum_version_id_old
= 1,
776 .fields
= (VMStateField
[]) {
777 VMSTATE_UINT32(set_tpr
, VAPICHandlers
),
778 VMSTATE_UINT32(set_tpr_eax
, VAPICHandlers
),
779 VMSTATE_UINT32_ARRAY(get_tpr
, VAPICHandlers
, 8),
780 VMSTATE_UINT32(get_tpr_stack
, VAPICHandlers
),
781 VMSTATE_END_OF_LIST()
785 static const VMStateDescription vmstate_guest_rom
= {
786 .name
= "kvmvapic-guest-rom",
788 .minimum_version_id
= 1,
789 .minimum_version_id_old
= 1,
790 .fields
= (VMStateField
[]) {
791 VMSTATE_UNUSED(8), /* signature */
792 VMSTATE_UINT32(vaddr
, GuestROMState
),
793 VMSTATE_UINT32(fixup_start
, GuestROMState
),
794 VMSTATE_UINT32(fixup_end
, GuestROMState
),
795 VMSTATE_UINT32(vapic_vaddr
, GuestROMState
),
796 VMSTATE_UINT32(vapic_size
, GuestROMState
),
797 VMSTATE_UINT32(vcpu_shift
, GuestROMState
),
798 VMSTATE_UINT32(real_tpr_addr
, GuestROMState
),
799 VMSTATE_STRUCT(up
, GuestROMState
, 0, vmstate_handlers
, VAPICHandlers
),
800 VMSTATE_STRUCT(mp
, GuestROMState
, 0, vmstate_handlers
, VAPICHandlers
),
801 VMSTATE_END_OF_LIST()
805 static const VMStateDescription vmstate_vapic
= {
806 .name
= "kvm-tpr-opt", /* compatible with qemu-kvm VAPIC */
808 .minimum_version_id
= 1,
809 .minimum_version_id_old
= 1,
810 .post_load
= vapic_post_load
,
811 .fields
= (VMStateField
[]) {
812 VMSTATE_STRUCT(rom_state
, VAPICROMState
, 0, vmstate_guest_rom
,
814 VMSTATE_UINT32(state
, VAPICROMState
),
815 VMSTATE_UINT32(real_tpr_addr
, VAPICROMState
),
816 VMSTATE_UINT32(rom_state_vaddr
, VAPICROMState
),
817 VMSTATE_UINT32(vapic_paddr
, VAPICROMState
),
818 VMSTATE_UINT32(rom_state_paddr
, VAPICROMState
),
819 VMSTATE_END_OF_LIST()
823 static void vapic_class_init(ObjectClass
*klass
, void *data
)
825 DeviceClass
*dc
= DEVICE_CLASS(klass
);
828 dc
->reset
= vapic_reset
;
829 dc
->vmsd
= &vmstate_vapic
;
830 dc
->realize
= vapic_realize
;
833 static const TypeInfo vapic_type
= {
835 .parent
= TYPE_SYS_BUS_DEVICE
,
836 .instance_size
= sizeof(VAPICROMState
),
837 .class_init
= vapic_class_init
,
840 static void vapic_register(void)
842 type_register_static(&vapic_type
);
845 type_init(vapic_register
);