target/s390x: move gtod_*() declarations to s390-virtio.h
[qemu/ar7.git] / hw / s390x / s390-virtio.h
blobca97fd68142bfd6c1abc1605ee24a01ea5d1827c
1 /*
2 * Virtio interfaces for s390
4 * Copyright 2012 IBM Corp.
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
9 * directory.
12 #ifndef HW_S390_VIRTIO_H
13 #define HW_S390_VIRTIO_H
15 #include "hw/nmi.h"
16 #include "standard-headers/asm-s390/kvm_virtio.h"
17 #include "standard-headers/asm-s390/virtio-ccw.h"
19 typedef int (*s390_virtio_fn)(const uint64_t *args);
20 void s390_register_virtio_hypercall(uint64_t code, s390_virtio_fn fn);
22 void s390_init_cpus(MachineState *machine);
23 void s390_init_ipl_dev(const char *kernel_filename,
24 const char *kernel_cmdline,
25 const char *initrd_filename,
26 const char *firmware,
27 const char *netboot_fw,
28 bool enforce_bios);
29 void s390_create_virtio_net(BusState *bus, const char *name);
30 void s390_nmi(NMIState *n, int cpu_index, Error **errp);
31 void s390_machine_reset(void);
32 void s390_memory_init(ram_addr_t mem_size);
33 void gtod_save(QEMUFile *f, void *opaque);
34 int gtod_load(QEMUFile *f, void *opaque, int version_id);
35 #endif