xref: /qemu/include/accel/accel-cpu-target.h (revision 44246e717018b30ee40db45fe2dd34765df61c7f)
1 /*
2  * Accelerator interface, specializes CPUClass
3  * This header is used only by target-specific code.
4  *
5  * Copyright 2021 SUSE LLC
6  *
7  * This work is licensed under the terms of the GNU GPL, version 2 or later.
8  * See the COPYING file in the top-level directory.
9  */
10 
11 #ifndef ACCEL_CPU_TARGET_H
12 #define ACCEL_CPU_TARGET_H
13 
14 /*
15  * This header is used to define new accelerator-specific target-specific
16  * accelerator cpu subclasses.
17  * It uses CPU_RESOLVING_TYPE, so this is clearly target-specific.
18  *
19  * Do not try to use for any other purpose than the implementation of new
20  * subclasses in target/, or the accel implementation itself in accel/
21  */
22 
23 #include "qom/object.h"
24 #include "accel/accel-cpu.h"
25 #include "cpu.h"
26 
27 #define TYPE_ACCEL_CPU "accel-" CPU_RESOLVING_TYPE
28 #define ACCEL_CPU_NAME(name) (name "-" TYPE_ACCEL_CPU)
29 DECLARE_CLASS_CHECKERS(AccelCPUClass, ACCEL_CPU, TYPE_ACCEL_CPU)
30 
31 #endif /* ACCEL_CPU_H */
32