2015-06-18 18:28:45 +02:00
|
|
|
/*
|
|
|
|
* Internal definitions for a target's KVM support
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_KVM_INT_H
|
|
|
|
#define QEMU_KVM_INT_H
|
|
|
|
|
2019-08-12 07:23:31 +02:00
|
|
|
#include "exec/memory.h"
|
2015-06-18 18:28:45 +02:00
|
|
|
#include "sysemu/accel.h"
|
|
|
|
#include "sysemu/kvm.h"
|
|
|
|
|
|
|
|
typedef struct KVMSlot
|
|
|
|
{
|
|
|
|
hwaddr start_addr;
|
|
|
|
ram_addr_t memory_size;
|
|
|
|
void *ram;
|
|
|
|
int slot;
|
|
|
|
int flags;
|
2018-05-16 11:18:34 +02:00
|
|
|
int old_flags;
|
2019-06-03 08:50:53 +02:00
|
|
|
/* Dirty bitmap cache for the slot */
|
|
|
|
unsigned long *dirty_bmap;
|
2015-06-18 18:28:45 +02:00
|
|
|
} KVMSlot;
|
|
|
|
|
2015-06-18 18:30:13 +02:00
|
|
|
typedef struct KVMMemoryListener {
|
|
|
|
MemoryListener listener;
|
2019-06-03 08:50:54 +02:00
|
|
|
/* Protects the slots and all inside them */
|
|
|
|
QemuMutex slots_lock;
|
2015-06-18 18:30:13 +02:00
|
|
|
KVMSlot *slots;
|
2015-06-18 18:30:14 +02:00
|
|
|
int as_id;
|
2015-06-18 18:30:13 +02:00
|
|
|
} KVMMemoryListener;
|
|
|
|
|
2015-06-18 18:30:14 +02:00
|
|
|
void kvm_memory_listener_register(KVMState *s, KVMMemoryListener *kml,
|
|
|
|
AddressSpace *as, int as_id);
|
|
|
|
|
2019-09-24 16:47:50 +02:00
|
|
|
void kvm_set_max_memslot_size(hwaddr max_slot_size);
|
2020-05-12 05:06:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* kvm_hwpoison_page_add:
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* @ram_addr: the address in the RAM for the poisoned page
|
|
|
|
*
|
|
|
|
* Add a poisoned page to the list
|
|
|
|
*
|
|
|
|
* Return: None.
|
|
|
|
*/
|
|
|
|
void kvm_hwpoison_page_add(ram_addr_t ram_addr);
|
2015-06-18 18:28:45 +02:00
|
|
|
#endif
|