2 * Copyright (C) 2010 Citrix 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.
13 #include "hw/xen_common.h"
14 #include "hw/xen_backend.h"
17 #include "xen-mapcache.h"
20 #include <xen/hvm/ioreq.h>
21 #include <xen/hvm/params.h>
26 #define DPRINTF(fmt, ...) \
27 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
29 #define DPRINTF(fmt, ...) \
33 /* Compatibility with older version */
34 #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
35 static inline uint32_t xen_vcpu_eport(shared_iopage_t
*shared_page
, int i
)
37 return shared_page
->vcpu_iodata
[i
].vp_eport
;
39 static inline ioreq_t
*xen_vcpu_ioreq(shared_iopage_t
*shared_page
, int vcpu
)
41 return &shared_page
->vcpu_iodata
[vcpu
].vp_ioreq
;
43 # define FMT_ioreq_size PRIx64
45 static inline uint32_t xen_vcpu_eport(shared_iopage_t
*shared_page
, int i
)
47 return shared_page
->vcpu_ioreq
[i
].vp_eport
;
49 static inline ioreq_t
*xen_vcpu_ioreq(shared_iopage_t
*shared_page
, int vcpu
)
51 return &shared_page
->vcpu_ioreq
[vcpu
];
53 # define FMT_ioreq_size "u"
56 #define BUFFER_IO_MAX_DELAY 100
58 typedef struct XenPhysmap
{
59 target_phys_addr_t start_addr
;
61 target_phys_addr_t phys_offset
;
63 QLIST_ENTRY(XenPhysmap
) list
;
66 typedef struct XenIOState
{
67 shared_iopage_t
*shared_page
;
68 buffered_iopage_t
*buffered_io_page
;
69 QEMUTimer
*buffered_io_timer
;
70 /* the evtchn port for polling the notification, */
71 evtchn_port_t
*ioreq_local_port
;
72 /* the evtchn fd for polling */
74 /* which vcpu we are serving */
77 struct xs_handle
*xenstore
;
78 CPUPhysMemoryClient client
;
79 QLIST_HEAD(, XenPhysmap
) physmap
;
80 const XenPhysmap
*log_for_dirtybit
;
85 /* Xen specific function for piix pci */
87 int xen_pci_slot_get_pirq(PCIDevice
*pci_dev
, int irq_num
)
89 return irq_num
+ ((pci_dev
->devfn
>> 3) << 2);
92 void xen_piix3_set_irq(void *opaque
, int irq_num
, int level
)
94 xc_hvm_set_pci_intx_level(xen_xc
, xen_domid
, 0, 0, irq_num
>> 2,
98 void xen_piix_pci_write_config_client(uint32_t address
, uint32_t val
, int len
)
102 /* Scan for updates to PCI link routes (0x60-0x63). */
103 for (i
= 0; i
< len
; i
++) {
104 uint8_t v
= (val
>> (8 * i
)) & 0xff;
109 if (((address
+ i
) >= 0x60) && ((address
+ i
) <= 0x63)) {
110 xc_hvm_set_pci_link_route(xen_xc
, xen_domid
, address
+ i
- 0x60, v
);
115 void xen_cmos_set_s3_resume(void *opaque
, int irq
, int level
)
117 pc_cmos_set_s3_resume(opaque
, irq
, level
);
119 xc_set_hvm_param(xen_xc
, xen_domid
, HVM_PARAM_ACPI_S_STATE
, 3);
123 /* Xen Interrupt Controller */
125 static void xen_set_irq(void *opaque
, int irq
, int level
)
127 xc_hvm_set_isa_irq_level(xen_xc
, xen_domid
, irq
, level
);
130 qemu_irq
*xen_interrupt_controller_init(void)
132 return qemu_allocate_irqs(xen_set_irq
, NULL
, 16);
137 static void xen_ram_init(ram_addr_t ram_size
)
140 ram_addr_t below_4g_mem_size
, above_4g_mem_size
= 0;
142 new_block
= qemu_mallocz(sizeof (*new_block
));
143 pstrcpy(new_block
->idstr
, sizeof (new_block
->idstr
), "xen.ram");
144 new_block
->host
= NULL
;
145 new_block
->offset
= 0;
146 new_block
->length
= ram_size
;
148 QLIST_INSERT_HEAD(&ram_list
.blocks
, new_block
, next
);
150 ram_list
.phys_dirty
= qemu_realloc(ram_list
.phys_dirty
,
151 new_block
->length
>> TARGET_PAGE_BITS
);
152 memset(ram_list
.phys_dirty
+ (new_block
->offset
>> TARGET_PAGE_BITS
),
153 0xff, new_block
->length
>> TARGET_PAGE_BITS
);
155 if (ram_size
>= 0xe0000000 ) {
156 above_4g_mem_size
= ram_size
- 0xe0000000;
157 below_4g_mem_size
= 0xe0000000;
159 below_4g_mem_size
= ram_size
;
162 cpu_register_physical_memory(0, below_4g_mem_size
, new_block
->offset
);
163 #if TARGET_PHYS_ADDR_BITS > 32
164 if (above_4g_mem_size
> 0) {
165 cpu_register_physical_memory(0x100000000ULL
, above_4g_mem_size
,
166 new_block
->offset
+ below_4g_mem_size
);
171 void xen_ram_alloc(ram_addr_t ram_addr
, ram_addr_t size
)
173 unsigned long nr_pfn
;
177 trace_xen_ram_alloc(ram_addr
, size
);
179 nr_pfn
= size
>> TARGET_PAGE_BITS
;
180 pfn_list
= qemu_malloc(sizeof (*pfn_list
) * nr_pfn
);
182 for (i
= 0; i
< nr_pfn
; i
++) {
183 pfn_list
[i
] = (ram_addr
>> TARGET_PAGE_BITS
) + i
;
186 if (xc_domain_populate_physmap_exact(xen_xc
, xen_domid
, nr_pfn
, 0, 0, pfn_list
)) {
187 hw_error("xen: failed to populate ram at %lx", ram_addr
);
193 static XenPhysmap
*get_physmapping(XenIOState
*state
,
194 target_phys_addr_t start_addr
, ram_addr_t size
)
196 XenPhysmap
*physmap
= NULL
;
198 start_addr
&= TARGET_PAGE_MASK
;
200 QLIST_FOREACH(physmap
, &state
->physmap
, list
) {
201 if (range_covers_byte(physmap
->start_addr
, physmap
->size
, start_addr
)) {
208 #if CONFIG_XEN_CTRL_INTERFACE_VERSION >= 340
209 static int xen_add_to_physmap(XenIOState
*state
,
210 target_phys_addr_t start_addr
,
212 target_phys_addr_t phys_offset
)
216 XenPhysmap
*physmap
= NULL
;
217 target_phys_addr_t pfn
, start_gpfn
;
220 if (get_physmapping(state
, start_addr
, size
)) {
227 /* Xen can only handle a single dirty log region for now and we want
228 * the linear framebuffer to be that region.
229 * Avoid tracking any regions that is not videoram and avoid tracking
230 * the legacy vga region. */
231 QLIST_FOREACH(block
, &ram_list
.blocks
, next
) {
232 if (!strcmp(block
->idstr
, "vga.vram") && block
->offset
== phys_offset
233 && start_addr
> 0xbffff) {
240 DPRINTF("mapping vram to %llx - %llx, from %llx\n",
241 start_addr
, start_addr
+ size
, phys_offset
);
243 pfn
= phys_offset
>> TARGET_PAGE_BITS
;
244 start_gpfn
= start_addr
>> TARGET_PAGE_BITS
;
245 for (i
= 0; i
< size
>> TARGET_PAGE_BITS
; i
++) {
246 unsigned long idx
= pfn
+ i
;
247 xen_pfn_t gpfn
= start_gpfn
+ i
;
249 rc
= xc_domain_add_to_physmap(xen_xc
, xen_domid
, XENMAPSPACE_gmfn
, idx
, gpfn
);
251 DPRINTF("add_to_physmap MFN %"PRI_xen_pfn
" to PFN %"
252 PRI_xen_pfn
" failed: %d\n", idx
, gpfn
, rc
);
257 physmap
= qemu_malloc(sizeof (XenPhysmap
));
259 physmap
->start_addr
= start_addr
;
260 physmap
->size
= size
;
261 physmap
->phys_offset
= phys_offset
;
263 QLIST_INSERT_HEAD(&state
->physmap
, physmap
, list
);
265 xc_domain_pin_memory_cacheattr(xen_xc
, xen_domid
,
266 start_addr
>> TARGET_PAGE_BITS
,
267 (start_addr
+ size
) >> TARGET_PAGE_BITS
,
268 XEN_DOMCTL_MEM_CACHEATTR_WB
);
272 static int xen_remove_from_physmap(XenIOState
*state
,
273 target_phys_addr_t start_addr
,
278 XenPhysmap
*physmap
= NULL
;
279 target_phys_addr_t phys_offset
= 0;
281 physmap
= get_physmapping(state
, start_addr
, size
);
282 if (physmap
== NULL
) {
286 phys_offset
= physmap
->phys_offset
;
287 size
= physmap
->size
;
289 DPRINTF("unmapping vram to %llx - %llx, from %llx\n",
290 phys_offset
, phys_offset
+ size
, start_addr
);
292 size
>>= TARGET_PAGE_BITS
;
293 start_addr
>>= TARGET_PAGE_BITS
;
294 phys_offset
>>= TARGET_PAGE_BITS
;
295 for (i
= 0; i
< size
; i
++) {
296 unsigned long idx
= start_addr
+ i
;
297 xen_pfn_t gpfn
= phys_offset
+ i
;
299 rc
= xc_domain_add_to_physmap(xen_xc
, xen_domid
, XENMAPSPACE_gmfn
, idx
, gpfn
);
301 fprintf(stderr
, "add_to_physmap MFN %"PRI_xen_pfn
" to PFN %"
302 PRI_xen_pfn
" failed: %d\n", idx
, gpfn
, rc
);
307 QLIST_REMOVE(physmap
, list
);
308 if (state
->log_for_dirtybit
== physmap
) {
309 state
->log_for_dirtybit
= NULL
;
317 static int xen_add_to_physmap(XenIOState
*state
,
318 target_phys_addr_t start_addr
,
320 target_phys_addr_t phys_offset
)
325 static int xen_remove_from_physmap(XenIOState
*state
,
326 target_phys_addr_t start_addr
,
333 static void xen_client_set_memory(struct CPUPhysMemoryClient
*client
,
334 target_phys_addr_t start_addr
,
336 ram_addr_t phys_offset
,
339 XenIOState
*state
= container_of(client
, XenIOState
, client
);
340 ram_addr_t flags
= phys_offset
& ~TARGET_PAGE_MASK
;
341 hvmmem_type_t mem_type
;
343 if (!(start_addr
!= phys_offset
344 && ( (log_dirty
&& flags
< IO_MEM_UNASSIGNED
)
345 || (!log_dirty
&& flags
== IO_MEM_UNASSIGNED
)))) {
349 trace_xen_client_set_memory(start_addr
, size
, phys_offset
, log_dirty
);
351 start_addr
&= TARGET_PAGE_MASK
;
352 size
= TARGET_PAGE_ALIGN(size
);
353 phys_offset
&= TARGET_PAGE_MASK
;
357 xen_add_to_physmap(state
, start_addr
, size
, phys_offset
);
360 mem_type
= HVMMEM_ram_ro
;
361 if (xc_hvm_set_mem_type(xen_xc
, xen_domid
, mem_type
,
362 start_addr
>> TARGET_PAGE_BITS
,
363 size
>> TARGET_PAGE_BITS
)) {
364 DPRINTF("xc_hvm_set_mem_type error, addr: "TARGET_FMT_plx
"\n",
368 case IO_MEM_UNASSIGNED
:
369 if (xen_remove_from_physmap(state
, start_addr
, size
) < 0) {
370 DPRINTF("physmapping does not exist at "TARGET_FMT_plx
"\n", start_addr
);
376 static int xen_sync_dirty_bitmap(XenIOState
*state
,
377 target_phys_addr_t start_addr
,
380 target_phys_addr_t npages
= size
>> TARGET_PAGE_BITS
;
381 target_phys_addr_t vram_offset
= 0;
382 const int width
= sizeof(unsigned long) * 8;
383 unsigned long bitmap
[(npages
+ width
- 1) / width
];
385 const XenPhysmap
*physmap
= NULL
;
387 physmap
= get_physmapping(state
, start_addr
, size
);
388 if (physmap
== NULL
) {
393 if (state
->log_for_dirtybit
== NULL
) {
394 state
->log_for_dirtybit
= physmap
;
395 } else if (state
->log_for_dirtybit
!= physmap
) {
398 vram_offset
= physmap
->phys_offset
;
400 rc
= xc_hvm_track_dirty_vram(xen_xc
, xen_domid
,
401 start_addr
>> TARGET_PAGE_BITS
, npages
,
407 for (i
= 0; i
< ARRAY_SIZE(bitmap
); i
++) {
408 unsigned long map
= bitmap
[i
];
412 cpu_physical_memory_set_dirty(vram_offset
+ (i
* width
+ j
) * TARGET_PAGE_SIZE
);
419 static int xen_log_start(CPUPhysMemoryClient
*client
, target_phys_addr_t phys_addr
, ram_addr_t size
)
421 XenIOState
*state
= container_of(client
, XenIOState
, client
);
423 return xen_sync_dirty_bitmap(state
, phys_addr
, size
);
426 static int xen_log_stop(CPUPhysMemoryClient
*client
, target_phys_addr_t phys_addr
, ram_addr_t size
)
428 XenIOState
*state
= container_of(client
, XenIOState
, client
);
430 state
->log_for_dirtybit
= NULL
;
431 /* Disable dirty bit tracking */
432 return xc_hvm_track_dirty_vram(xen_xc
, xen_domid
, 0, 0, NULL
);
435 static int xen_client_sync_dirty_bitmap(struct CPUPhysMemoryClient
*client
,
436 target_phys_addr_t start_addr
,
437 target_phys_addr_t end_addr
)
439 XenIOState
*state
= container_of(client
, XenIOState
, client
);
441 return xen_sync_dirty_bitmap(state
, start_addr
, end_addr
- start_addr
);
444 static int xen_client_migration_log(struct CPUPhysMemoryClient
*client
,
450 static CPUPhysMemoryClient xen_cpu_phys_memory_client
= {
451 .set_memory
= xen_client_set_memory
,
452 .sync_dirty_bitmap
= xen_client_sync_dirty_bitmap
,
453 .migration_log
= xen_client_migration_log
,
454 .log_start
= xen_log_start
,
455 .log_stop
= xen_log_stop
,
458 /* VCPU Operations, MMIO, IO ring ... */
460 static void xen_reset_vcpu(void *opaque
)
462 CPUState
*env
= opaque
;
467 void xen_vcpu_init(void)
471 if ((first_cpu
= qemu_get_cpu(0))) {
472 qemu_register_reset(xen_reset_vcpu
, first_cpu
);
473 xen_reset_vcpu(first_cpu
);
477 /* get the ioreq packets from share mem */
478 static ioreq_t
*cpu_get_ioreq_from_shared_memory(XenIOState
*state
, int vcpu
)
480 ioreq_t
*req
= xen_vcpu_ioreq(state
->shared_page
, vcpu
);
482 if (req
->state
!= STATE_IOREQ_READY
) {
483 DPRINTF("I/O request not ready: "
484 "%x, ptr: %x, port: %"PRIx64
", "
485 "data: %"PRIx64
", count: %" FMT_ioreq_size
", size: %" FMT_ioreq_size
"\n",
486 req
->state
, req
->data_is_ptr
, req
->addr
,
487 req
->data
, req
->count
, req
->size
);
491 xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
493 req
->state
= STATE_IOREQ_INPROCESS
;
497 /* use poll to get the port notification */
498 /* ioreq_vec--out,the */
499 /* retval--the number of ioreq packet */
500 static ioreq_t
*cpu_get_ioreq(XenIOState
*state
)
505 port
= xc_evtchn_pending(state
->xce_handle
);
507 for (i
= 0; i
< smp_cpus
; i
++) {
508 if (state
->ioreq_local_port
[i
] == port
) {
514 hw_error("Fatal error while trying to get io event!\n");
517 /* unmask the wanted port again */
518 xc_evtchn_unmask(state
->xce_handle
, port
);
520 /* get the io packet from shared memory */
521 state
->send_vcpu
= i
;
522 return cpu_get_ioreq_from_shared_memory(state
, i
);
525 /* read error or read nothing */
529 static uint32_t do_inp(pio_addr_t addr
, unsigned long size
)
533 return cpu_inb(addr
);
535 return cpu_inw(addr
);
537 return cpu_inl(addr
);
539 hw_error("inp: bad size: %04"FMT_pioaddr
" %lx", addr
, size
);
543 static void do_outp(pio_addr_t addr
,
544 unsigned long size
, uint32_t val
)
548 return cpu_outb(addr
, val
);
550 return cpu_outw(addr
, val
);
552 return cpu_outl(addr
, val
);
554 hw_error("outp: bad size: %04"FMT_pioaddr
" %lx", addr
, size
);
558 static void cpu_ioreq_pio(ioreq_t
*req
)
562 sign
= req
->df
? -1 : 1;
564 if (req
->dir
== IOREQ_READ
) {
565 if (!req
->data_is_ptr
) {
566 req
->data
= do_inp(req
->addr
, req
->size
);
570 for (i
= 0; i
< req
->count
; i
++) {
571 tmp
= do_inp(req
->addr
, req
->size
);
572 cpu_physical_memory_write(req
->data
+ (sign
* i
* req
->size
),
573 (uint8_t *) &tmp
, req
->size
);
576 } else if (req
->dir
== IOREQ_WRITE
) {
577 if (!req
->data_is_ptr
) {
578 do_outp(req
->addr
, req
->size
, req
->data
);
580 for (i
= 0; i
< req
->count
; i
++) {
583 cpu_physical_memory_read(req
->data
+ (sign
* i
* req
->size
),
584 (uint8_t*) &tmp
, req
->size
);
585 do_outp(req
->addr
, req
->size
, tmp
);
591 static void cpu_ioreq_move(ioreq_t
*req
)
595 sign
= req
->df
? -1 : 1;
597 if (!req
->data_is_ptr
) {
598 if (req
->dir
== IOREQ_READ
) {
599 for (i
= 0; i
< req
->count
; i
++) {
600 cpu_physical_memory_read(req
->addr
+ (sign
* i
* req
->size
),
601 (uint8_t *) &req
->data
, req
->size
);
603 } else if (req
->dir
== IOREQ_WRITE
) {
604 for (i
= 0; i
< req
->count
; i
++) {
605 cpu_physical_memory_write(req
->addr
+ (sign
* i
* req
->size
),
606 (uint8_t *) &req
->data
, req
->size
);
612 if (req
->dir
== IOREQ_READ
) {
613 for (i
= 0; i
< req
->count
; i
++) {
614 cpu_physical_memory_read(req
->addr
+ (sign
* i
* req
->size
),
615 (uint8_t*) &tmp
, req
->size
);
616 cpu_physical_memory_write(req
->data
+ (sign
* i
* req
->size
),
617 (uint8_t*) &tmp
, req
->size
);
619 } else if (req
->dir
== IOREQ_WRITE
) {
620 for (i
= 0; i
< req
->count
; i
++) {
621 cpu_physical_memory_read(req
->data
+ (sign
* i
* req
->size
),
622 (uint8_t*) &tmp
, req
->size
);
623 cpu_physical_memory_write(req
->addr
+ (sign
* i
* req
->size
),
624 (uint8_t*) &tmp
, req
->size
);
630 static void handle_ioreq(ioreq_t
*req
)
632 if (!req
->data_is_ptr
&& (req
->dir
== IOREQ_WRITE
) &&
633 (req
->size
< sizeof (target_ulong
))) {
634 req
->data
&= ((target_ulong
) 1 << (8 * req
->size
)) - 1;
641 case IOREQ_TYPE_COPY
:
644 case IOREQ_TYPE_TIMEOFFSET
:
646 case IOREQ_TYPE_INVALIDATE
:
647 qemu_invalidate_map_cache();
650 hw_error("Invalid ioreq type 0x%x\n", req
->type
);
654 static void handle_buffered_iopage(XenIOState
*state
)
656 buf_ioreq_t
*buf_req
= NULL
;
660 if (!state
->buffered_io_page
) {
664 while (state
->buffered_io_page
->read_pointer
!= state
->buffered_io_page
->write_pointer
) {
665 buf_req
= &state
->buffered_io_page
->buf_ioreq
[
666 state
->buffered_io_page
->read_pointer
% IOREQ_BUFFER_SLOT_NUM
];
667 req
.size
= 1UL << buf_req
->size
;
669 req
.addr
= buf_req
->addr
;
670 req
.data
= buf_req
->data
;
671 req
.state
= STATE_IOREQ_READY
;
672 req
.dir
= buf_req
->dir
;
674 req
.type
= buf_req
->type
;
676 qw
= (req
.size
== 8);
678 buf_req
= &state
->buffered_io_page
->buf_ioreq
[
679 (state
->buffered_io_page
->read_pointer
+ 1) % IOREQ_BUFFER_SLOT_NUM
];
680 req
.data
|= ((uint64_t)buf_req
->data
) << 32;
686 state
->buffered_io_page
->read_pointer
+= qw
? 2 : 1;
690 static void handle_buffered_io(void *opaque
)
692 XenIOState
*state
= opaque
;
694 handle_buffered_iopage(state
);
695 qemu_mod_timer(state
->buffered_io_timer
,
696 BUFFER_IO_MAX_DELAY
+ qemu_get_clock_ms(rt_clock
));
699 static void cpu_handle_ioreq(void *opaque
)
701 XenIOState
*state
= opaque
;
702 ioreq_t
*req
= cpu_get_ioreq(state
);
704 handle_buffered_iopage(state
);
708 if (req
->state
!= STATE_IOREQ_INPROCESS
) {
709 fprintf(stderr
, "Badness in I/O request ... not in service?!: "
710 "%x, ptr: %x, port: %"PRIx64
", "
711 "data: %"PRIx64
", count: %" FMT_ioreq_size
", size: %" FMT_ioreq_size
"\n",
712 req
->state
, req
->data_is_ptr
, req
->addr
,
713 req
->data
, req
->count
, req
->size
);
714 destroy_hvm_domain();
718 xen_wmb(); /* Update ioreq contents /then/ update state. */
721 * We do this before we send the response so that the tools
722 * have the opportunity to pick up on the reset before the
723 * guest resumes and does a hlt with interrupts disabled which
724 * causes Xen to powerdown the domain.
727 if (qemu_shutdown_requested_get()) {
728 destroy_hvm_domain();
730 if (qemu_reset_requested_get()) {
731 qemu_system_reset(VMRESET_REPORT
);
735 req
->state
= STATE_IORESP_READY
;
736 xc_evtchn_notify(state
->xce_handle
, state
->ioreq_local_port
[state
->send_vcpu
]);
740 static void xenstore_record_dm_state(XenIOState
*s
, const char *state
)
744 snprintf(path
, sizeof (path
), "/local/domain/0/device-model/%u/state", xen_domid
);
745 if (!xs_write(s
->xenstore
, XBT_NULL
, path
, state
, strlen(state
))) {
746 fprintf(stderr
, "error recording dm state\n");
751 static void xen_main_loop_prepare(XenIOState
*state
)
755 if (state
->xce_handle
!= XC_HANDLER_INITIAL_VALUE
) {
756 evtchn_fd
= xc_evtchn_fd(state
->xce_handle
);
759 state
->buffered_io_timer
= qemu_new_timer_ms(rt_clock
, handle_buffered_io
,
761 qemu_mod_timer(state
->buffered_io_timer
, qemu_get_clock_ms(rt_clock
));
763 if (evtchn_fd
!= -1) {
764 qemu_set_fd_handler(evtchn_fd
, cpu_handle_ioreq
, NULL
, state
);
767 /* record state running */
768 xenstore_record_dm_state(state
, "running");
774 static void xen_vm_change_state_handler(void *opaque
, int running
, int reason
)
776 XenIOState
*state
= opaque
;
778 xen_main_loop_prepare(state
);
782 static void xen_exit_notifier(Notifier
*n
)
784 XenIOState
*state
= container_of(n
, XenIOState
, exit
);
786 xc_evtchn_close(state
->xce_handle
);
787 xs_daemon_close(state
->xenstore
);
792 xen_xc
= xen_xc_interface_open(0, 0, 0);
793 if (xen_xc
== XC_HANDLER_INITIAL_VALUE
) {
794 xen_be_printf(NULL
, 0, "can't open xen interface\n");
801 int xen_hvm_init(void)
804 unsigned long ioreq_pfn
;
807 state
= qemu_mallocz(sizeof (XenIOState
));
809 state
->xce_handle
= xen_xc_evtchn_open(NULL
, 0);
810 if (state
->xce_handle
== XC_HANDLER_INITIAL_VALUE
) {
811 perror("xen: event channel open");
815 state
->xenstore
= xs_daemon_open();
816 if (state
->xenstore
== NULL
) {
817 perror("xen: xenstore open");
821 state
->exit
.notify
= xen_exit_notifier
;
822 qemu_add_exit_notifier(&state
->exit
);
824 xc_get_hvm_param(xen_xc
, xen_domid
, HVM_PARAM_IOREQ_PFN
, &ioreq_pfn
);
825 DPRINTF("shared page at pfn %lx\n", ioreq_pfn
);
826 state
->shared_page
= xc_map_foreign_range(xen_xc
, xen_domid
, XC_PAGE_SIZE
,
827 PROT_READ
|PROT_WRITE
, ioreq_pfn
);
828 if (state
->shared_page
== NULL
) {
829 hw_error("map shared IO page returned error %d handle=" XC_INTERFACE_FMT
,
833 xc_get_hvm_param(xen_xc
, xen_domid
, HVM_PARAM_BUFIOREQ_PFN
, &ioreq_pfn
);
834 DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn
);
835 state
->buffered_io_page
= xc_map_foreign_range(xen_xc
, xen_domid
, XC_PAGE_SIZE
,
836 PROT_READ
|PROT_WRITE
, ioreq_pfn
);
837 if (state
->buffered_io_page
== NULL
) {
838 hw_error("map buffered IO page returned error %d", errno
);
841 state
->ioreq_local_port
= qemu_mallocz(smp_cpus
* sizeof (evtchn_port_t
));
843 /* FIXME: how about if we overflow the page here? */
844 for (i
= 0; i
< smp_cpus
; i
++) {
845 rc
= xc_evtchn_bind_interdomain(state
->xce_handle
, xen_domid
,
846 xen_vcpu_eport(state
->shared_page
, i
));
848 fprintf(stderr
, "bind interdomain ioctl error %d\n", errno
);
851 state
->ioreq_local_port
[i
] = rc
;
854 /* Init RAM management */
855 qemu_map_cache_init();
856 xen_ram_init(ram_size
);
858 qemu_add_vm_change_state_handler(xen_vm_change_state_handler
, state
);
860 state
->client
= xen_cpu_phys_memory_client
;
861 QLIST_INIT(&state
->physmap
);
862 cpu_register_phys_memory_client(&state
->client
);
863 state
->log_for_dirtybit
= NULL
;
868 void destroy_hvm_domain(void)
873 xc_handle
= xen_xc_interface_open(0, 0, 0);
874 if (xc_handle
== XC_HANDLER_INITIAL_VALUE
) {
875 fprintf(stderr
, "Cannot acquire xenctrl handle\n");
877 sts
= xc_domain_shutdown(xc_handle
, xen_domid
, SHUTDOWN_poweroff
);
879 fprintf(stderr
, "? xc_domain_shutdown failed to issue poweroff, "
880 "sts %d, %s\n", sts
, strerror(errno
));
882 fprintf(stderr
, "Issued domain %d poweroff\n", xen_domid
);
884 xc_interface_close(xc_handle
);