spapr: Get rid of cas_check_pvr() error reporting
[qemu/ar7.git] / accel / xen / xen-all.c
blob60b971d0a82f7458c7bc7a97c91ec43ad7c29ecd
1 /*
2 * Copyright (C) 2014 Citrix Systems UK Ltd.
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
7 * Contributions after 2012-01-13 are licensed under the terms of the
8 * GNU GPL, version 2 or (at your option) any later version.
9 */
11 #include "qemu/osdep.h"
12 #include "qemu/error-report.h"
13 #include "qemu/module.h"
14 #include "qapi/error.h"
15 #include "hw/xen/xen-legacy-backend.h"
16 #include "hw/xen/xen_pt.h"
17 #include "chardev/char.h"
18 #include "sysemu/accel.h"
19 #include "sysemu/xen.h"
20 #include "sysemu/runstate.h"
21 #include "migration/misc.h"
22 #include "migration/global_state.h"
23 #include "hw/boards.h"
25 //#define DEBUG_XEN
27 #ifdef DEBUG_XEN
28 #define DPRINTF(fmt, ...) \
29 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
30 #else
31 #define DPRINTF(fmt, ...) \
32 do { } while (0)
33 #endif
35 bool xen_allowed;
37 xc_interface *xen_xc;
38 xenforeignmemory_handle *xen_fmem;
39 xendevicemodel_handle *xen_dmod;
41 static int store_dev_info(int domid, Chardev *cs, const char *string)
43 struct xs_handle *xs = NULL;
44 char *path = NULL;
45 char *newpath = NULL;
46 char *pts = NULL;
47 int ret = -1;
49 /* Only continue if we're talking to a pty. */
50 if (!CHARDEV_IS_PTY(cs)) {
51 return 0;
53 pts = cs->filename + 4;
55 /* We now have everything we need to set the xenstore entry. */
56 xs = xs_open(0);
57 if (xs == NULL) {
58 fprintf(stderr, "Could not contact XenStore\n");
59 goto out;
62 path = xs_get_domain_path(xs, domid);
63 if (path == NULL) {
64 fprintf(stderr, "xs_get_domain_path() error\n");
65 goto out;
67 newpath = realloc(path, (strlen(path) + strlen(string) +
68 strlen("/tty") + 1));
69 if (newpath == NULL) {
70 fprintf(stderr, "realloc error\n");
71 goto out;
73 path = newpath;
75 strcat(path, string);
76 strcat(path, "/tty");
77 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
78 fprintf(stderr, "xs_write for '%s' fail", string);
79 goto out;
81 ret = 0;
83 out:
84 free(path);
85 xs_close(xs);
87 return ret;
90 void xenstore_store_pv_console_info(int i, Chardev *chr)
92 if (i == 0) {
93 store_dev_info(xen_domid, chr, "/console");
94 } else {
95 char buf[32];
96 snprintf(buf, sizeof(buf), "/device/console/%d", i);
97 store_dev_info(xen_domid, chr, buf);
102 static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
104 char path[50];
106 if (xs == NULL) {
107 error_report("xenstore connection not initialized");
108 exit(1);
111 snprintf(path, sizeof (path), "device-model/%u/state", xen_domid);
113 * This call may fail when running restricted so don't make it fatal in
114 * that case. Toolstacks should instead use QMP to listen for state changes.
116 if (!xs_write(xs, XBT_NULL, path, state, strlen(state)) &&
117 !xen_domid_restrict) {
118 error_report("error recording dm state");
119 exit(1);
124 static void xen_change_state_handler(void *opaque, int running,
125 RunState state)
127 if (running) {
128 /* record state running */
129 xenstore_record_dm_state(xenstore, "running");
133 static bool xen_get_igd_gfx_passthru(Object *obj, Error **errp)
135 return xen_igd_gfx_pt_enabled();
138 static void xen_set_igd_gfx_passthru(Object *obj, bool value, Error **errp)
140 xen_igd_gfx_pt_set(value, errp);
143 static void xen_setup_post(MachineState *ms, AccelState *accel)
145 int rc;
147 if (xen_domid_restrict) {
148 rc = xen_restrict(xen_domid);
149 if (rc < 0) {
150 perror("xen: failed to restrict");
151 exit(1);
156 static int xen_init(MachineState *ms)
158 MachineClass *mc = MACHINE_GET_CLASS(ms);
160 xen_xc = xc_interface_open(0, 0, 0);
161 if (xen_xc == NULL) {
162 xen_pv_printf(NULL, 0, "can't open xen interface\n");
163 return -1;
165 xen_fmem = xenforeignmemory_open(0, 0);
166 if (xen_fmem == NULL) {
167 xen_pv_printf(NULL, 0, "can't open xen fmem interface\n");
168 xc_interface_close(xen_xc);
169 return -1;
171 xen_dmod = xendevicemodel_open(0, 0);
172 if (xen_dmod == NULL) {
173 xen_pv_printf(NULL, 0, "can't open xen devicemodel interface\n");
174 xenforeignmemory_close(xen_fmem);
175 xc_interface_close(xen_xc);
176 return -1;
178 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
180 * opt out of system RAM being allocated by generic code
182 mc->default_ram_id = NULL;
183 return 0;
186 static void xen_accel_class_init(ObjectClass *oc, void *data)
188 AccelClass *ac = ACCEL_CLASS(oc);
189 static GlobalProperty compat[] = {
190 { "migration", "store-global-state", "off" },
191 { "migration", "send-configuration", "off" },
192 { "migration", "send-section-footer", "off" },
195 ac->name = "Xen";
196 ac->init_machine = xen_init;
197 ac->setup_post = xen_setup_post;
198 ac->allowed = &xen_allowed;
199 ac->compat_props = g_ptr_array_new();
201 compat_props_add(ac->compat_props, compat, G_N_ELEMENTS(compat));
203 object_class_property_add_bool(oc, "igd-passthru",
204 xen_get_igd_gfx_passthru, xen_set_igd_gfx_passthru);
205 object_class_property_set_description(oc, "igd-passthru",
206 "Set on/off to enable/disable igd passthrou");
209 #define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen")
211 static const TypeInfo xen_accel_type = {
212 .name = TYPE_XEN_ACCEL,
213 .parent = TYPE_ACCEL,
214 .class_init = xen_accel_class_init,
217 static void xen_type_init(void)
219 type_register_static(&xen_accel_type);
222 type_init(xen_type_init);