blob: 10d53d168c664dc6de4786abf16f66374e4f0f2e [file] [log] [blame]
Anthony PERARD3285cf42010-08-19 12:27:56 +01001/*
2 * Copyright (C) 2010 Citrix Ltd.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
6 *
Paolo Bonzini6b620ca2012-01-13 17:44:23 +01007 * Contributions after 2012-01-13 are licensed under the terms of the
8 * GNU GPL, version 2 or (at your option) any later version.
Anthony PERARD3285cf42010-08-19 12:27:56 +01009 */
10
Arun Sharma9ce94e72010-09-06 20:07:14 +010011#include <sys/mman.h>
12
Anthony PERARD41445302010-07-16 14:55:39 +010013#include "hw/pci.h"
Anthony PERARDc9622472010-10-05 16:40:22 +010014#include "hw/pc.h"
Anthony PERARD3285cf42010-08-19 12:27:56 +010015#include "hw/xen_common.h"
16#include "hw/xen_backend.h"
17
Anthony PERARDb4dd7802011-05-24 14:34:21 +010018#include "range.h"
Jun Nakajima432d2682010-08-31 16:41:25 +010019#include "xen-mapcache.h"
20#include "trace.h"
Avi Kivityce76b8a2011-12-18 16:27:48 +020021#include "exec-memory.h"
Jun Nakajima432d2682010-08-31 16:41:25 +010022
Arun Sharma9ce94e72010-09-06 20:07:14 +010023#include <xen/hvm/ioreq.h>
24#include <xen/hvm/params.h>
Anthony PERARD8a369e22011-07-20 08:17:43 +000025#include <xen/hvm/e820.h>
Arun Sharma9ce94e72010-09-06 20:07:14 +010026
27//#define DEBUG_XEN
28
29#ifdef DEBUG_XEN
30#define DPRINTF(fmt, ...) \
31 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
32#else
33#define DPRINTF(fmt, ...) \
34 do { } while (0)
35#endif
36
Avi Kivityce76b8a2011-12-18 16:27:48 +020037static MemoryRegion ram_memory, ram_640k, ram_lo, ram_hi;
Avi Kivityc65adf92011-12-18 16:40:50 +020038static MemoryRegion *framebuffer;
Avi Kivityce76b8a2011-12-18 16:27:48 +020039
Arun Sharma9ce94e72010-09-06 20:07:14 +010040/* Compatibility with older version */
41#if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
42static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
43{
44 return shared_page->vcpu_iodata[i].vp_eport;
45}
46static inline ioreq_t *xen_vcpu_ioreq(shared_iopage_t *shared_page, int vcpu)
47{
48 return &shared_page->vcpu_iodata[vcpu].vp_ioreq;
49}
50# define FMT_ioreq_size PRIx64
51#else
52static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
53{
54 return shared_page->vcpu_ioreq[i].vp_eport;
55}
56static inline ioreq_t *xen_vcpu_ioreq(shared_iopage_t *shared_page, int vcpu)
57{
58 return &shared_page->vcpu_ioreq[vcpu];
59}
60# define FMT_ioreq_size "u"
61#endif
62
63#define BUFFER_IO_MAX_DELAY 100
64
Anthony PERARDb4dd7802011-05-24 14:34:21 +010065typedef struct XenPhysmap {
66 target_phys_addr_t start_addr;
67 ram_addr_t size;
Stefano Stabellinid1814e02012-01-19 15:56:11 +000068 char *name;
Anthony PERARDb4dd7802011-05-24 14:34:21 +010069 target_phys_addr_t phys_offset;
70
71 QLIST_ENTRY(XenPhysmap) list;
72} XenPhysmap;
73
Arun Sharma9ce94e72010-09-06 20:07:14 +010074typedef struct XenIOState {
75 shared_iopage_t *shared_page;
76 buffered_iopage_t *buffered_io_page;
77 QEMUTimer *buffered_io_timer;
78 /* the evtchn port for polling the notification, */
79 evtchn_port_t *ioreq_local_port;
80 /* the evtchn fd for polling */
81 XenEvtchn xce_handle;
82 /* which vcpu we are serving */
83 int send_vcpu;
84
Anthony PERARD29321332010-09-06 20:07:33 +010085 struct xs_handle *xenstore;
Avi Kivity20581d22011-12-19 12:07:50 +020086 MemoryListener memory_listener;
Anthony PERARDb4dd7802011-05-24 14:34:21 +010087 QLIST_HEAD(, XenPhysmap) physmap;
Avi Kivity20581d22011-12-19 12:07:50 +020088 target_phys_addr_t free_phys_offset;
Anthony PERARDb4dd7802011-05-24 14:34:21 +010089 const XenPhysmap *log_for_dirtybit;
Anthony PERARD29321332010-09-06 20:07:33 +010090
Arun Sharma9ce94e72010-09-06 20:07:14 +010091 Notifier exit;
Gerd Hoffmannda98c8e2012-02-23 13:45:20 +010092 Notifier suspend;
Arun Sharma9ce94e72010-09-06 20:07:14 +010093} XenIOState;
94
Anthony PERARD41445302010-07-16 14:55:39 +010095/* Xen specific function for piix pci */
96
97int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
98{
99 return irq_num + ((pci_dev->devfn >> 3) << 2);
100}
101
102void xen_piix3_set_irq(void *opaque, int irq_num, int level)
103{
104 xc_hvm_set_pci_intx_level(xen_xc, xen_domid, 0, 0, irq_num >> 2,
105 irq_num & 3, level);
106}
107
108void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
109{
110 int i;
111
112 /* Scan for updates to PCI link routes (0x60-0x63). */
113 for (i = 0; i < len; i++) {
114 uint8_t v = (val >> (8 * i)) & 0xff;
115 if (v & 0x80) {
116 v = 0;
117 }
118 v &= 0xf;
119 if (((address + i) >= 0x60) && ((address + i) <= 0x63)) {
120 xc_hvm_set_pci_link_route(xen_xc, xen_domid, address + i - 0x60, v);
121 }
122 }
123}
124
Gerd Hoffmannda98c8e2012-02-23 13:45:20 +0100125static void xen_suspend_notifier(Notifier *notifier, void *data)
Anthony PERARDc9622472010-10-05 16:40:22 +0100126{
Gerd Hoffmannda98c8e2012-02-23 13:45:20 +0100127 xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 3);
Anthony PERARDc9622472010-10-05 16:40:22 +0100128}
129
Anthony PERARD9c11a8a2010-06-30 17:50:10 +0100130/* Xen Interrupt Controller */
131
132static void xen_set_irq(void *opaque, int irq, int level)
133{
134 xc_hvm_set_isa_irq_level(xen_xc, xen_domid, irq, level);
135}
136
137qemu_irq *xen_interrupt_controller_init(void)
138{
139 return qemu_allocate_irqs(xen_set_irq, NULL, 16);
140}
141
Jun Nakajima432d2682010-08-31 16:41:25 +0100142/* Memory Ops */
143
144static void xen_ram_init(ram_addr_t ram_size)
145{
Avi Kivityce76b8a2011-12-18 16:27:48 +0200146 MemoryRegion *sysmem = get_system_memory();
Jun Nakajima432d2682010-08-31 16:41:25 +0100147 ram_addr_t below_4g_mem_size, above_4g_mem_size = 0;
Avi Kivityce76b8a2011-12-18 16:27:48 +0200148 ram_addr_t block_len;
Jun Nakajima432d2682010-08-31 16:41:25 +0100149
Avi Kivityce76b8a2011-12-18 16:27:48 +0200150 block_len = ram_size;
Anthony PERARD8a369e22011-07-20 08:17:43 +0000151 if (ram_size >= HVM_BELOW_4G_RAM_END) {
152 /* Xen does not allocate the memory continuously, and keep a hole at
153 * HVM_BELOW_4G_MMIO_START of HVM_BELOW_4G_MMIO_LENGTH
154 */
Avi Kivityce76b8a2011-12-18 16:27:48 +0200155 block_len += HVM_BELOW_4G_MMIO_LENGTH;
Anthony PERARD8a369e22011-07-20 08:17:43 +0000156 }
Avi Kivityc5705a72011-12-20 15:59:12 +0200157 memory_region_init_ram(&ram_memory, "xen.ram", block_len);
158 vmstate_register_ram_global(&ram_memory);
Jun Nakajima432d2682010-08-31 16:41:25 +0100159
Anthony PERARD8a369e22011-07-20 08:17:43 +0000160 if (ram_size >= HVM_BELOW_4G_RAM_END) {
161 above_4g_mem_size = ram_size - HVM_BELOW_4G_RAM_END;
162 below_4g_mem_size = HVM_BELOW_4G_RAM_END;
Jun Nakajima432d2682010-08-31 16:41:25 +0100163 } else {
164 below_4g_mem_size = ram_size;
165 }
166
Avi Kivityce76b8a2011-12-18 16:27:48 +0200167 memory_region_init_alias(&ram_640k, "xen.ram.640k",
168 &ram_memory, 0, 0xa0000);
169 memory_region_add_subregion(sysmem, 0, &ram_640k);
Anthony PERARD8a369e22011-07-20 08:17:43 +0000170 /* Skip of the VGA IO memory space, it will be registered later by the VGA
171 * emulated device.
172 *
173 * The area between 0xc0000 and 0x100000 will be used by SeaBIOS to load
174 * the Options ROM, so it is registered here as RAM.
175 */
Avi Kivityce76b8a2011-12-18 16:27:48 +0200176 memory_region_init_alias(&ram_lo, "xen.ram.lo",
177 &ram_memory, 0xc0000, below_4g_mem_size - 0xc0000);
178 memory_region_add_subregion(sysmem, 0xc0000, &ram_lo);
Jun Nakajima432d2682010-08-31 16:41:25 +0100179 if (above_4g_mem_size > 0) {
Avi Kivityce76b8a2011-12-18 16:27:48 +0200180 memory_region_init_alias(&ram_hi, "xen.ram.hi",
181 &ram_memory, 0x100000000ULL,
182 above_4g_mem_size);
183 memory_region_add_subregion(sysmem, 0x100000000ULL, &ram_hi);
Jun Nakajima432d2682010-08-31 16:41:25 +0100184 }
Jun Nakajima432d2682010-08-31 16:41:25 +0100185}
186
Avi Kivityfce537d2011-12-18 15:48:55 +0200187void xen_ram_alloc(ram_addr_t ram_addr, ram_addr_t size, MemoryRegion *mr)
Jun Nakajima432d2682010-08-31 16:41:25 +0100188{
189 unsigned long nr_pfn;
190 xen_pfn_t *pfn_list;
191 int i;
192
Anthony PERARDc2345722012-01-25 12:36:06 +0000193 if (runstate_check(RUN_STATE_INMIGRATE)) {
194 /* RAM already populated in Xen */
195 fprintf(stderr, "%s: do not alloc "RAM_ADDR_FMT
196 " bytes of ram at "RAM_ADDR_FMT" when runstate is INMIGRATE\n",
197 __func__, size, ram_addr);
198 return;
199 }
200
Avi Kivityce76b8a2011-12-18 16:27:48 +0200201 if (mr == &ram_memory) {
202 return;
203 }
204
Jun Nakajima432d2682010-08-31 16:41:25 +0100205 trace_xen_ram_alloc(ram_addr, size);
206
207 nr_pfn = size >> TARGET_PAGE_BITS;
Anthony Liguori7267c092011-08-20 22:09:37 -0500208 pfn_list = g_malloc(sizeof (*pfn_list) * nr_pfn);
Jun Nakajima432d2682010-08-31 16:41:25 +0100209
210 for (i = 0; i < nr_pfn; i++) {
211 pfn_list[i] = (ram_addr >> TARGET_PAGE_BITS) + i;
212 }
213
214 if (xc_domain_populate_physmap_exact(xen_xc, xen_domid, nr_pfn, 0, 0, pfn_list)) {
Anthony PERARDf15fbc42011-07-20 08:17:42 +0000215 hw_error("xen: failed to populate ram at " RAM_ADDR_FMT, ram_addr);
Jun Nakajima432d2682010-08-31 16:41:25 +0100216 }
217
Anthony Liguori7267c092011-08-20 22:09:37 -0500218 g_free(pfn_list);
Jun Nakajima432d2682010-08-31 16:41:25 +0100219}
220
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100221static XenPhysmap *get_physmapping(XenIOState *state,
222 target_phys_addr_t start_addr, ram_addr_t size)
223{
224 XenPhysmap *physmap = NULL;
225
226 start_addr &= TARGET_PAGE_MASK;
227
228 QLIST_FOREACH(physmap, &state->physmap, list) {
229 if (range_covers_byte(physmap->start_addr, physmap->size, start_addr)) {
230 return physmap;
231 }
232 }
233 return NULL;
234}
235
Anthony PERARDcd1ba7d2012-01-18 12:21:38 +0000236static target_phys_addr_t xen_phys_offset_to_gaddr(target_phys_addr_t start_addr,
237 ram_addr_t size, void *opaque)
238{
239 target_phys_addr_t addr = start_addr & TARGET_PAGE_MASK;
240 XenIOState *xen_io_state = opaque;
241 XenPhysmap *physmap = NULL;
242
243 QLIST_FOREACH(physmap, &xen_io_state->physmap, list) {
244 if (range_covers_byte(physmap->phys_offset, physmap->size, addr)) {
245 return physmap->start_addr;
246 }
247 }
248
249 return start_addr;
250}
251
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100252#if CONFIG_XEN_CTRL_INTERFACE_VERSION >= 340
253static int xen_add_to_physmap(XenIOState *state,
254 target_phys_addr_t start_addr,
255 ram_addr_t size,
Avi Kivity20581d22011-12-19 12:07:50 +0200256 MemoryRegion *mr,
257 target_phys_addr_t offset_within_region)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100258{
259 unsigned long i = 0;
260 int rc = 0;
261 XenPhysmap *physmap = NULL;
262 target_phys_addr_t pfn, start_gpfn;
Avi Kivity20581d22011-12-19 12:07:50 +0200263 target_phys_addr_t phys_offset = memory_region_get_ram_addr(mr);
Stefano Stabellinid1814e02012-01-19 15:56:11 +0000264 char path[80], value[17];
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100265
266 if (get_physmapping(state, start_addr, size)) {
267 return 0;
268 }
269 if (size <= 0) {
270 return -1;
271 }
272
Stefano Stabelliniebed8502011-06-15 17:29:27 +0100273 /* Xen can only handle a single dirty log region for now and we want
274 * the linear framebuffer to be that region.
275 * Avoid tracking any regions that is not videoram and avoid tracking
276 * the legacy vga region. */
Avi Kivity20581d22011-12-19 12:07:50 +0200277 if (mr == framebuffer && start_addr > 0xbffff) {
278 goto go_physmap;
Stefano Stabelliniebed8502011-06-15 17:29:27 +0100279 }
280 return -1;
281
282go_physmap:
Avi Kivity20581d22011-12-19 12:07:50 +0200283 DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100284
285 pfn = phys_offset >> TARGET_PAGE_BITS;
286 start_gpfn = start_addr >> TARGET_PAGE_BITS;
287 for (i = 0; i < size >> TARGET_PAGE_BITS; i++) {
288 unsigned long idx = pfn + i;
289 xen_pfn_t gpfn = start_gpfn + i;
290
291 rc = xc_domain_add_to_physmap(xen_xc, xen_domid, XENMAPSPACE_gmfn, idx, gpfn);
292 if (rc) {
293 DPRINTF("add_to_physmap MFN %"PRI_xen_pfn" to PFN %"
294 PRI_xen_pfn" failed: %d\n", idx, gpfn, rc);
295 return -rc;
296 }
297 }
298
Anthony Liguori7267c092011-08-20 22:09:37 -0500299 physmap = g_malloc(sizeof (XenPhysmap));
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100300
301 physmap->start_addr = start_addr;
302 physmap->size = size;
Stefano Stabellinid1814e02012-01-19 15:56:11 +0000303 physmap->name = (char *)mr->name;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100304 physmap->phys_offset = phys_offset;
305
306 QLIST_INSERT_HEAD(&state->physmap, physmap, list);
307
308 xc_domain_pin_memory_cacheattr(xen_xc, xen_domid,
309 start_addr >> TARGET_PAGE_BITS,
310 (start_addr + size) >> TARGET_PAGE_BITS,
311 XEN_DOMCTL_MEM_CACHEATTR_WB);
Stefano Stabellinid1814e02012-01-19 15:56:11 +0000312
313 snprintf(path, sizeof(path),
314 "/local/domain/0/device-model/%d/physmap/%"PRIx64"/start_addr",
315 xen_domid, (uint64_t)phys_offset);
316 snprintf(value, sizeof(value), "%"PRIx64, (uint64_t)start_addr);
317 if (!xs_write(state->xenstore, 0, path, value, strlen(value))) {
318 return -1;
319 }
320 snprintf(path, sizeof(path),
321 "/local/domain/0/device-model/%d/physmap/%"PRIx64"/size",
322 xen_domid, (uint64_t)phys_offset);
323 snprintf(value, sizeof(value), "%"PRIx64, (uint64_t)size);
324 if (!xs_write(state->xenstore, 0, path, value, strlen(value))) {
325 return -1;
326 }
327 if (mr->name) {
328 snprintf(path, sizeof(path),
329 "/local/domain/0/device-model/%d/physmap/%"PRIx64"/name",
330 xen_domid, (uint64_t)phys_offset);
331 if (!xs_write(state->xenstore, 0, path, mr->name, strlen(mr->name))) {
332 return -1;
333 }
334 }
335
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100336 return 0;
337}
338
339static int xen_remove_from_physmap(XenIOState *state,
340 target_phys_addr_t start_addr,
341 ram_addr_t size)
342{
343 unsigned long i = 0;
344 int rc = 0;
345 XenPhysmap *physmap = NULL;
346 target_phys_addr_t phys_offset = 0;
347
348 physmap = get_physmapping(state, start_addr, size);
349 if (physmap == NULL) {
350 return -1;
351 }
352
353 phys_offset = physmap->phys_offset;
354 size = physmap->size;
355
356 DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
357 phys_offset, phys_offset + size, start_addr);
358
359 size >>= TARGET_PAGE_BITS;
360 start_addr >>= TARGET_PAGE_BITS;
361 phys_offset >>= TARGET_PAGE_BITS;
362 for (i = 0; i < size; i++) {
363 unsigned long idx = start_addr + i;
364 xen_pfn_t gpfn = phys_offset + i;
365
366 rc = xc_domain_add_to_physmap(xen_xc, xen_domid, XENMAPSPACE_gmfn, idx, gpfn);
367 if (rc) {
368 fprintf(stderr, "add_to_physmap MFN %"PRI_xen_pfn" to PFN %"
369 PRI_xen_pfn" failed: %d\n", idx, gpfn, rc);
370 return -rc;
371 }
372 }
373
374 QLIST_REMOVE(physmap, list);
375 if (state->log_for_dirtybit == physmap) {
376 state->log_for_dirtybit = NULL;
377 }
378 free(physmap);
379
380 return 0;
381}
382
383#else
384static int xen_add_to_physmap(XenIOState *state,
385 target_phys_addr_t start_addr,
386 ram_addr_t size,
Avi Kivity20581d22011-12-19 12:07:50 +0200387 MemoryRegion *mr,
388 target_phys_addr_t offset_within_region)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100389{
390 return -ENOSYS;
391}
392
393static int xen_remove_from_physmap(XenIOState *state,
394 target_phys_addr_t start_addr,
395 ram_addr_t size)
396{
397 return -ENOSYS;
398}
399#endif
400
Avi Kivity20581d22011-12-19 12:07:50 +0200401static void xen_set_memory(struct MemoryListener *listener,
402 MemoryRegionSection *section,
403 bool add)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100404{
Avi Kivity20581d22011-12-19 12:07:50 +0200405 XenIOState *state = container_of(listener, XenIOState, memory_listener);
406 target_phys_addr_t start_addr = section->offset_within_address_space;
407 ram_addr_t size = section->size;
408 bool log_dirty = memory_region_is_logging(section->mr);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100409 hvmmem_type_t mem_type;
410
Avi Kivity20581d22011-12-19 12:07:50 +0200411 if (!memory_region_is_ram(section->mr)) {
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100412 return;
413 }
414
Avi Kivity20581d22011-12-19 12:07:50 +0200415 if (!(section->mr != &ram_memory
416 && ( (log_dirty && add) || (!log_dirty && !add)))) {
417 return;
418 }
419
420 trace_xen_client_set_memory(start_addr, size, log_dirty);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100421
422 start_addr &= TARGET_PAGE_MASK;
423 size = TARGET_PAGE_ALIGN(size);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100424
Avi Kivity20581d22011-12-19 12:07:50 +0200425 if (add) {
426 if (!memory_region_is_rom(section->mr)) {
427 xen_add_to_physmap(state, start_addr, size,
428 section->mr, section->offset_within_region);
429 } else {
430 mem_type = HVMMEM_ram_ro;
431 if (xc_hvm_set_mem_type(xen_xc, xen_domid, mem_type,
432 start_addr >> TARGET_PAGE_BITS,
433 size >> TARGET_PAGE_BITS)) {
434 DPRINTF("xc_hvm_set_mem_type error, addr: "TARGET_FMT_plx"\n",
435 start_addr);
436 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100437 }
Avi Kivity20581d22011-12-19 12:07:50 +0200438 } else {
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100439 if (xen_remove_from_physmap(state, start_addr, size) < 0) {
440 DPRINTF("physmapping does not exist at "TARGET_FMT_plx"\n", start_addr);
441 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100442 }
443}
444
Avi Kivity20581d22011-12-19 12:07:50 +0200445static void xen_region_add(MemoryListener *listener,
446 MemoryRegionSection *section)
447{
448 xen_set_memory(listener, section, true);
449}
450
451static void xen_region_del(MemoryListener *listener,
452 MemoryRegionSection *section)
453{
454 xen_set_memory(listener, section, false);
455}
456
Anthony PERARDb18620c2012-01-05 12:47:08 +0000457static void xen_sync_dirty_bitmap(XenIOState *state,
458 target_phys_addr_t start_addr,
459 ram_addr_t size)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100460{
461 target_phys_addr_t npages = size >> TARGET_PAGE_BITS;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100462 const int width = sizeof(unsigned long) * 8;
463 unsigned long bitmap[(npages + width - 1) / width];
464 int rc, i, j;
465 const XenPhysmap *physmap = NULL;
466
467 physmap = get_physmapping(state, start_addr, size);
468 if (physmap == NULL) {
469 /* not handled */
Anthony PERARDb18620c2012-01-05 12:47:08 +0000470 return;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100471 }
472
473 if (state->log_for_dirtybit == NULL) {
474 state->log_for_dirtybit = physmap;
475 } else if (state->log_for_dirtybit != physmap) {
Anthony PERARDb18620c2012-01-05 12:47:08 +0000476 /* Only one range for dirty bitmap can be tracked. */
477 return;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100478 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100479
480 rc = xc_hvm_track_dirty_vram(xen_xc, xen_domid,
481 start_addr >> TARGET_PAGE_BITS, npages,
482 bitmap);
Anthony PERARDb18620c2012-01-05 12:47:08 +0000483 if (rc < 0) {
484 if (rc != -ENODATA) {
485 fprintf(stderr, "xen: track_dirty_vram failed (0x" TARGET_FMT_plx
486 ", 0x" TARGET_FMT_plx "): %s\n",
487 start_addr, start_addr + size, strerror(-rc));
488 }
489 return;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100490 }
491
492 for (i = 0; i < ARRAY_SIZE(bitmap); i++) {
493 unsigned long map = bitmap[i];
494 while (map != 0) {
495 j = ffsl(map) - 1;
496 map &= ~(1ul << j);
Avi Kivity5a970652011-12-21 14:21:27 +0200497 memory_region_set_dirty(framebuffer,
Blue Swirlfd4aa972011-10-16 16:04:59 +0000498 (i * width + j) * TARGET_PAGE_SIZE,
499 TARGET_PAGE_SIZE);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100500 };
501 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100502}
503
Avi Kivity20581d22011-12-19 12:07:50 +0200504static void xen_log_start(MemoryListener *listener,
505 MemoryRegionSection *section)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100506{
Avi Kivity20581d22011-12-19 12:07:50 +0200507 XenIOState *state = container_of(listener, XenIOState, memory_listener);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100508
Anthony PERARDb18620c2012-01-05 12:47:08 +0000509 xen_sync_dirty_bitmap(state, section->offset_within_address_space,
510 section->size);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100511}
512
Avi Kivity20581d22011-12-19 12:07:50 +0200513static void xen_log_stop(MemoryListener *listener, MemoryRegionSection *section)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100514{
Avi Kivity20581d22011-12-19 12:07:50 +0200515 XenIOState *state = container_of(listener, XenIOState, memory_listener);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100516
517 state->log_for_dirtybit = NULL;
518 /* Disable dirty bit tracking */
Anthony PERARDb18620c2012-01-05 12:47:08 +0000519 xc_hvm_track_dirty_vram(xen_xc, xen_domid, 0, 0, NULL);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100520}
521
Avi Kivity20581d22011-12-19 12:07:50 +0200522static void xen_log_sync(MemoryListener *listener, MemoryRegionSection *section)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100523{
Avi Kivity20581d22011-12-19 12:07:50 +0200524 XenIOState *state = container_of(listener, XenIOState, memory_listener);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100525
Anthony PERARDb18620c2012-01-05 12:47:08 +0000526 xen_sync_dirty_bitmap(state, section->offset_within_address_space,
527 section->size);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100528}
529
Avi Kivity20581d22011-12-19 12:07:50 +0200530static void xen_log_global_start(MemoryListener *listener)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100531{
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100532}
533
Avi Kivity20581d22011-12-19 12:07:50 +0200534static void xen_log_global_stop(MemoryListener *listener)
535{
536}
537
538static MemoryListener xen_memory_listener = {
539 .region_add = xen_region_add,
540 .region_del = xen_region_del,
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100541 .log_start = xen_log_start,
542 .log_stop = xen_log_stop,
Avi Kivity20581d22011-12-19 12:07:50 +0200543 .log_sync = xen_log_sync,
544 .log_global_start = xen_log_global_start,
545 .log_global_stop = xen_log_global_stop,
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100546};
Jun Nakajima432d2682010-08-31 16:41:25 +0100547
Anthony PERARD29d3ccd2010-06-30 12:58:34 +0100548/* VCPU Operations, MMIO, IO ring ... */
549
550static void xen_reset_vcpu(void *opaque)
551{
552 CPUState *env = opaque;
553
554 env->halted = 1;
555}
556
557void xen_vcpu_init(void)
558{
559 CPUState *first_cpu;
560
561 if ((first_cpu = qemu_get_cpu(0))) {
562 qemu_register_reset(xen_reset_vcpu, first_cpu);
563 xen_reset_vcpu(first_cpu);
564 }
565}
566
Arun Sharma9ce94e72010-09-06 20:07:14 +0100567/* get the ioreq packets from share mem */
568static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
569{
570 ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
571
572 if (req->state != STATE_IOREQ_READY) {
573 DPRINTF("I/O request not ready: "
574 "%x, ptr: %x, port: %"PRIx64", "
575 "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
576 req->state, req->data_is_ptr, req->addr,
577 req->data, req->count, req->size);
578 return NULL;
579 }
580
581 xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
582
583 req->state = STATE_IOREQ_INPROCESS;
584 return req;
585}
586
587/* use poll to get the port notification */
588/* ioreq_vec--out,the */
589/* retval--the number of ioreq packet */
590static ioreq_t *cpu_get_ioreq(XenIOState *state)
591{
592 int i;
593 evtchn_port_t port;
594
595 port = xc_evtchn_pending(state->xce_handle);
596 if (port != -1) {
597 for (i = 0; i < smp_cpus; i++) {
598 if (state->ioreq_local_port[i] == port) {
599 break;
600 }
601 }
602
603 if (i == smp_cpus) {
604 hw_error("Fatal error while trying to get io event!\n");
605 }
606
607 /* unmask the wanted port again */
608 xc_evtchn_unmask(state->xce_handle, port);
609
610 /* get the io packet from shared memory */
611 state->send_vcpu = i;
612 return cpu_get_ioreq_from_shared_memory(state, i);
613 }
614
615 /* read error or read nothing */
616 return NULL;
617}
618
619static uint32_t do_inp(pio_addr_t addr, unsigned long size)
620{
621 switch (size) {
622 case 1:
623 return cpu_inb(addr);
624 case 2:
625 return cpu_inw(addr);
626 case 4:
627 return cpu_inl(addr);
628 default:
629 hw_error("inp: bad size: %04"FMT_pioaddr" %lx", addr, size);
630 }
631}
632
633static void do_outp(pio_addr_t addr,
634 unsigned long size, uint32_t val)
635{
636 switch (size) {
637 case 1:
638 return cpu_outb(addr, val);
639 case 2:
640 return cpu_outw(addr, val);
641 case 4:
642 return cpu_outl(addr, val);
643 default:
644 hw_error("outp: bad size: %04"FMT_pioaddr" %lx", addr, size);
645 }
646}
647
648static void cpu_ioreq_pio(ioreq_t *req)
649{
650 int i, sign;
651
652 sign = req->df ? -1 : 1;
653
654 if (req->dir == IOREQ_READ) {
655 if (!req->data_is_ptr) {
656 req->data = do_inp(req->addr, req->size);
657 } else {
658 uint32_t tmp;
659
660 for (i = 0; i < req->count; i++) {
661 tmp = do_inp(req->addr, req->size);
662 cpu_physical_memory_write(req->data + (sign * i * req->size),
663 (uint8_t *) &tmp, req->size);
664 }
665 }
666 } else if (req->dir == IOREQ_WRITE) {
667 if (!req->data_is_ptr) {
668 do_outp(req->addr, req->size, req->data);
669 } else {
670 for (i = 0; i < req->count; i++) {
671 uint32_t tmp = 0;
672
673 cpu_physical_memory_read(req->data + (sign * i * req->size),
674 (uint8_t*) &tmp, req->size);
675 do_outp(req->addr, req->size, tmp);
676 }
677 }
678 }
679}
680
681static void cpu_ioreq_move(ioreq_t *req)
682{
683 int i, sign;
684
685 sign = req->df ? -1 : 1;
686
687 if (!req->data_is_ptr) {
688 if (req->dir == IOREQ_READ) {
689 for (i = 0; i < req->count; i++) {
690 cpu_physical_memory_read(req->addr + (sign * i * req->size),
691 (uint8_t *) &req->data, req->size);
692 }
693 } else if (req->dir == IOREQ_WRITE) {
694 for (i = 0; i < req->count; i++) {
695 cpu_physical_memory_write(req->addr + (sign * i * req->size),
696 (uint8_t *) &req->data, req->size);
697 }
698 }
699 } else {
Stefano Stabellini2b734342011-05-20 16:57:24 +0000700 uint64_t tmp;
Arun Sharma9ce94e72010-09-06 20:07:14 +0100701
702 if (req->dir == IOREQ_READ) {
703 for (i = 0; i < req->count; i++) {
704 cpu_physical_memory_read(req->addr + (sign * i * req->size),
705 (uint8_t*) &tmp, req->size);
706 cpu_physical_memory_write(req->data + (sign * i * req->size),
707 (uint8_t*) &tmp, req->size);
708 }
709 } else if (req->dir == IOREQ_WRITE) {
710 for (i = 0; i < req->count; i++) {
711 cpu_physical_memory_read(req->data + (sign * i * req->size),
712 (uint8_t*) &tmp, req->size);
713 cpu_physical_memory_write(req->addr + (sign * i * req->size),
714 (uint8_t*) &tmp, req->size);
715 }
716 }
717 }
718}
719
720static void handle_ioreq(ioreq_t *req)
721{
722 if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
723 (req->size < sizeof (target_ulong))) {
724 req->data &= ((target_ulong) 1 << (8 * req->size)) - 1;
725 }
726
727 switch (req->type) {
728 case IOREQ_TYPE_PIO:
729 cpu_ioreq_pio(req);
730 break;
731 case IOREQ_TYPE_COPY:
732 cpu_ioreq_move(req);
733 break;
734 case IOREQ_TYPE_TIMEOFFSET:
735 break;
736 case IOREQ_TYPE_INVALIDATE:
Jan Kiszkae41d7c62011-06-21 22:59:08 +0200737 xen_invalidate_map_cache();
Arun Sharma9ce94e72010-09-06 20:07:14 +0100738 break;
739 default:
740 hw_error("Invalid ioreq type 0x%x\n", req->type);
741 }
742}
743
744static void handle_buffered_iopage(XenIOState *state)
745{
746 buf_ioreq_t *buf_req = NULL;
747 ioreq_t req;
748 int qw;
749
750 if (!state->buffered_io_page) {
751 return;
752 }
753
754 while (state->buffered_io_page->read_pointer != state->buffered_io_page->write_pointer) {
755 buf_req = &state->buffered_io_page->buf_ioreq[
756 state->buffered_io_page->read_pointer % IOREQ_BUFFER_SLOT_NUM];
757 req.size = 1UL << buf_req->size;
758 req.count = 1;
759 req.addr = buf_req->addr;
760 req.data = buf_req->data;
761 req.state = STATE_IOREQ_READY;
762 req.dir = buf_req->dir;
763 req.df = 1;
764 req.type = buf_req->type;
765 req.data_is_ptr = 0;
766 qw = (req.size == 8);
767 if (qw) {
768 buf_req = &state->buffered_io_page->buf_ioreq[
769 (state->buffered_io_page->read_pointer + 1) % IOREQ_BUFFER_SLOT_NUM];
770 req.data |= ((uint64_t)buf_req->data) << 32;
771 }
772
773 handle_ioreq(&req);
774
775 xen_mb();
776 state->buffered_io_page->read_pointer += qw ? 2 : 1;
777 }
778}
779
780static void handle_buffered_io(void *opaque)
781{
782 XenIOState *state = opaque;
783
784 handle_buffered_iopage(state);
785 qemu_mod_timer(state->buffered_io_timer,
786 BUFFER_IO_MAX_DELAY + qemu_get_clock_ms(rt_clock));
787}
788
789static void cpu_handle_ioreq(void *opaque)
790{
791 XenIOState *state = opaque;
792 ioreq_t *req = cpu_get_ioreq(state);
793
794 handle_buffered_iopage(state);
795 if (req) {
796 handle_ioreq(req);
797
798 if (req->state != STATE_IOREQ_INPROCESS) {
799 fprintf(stderr, "Badness in I/O request ... not in service?!: "
800 "%x, ptr: %x, port: %"PRIx64", "
801 "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
802 req->state, req->data_is_ptr, req->addr,
803 req->data, req->count, req->size);
804 destroy_hvm_domain();
805 return;
806 }
807
808 xen_wmb(); /* Update ioreq contents /then/ update state. */
809
810 /*
811 * We do this before we send the response so that the tools
812 * have the opportunity to pick up on the reset before the
813 * guest resumes and does a hlt with interrupts disabled which
814 * causes Xen to powerdown the domain.
815 */
Luiz Capitulino13548692011-07-29 15:36:43 -0300816 if (runstate_is_running()) {
Arun Sharma9ce94e72010-09-06 20:07:14 +0100817 if (qemu_shutdown_requested_get()) {
818 destroy_hvm_domain();
819 }
820 if (qemu_reset_requested_get()) {
Jan Kiszkae063eb12011-06-14 18:29:43 +0200821 qemu_system_reset(VMRESET_REPORT);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100822 }
823 }
824
825 req->state = STATE_IORESP_READY;
826 xc_evtchn_notify(state->xce_handle, state->ioreq_local_port[state->send_vcpu]);
827 }
828}
829
Stefano Stabellini0f517262011-06-30 18:26:29 +0100830static int store_dev_info(int domid, CharDriverState *cs, const char *string)
831{
832 struct xs_handle *xs = NULL;
833 char *path = NULL;
834 char *newpath = NULL;
835 char *pts = NULL;
836 int ret = -1;
837
838 /* Only continue if we're talking to a pty. */
839 if (strncmp(cs->filename, "pty:", 4)) {
840 return 0;
841 }
842 pts = cs->filename + 4;
843
844 /* We now have everything we need to set the xenstore entry. */
845 xs = xs_open(0);
846 if (xs == NULL) {
847 fprintf(stderr, "Could not contact XenStore\n");
848 goto out;
849 }
850
851 path = xs_get_domain_path(xs, domid);
852 if (path == NULL) {
853 fprintf(stderr, "xs_get_domain_path() error\n");
854 goto out;
855 }
856 newpath = realloc(path, (strlen(path) + strlen(string) +
857 strlen("/tty") + 1));
858 if (newpath == NULL) {
859 fprintf(stderr, "realloc error\n");
860 goto out;
861 }
862 path = newpath;
863
864 strcat(path, string);
865 strcat(path, "/tty");
866 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
867 fprintf(stderr, "xs_write for '%s' fail", string);
868 goto out;
869 }
870 ret = 0;
871
872out:
873 free(path);
874 xs_close(xs);
875
876 return ret;
877}
878
879void xenstore_store_pv_console_info(int i, CharDriverState *chr)
880{
881 if (i == 0) {
882 store_dev_info(xen_domid, chr, "/console");
883 } else {
884 char buf[32];
885 snprintf(buf, sizeof(buf), "/device/console/%d", i);
886 store_dev_info(xen_domid, chr, buf);
887 }
888}
889
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000890static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
Anthony PERARD29321332010-09-06 20:07:33 +0100891{
892 char path[50];
893
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000894 if (xs == NULL) {
895 fprintf(stderr, "xenstore connection not initialized\n");
896 exit(1);
897 }
898
Anthony PERARD29321332010-09-06 20:07:33 +0100899 snprintf(path, sizeof (path), "/local/domain/0/device-model/%u/state", xen_domid);
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000900 if (!xs_write(xs, XBT_NULL, path, state, strlen(state))) {
Anthony PERARD29321332010-09-06 20:07:33 +0100901 fprintf(stderr, "error recording dm state\n");
902 exit(1);
903 }
904}
905
Arun Sharma9ce94e72010-09-06 20:07:14 +0100906static void xen_main_loop_prepare(XenIOState *state)
907{
908 int evtchn_fd = -1;
909
910 if (state->xce_handle != XC_HANDLER_INITIAL_VALUE) {
911 evtchn_fd = xc_evtchn_fd(state->xce_handle);
912 }
913
914 state->buffered_io_timer = qemu_new_timer_ms(rt_clock, handle_buffered_io,
915 state);
916 qemu_mod_timer(state->buffered_io_timer, qemu_get_clock_ms(rt_clock));
917
918 if (evtchn_fd != -1) {
919 qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
920 }
921}
922
923
Anthony PERARD3285cf42010-08-19 12:27:56 +0100924/* Initialise Xen */
925
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300926static void xen_change_state_handler(void *opaque, int running,
927 RunState state)
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000928{
929 if (running) {
930 /* record state running */
931 xenstore_record_dm_state(xenstore, "running");
932 }
933}
934
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300935static void xen_hvm_change_state_handler(void *opaque, int running,
936 RunState rstate)
Arun Sharma9ce94e72010-09-06 20:07:14 +0100937{
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300938 XenIOState *xstate = opaque;
Arun Sharma9ce94e72010-09-06 20:07:14 +0100939 if (running) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300940 xen_main_loop_prepare(xstate);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100941 }
942}
943
Jan Kiszka9e8dd452011-06-20 14:06:26 +0200944static void xen_exit_notifier(Notifier *n, void *data)
Arun Sharma9ce94e72010-09-06 20:07:14 +0100945{
946 XenIOState *state = container_of(n, XenIOState, exit);
947
948 xc_evtchn_close(state->xce_handle);
Anthony PERARD29321332010-09-06 20:07:33 +0100949 xs_daemon_close(state->xenstore);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100950}
951
Anthony PERARD3285cf42010-08-19 12:27:56 +0100952int xen_init(void)
953{
954 xen_xc = xen_xc_interface_open(0, 0, 0);
955 if (xen_xc == XC_HANDLER_INITIAL_VALUE) {
956 xen_be_printf(NULL, 0, "can't open xen interface\n");
957 return -1;
958 }
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000959 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
Anthony PERARD3285cf42010-08-19 12:27:56 +0100960
961 return 0;
962}
Anthony PERARD29d3ccd2010-06-30 12:58:34 +0100963
Stefano Stabellinid1814e02012-01-19 15:56:11 +0000964static void xen_read_physmap(XenIOState *state)
965{
966 XenPhysmap *physmap = NULL;
967 unsigned int len, num, i;
968 char path[80], *value = NULL;
969 char **entries = NULL;
970
971 snprintf(path, sizeof(path),
972 "/local/domain/0/device-model/%d/physmap", xen_domid);
973 entries = xs_directory(state->xenstore, 0, path, &num);
974 if (entries == NULL)
975 return;
976
977 for (i = 0; i < num; i++) {
978 physmap = g_malloc(sizeof (XenPhysmap));
979 physmap->phys_offset = strtoull(entries[i], NULL, 16);
980 snprintf(path, sizeof(path),
981 "/local/domain/0/device-model/%d/physmap/%s/start_addr",
982 xen_domid, entries[i]);
983 value = xs_read(state->xenstore, 0, path, &len);
984 if (value == NULL) {
985 free(physmap);
986 continue;
987 }
988 physmap->start_addr = strtoull(value, NULL, 16);
989 free(value);
990
991 snprintf(path, sizeof(path),
992 "/local/domain/0/device-model/%d/physmap/%s/size",
993 xen_domid, entries[i]);
994 value = xs_read(state->xenstore, 0, path, &len);
995 if (value == NULL) {
996 free(physmap);
997 continue;
998 }
999 physmap->size = strtoull(value, NULL, 16);
1000 free(value);
1001
1002 snprintf(path, sizeof(path),
1003 "/local/domain/0/device-model/%d/physmap/%s/name",
1004 xen_domid, entries[i]);
1005 physmap->name = xs_read(state->xenstore, 0, path, &len);
1006
1007 QLIST_INSERT_HEAD(&state->physmap, physmap, list);
1008 }
1009 free(entries);
1010 return;
1011}
1012
Anthony PERARD29d3ccd2010-06-30 12:58:34 +01001013int xen_hvm_init(void)
1014{
Arun Sharma9ce94e72010-09-06 20:07:14 +01001015 int i, rc;
1016 unsigned long ioreq_pfn;
1017 XenIOState *state;
1018
Anthony Liguori7267c092011-08-20 22:09:37 -05001019 state = g_malloc0(sizeof (XenIOState));
Arun Sharma9ce94e72010-09-06 20:07:14 +01001020
1021 state->xce_handle = xen_xc_evtchn_open(NULL, 0);
1022 if (state->xce_handle == XC_HANDLER_INITIAL_VALUE) {
1023 perror("xen: event channel open");
1024 return -errno;
1025 }
1026
Anthony PERARD29321332010-09-06 20:07:33 +01001027 state->xenstore = xs_daemon_open();
1028 if (state->xenstore == NULL) {
1029 perror("xen: xenstore open");
1030 return -errno;
1031 }
1032
Arun Sharma9ce94e72010-09-06 20:07:14 +01001033 state->exit.notify = xen_exit_notifier;
1034 qemu_add_exit_notifier(&state->exit);
1035
Gerd Hoffmannda98c8e2012-02-23 13:45:20 +01001036 state->suspend.notify = xen_suspend_notifier;
1037 qemu_register_suspend_notifier(&state->suspend);
1038
Arun Sharma9ce94e72010-09-06 20:07:14 +01001039 xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_IOREQ_PFN, &ioreq_pfn);
1040 DPRINTF("shared page at pfn %lx\n", ioreq_pfn);
1041 state->shared_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
1042 PROT_READ|PROT_WRITE, ioreq_pfn);
1043 if (state->shared_page == NULL) {
1044 hw_error("map shared IO page returned error %d handle=" XC_INTERFACE_FMT,
1045 errno, xen_xc);
1046 }
1047
1048 xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_BUFIOREQ_PFN, &ioreq_pfn);
1049 DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn);
1050 state->buffered_io_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
1051 PROT_READ|PROT_WRITE, ioreq_pfn);
1052 if (state->buffered_io_page == NULL) {
1053 hw_error("map buffered IO page returned error %d", errno);
1054 }
1055
Anthony Liguori7267c092011-08-20 22:09:37 -05001056 state->ioreq_local_port = g_malloc0(smp_cpus * sizeof (evtchn_port_t));
Arun Sharma9ce94e72010-09-06 20:07:14 +01001057
1058 /* FIXME: how about if we overflow the page here? */
1059 for (i = 0; i < smp_cpus; i++) {
1060 rc = xc_evtchn_bind_interdomain(state->xce_handle, xen_domid,
1061 xen_vcpu_eport(state->shared_page, i));
1062 if (rc == -1) {
1063 fprintf(stderr, "bind interdomain ioctl error %d\n", errno);
1064 return -1;
1065 }
1066 state->ioreq_local_port[i] = rc;
1067 }
1068
Jun Nakajima432d2682010-08-31 16:41:25 +01001069 /* Init RAM management */
Anthony PERARDcd1ba7d2012-01-18 12:21:38 +00001070 xen_map_cache_init(xen_phys_offset_to_gaddr, state);
Jun Nakajima432d2682010-08-31 16:41:25 +01001071 xen_ram_init(ram_size);
1072
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +00001073 qemu_add_vm_change_state_handler(xen_hvm_change_state_handler, state);
Arun Sharma9ce94e72010-09-06 20:07:14 +01001074
Avi Kivity20581d22011-12-19 12:07:50 +02001075 state->memory_listener = xen_memory_listener;
Anthony PERARDb4dd7802011-05-24 14:34:21 +01001076 QLIST_INIT(&state->physmap);
Avi Kivity20581d22011-12-19 12:07:50 +02001077 memory_listener_register(&state->memory_listener);
Anthony PERARDb4dd7802011-05-24 14:34:21 +01001078 state->log_for_dirtybit = NULL;
1079
Stefano Stabelliniad35a7d2011-06-24 15:54:48 +01001080 /* Initialize backend core & drivers */
1081 if (xen_be_init() != 0) {
1082 fprintf(stderr, "%s: xen backend core setup failed\n", __FUNCTION__);
1083 exit(1);
1084 }
1085 xen_be_register("console", &xen_console_ops);
Stefano Stabellini37cdfcf2011-06-24 17:36:11 +01001086 xen_be_register("vkbd", &xen_kbdmouse_ops);
Stefano Stabelliniad35a7d2011-06-24 15:54:48 +01001087 xen_be_register("qdisk", &xen_blkdev_ops);
Stefano Stabellinid1814e02012-01-19 15:56:11 +00001088 xen_read_physmap(state);
Stefano Stabelliniad35a7d2011-06-24 15:54:48 +01001089
Anthony PERARD29d3ccd2010-06-30 12:58:34 +01001090 return 0;
1091}
Arun Sharma9ce94e72010-09-06 20:07:14 +01001092
1093void destroy_hvm_domain(void)
1094{
1095 XenXC xc_handle;
1096 int sts;
1097
1098 xc_handle = xen_xc_interface_open(0, 0, 0);
1099 if (xc_handle == XC_HANDLER_INITIAL_VALUE) {
1100 fprintf(stderr, "Cannot acquire xenctrl handle\n");
1101 } else {
1102 sts = xc_domain_shutdown(xc_handle, xen_domid, SHUTDOWN_poweroff);
1103 if (sts != 0) {
1104 fprintf(stderr, "? xc_domain_shutdown failed to issue poweroff, "
1105 "sts %d, %s\n", sts, strerror(errno));
1106 } else {
1107 fprintf(stderr, "Issued domain %d poweroff\n", xen_domid);
1108 }
1109 xc_interface_close(xc_handle);
1110 }
1111}
Avi Kivityc65adf92011-12-18 16:40:50 +02001112
1113void xen_register_framebuffer(MemoryRegion *mr)
1114{
1115 framebuffer = mr;
1116}