dma/xlnx-zdma: Reorg to fix CUR_DSCR
[qemu/ar7.git] / hw / xen / xen-common.c
bloba15070f7f6c908a387d644ab8ca2bb11de638266
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/runstate.h"
20 #include "migration/misc.h"
21 #include "migration/global_state.h"
22 #include "hw/boards.h"
24 //#define DEBUG_XEN
26 #ifdef DEBUG_XEN
27 #define DPRINTF(fmt, ...) \
28 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
29 #else
30 #define DPRINTF(fmt, ...) \
31 do { } while (0)
32 #endif
34 xc_interface *xen_xc;
35 xenforeignmemory_handle *xen_fmem;
36 xendevicemodel_handle *xen_dmod;
38 static int store_dev_info(int domid, Chardev *cs, const char *string)
40 struct xs_handle *xs = NULL;
41 char *path = NULL;
42 char *newpath = NULL;
43 char *pts = NULL;
44 int ret = -1;
46 /* Only continue if we're talking to a pty. */
47 if (!CHARDEV_IS_PTY(cs)) {
48 return 0;
50 pts = cs->filename + 4;
52 /* We now have everything we need to set the xenstore entry. */
53 xs = xs_open(0);
54 if (xs == NULL) {
55 fprintf(stderr, "Could not contact XenStore\n");
56 goto out;
59 path = xs_get_domain_path(xs, domid);
60 if (path == NULL) {
61 fprintf(stderr, "xs_get_domain_path() error\n");
62 goto out;
64 newpath = realloc(path, (strlen(path) + strlen(string) +
65 strlen("/tty") + 1));
66 if (newpath == NULL) {
67 fprintf(stderr, "realloc error\n");
68 goto out;
70 path = newpath;
72 strcat(path, string);
73 strcat(path, "/tty");
74 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
75 fprintf(stderr, "xs_write for '%s' fail", string);
76 goto out;
78 ret = 0;
80 out:
81 free(path);
82 xs_close(xs);
84 return ret;
87 void xenstore_store_pv_console_info(int i, Chardev *chr)
89 if (i == 0) {
90 store_dev_info(xen_domid, chr, "/console");
91 } else {
92 char buf[32];
93 snprintf(buf, sizeof(buf), "/device/console/%d", i);
94 store_dev_info(xen_domid, chr, buf);
99 static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
101 char path[50];
103 if (xs == NULL) {
104 error_report("xenstore connection not initialized");
105 exit(1);
108 snprintf(path, sizeof (path), "device-model/%u/state", xen_domid);
110 * This call may fail when running restricted so don't make it fatal in
111 * that case. Toolstacks should instead use QMP to listen for state changes.
113 if (!xs_write(xs, XBT_NULL, path, state, strlen(state)) &&
114 !xen_domid_restrict) {
115 error_report("error recording dm state");
116 exit(1);
121 static void xen_change_state_handler(void *opaque, int running,
122 RunState state)
124 if (running) {
125 /* record state running */
126 xenstore_record_dm_state(xenstore, "running");
130 static bool xen_get_igd_gfx_passthru(Object *obj, Error **errp)
132 return has_igd_gfx_passthru;
135 static void xen_set_igd_gfx_passthru(Object *obj, bool value, Error **errp)
137 has_igd_gfx_passthru = value;
140 static void xen_setup_post(MachineState *ms, AccelState *accel)
142 int rc;
144 if (xen_domid_restrict) {
145 rc = xen_restrict(xen_domid);
146 if (rc < 0) {
147 perror("xen: failed to restrict");
148 exit(1);
153 static int xen_init(MachineState *ms)
155 MachineClass *mc = MACHINE_GET_CLASS(ms);
157 xen_xc = xc_interface_open(0, 0, 0);
158 if (xen_xc == NULL) {
159 xen_pv_printf(NULL, 0, "can't open xen interface\n");
160 return -1;
162 xen_fmem = xenforeignmemory_open(0, 0);
163 if (xen_fmem == NULL) {
164 xen_pv_printf(NULL, 0, "can't open xen fmem interface\n");
165 xc_interface_close(xen_xc);
166 return -1;
168 xen_dmod = xendevicemodel_open(0, 0);
169 if (xen_dmod == NULL) {
170 xen_pv_printf(NULL, 0, "can't open xen devicemodel interface\n");
171 xenforeignmemory_close(xen_fmem);
172 xc_interface_close(xen_xc);
173 return -1;
175 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
177 * opt out of system RAM being allocated by generic code
179 mc->default_ram_id = NULL;
180 return 0;
183 static void xen_accel_class_init(ObjectClass *oc, void *data)
185 AccelClass *ac = ACCEL_CLASS(oc);
186 static GlobalProperty compat[] = {
187 { "migration", "store-global-state", "off" },
188 { "migration", "send-configuration", "off" },
189 { "migration", "send-section-footer", "off" },
192 ac->name = "Xen";
193 ac->init_machine = xen_init;
194 ac->setup_post = xen_setup_post;
195 ac->allowed = &xen_allowed;
196 ac->compat_props = g_ptr_array_new();
198 compat_props_add(ac->compat_props, compat, G_N_ELEMENTS(compat));
200 object_class_property_add_bool(oc, "igd-passthru",
201 xen_get_igd_gfx_passthru, xen_set_igd_gfx_passthru,
202 &error_abort);
203 object_class_property_set_description(oc, "igd-passthru",
204 "Set on/off to enable/disable igd passthrou", &error_abort);
207 #define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen")
209 static const TypeInfo xen_accel_type = {
210 .name = TYPE_XEN_ACCEL,
211 .parent = TYPE_ACCEL,
212 .class_init = xen_accel_class_init,
215 static void xen_type_init(void)
217 type_register_static(&xen_accel_type);
220 type_init(xen_type_init);