xref: /openbmc/qemu/include/hw/s390x/s390-virtio-ccw.h (revision f21f1cfeb94b94ce044726856c291bed9391e3a4)
1 /*
2  * virtio ccw machine definitions
3  *
4  * Copyright 2012, 2016 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 #ifndef HW_S390X_S390_VIRTIO_CCW_H
12 #define HW_S390X_S390_VIRTIO_CCW_H
13 
14 #include "hw/boards.h"
15 #include "qom/object.h"
16 
17 #define TYPE_S390_CCW_MACHINE               "s390-ccw-machine"
18 
19 OBJECT_DECLARE_TYPE(S390CcwMachineState, S390CcwMachineClass, S390_CCW_MACHINE)
20 
21 
22 struct S390CcwMachineState {
23     /*< private >*/
24     MachineState parent_obj;
25 
26     /*< public >*/
27     bool aes_key_wrap;
28     bool dea_key_wrap;
29     bool pv;
30     bool zpcii_disable;
31     uint8_t loadparm[8];
32 };
33 
34 struct S390CcwMachineClass {
35     /*< private >*/
36     MachineClass parent_class;
37 
38     /*< public >*/
39     bool ri_allowed;
40     bool cpu_model_allowed;
41     bool css_migration_enabled;
42     bool hpage_1m_allowed;
43     int max_threads;
44 };
45 
46 /* runtime-instrumentation allowed by the machine */
47 bool ri_allowed(void);
48 /* cpu model allowed by the machine */
49 bool cpu_model_allowed(void);
50 /* 1M huge page mappings allowed by the machine */
51 bool hpage_1m_allowed(void);
52 
53 /**
54  * Returns true if (vmstate based) migration of the channel subsystem
55  * is enabled, false if it is disabled.
56  */
57 bool css_migration_enabled(void);
58 
59 #endif
60