hw/watchdog/cmsdk-apb-watchdog: Add Clock input
[qemu/ar7.git] / target / i386 / hvf / hvf-cpus.h
blobced31b82c0ea7dacc6a428924d708a8f96365449
1 /*
2 * Accelerator CPUS Interface
4 * Copyright 2020 SUSE LLC
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #ifndef HVF_CPUS_H
11 #define HVF_CPUS_H
13 #include "sysemu/cpus.h"
15 extern const CpusAccel hvf_cpus;
17 int hvf_init_vcpu(CPUState *);
18 int hvf_vcpu_exec(CPUState *);
19 void hvf_cpu_synchronize_state(CPUState *);
20 void hvf_cpu_synchronize_post_reset(CPUState *);
21 void hvf_cpu_synchronize_post_init(CPUState *);
22 void hvf_cpu_synchronize_pre_loadvm(CPUState *);
23 void hvf_vcpu_destroy(CPUState *);
25 #endif /* HVF_CPUS_H */