2014-09-26 22:45:17 +02:00
|
|
|
/* QEMU accelerator interfaces
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Red Hat Inc
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2021-02-04 17:39:24 +01:00
|
|
|
#ifndef QEMU_ACCEL_H
|
|
|
|
#define QEMU_ACCEL_H
|
2014-09-26 22:45:17 +02:00
|
|
|
|
2014-09-26 22:45:21 +02:00
|
|
|
#include "qom/object.h"
|
2019-06-14 03:52:37 +02:00
|
|
|
#include "exec/hwaddr.h"
|
2014-09-26 22:45:21 +02:00
|
|
|
|
2022-11-30 14:56:40 +01:00
|
|
|
struct AccelState {
|
2014-09-26 22:45:21 +02:00
|
|
|
/*< private >*/
|
|
|
|
Object parent_obj;
|
2022-11-30 14:56:40 +01:00
|
|
|
};
|
2014-09-26 22:45:21 +02:00
|
|
|
|
|
|
|
typedef struct AccelClass {
|
|
|
|
/*< private >*/
|
|
|
|
ObjectClass parent_class;
|
|
|
|
/*< public >*/
|
|
|
|
|
|
|
|
const char *name;
|
2014-09-26 22:45:30 +02:00
|
|
|
int (*init_machine)(MachineState *ms);
|
2021-02-04 17:39:24 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2018-03-09 13:02:50 +01:00
|
|
|
void (*setup_post)(MachineState *ms, AccelState *accel);
|
2019-06-14 03:52:37 +02:00
|
|
|
bool (*has_memory)(MachineState *ms, AddressSpace *as,
|
|
|
|
hwaddr start_addr, hwaddr size);
|
2020-05-26 19:24:21 +02:00
|
|
|
#endif
|
2023-10-03 14:30:23 +02:00
|
|
|
bool (*cpu_common_realize)(CPUState *cpu, Error **errp);
|
|
|
|
void (*cpu_common_unrealize)(CPUState *cpu);
|
2022-09-29 13:42:23 +02:00
|
|
|
|
|
|
|
/* gdbstub related hooks */
|
|
|
|
int (*gdbstub_supported_sstep_flags)(void);
|
|
|
|
|
2014-09-26 22:45:21 +02:00
|
|
|
bool *allowed;
|
2017-06-27 06:10:11 +02:00
|
|
|
/*
|
|
|
|
* Array of global properties that would be applied when specific
|
|
|
|
* accelerator is chosen. It works like MachineClass.compat_props
|
|
|
|
* but it's for accelerators not machines. Accelerator-provided
|
|
|
|
* global properties may be overridden by machine-type
|
|
|
|
* compat_props or user-provided global properties.
|
|
|
|
*/
|
2018-11-26 19:04:32 +01:00
|
|
|
GPtrArray *compat_props;
|
2014-09-26 22:45:21 +02:00
|
|
|
} AccelClass;
|
|
|
|
|
|
|
|
#define TYPE_ACCEL "accel"
|
|
|
|
|
|
|
|
#define ACCEL_CLASS_SUFFIX "-" TYPE_ACCEL
|
|
|
|
#define ACCEL_CLASS_NAME(a) (a ACCEL_CLASS_SUFFIX)
|
|
|
|
|
|
|
|
#define ACCEL_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(AccelClass, (klass), TYPE_ACCEL)
|
|
|
|
#define ACCEL(obj) \
|
|
|
|
OBJECT_CHECK(AccelState, (obj), TYPE_ACCEL)
|
|
|
|
#define ACCEL_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(AccelClass, (obj), TYPE_ACCEL)
|
2014-09-26 22:45:17 +02:00
|
|
|
|
2019-11-13 09:59:04 +01:00
|
|
|
AccelClass *accel_find(const char *opt_name);
|
2021-02-04 17:39:24 +01:00
|
|
|
AccelState *current_accel(void);
|
2022-06-24 16:42:56 +02:00
|
|
|
const char *current_accel_name(void);
|
2021-02-04 17:39:24 +01:00
|
|
|
|
2021-02-04 17:39:25 +01:00
|
|
|
void accel_init_interfaces(AccelClass *ac);
|
|
|
|
|
2021-02-04 17:39:24 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2019-11-13 14:03:46 +01:00
|
|
|
int accel_init_machine(AccelState *accel, MachineState *ms);
|
2019-11-13 09:59:04 +01:00
|
|
|
|
2018-03-09 13:02:50 +01:00
|
|
|
/* Called just before os_setup_post (ie just before drop OS privs) */
|
|
|
|
void accel_setup_post(MachineState *ms);
|
2021-02-04 17:39:24 +01:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
2014-09-26 22:45:17 +02:00
|
|
|
|
2021-03-22 14:27:42 +01:00
|
|
|
/**
|
|
|
|
* accel_cpu_instance_init:
|
|
|
|
* @cpu: The CPU that needs to do accel-specific object initializations.
|
|
|
|
*/
|
|
|
|
void accel_cpu_instance_init(CPUState *cpu);
|
|
|
|
|
|
|
|
/**
|
2023-10-03 14:30:21 +02:00
|
|
|
* accel_cpu_common_realize:
|
2021-03-22 14:27:42 +01:00
|
|
|
* @cpu: The CPU that needs to call accel-specific cpu realization.
|
|
|
|
* @errp: currently unused.
|
|
|
|
*/
|
2023-10-03 14:30:21 +02:00
|
|
|
bool accel_cpu_common_realize(CPUState *cpu, Error **errp);
|
2021-03-22 14:27:42 +01:00
|
|
|
|
2023-10-03 14:30:22 +02:00
|
|
|
/**
|
|
|
|
* accel_cpu_common_unrealize:
|
|
|
|
* @cpu: The CPU that needs to call accel-specific cpu unrealization.
|
|
|
|
*/
|
|
|
|
void accel_cpu_common_unrealize(CPUState *cpu);
|
|
|
|
|
2022-09-29 13:42:23 +02:00
|
|
|
/**
|
|
|
|
* accel_supported_gdbstub_sstep_flags:
|
|
|
|
*
|
|
|
|
* Returns the supported single step modes for the configured
|
|
|
|
* accelerator.
|
|
|
|
*/
|
|
|
|
int accel_supported_gdbstub_sstep_flags(void);
|
|
|
|
|
2021-02-04 17:39:24 +01:00
|
|
|
#endif /* QEMU_ACCEL_H */
|