blob: d58d461c7934d4a9106946f3a5c5a6ec9c141b49 [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 *
7 */
8
Arun Sharma9ce94e72010-09-06 20:07:14 +01009#include <sys/mman.h>
10
Anthony PERARD41445302010-07-16 14:55:39 +010011#include "hw/pci.h"
Anthony PERARDc9622472010-10-05 16:40:22 +010012#include "hw/pc.h"
Anthony PERARD3285cf42010-08-19 12:27:56 +010013#include "hw/xen_common.h"
14#include "hw/xen_backend.h"
15
Anthony PERARDb4dd7802011-05-24 14:34:21 +010016#include "range.h"
Jun Nakajima432d2682010-08-31 16:41:25 +010017#include "xen-mapcache.h"
18#include "trace.h"
Avi Kivityce76b8a2011-12-18 16:27:48 +020019#include "exec-memory.h"
Jun Nakajima432d2682010-08-31 16:41:25 +010020
Arun Sharma9ce94e72010-09-06 20:07:14 +010021#include <xen/hvm/ioreq.h>
22#include <xen/hvm/params.h>
Anthony PERARD8a369e22011-07-20 08:17:43 +000023#include <xen/hvm/e820.h>
Arun Sharma9ce94e72010-09-06 20:07:14 +010024
25//#define DEBUG_XEN
26
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
34
Avi Kivityce76b8a2011-12-18 16:27:48 +020035static MemoryRegion ram_memory, ram_640k, ram_lo, ram_hi;
Avi Kivityc65adf92011-12-18 16:40:50 +020036static MemoryRegion *framebuffer;
Avi Kivityce76b8a2011-12-18 16:27:48 +020037
Arun Sharma9ce94e72010-09-06 20:07:14 +010038/* Compatibility with older version */
39#if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
40static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
41{
42 return shared_page->vcpu_iodata[i].vp_eport;
43}
44static inline ioreq_t *xen_vcpu_ioreq(shared_iopage_t *shared_page, int vcpu)
45{
46 return &shared_page->vcpu_iodata[vcpu].vp_ioreq;
47}
48# define FMT_ioreq_size PRIx64
49#else
50static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
51{
52 return shared_page->vcpu_ioreq[i].vp_eport;
53}
54static inline ioreq_t *xen_vcpu_ioreq(shared_iopage_t *shared_page, int vcpu)
55{
56 return &shared_page->vcpu_ioreq[vcpu];
57}
58# define FMT_ioreq_size "u"
59#endif
60
61#define BUFFER_IO_MAX_DELAY 100
62
Anthony PERARDb4dd7802011-05-24 14:34:21 +010063typedef struct XenPhysmap {
64 target_phys_addr_t start_addr;
65 ram_addr_t size;
Avi Kivity20581d22011-12-19 12:07:50 +020066 MemoryRegion *mr;
Anthony PERARDb4dd7802011-05-24 14:34:21 +010067 target_phys_addr_t phys_offset;
68
69 QLIST_ENTRY(XenPhysmap) list;
70} XenPhysmap;
71
Arun Sharma9ce94e72010-09-06 20:07:14 +010072typedef struct XenIOState {
73 shared_iopage_t *shared_page;
74 buffered_iopage_t *buffered_io_page;
75 QEMUTimer *buffered_io_timer;
76 /* the evtchn port for polling the notification, */
77 evtchn_port_t *ioreq_local_port;
78 /* the evtchn fd for polling */
79 XenEvtchn xce_handle;
80 /* which vcpu we are serving */
81 int send_vcpu;
82
Anthony PERARD29321332010-09-06 20:07:33 +010083 struct xs_handle *xenstore;
Avi Kivity20581d22011-12-19 12:07:50 +020084 MemoryListener memory_listener;
Anthony PERARDb4dd7802011-05-24 14:34:21 +010085 QLIST_HEAD(, XenPhysmap) physmap;
Avi Kivity20581d22011-12-19 12:07:50 +020086 target_phys_addr_t free_phys_offset;
Anthony PERARDb4dd7802011-05-24 14:34:21 +010087 const XenPhysmap *log_for_dirtybit;
Anthony PERARD29321332010-09-06 20:07:33 +010088
Arun Sharma9ce94e72010-09-06 20:07:14 +010089 Notifier exit;
90} XenIOState;
91
Anthony PERARD41445302010-07-16 14:55:39 +010092/* Xen specific function for piix pci */
93
94int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
95{
96 return irq_num + ((pci_dev->devfn >> 3) << 2);
97}
98
99void xen_piix3_set_irq(void *opaque, int irq_num, int level)
100{
101 xc_hvm_set_pci_intx_level(xen_xc, xen_domid, 0, 0, irq_num >> 2,
102 irq_num & 3, level);
103}
104
105void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
106{
107 int i;
108
109 /* Scan for updates to PCI link routes (0x60-0x63). */
110 for (i = 0; i < len; i++) {
111 uint8_t v = (val >> (8 * i)) & 0xff;
112 if (v & 0x80) {
113 v = 0;
114 }
115 v &= 0xf;
116 if (((address + i) >= 0x60) && ((address + i) <= 0x63)) {
117 xc_hvm_set_pci_link_route(xen_xc, xen_domid, address + i - 0x60, v);
118 }
119 }
120}
121
Anthony PERARDc9622472010-10-05 16:40:22 +0100122void xen_cmos_set_s3_resume(void *opaque, int irq, int level)
123{
124 pc_cmos_set_s3_resume(opaque, irq, level);
125 if (level) {
126 xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 3);
127 }
128}
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
Avi Kivityce76b8a2011-12-18 16:27:48 +0200193 if (mr == &ram_memory) {
194 return;
195 }
196
Jun Nakajima432d2682010-08-31 16:41:25 +0100197 trace_xen_ram_alloc(ram_addr, size);
198
199 nr_pfn = size >> TARGET_PAGE_BITS;
Anthony Liguori7267c092011-08-20 22:09:37 -0500200 pfn_list = g_malloc(sizeof (*pfn_list) * nr_pfn);
Jun Nakajima432d2682010-08-31 16:41:25 +0100201
202 for (i = 0; i < nr_pfn; i++) {
203 pfn_list[i] = (ram_addr >> TARGET_PAGE_BITS) + i;
204 }
205
206 if (xc_domain_populate_physmap_exact(xen_xc, xen_domid, nr_pfn, 0, 0, pfn_list)) {
Anthony PERARDf15fbc42011-07-20 08:17:42 +0000207 hw_error("xen: failed to populate ram at " RAM_ADDR_FMT, ram_addr);
Jun Nakajima432d2682010-08-31 16:41:25 +0100208 }
209
Anthony Liguori7267c092011-08-20 22:09:37 -0500210 g_free(pfn_list);
Jun Nakajima432d2682010-08-31 16:41:25 +0100211}
212
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100213static XenPhysmap *get_physmapping(XenIOState *state,
214 target_phys_addr_t start_addr, ram_addr_t size)
215{
216 XenPhysmap *physmap = NULL;
217
218 start_addr &= TARGET_PAGE_MASK;
219
220 QLIST_FOREACH(physmap, &state->physmap, list) {
221 if (range_covers_byte(physmap->start_addr, physmap->size, start_addr)) {
222 return physmap;
223 }
224 }
225 return NULL;
226}
227
228#if CONFIG_XEN_CTRL_INTERFACE_VERSION >= 340
229static int xen_add_to_physmap(XenIOState *state,
230 target_phys_addr_t start_addr,
231 ram_addr_t size,
Avi Kivity20581d22011-12-19 12:07:50 +0200232 MemoryRegion *mr,
233 target_phys_addr_t offset_within_region)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100234{
235 unsigned long i = 0;
236 int rc = 0;
237 XenPhysmap *physmap = NULL;
238 target_phys_addr_t pfn, start_gpfn;
Avi Kivity20581d22011-12-19 12:07:50 +0200239 target_phys_addr_t phys_offset = memory_region_get_ram_addr(mr);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100240
241 if (get_physmapping(state, start_addr, size)) {
242 return 0;
243 }
244 if (size <= 0) {
245 return -1;
246 }
247
Stefano Stabelliniebed8502011-06-15 17:29:27 +0100248 /* Xen can only handle a single dirty log region for now and we want
249 * the linear framebuffer to be that region.
250 * Avoid tracking any regions that is not videoram and avoid tracking
251 * the legacy vga region. */
Avi Kivity20581d22011-12-19 12:07:50 +0200252 if (mr == framebuffer && start_addr > 0xbffff) {
253 goto go_physmap;
Stefano Stabelliniebed8502011-06-15 17:29:27 +0100254 }
255 return -1;
256
257go_physmap:
Avi Kivity20581d22011-12-19 12:07:50 +0200258 DPRINTF("mapping vram to %llx - %llx\n", start_addr, start_addr + size);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100259
260 pfn = phys_offset >> TARGET_PAGE_BITS;
261 start_gpfn = start_addr >> TARGET_PAGE_BITS;
262 for (i = 0; i < size >> TARGET_PAGE_BITS; i++) {
263 unsigned long idx = pfn + i;
264 xen_pfn_t gpfn = start_gpfn + i;
265
266 rc = xc_domain_add_to_physmap(xen_xc, xen_domid, XENMAPSPACE_gmfn, idx, gpfn);
267 if (rc) {
268 DPRINTF("add_to_physmap MFN %"PRI_xen_pfn" to PFN %"
269 PRI_xen_pfn" failed: %d\n", idx, gpfn, rc);
270 return -rc;
271 }
272 }
273
Anthony Liguori7267c092011-08-20 22:09:37 -0500274 physmap = g_malloc(sizeof (XenPhysmap));
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100275
276 physmap->start_addr = start_addr;
277 physmap->size = size;
278 physmap->phys_offset = phys_offset;
279
280 QLIST_INSERT_HEAD(&state->physmap, physmap, list);
281
282 xc_domain_pin_memory_cacheattr(xen_xc, xen_domid,
283 start_addr >> TARGET_PAGE_BITS,
284 (start_addr + size) >> TARGET_PAGE_BITS,
285 XEN_DOMCTL_MEM_CACHEATTR_WB);
286 return 0;
287}
288
289static int xen_remove_from_physmap(XenIOState *state,
290 target_phys_addr_t start_addr,
291 ram_addr_t size)
292{
293 unsigned long i = 0;
294 int rc = 0;
295 XenPhysmap *physmap = NULL;
296 target_phys_addr_t phys_offset = 0;
297
298 physmap = get_physmapping(state, start_addr, size);
299 if (physmap == NULL) {
300 return -1;
301 }
302
303 phys_offset = physmap->phys_offset;
304 size = physmap->size;
305
306 DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
307 phys_offset, phys_offset + size, start_addr);
308
309 size >>= TARGET_PAGE_BITS;
310 start_addr >>= TARGET_PAGE_BITS;
311 phys_offset >>= TARGET_PAGE_BITS;
312 for (i = 0; i < size; i++) {
313 unsigned long idx = start_addr + i;
314 xen_pfn_t gpfn = phys_offset + i;
315
316 rc = xc_domain_add_to_physmap(xen_xc, xen_domid, XENMAPSPACE_gmfn, idx, gpfn);
317 if (rc) {
318 fprintf(stderr, "add_to_physmap MFN %"PRI_xen_pfn" to PFN %"
319 PRI_xen_pfn" failed: %d\n", idx, gpfn, rc);
320 return -rc;
321 }
322 }
323
324 QLIST_REMOVE(physmap, list);
325 if (state->log_for_dirtybit == physmap) {
326 state->log_for_dirtybit = NULL;
327 }
328 free(physmap);
329
330 return 0;
331}
332
333#else
334static int xen_add_to_physmap(XenIOState *state,
335 target_phys_addr_t start_addr,
336 ram_addr_t size,
Avi Kivity20581d22011-12-19 12:07:50 +0200337 MemoryRegion *mr,
338 target_phys_addr_t offset_within_region)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100339{
340 return -ENOSYS;
341}
342
343static int xen_remove_from_physmap(XenIOState *state,
344 target_phys_addr_t start_addr,
345 ram_addr_t size)
346{
347 return -ENOSYS;
348}
349#endif
350
Avi Kivity20581d22011-12-19 12:07:50 +0200351static void xen_set_memory(struct MemoryListener *listener,
352 MemoryRegionSection *section,
353 bool add)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100354{
Avi Kivity20581d22011-12-19 12:07:50 +0200355 XenIOState *state = container_of(listener, XenIOState, memory_listener);
356 target_phys_addr_t start_addr = section->offset_within_address_space;
357 ram_addr_t size = section->size;
358 bool log_dirty = memory_region_is_logging(section->mr);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100359 hvmmem_type_t mem_type;
360
Avi Kivity20581d22011-12-19 12:07:50 +0200361 if (!memory_region_is_ram(section->mr)) {
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100362 return;
363 }
364
Avi Kivity20581d22011-12-19 12:07:50 +0200365 if (!(section->mr != &ram_memory
366 && ( (log_dirty && add) || (!log_dirty && !add)))) {
367 return;
368 }
369
370 trace_xen_client_set_memory(start_addr, size, log_dirty);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100371
372 start_addr &= TARGET_PAGE_MASK;
373 size = TARGET_PAGE_ALIGN(size);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100374
Avi Kivity20581d22011-12-19 12:07:50 +0200375 if (add) {
376 if (!memory_region_is_rom(section->mr)) {
377 xen_add_to_physmap(state, start_addr, size,
378 section->mr, section->offset_within_region);
379 } else {
380 mem_type = HVMMEM_ram_ro;
381 if (xc_hvm_set_mem_type(xen_xc, xen_domid, mem_type,
382 start_addr >> TARGET_PAGE_BITS,
383 size >> TARGET_PAGE_BITS)) {
384 DPRINTF("xc_hvm_set_mem_type error, addr: "TARGET_FMT_plx"\n",
385 start_addr);
386 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100387 }
Avi Kivity20581d22011-12-19 12:07:50 +0200388 } else {
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100389 if (xen_remove_from_physmap(state, start_addr, size) < 0) {
390 DPRINTF("physmapping does not exist at "TARGET_FMT_plx"\n", start_addr);
391 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100392 }
393}
394
Avi Kivity20581d22011-12-19 12:07:50 +0200395static void xen_region_add(MemoryListener *listener,
396 MemoryRegionSection *section)
397{
398 xen_set_memory(listener, section, true);
399}
400
401static void xen_region_del(MemoryListener *listener,
402 MemoryRegionSection *section)
403{
404 xen_set_memory(listener, section, false);
405}
406
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100407static int xen_sync_dirty_bitmap(XenIOState *state,
408 target_phys_addr_t start_addr,
409 ram_addr_t size)
410{
411 target_phys_addr_t npages = size >> TARGET_PAGE_BITS;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100412 const int width = sizeof(unsigned long) * 8;
413 unsigned long bitmap[(npages + width - 1) / width];
414 int rc, i, j;
415 const XenPhysmap *physmap = NULL;
416
417 physmap = get_physmapping(state, start_addr, size);
418 if (physmap == NULL) {
419 /* not handled */
420 return -1;
421 }
422
423 if (state->log_for_dirtybit == NULL) {
424 state->log_for_dirtybit = physmap;
425 } else if (state->log_for_dirtybit != physmap) {
426 return -1;
427 }
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100428
429 rc = xc_hvm_track_dirty_vram(xen_xc, xen_domid,
430 start_addr >> TARGET_PAGE_BITS, npages,
431 bitmap);
432 if (rc) {
433 return rc;
434 }
435
436 for (i = 0; i < ARRAY_SIZE(bitmap); i++) {
437 unsigned long map = bitmap[i];
438 while (map != 0) {
439 j = ffsl(map) - 1;
440 map &= ~(1ul << j);
Avi Kivity5a970652011-12-21 14:21:27 +0200441 memory_region_set_dirty(framebuffer,
442 (i * width + j) * TARGET_PAGE_SIZE);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100443 };
444 }
445
446 return 0;
447}
448
Avi Kivity20581d22011-12-19 12:07:50 +0200449static void xen_log_start(MemoryListener *listener,
450 MemoryRegionSection *section)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100451{
Avi Kivity20581d22011-12-19 12:07:50 +0200452 XenIOState *state = container_of(listener, XenIOState, memory_listener);
453 int r;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100454
Avi Kivity20581d22011-12-19 12:07:50 +0200455 r = xen_sync_dirty_bitmap(state, section->offset_within_address_space,
456 section->size);
457 assert(r >= 0);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100458}
459
Avi Kivity20581d22011-12-19 12:07:50 +0200460static void xen_log_stop(MemoryListener *listener, MemoryRegionSection *section)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100461{
Avi Kivity20581d22011-12-19 12:07:50 +0200462 XenIOState *state = container_of(listener, XenIOState, memory_listener);
463 int r;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100464
465 state->log_for_dirtybit = NULL;
466 /* Disable dirty bit tracking */
Avi Kivity20581d22011-12-19 12:07:50 +0200467 r = xc_hvm_track_dirty_vram(xen_xc, xen_domid, 0, 0, NULL);
468 assert(r >= 0);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100469}
470
Avi Kivity20581d22011-12-19 12:07:50 +0200471static void xen_log_sync(MemoryListener *listener, MemoryRegionSection *section)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100472{
Avi Kivity20581d22011-12-19 12:07:50 +0200473 XenIOState *state = container_of(listener, XenIOState, memory_listener);
474 int r;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100475
Avi Kivity20581d22011-12-19 12:07:50 +0200476 r = xen_sync_dirty_bitmap(state, section->offset_within_address_space,
477 section->size);
478 assert(r >= 0);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100479}
480
Avi Kivity20581d22011-12-19 12:07:50 +0200481static void xen_log_global_start(MemoryListener *listener)
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100482{
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100483}
484
Avi Kivity20581d22011-12-19 12:07:50 +0200485static void xen_log_global_stop(MemoryListener *listener)
486{
487}
488
489static MemoryListener xen_memory_listener = {
490 .region_add = xen_region_add,
491 .region_del = xen_region_del,
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100492 .log_start = xen_log_start,
493 .log_stop = xen_log_stop,
Avi Kivity20581d22011-12-19 12:07:50 +0200494 .log_sync = xen_log_sync,
495 .log_global_start = xen_log_global_start,
496 .log_global_stop = xen_log_global_stop,
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100497};
Jun Nakajima432d2682010-08-31 16:41:25 +0100498
Anthony PERARD29d3ccd2010-06-30 12:58:34 +0100499/* VCPU Operations, MMIO, IO ring ... */
500
501static void xen_reset_vcpu(void *opaque)
502{
503 CPUState *env = opaque;
504
505 env->halted = 1;
506}
507
508void xen_vcpu_init(void)
509{
510 CPUState *first_cpu;
511
512 if ((first_cpu = qemu_get_cpu(0))) {
513 qemu_register_reset(xen_reset_vcpu, first_cpu);
514 xen_reset_vcpu(first_cpu);
515 }
516}
517
Arun Sharma9ce94e72010-09-06 20:07:14 +0100518/* get the ioreq packets from share mem */
519static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
520{
521 ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
522
523 if (req->state != STATE_IOREQ_READY) {
524 DPRINTF("I/O request not ready: "
525 "%x, ptr: %x, port: %"PRIx64", "
526 "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
527 req->state, req->data_is_ptr, req->addr,
528 req->data, req->count, req->size);
529 return NULL;
530 }
531
532 xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
533
534 req->state = STATE_IOREQ_INPROCESS;
535 return req;
536}
537
538/* use poll to get the port notification */
539/* ioreq_vec--out,the */
540/* retval--the number of ioreq packet */
541static ioreq_t *cpu_get_ioreq(XenIOState *state)
542{
543 int i;
544 evtchn_port_t port;
545
546 port = xc_evtchn_pending(state->xce_handle);
547 if (port != -1) {
548 for (i = 0; i < smp_cpus; i++) {
549 if (state->ioreq_local_port[i] == port) {
550 break;
551 }
552 }
553
554 if (i == smp_cpus) {
555 hw_error("Fatal error while trying to get io event!\n");
556 }
557
558 /* unmask the wanted port again */
559 xc_evtchn_unmask(state->xce_handle, port);
560
561 /* get the io packet from shared memory */
562 state->send_vcpu = i;
563 return cpu_get_ioreq_from_shared_memory(state, i);
564 }
565
566 /* read error or read nothing */
567 return NULL;
568}
569
570static uint32_t do_inp(pio_addr_t addr, unsigned long size)
571{
572 switch (size) {
573 case 1:
574 return cpu_inb(addr);
575 case 2:
576 return cpu_inw(addr);
577 case 4:
578 return cpu_inl(addr);
579 default:
580 hw_error("inp: bad size: %04"FMT_pioaddr" %lx", addr, size);
581 }
582}
583
584static void do_outp(pio_addr_t addr,
585 unsigned long size, uint32_t val)
586{
587 switch (size) {
588 case 1:
589 return cpu_outb(addr, val);
590 case 2:
591 return cpu_outw(addr, val);
592 case 4:
593 return cpu_outl(addr, val);
594 default:
595 hw_error("outp: bad size: %04"FMT_pioaddr" %lx", addr, size);
596 }
597}
598
599static void cpu_ioreq_pio(ioreq_t *req)
600{
601 int i, sign;
602
603 sign = req->df ? -1 : 1;
604
605 if (req->dir == IOREQ_READ) {
606 if (!req->data_is_ptr) {
607 req->data = do_inp(req->addr, req->size);
608 } else {
609 uint32_t tmp;
610
611 for (i = 0; i < req->count; i++) {
612 tmp = do_inp(req->addr, req->size);
613 cpu_physical_memory_write(req->data + (sign * i * req->size),
614 (uint8_t *) &tmp, req->size);
615 }
616 }
617 } else if (req->dir == IOREQ_WRITE) {
618 if (!req->data_is_ptr) {
619 do_outp(req->addr, req->size, req->data);
620 } else {
621 for (i = 0; i < req->count; i++) {
622 uint32_t tmp = 0;
623
624 cpu_physical_memory_read(req->data + (sign * i * req->size),
625 (uint8_t*) &tmp, req->size);
626 do_outp(req->addr, req->size, tmp);
627 }
628 }
629 }
630}
631
632static void cpu_ioreq_move(ioreq_t *req)
633{
634 int i, sign;
635
636 sign = req->df ? -1 : 1;
637
638 if (!req->data_is_ptr) {
639 if (req->dir == IOREQ_READ) {
640 for (i = 0; i < req->count; i++) {
641 cpu_physical_memory_read(req->addr + (sign * i * req->size),
642 (uint8_t *) &req->data, req->size);
643 }
644 } else if (req->dir == IOREQ_WRITE) {
645 for (i = 0; i < req->count; i++) {
646 cpu_physical_memory_write(req->addr + (sign * i * req->size),
647 (uint8_t *) &req->data, req->size);
648 }
649 }
650 } else {
Stefano Stabellini2b734342011-05-20 16:57:24 +0000651 uint64_t tmp;
Arun Sharma9ce94e72010-09-06 20:07:14 +0100652
653 if (req->dir == IOREQ_READ) {
654 for (i = 0; i < req->count; i++) {
655 cpu_physical_memory_read(req->addr + (sign * i * req->size),
656 (uint8_t*) &tmp, req->size);
657 cpu_physical_memory_write(req->data + (sign * i * req->size),
658 (uint8_t*) &tmp, req->size);
659 }
660 } else if (req->dir == IOREQ_WRITE) {
661 for (i = 0; i < req->count; i++) {
662 cpu_physical_memory_read(req->data + (sign * i * req->size),
663 (uint8_t*) &tmp, req->size);
664 cpu_physical_memory_write(req->addr + (sign * i * req->size),
665 (uint8_t*) &tmp, req->size);
666 }
667 }
668 }
669}
670
671static void handle_ioreq(ioreq_t *req)
672{
673 if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
674 (req->size < sizeof (target_ulong))) {
675 req->data &= ((target_ulong) 1 << (8 * req->size)) - 1;
676 }
677
678 switch (req->type) {
679 case IOREQ_TYPE_PIO:
680 cpu_ioreq_pio(req);
681 break;
682 case IOREQ_TYPE_COPY:
683 cpu_ioreq_move(req);
684 break;
685 case IOREQ_TYPE_TIMEOFFSET:
686 break;
687 case IOREQ_TYPE_INVALIDATE:
Jan Kiszkae41d7c62011-06-21 22:59:08 +0200688 xen_invalidate_map_cache();
Arun Sharma9ce94e72010-09-06 20:07:14 +0100689 break;
690 default:
691 hw_error("Invalid ioreq type 0x%x\n", req->type);
692 }
693}
694
695static void handle_buffered_iopage(XenIOState *state)
696{
697 buf_ioreq_t *buf_req = NULL;
698 ioreq_t req;
699 int qw;
700
701 if (!state->buffered_io_page) {
702 return;
703 }
704
705 while (state->buffered_io_page->read_pointer != state->buffered_io_page->write_pointer) {
706 buf_req = &state->buffered_io_page->buf_ioreq[
707 state->buffered_io_page->read_pointer % IOREQ_BUFFER_SLOT_NUM];
708 req.size = 1UL << buf_req->size;
709 req.count = 1;
710 req.addr = buf_req->addr;
711 req.data = buf_req->data;
712 req.state = STATE_IOREQ_READY;
713 req.dir = buf_req->dir;
714 req.df = 1;
715 req.type = buf_req->type;
716 req.data_is_ptr = 0;
717 qw = (req.size == 8);
718 if (qw) {
719 buf_req = &state->buffered_io_page->buf_ioreq[
720 (state->buffered_io_page->read_pointer + 1) % IOREQ_BUFFER_SLOT_NUM];
721 req.data |= ((uint64_t)buf_req->data) << 32;
722 }
723
724 handle_ioreq(&req);
725
726 xen_mb();
727 state->buffered_io_page->read_pointer += qw ? 2 : 1;
728 }
729}
730
731static void handle_buffered_io(void *opaque)
732{
733 XenIOState *state = opaque;
734
735 handle_buffered_iopage(state);
736 qemu_mod_timer(state->buffered_io_timer,
737 BUFFER_IO_MAX_DELAY + qemu_get_clock_ms(rt_clock));
738}
739
740static void cpu_handle_ioreq(void *opaque)
741{
742 XenIOState *state = opaque;
743 ioreq_t *req = cpu_get_ioreq(state);
744
745 handle_buffered_iopage(state);
746 if (req) {
747 handle_ioreq(req);
748
749 if (req->state != STATE_IOREQ_INPROCESS) {
750 fprintf(stderr, "Badness in I/O request ... not in service?!: "
751 "%x, ptr: %x, port: %"PRIx64", "
752 "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
753 req->state, req->data_is_ptr, req->addr,
754 req->data, req->count, req->size);
755 destroy_hvm_domain();
756 return;
757 }
758
759 xen_wmb(); /* Update ioreq contents /then/ update state. */
760
761 /*
762 * We do this before we send the response so that the tools
763 * have the opportunity to pick up on the reset before the
764 * guest resumes and does a hlt with interrupts disabled which
765 * causes Xen to powerdown the domain.
766 */
Luiz Capitulino13548692011-07-29 15:36:43 -0300767 if (runstate_is_running()) {
Arun Sharma9ce94e72010-09-06 20:07:14 +0100768 if (qemu_shutdown_requested_get()) {
769 destroy_hvm_domain();
770 }
771 if (qemu_reset_requested_get()) {
Jan Kiszkae063eb12011-06-14 18:29:43 +0200772 qemu_system_reset(VMRESET_REPORT);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100773 }
774 }
775
776 req->state = STATE_IORESP_READY;
777 xc_evtchn_notify(state->xce_handle, state->ioreq_local_port[state->send_vcpu]);
778 }
779}
780
Stefano Stabellini0f517262011-06-30 18:26:29 +0100781static int store_dev_info(int domid, CharDriverState *cs, const char *string)
782{
783 struct xs_handle *xs = NULL;
784 char *path = NULL;
785 char *newpath = NULL;
786 char *pts = NULL;
787 int ret = -1;
788
789 /* Only continue if we're talking to a pty. */
790 if (strncmp(cs->filename, "pty:", 4)) {
791 return 0;
792 }
793 pts = cs->filename + 4;
794
795 /* We now have everything we need to set the xenstore entry. */
796 xs = xs_open(0);
797 if (xs == NULL) {
798 fprintf(stderr, "Could not contact XenStore\n");
799 goto out;
800 }
801
802 path = xs_get_domain_path(xs, domid);
803 if (path == NULL) {
804 fprintf(stderr, "xs_get_domain_path() error\n");
805 goto out;
806 }
807 newpath = realloc(path, (strlen(path) + strlen(string) +
808 strlen("/tty") + 1));
809 if (newpath == NULL) {
810 fprintf(stderr, "realloc error\n");
811 goto out;
812 }
813 path = newpath;
814
815 strcat(path, string);
816 strcat(path, "/tty");
817 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
818 fprintf(stderr, "xs_write for '%s' fail", string);
819 goto out;
820 }
821 ret = 0;
822
823out:
824 free(path);
825 xs_close(xs);
826
827 return ret;
828}
829
830void xenstore_store_pv_console_info(int i, CharDriverState *chr)
831{
832 if (i == 0) {
833 store_dev_info(xen_domid, chr, "/console");
834 } else {
835 char buf[32];
836 snprintf(buf, sizeof(buf), "/device/console/%d", i);
837 store_dev_info(xen_domid, chr, buf);
838 }
839}
840
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000841static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
Anthony PERARD29321332010-09-06 20:07:33 +0100842{
843 char path[50];
844
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000845 if (xs == NULL) {
846 fprintf(stderr, "xenstore connection not initialized\n");
847 exit(1);
848 }
849
Anthony PERARD29321332010-09-06 20:07:33 +0100850 snprintf(path, sizeof (path), "/local/domain/0/device-model/%u/state", xen_domid);
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000851 if (!xs_write(xs, XBT_NULL, path, state, strlen(state))) {
Anthony PERARD29321332010-09-06 20:07:33 +0100852 fprintf(stderr, "error recording dm state\n");
853 exit(1);
854 }
855}
856
Arun Sharma9ce94e72010-09-06 20:07:14 +0100857static void xen_main_loop_prepare(XenIOState *state)
858{
859 int evtchn_fd = -1;
860
861 if (state->xce_handle != XC_HANDLER_INITIAL_VALUE) {
862 evtchn_fd = xc_evtchn_fd(state->xce_handle);
863 }
864
865 state->buffered_io_timer = qemu_new_timer_ms(rt_clock, handle_buffered_io,
866 state);
867 qemu_mod_timer(state->buffered_io_timer, qemu_get_clock_ms(rt_clock));
868
869 if (evtchn_fd != -1) {
870 qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
871 }
872}
873
874
Anthony PERARD3285cf42010-08-19 12:27:56 +0100875/* Initialise Xen */
876
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300877static void xen_change_state_handler(void *opaque, int running,
878 RunState state)
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000879{
880 if (running) {
881 /* record state running */
882 xenstore_record_dm_state(xenstore, "running");
883 }
884}
885
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300886static void xen_hvm_change_state_handler(void *opaque, int running,
887 RunState rstate)
Arun Sharma9ce94e72010-09-06 20:07:14 +0100888{
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300889 XenIOState *xstate = opaque;
Arun Sharma9ce94e72010-09-06 20:07:14 +0100890 if (running) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -0300891 xen_main_loop_prepare(xstate);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100892 }
893}
894
Jan Kiszka9e8dd452011-06-20 14:06:26 +0200895static void xen_exit_notifier(Notifier *n, void *data)
Arun Sharma9ce94e72010-09-06 20:07:14 +0100896{
897 XenIOState *state = container_of(n, XenIOState, exit);
898
899 xc_evtchn_close(state->xce_handle);
Anthony PERARD29321332010-09-06 20:07:33 +0100900 xs_daemon_close(state->xenstore);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100901}
902
Anthony PERARD3285cf42010-08-19 12:27:56 +0100903int xen_init(void)
904{
905 xen_xc = xen_xc_interface_open(0, 0, 0);
906 if (xen_xc == XC_HANDLER_INITIAL_VALUE) {
907 xen_be_printf(NULL, 0, "can't open xen interface\n");
908 return -1;
909 }
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000910 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
Anthony PERARD3285cf42010-08-19 12:27:56 +0100911
912 return 0;
913}
Anthony PERARD29d3ccd2010-06-30 12:58:34 +0100914
915int xen_hvm_init(void)
916{
Arun Sharma9ce94e72010-09-06 20:07:14 +0100917 int i, rc;
918 unsigned long ioreq_pfn;
919 XenIOState *state;
920
Anthony Liguori7267c092011-08-20 22:09:37 -0500921 state = g_malloc0(sizeof (XenIOState));
Arun Sharma9ce94e72010-09-06 20:07:14 +0100922
923 state->xce_handle = xen_xc_evtchn_open(NULL, 0);
924 if (state->xce_handle == XC_HANDLER_INITIAL_VALUE) {
925 perror("xen: event channel open");
926 return -errno;
927 }
928
Anthony PERARD29321332010-09-06 20:07:33 +0100929 state->xenstore = xs_daemon_open();
930 if (state->xenstore == NULL) {
931 perror("xen: xenstore open");
932 return -errno;
933 }
934
Arun Sharma9ce94e72010-09-06 20:07:14 +0100935 state->exit.notify = xen_exit_notifier;
936 qemu_add_exit_notifier(&state->exit);
937
938 xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_IOREQ_PFN, &ioreq_pfn);
939 DPRINTF("shared page at pfn %lx\n", ioreq_pfn);
940 state->shared_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
941 PROT_READ|PROT_WRITE, ioreq_pfn);
942 if (state->shared_page == NULL) {
943 hw_error("map shared IO page returned error %d handle=" XC_INTERFACE_FMT,
944 errno, xen_xc);
945 }
946
947 xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_BUFIOREQ_PFN, &ioreq_pfn);
948 DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn);
949 state->buffered_io_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
950 PROT_READ|PROT_WRITE, ioreq_pfn);
951 if (state->buffered_io_page == NULL) {
952 hw_error("map buffered IO page returned error %d", errno);
953 }
954
Anthony Liguori7267c092011-08-20 22:09:37 -0500955 state->ioreq_local_port = g_malloc0(smp_cpus * sizeof (evtchn_port_t));
Arun Sharma9ce94e72010-09-06 20:07:14 +0100956
957 /* FIXME: how about if we overflow the page here? */
958 for (i = 0; i < smp_cpus; i++) {
959 rc = xc_evtchn_bind_interdomain(state->xce_handle, xen_domid,
960 xen_vcpu_eport(state->shared_page, i));
961 if (rc == -1) {
962 fprintf(stderr, "bind interdomain ioctl error %d\n", errno);
963 return -1;
964 }
965 state->ioreq_local_port[i] = rc;
966 }
967
Jun Nakajima432d2682010-08-31 16:41:25 +0100968 /* Init RAM management */
Jan Kiszkae41d7c62011-06-21 22:59:08 +0200969 xen_map_cache_init();
Jun Nakajima432d2682010-08-31 16:41:25 +0100970 xen_ram_init(ram_size);
971
Anthony PERARDfb4bb2b2011-07-15 00:33:42 +0000972 qemu_add_vm_change_state_handler(xen_hvm_change_state_handler, state);
Arun Sharma9ce94e72010-09-06 20:07:14 +0100973
Avi Kivity20581d22011-12-19 12:07:50 +0200974 state->memory_listener = xen_memory_listener;
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100975 QLIST_INIT(&state->physmap);
Avi Kivity20581d22011-12-19 12:07:50 +0200976 memory_listener_register(&state->memory_listener);
Anthony PERARDb4dd7802011-05-24 14:34:21 +0100977 state->log_for_dirtybit = NULL;
978
Stefano Stabelliniad35a7d2011-06-24 15:54:48 +0100979 /* Initialize backend core & drivers */
980 if (xen_be_init() != 0) {
981 fprintf(stderr, "%s: xen backend core setup failed\n", __FUNCTION__);
982 exit(1);
983 }
984 xen_be_register("console", &xen_console_ops);
Stefano Stabellini37cdfcf2011-06-24 17:36:11 +0100985 xen_be_register("vkbd", &xen_kbdmouse_ops);
Stefano Stabelliniad35a7d2011-06-24 15:54:48 +0100986 xen_be_register("qdisk", &xen_blkdev_ops);
987
Anthony PERARD29d3ccd2010-06-30 12:58:34 +0100988 return 0;
989}
Arun Sharma9ce94e72010-09-06 20:07:14 +0100990
991void destroy_hvm_domain(void)
992{
993 XenXC xc_handle;
994 int sts;
995
996 xc_handle = xen_xc_interface_open(0, 0, 0);
997 if (xc_handle == XC_HANDLER_INITIAL_VALUE) {
998 fprintf(stderr, "Cannot acquire xenctrl handle\n");
999 } else {
1000 sts = xc_domain_shutdown(xc_handle, xen_domid, SHUTDOWN_poweroff);
1001 if (sts != 0) {
1002 fprintf(stderr, "? xc_domain_shutdown failed to issue poweroff, "
1003 "sts %d, %s\n", sts, strerror(errno));
1004 } else {
1005 fprintf(stderr, "Issued domain %d poweroff\n", xen_domid);
1006 }
1007 xc_interface_close(xc_handle);
1008 }
1009}
Avi Kivityc65adf92011-12-18 16:40:50 +02001010
1011void xen_register_framebuffer(MemoryRegion *mr)
1012{
1013 framebuffer = mr;
1014}