]> git.proxmox.com Git - qemu.git/blame - include/qemu/cpu.h
ppc_booke: Pass PowerPCCPU to ppc_booke_timers_init()
[qemu.git] / include / qemu / cpu.h
CommitLineData
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
23#include "qemu/object.h"
bcba2a72 24#include "qemu-thread.h"
dd83b06a
AF
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
39typedef struct CPUState CPUState;
40
41/**
42 * CPUClass:
f5df5baf 43 * @reset: Callback to reset the #CPUState to its initial state.
dd83b06a
AF
44 *
45 * Represents a CPU family or model.
46 */
47typedef struct CPUClass {
48 /*< private >*/
49 ObjectClass parent_class;
50 /*< public >*/
51
52 void (*reset)(CPUState *cpu);
53} CPUClass;
54
55/**
56 * CPUState:
61a46217 57 * @created: Indicates whether the CPU thread has been successfully created.
4fdeee7c 58 * @stop: Indicates a pending stop request.
f324e766 59 * @stopped: Indicates the CPU has been artificially stopped.
8737c51c 60 * @kvm_fd: vCPU file descriptor for KVM.
dd83b06a
AF
61 *
62 * State of one CPU core or thread.
63 */
64struct CPUState {
65 /*< private >*/
66 Object parent_obj;
67 /*< public >*/
68
814e612e 69 struct QemuThread *thread;
bcba2a72
AF
70#ifdef _WIN32
71 HANDLE hThread;
72#endif
9f09e18a 73 int thread_id;
f5c121b8 74 struct QemuCond *halt_cond;
c64ca814 75 struct qemu_work_item *queued_work_first, *queued_work_last;
216fc9a4 76 bool thread_kicked;
61a46217 77 bool created;
4fdeee7c 78 bool stop;
f324e766 79 bool stopped;
bcba2a72 80
8737c51c
AF
81#if !defined(CONFIG_USER_ONLY)
82 int kvm_fd;
20d695a9 83 bool kvm_vcpu_dirty;
8737c51c
AF
84#endif
85
f5df5baf 86 /* TODO Move common fields from CPUArchState here. */
dd83b06a
AF
87};
88
89
90/**
91 * cpu_reset:
92 * @cpu: The CPU whose state is to be reset.
93 */
94void cpu_reset(CPUState *cpu);
95
3993c6bd
AF
96/**
97 * qemu_cpu_has_work:
98 * @cpu: The vCPU to check.
99 *
100 * Checks whether the CPU has work to do.
101 *
102 * Returns: %true if the CPU has work, %false otherwise.
103 */
104bool qemu_cpu_has_work(CPUState *cpu);
105
60e82579
AF
106/**
107 * qemu_cpu_is_self:
108 * @cpu: The vCPU to check against.
109 *
110 * Checks whether the caller is executing on the vCPU thread.
111 *
112 * Returns: %true if called from @cpu's thread, %false otherwise.
113 */
114bool qemu_cpu_is_self(CPUState *cpu);
115
c08d7424
AF
116/**
117 * qemu_cpu_kick:
118 * @cpu: The vCPU to kick.
119 *
120 * Kicks @cpu's thread.
121 */
122void qemu_cpu_kick(CPUState *cpu);
123
2fa45344
AF
124/**
125 * cpu_is_stopped:
126 * @cpu: The CPU to check.
127 *
128 * Checks whether the CPU is stopped.
129 *
130 * Returns: %true if run state is not running or if artificially stopped;
131 * %false otherwise.
132 */
133bool cpu_is_stopped(CPUState *cpu);
134
f100f0b3
AF
135/**
136 * run_on_cpu:
137 * @cpu: The vCPU to run on.
138 * @func: The function to be executed.
139 * @data: Data to pass to the function.
140 *
141 * Schedules the function @func for execution on the vCPU @cpu.
142 */
143void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data);
144
dd83b06a
AF
145
146#endif