hw/misc: make pvpanic known to user
[qemu.git] / hw / s390x / s390-virtio-hcall.c
blobee626493c69a6dbfc48dc6ed6f75eb90cd9fa537
1 /*
2 * Support for virtio hypercalls on 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 #include "cpu.h"
13 #include "hw/s390x/s390-virtio.h"
15 #define MAX_DIAG_SUBCODES 255
17 static s390_virtio_fn s390_diag500_table[MAX_DIAG_SUBCODES];
19 void s390_register_virtio_hypercall(uint64_t code, s390_virtio_fn fn)
21 assert(code < MAX_DIAG_SUBCODES);
22 assert(!s390_diag500_table[code]);
24 s390_diag500_table[code] = fn;
27 int s390_virtio_hypercall(CPUS390XState *env)
29 s390_virtio_fn fn = s390_diag500_table[env->regs[1]];
31 if (!fn) {
32 return -EINVAL;
35 return fn(&env->regs[2]);