]> Git Repo - qemu.git/blob - include/qom/cpu.h
cpu: Add model resolution support to CPUClass
[qemu.git] / include / qom / cpu.h
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
23 #include "hw/qdev-core.h"
24 #include "qemu/thread.h"
25
26 /**
27  * SECTION:cpu
28  * @section_id: QEMU-cpu
29  * @title: CPU Class
30  * @short_description: Base class for all CPUs
31  */
32
33 #define TYPE_CPU "cpu"
34
35 #define CPU(obj) OBJECT_CHECK(CPUState, (obj), TYPE_CPU)
36 #define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU)
37 #define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU)
38
39 typedef struct CPUState CPUState;
40
41 /**
42  * CPUClass:
43  * @class_by_name: Callback to map -cpu command line model name to an
44  * instantiatable CPU type.
45  * @reset: Callback to reset the #CPUState to its initial state.
46  *
47  * Represents a CPU family or model.
48  */
49 typedef struct CPUClass {
50     /*< private >*/
51     DeviceClass parent_class;
52     /*< public >*/
53
54     ObjectClass *(*class_by_name)(const char *cpu_model);
55
56     void (*reset)(CPUState *cpu);
57 } CPUClass;
58
59 struct KVMState;
60 struct kvm_run;
61
62 /**
63  * CPUState:
64  * @cpu_index: CPU index (informative).
65  * @nr_cores: Number of cores within this CPU package.
66  * @nr_threads: Number of threads within this CPU.
67  * @numa_node: NUMA node this CPU is belonging to.
68  * @created: Indicates whether the CPU thread has been successfully created.
69  * @stop: Indicates a pending stop request.
70  * @stopped: Indicates the CPU has been artificially stopped.
71  * @kvm_fd: vCPU file descriptor for KVM.
72  *
73  * State of one CPU core or thread.
74  */
75 struct CPUState {
76     /*< private >*/
77     DeviceState parent_obj;
78     /*< public >*/
79
80     int nr_cores;
81     int nr_threads;
82     int numa_node;
83
84     struct QemuThread *thread;
85 #ifdef _WIN32
86     HANDLE hThread;
87 #endif
88     int thread_id;
89     struct QemuCond *halt_cond;
90     struct qemu_work_item *queued_work_first, *queued_work_last;
91     bool thread_kicked;
92     bool created;
93     bool stop;
94     bool stopped;
95
96 #if !defined(CONFIG_USER_ONLY)
97     int kvm_fd;
98     bool kvm_vcpu_dirty;
99 #endif
100     struct KVMState *kvm_state;
101     struct kvm_run *kvm_run;
102
103     /* TODO Move common fields from CPUArchState here. */
104     int cpu_index; /* used by alpha TCG */
105 };
106
107
108 /**
109  * cpu_reset:
110  * @cpu: The CPU whose state is to be reset.
111  */
112 void cpu_reset(CPUState *cpu);
113
114 /**
115  * cpu_class_by_name:
116  * @typename: The CPU base type.
117  * @cpu_model: The model string without any parameters.
118  *
119  * Looks up a CPU #ObjectClass matching name @cpu_model.
120  *
121  * Returns: A #CPUClass or %NULL if not matching class is found.
122  */
123 ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
124
125 /**
126  * qemu_cpu_has_work:
127  * @cpu: The vCPU to check.
128  *
129  * Checks whether the CPU has work to do.
130  *
131  * Returns: %true if the CPU has work, %false otherwise.
132  */
133 bool qemu_cpu_has_work(CPUState *cpu);
134
135 /**
136  * qemu_cpu_is_self:
137  * @cpu: The vCPU to check against.
138  *
139  * Checks whether the caller is executing on the vCPU thread.
140  *
141  * Returns: %true if called from @cpu's thread, %false otherwise.
142  */
143 bool qemu_cpu_is_self(CPUState *cpu);
144
145 /**
146  * qemu_cpu_kick:
147  * @cpu: The vCPU to kick.
148  *
149  * Kicks @cpu's thread.
150  */
151 void qemu_cpu_kick(CPUState *cpu);
152
153 /**
154  * cpu_is_stopped:
155  * @cpu: The CPU to check.
156  *
157  * Checks whether the CPU is stopped.
158  *
159  * Returns: %true if run state is not running or if artificially stopped;
160  * %false otherwise.
161  */
162 bool cpu_is_stopped(CPUState *cpu);
163
164 /**
165  * run_on_cpu:
166  * @cpu: The vCPU to run on.
167  * @func: The function to be executed.
168  * @data: Data to pass to the function.
169  *
170  * Schedules the function @func for execution on the vCPU @cpu.
171  */
172 void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data);
173
174 /**
175  * qemu_get_cpu:
176  * @index: The CPUState@cpu_index value of the CPU to obtain.
177  *
178  * Gets a CPU matching @index.
179  *
180  * Returns: The CPU or %NULL if there is no matching CPU.
181  */
182 CPUState *qemu_get_cpu(int index);
183
184
185 #endif
This page took 0.032879 seconds and 4 git commands to generate.