]> git.proxmox.com Git - mirror_qemu.git/blame - hw/s390x/s390-virtio.h
hw/virtio: fix Power Management Control Register for PCI Express virtio devices
[mirror_qemu.git] / hw / s390x / s390-virtio.h
CommitLineData
28e942f8
CH
1/*
2 * Virtio interfaces for s390
3 *
4 * Copyright 2012 IBM Corp.
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
6 *
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.
10 */
11
12#ifndef HW_S390_VIRTIO_H
175de524 13#define HW_S390_VIRTIO_H
28e942f8 14
3dd7852f 15#include "hw/nmi.h"
ad67a0f2
MT
16#include "standard-headers/asm-s390/kvm_virtio.h"
17#include "standard-headers/asm-s390/virtio-ccw.h"
28e942f8
CH
18
19typedef int (*s390_virtio_fn)(const uint64_t *args);
20void s390_register_virtio_hypercall(uint64_t code, s390_virtio_fn fn);
21
d2eae207 22void s390_init_cpus(MachineState *machine);
fad37673
CH
23void s390_init_ipl_dev(const char *kernel_filename,
24 const char *kernel_cmdline,
d0249ce5 25 const char *initrd_filename,
f0180f91 26 const char *firmware,
5f31ade0 27 const char *netboot_fw,
f0180f91 28 bool enforce_bios);
fad37673 29void s390_create_virtio_net(BusState *bus, const char *name);
3dd7852f 30void s390_nmi(NMIState *n, int cpu_index, Error **errp);
db3b2566 31void s390_machine_reset(void);
80d23275 32void s390_memory_init(ram_addr_t mem_size);
28e942f8 33#endif