]>
Commit | Line | Data |
---|---|---|
dd83b06a AF |
1 | /* |
2 | * QEMU CPU model | |
3 | * | |
4 | * Copyright (c) 2012 SUSE LINUX Products GmbH | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU General Public License | |
8 | * as published by the Free Software Foundation; either version 2 | |
9 | * of the License, or (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, see | |
18 | * <http://www.gnu.org/licenses/gpl-2.0.html> | |
19 | */ | |
20 | #ifndef QEMU_CPU_H | |
21 | #define QEMU_CPU_H | |
22 | ||
fcd7d003 | 23 | #include <signal.h> |
961f8395 | 24 | #include "hw/qdev-core.h" |
1de7afc9 | 25 | #include "qemu/thread.h" |
dd83b06a AF |
26 | |
27 | /** | |
28 | * SECTION:cpu | |
29 | * @section_id: QEMU-cpu | |
30 | * @title: CPU Class | |
31 | * @short_description: Base class for all CPUs | |
32 | */ | |
33 | ||
34 | #define TYPE_CPU "cpu" | |
35 | ||
36 | #define CPU(obj) OBJECT_CHECK(CPUState, (obj), TYPE_CPU) | |
37 | #define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU) | |
38 | #define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU) | |
39 | ||
40 | typedef struct CPUState CPUState; | |
41 | ||
42 | /** | |
43 | * CPUClass: | |
2b8c2754 AF |
44 | * @class_by_name: Callback to map -cpu command line model name to an |
45 | * instantiatable CPU type. | |
f5df5baf | 46 | * @reset: Callback to reset the #CPUState to its initial state. |
dd83b06a AF |
47 | * |
48 | * Represents a CPU family or model. | |
49 | */ | |
50 | typedef struct CPUClass { | |
51 | /*< private >*/ | |
961f8395 | 52 | DeviceClass parent_class; |
dd83b06a AF |
53 | /*< public >*/ |
54 | ||
2b8c2754 AF |
55 | ObjectClass *(*class_by_name)(const char *cpu_model); |
56 | ||
dd83b06a AF |
57 | void (*reset)(CPUState *cpu); |
58 | } CPUClass; | |
59 | ||
a60f24b5 | 60 | struct KVMState; |
f7575c96 | 61 | struct kvm_run; |
a60f24b5 | 62 | |
dd83b06a AF |
63 | /** |
64 | * CPUState: | |
55e5c285 | 65 | * @cpu_index: CPU index (informative). |
ce3960eb AF |
66 | * @nr_cores: Number of cores within this CPU package. |
67 | * @nr_threads: Number of threads within this CPU. | |
1b1ed8dc | 68 | * @numa_node: NUMA node this CPU is belonging to. |
0d34282f | 69 | * @host_tid: Host thread ID. |
0315c31c | 70 | * @running: #true if CPU is currently running (usermode). |
61a46217 | 71 | * @created: Indicates whether the CPU thread has been successfully created. |
4fdeee7c | 72 | * @stop: Indicates a pending stop request. |
f324e766 | 73 | * @stopped: Indicates the CPU has been artificially stopped. |
378df4b2 PM |
74 | * @tcg_exit_req: Set to force TCG to stop executing linked TBs for this |
75 | * CPU and return to its top level loop. | |
c05efcb1 | 76 | * @env_ptr: Pointer to subclass-specific CPUArchState field. |
d77953b9 | 77 | * @current_tb: Currently executing TB. |
8737c51c | 78 | * @kvm_fd: vCPU file descriptor for KVM. |
dd83b06a AF |
79 | * |
80 | * State of one CPU core or thread. | |
81 | */ | |
82 | struct CPUState { | |
83 | /*< private >*/ | |
961f8395 | 84 | DeviceState parent_obj; |
dd83b06a AF |
85 | /*< public >*/ |
86 | ||
ce3960eb AF |
87 | int nr_cores; |
88 | int nr_threads; | |
1b1ed8dc | 89 | int numa_node; |
ce3960eb | 90 | |
814e612e | 91 | struct QemuThread *thread; |
bcba2a72 AF |
92 | #ifdef _WIN32 |
93 | HANDLE hThread; | |
94 | #endif | |
9f09e18a | 95 | int thread_id; |
0d34282f | 96 | uint32_t host_tid; |
0315c31c | 97 | bool running; |
f5c121b8 | 98 | struct QemuCond *halt_cond; |
c64ca814 | 99 | struct qemu_work_item *queued_work_first, *queued_work_last; |
216fc9a4 | 100 | bool thread_kicked; |
61a46217 | 101 | bool created; |
4fdeee7c | 102 | bool stop; |
f324e766 | 103 | bool stopped; |
fcd7d003 | 104 | volatile sig_atomic_t exit_request; |
378df4b2 | 105 | volatile sig_atomic_t tcg_exit_req; |
bcba2a72 | 106 | |
c05efcb1 | 107 | void *env_ptr; /* CPUArchState */ |
d77953b9 AF |
108 | struct TranslationBlock *current_tb; |
109 | ||
8737c51c | 110 | int kvm_fd; |
20d695a9 | 111 | bool kvm_vcpu_dirty; |
a60f24b5 | 112 | struct KVMState *kvm_state; |
f7575c96 | 113 | struct kvm_run *kvm_run; |
8737c51c | 114 | |
f5df5baf | 115 | /* TODO Move common fields from CPUArchState here. */ |
55e5c285 | 116 | int cpu_index; /* used by alpha TCG */ |
dd83b06a AF |
117 | }; |
118 | ||
119 | ||
120 | /** | |
121 | * cpu_reset: | |
122 | * @cpu: The CPU whose state is to be reset. | |
123 | */ | |
124 | void cpu_reset(CPUState *cpu); | |
125 | ||
2b8c2754 AF |
126 | /** |
127 | * cpu_class_by_name: | |
128 | * @typename: The CPU base type. | |
129 | * @cpu_model: The model string without any parameters. | |
130 | * | |
131 | * Looks up a CPU #ObjectClass matching name @cpu_model. | |
132 | * | |
133 | * Returns: A #CPUClass or %NULL if not matching class is found. | |
134 | */ | |
135 | ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model); | |
136 | ||
3993c6bd AF |
137 | /** |
138 | * qemu_cpu_has_work: | |
139 | * @cpu: The vCPU to check. | |
140 | * | |
141 | * Checks whether the CPU has work to do. | |
142 | * | |
143 | * Returns: %true if the CPU has work, %false otherwise. | |
144 | */ | |
145 | bool qemu_cpu_has_work(CPUState *cpu); | |
146 | ||
60e82579 AF |
147 | /** |
148 | * qemu_cpu_is_self: | |
149 | * @cpu: The vCPU to check against. | |
150 | * | |
151 | * Checks whether the caller is executing on the vCPU thread. | |
152 | * | |
153 | * Returns: %true if called from @cpu's thread, %false otherwise. | |
154 | */ | |
155 | bool qemu_cpu_is_self(CPUState *cpu); | |
156 | ||
c08d7424 AF |
157 | /** |
158 | * qemu_cpu_kick: | |
159 | * @cpu: The vCPU to kick. | |
160 | * | |
161 | * Kicks @cpu's thread. | |
162 | */ | |
163 | void qemu_cpu_kick(CPUState *cpu); | |
164 | ||
2fa45344 AF |
165 | /** |
166 | * cpu_is_stopped: | |
167 | * @cpu: The CPU to check. | |
168 | * | |
169 | * Checks whether the CPU is stopped. | |
170 | * | |
171 | * Returns: %true if run state is not running or if artificially stopped; | |
172 | * %false otherwise. | |
173 | */ | |
174 | bool cpu_is_stopped(CPUState *cpu); | |
175 | ||
f100f0b3 AF |
176 | /** |
177 | * run_on_cpu: | |
178 | * @cpu: The vCPU to run on. | |
179 | * @func: The function to be executed. | |
180 | * @data: Data to pass to the function. | |
181 | * | |
182 | * Schedules the function @func for execution on the vCPU @cpu. | |
183 | */ | |
184 | void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data); | |
185 | ||
38d8f5c8 AF |
186 | /** |
187 | * qemu_get_cpu: | |
188 | * @index: The CPUState@cpu_index value of the CPU to obtain. | |
189 | * | |
190 | * Gets a CPU matching @index. | |
191 | * | |
192 | * Returns: The CPU or %NULL if there is no matching CPU. | |
193 | */ | |
194 | CPUState *qemu_get_cpu(int index); | |
195 | ||
dd83b06a AF |
196 | |
197 | #endif |