]> git.proxmox.com Git - mirror_qemu.git/blame - target-arm/kvm_arm.h
target-i386: the x86 CPL is stored in CS.selector - auto update hflags accordingly.
[mirror_qemu.git] / target-arm / kvm_arm.h
CommitLineData
eb035b48
PM
1/*
2 * QEMU KVM support -- ARM specific functions.
3 *
4 * Copyright (c) 2012 Linaro Limited
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 *
9 */
10
11#ifndef QEMU_KVM_ARM_H
12#define QEMU_KVM_ARM_H
13
14#include "sysemu/kvm.h"
15#include "exec/memory.h"
16
17/**
18 * kvm_arm_register_device:
19 * @mr: memory region for this device
20 * @devid: the KVM device ID
1da41cc1
CD
21 * @group: device control API group for setting addresses
22 * @attr: device control API address type
23 * @dev_fd: device control device file descriptor (or -1 if not supported)
eb035b48
PM
24 *
25 * Remember the memory region @mr, and when it is mapped by the
26 * machine model, tell the kernel that base address using the
1da41cc1
CD
27 * KVM_ARM_SET_DEVICE_ADDRESS ioctl or the newer device control API. @devid
28 * should be the ID of the device as defined by KVM_ARM_SET_DEVICE_ADDRESS or
29 * the arm-vgic device in the device control API.
30 * The machine model may map
31 * and unmap the device multiple times; the kernel will only be told the final
32 * address at the point where machine init is complete.
eb035b48 33 */
1da41cc1
CD
34void kvm_arm_register_device(MemoryRegion *mr, uint64_t devid, uint64_t group,
35 uint64_t attr, int dev_fd);
eb035b48 36
ff047453
PM
37/**
38 * write_list_to_kvmstate:
39 * @cpu: ARMCPU
40 *
41 * For each register listed in the ARMCPU cpreg_indexes list, write
42 * its value from the cpreg_values list into the kernel (via ioctl).
43 * This updates KVM's working data structures from TCG data or
44 * from incoming migration state.
45 *
46 * Returns: true if all register values were updated correctly,
47 * false if some register was unknown to the kernel or could not
48 * be written (eg constant register with the wrong value).
49 * Note that we do not stop early on failure -- we will attempt
50 * writing all registers in the list.
51 */
52bool write_list_to_kvmstate(ARMCPU *cpu);
53
54/**
55 * write_kvmstate_to_list:
56 * @cpu: ARMCPU
57 *
58 * For each register listed in the ARMCPU cpreg_indexes list, write
59 * its value from the kernel into the cpreg_values list. This is used to
60 * copy info from KVM's working data structures into TCG or
61 * for outbound migration.
62 *
63 * Returns: true if all register values were read correctly,
64 * false if some register was unknown or could not be read.
65 * Note that we do not stop early on failure -- we will attempt
66 * reading all registers in the list.
67 */
68bool write_kvmstate_to_list(ARMCPU *cpu);
69
a96c0514
PM
70#ifdef CONFIG_KVM
71/**
72 * kvm_arm_create_scratch_host_vcpu:
73 * @cpus_to_try: array of QEMU_KVM_ARM_TARGET_* values (terminated with
74 * QEMU_KVM_ARM_TARGET_NONE) to try as fallback if the kernel does not
75 * know the PREFERRED_TARGET ioctl
76 * @fdarray: filled in with kvmfd, vmfd, cpufd file descriptors in that order
77 * @init: filled in with the necessary values for creating a host vcpu
78 *
79 * Create a scratch vcpu in its own VM of the type preferred by the host
80 * kernel (as would be used for '-cpu host'), for purposes of probing it
81 * for capabilities.
82 *
83 * Returns: true on success (and fdarray and init are filled in),
84 * false on failure (and fdarray and init are not valid).
85 */
86bool kvm_arm_create_scratch_host_vcpu(const uint32_t *cpus_to_try,
87 int *fdarray,
88 struct kvm_vcpu_init *init);
89
90/**
91 * kvm_arm_destroy_scratch_host_vcpu:
92 * @fdarray: array of fds as set up by kvm_arm_create_scratch_host_vcpu
93 *
94 * Tear down the scratch vcpu created by kvm_arm_create_scratch_host_vcpu.
95 */
96void kvm_arm_destroy_scratch_host_vcpu(int *fdarray);
97
98#define TYPE_ARM_HOST_CPU "host-" TYPE_ARM_CPU
99#define ARM_HOST_CPU_CLASS(klass) \
100 OBJECT_CLASS_CHECK(ARMHostCPUClass, (klass), TYPE_ARM_HOST_CPU)
101#define ARM_HOST_CPU_GET_CLASS(obj) \
102 OBJECT_GET_CLASS(ARMHostCPUClass, (obj), TYPE_ARM_HOST_CPU)
103
104typedef struct ARMHostCPUClass {
105 /*< private >*/
106 ARMCPUClass parent_class;
107 /*< public >*/
108
109 uint64_t features;
110 uint32_t target;
111 const char *dtb_compatible;
112} ARMHostCPUClass;
113
114/**
115 * kvm_arm_get_host_cpu_features:
116 * @ahcc: ARMHostCPUClass to fill in
117 *
118 * Probe the capabilities of the host kernel's preferred CPU and fill
119 * in the ARMHostCPUClass struct accordingly.
120 */
121bool kvm_arm_get_host_cpu_features(ARMHostCPUClass *ahcc);
122
123#endif
124
eb035b48 125#endif