| 
									
										
										
										
											2010-08-19 12:27:56 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2010       Citrix Ltd. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU GPL, version 2.  See | 
					
						
							|  |  |  |  * the COPYING file in the top-level directory. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-01-13 17:44:23 +01:00
										 |  |  |  * Contributions after 2012-01-13 are licensed under the terms of the | 
					
						
							|  |  |  |  * GNU GPL, version 2 or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2010-08-19 12:27:56 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:06 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2020-06-01 16:29:29 +02:00
										 |  |  | #include "qemu/units.h"
 | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							|  |  |  | #include "qapi/qapi-commands-migration.h"
 | 
					
						
							|  |  |  | #include "trace.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-06 20:07:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/i386/pc.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:59:09 +00:00
										 |  |  | #include "hw/i386/apic-msidef.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-08 17:55:29 +02:00
										 |  |  | #include "hw/xen/xen-x86.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/range.h"
 | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  | #include "hw/xen/xen-hvm-common.h"
 | 
					
						
							|  |  |  | #include "hw/xen/arch_hvm.h"
 | 
					
						
							| 
									
										
										
										
											2011-07-20 08:17:43 +00:00
										 |  |  | #include <xen/hvm/e820.h>
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  | #include "exec/target_page.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-06 20:07:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  | static MemoryRegion ram_640k, ram_lo, ram_hi; | 
					
						
							| 
									
										
										
										
											2011-12-18 16:40:50 +02:00
										 |  |  | static MemoryRegion *framebuffer; | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:19 +00:00
										 |  |  | static bool xen_in_migration; | 
					
						
							| 
									
										
										
										
											2011-12-18 16:27:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-06 20:07:14 +01:00
										 |  |  | /* Compatibility with older version */ | 
					
						
							| 
									
										
										
										
											2014-10-20 15:49:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 00:39:13 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This allows QEMU to build on a system that has Xen 4.5 or earlier installed. | 
					
						
							|  |  |  |  * This is here (not in hw/xen/xen_native.h) because xen/hvm/ioreq.h needs to | 
					
						
							|  |  |  |  * be included before this block and hw/xen/xen_native.h needs to be included | 
					
						
							|  |  |  |  * before xen/hvm/ioreq.h | 
					
						
							| 
									
										
										
										
											2014-10-20 15:49:12 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | #ifndef IOREQ_TYPE_VMWARE_PORT
 | 
					
						
							|  |  |  | #define IOREQ_TYPE_VMWARE_PORT  3
 | 
					
						
							|  |  |  | struct vmware_regs { | 
					
						
							|  |  |  |     uint32_t esi; | 
					
						
							|  |  |  |     uint32_t edi; | 
					
						
							|  |  |  |     uint32_t ebx; | 
					
						
							|  |  |  |     uint32_t ecx; | 
					
						
							|  |  |  |     uint32_t edx; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | typedef struct vmware_regs vmware_regs_t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct shared_vmport_iopage { | 
					
						
							|  |  |  |     struct vmware_regs vcpu_vmport_regs[1]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | typedef struct shared_vmport_iopage shared_vmport_iopage_t; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  | static shared_vmport_iopage_t *shared_vmport_page; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  | static QLIST_HEAD(, XenPhysmap) xen_physmap; | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  | static const XenPhysmap *log_for_dirtybit; | 
					
						
							|  |  |  | /* Buffer used by xen_sync_dirty_bitmap */ | 
					
						
							|  |  |  | static unsigned long *dirty_bitmap; | 
					
						
							|  |  |  | static Notifier suspend; | 
					
						
							|  |  |  | static Notifier wakeup; | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-16 14:55:39 +01:00
										 |  |  | /* Xen specific function for piix pci */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-11 17:04:23 +02:00
										 |  |  |     return irq_num + (PCI_SLOT(pci_dev->devfn) << 2); | 
					
						
							| 
									
										
										
										
											2010-07-16 14:55:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 09:41:18 +02:00
										 |  |  | void xen_intx_set_irq(void *opaque, int irq_num, int level) | 
					
						
							| 
									
										
										
										
											2010-07-16 14:55:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-07 10:55:32 +00:00
										 |  |  |     xen_set_pci_intx_level(xen_domid, 0, 0, irq_num >> 2, | 
					
						
							|  |  |  |                            irq_num & 3, level); | 
					
						
							| 
									
										
										
										
											2010-07-16 14:55:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-26 11:46:55 +02:00
										 |  |  | int xen_set_pci_link_route(uint8_t link, uint8_t irq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return xendevicemodel_set_pci_link_route(xen_dmod, xen_domid, link, irq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-13 14:59:09 +00:00
										 |  |  | int xen_is_pirq_msi(uint32_t msi_data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* If vector is 0, the msi is remapped into a pirq, passed as
 | 
					
						
							|  |  |  |      * dest_id. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     return ((msi_data & MSI_DATA_VECTOR_MASK) >> MSI_DATA_VECTOR_SHIFT) == 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-12 10:01:43 +00:00
										 |  |  | void xen_hvm_inject_msi(uint64_t addr, uint32_t data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-07 10:55:32 +00:00
										 |  |  |     xen_inject_msi(xen_domid, addr, data); | 
					
						
							| 
									
										
										
										
											2012-04-12 10:01:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 13:45:20 +01:00
										 |  |  | static void xen_suspend_notifier(Notifier *notifier, void *data) | 
					
						
							| 
									
										
										
										
											2010-10-05 16:40:22 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-23 13:45:20 +01:00
										 |  |  |     xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 3); | 
					
						
							| 
									
										
										
										
											2010-10-05 16:40:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-30 17:50:10 +01:00
										 |  |  | /* Xen Interrupt Controller */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void xen_set_irq(void *opaque, int irq, int level) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-03-07 10:55:32 +00:00
										 |  |  |     xen_set_isa_irq_level(xen_domid, irq, level); | 
					
						
							| 
									
										
										
										
											2010-06-30 17:50:10 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | qemu_irq *xen_interrupt_controller_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return qemu_allocate_irqs(xen_set_irq, NULL, 16); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | /* Memory Ops */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-17 11:42:29 -07:00
										 |  |  | static void xen_ram_init(PCMachineState *pcms, | 
					
						
							| 
									
										
										
										
											2014-06-19 21:40:24 -04:00
										 |  |  |                          ram_addr_t ram_size, MemoryRegion **ram_memory_p) | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |     X86MachineState *x86ms = X86_MACHINE(pcms); | 
					
						
							| 
									
										
										
										
											2011-12-18 16:27:48 +02:00
										 |  |  |     MemoryRegion *sysmem = get_system_memory(); | 
					
						
							|  |  |  |     ram_addr_t block_len; | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |     uint64_t user_lowmem = | 
					
						
							|  |  |  |         object_property_get_uint(qdev_get_machine(), | 
					
						
							| 
									
										
										
										
											2020-05-29 09:39:56 +02:00
										 |  |  |                                  PC_MACHINE_MAX_RAM_BELOW_4G, | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |                                  &error_abort); | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 21:00:41 +02:00
										 |  |  |     /* Handle the machine opt max-ram-below-4g.  It is basically doing
 | 
					
						
							| 
									
										
										
										
											2014-06-19 21:40:26 -04:00
										 |  |  |      * min(xen limit, user limit). | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-24 13:35:17 +02:00
										 |  |  |     if (!user_lowmem) { | 
					
						
							|  |  |  |         user_lowmem = HVM_BELOW_4G_RAM_END; /* default */ | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-06-19 21:40:26 -04:00
										 |  |  |     if (HVM_BELOW_4G_RAM_END <= user_lowmem) { | 
					
						
							|  |  |  |         user_lowmem = HVM_BELOW_4G_RAM_END; | 
					
						
							| 
									
										
										
										
											2011-07-20 08:17:43 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 21:40:26 -04:00
										 |  |  |     if (ram_size >= user_lowmem) { | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |         x86ms->above_4g_mem_size = ram_size - user_lowmem; | 
					
						
							|  |  |  |         x86ms->below_4g_mem_size = user_lowmem; | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |         x86ms->above_4g_mem_size = 0; | 
					
						
							|  |  |  |         x86ms->below_4g_mem_size = ram_size; | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |     if (!x86ms->above_4g_mem_size) { | 
					
						
							| 
									
										
										
										
											2014-06-19 21:40:26 -04:00
										 |  |  |         block_len = ram_size; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Xen does not allocate the memory continuously, it keeps a | 
					
						
							|  |  |  |          * hole of the size computed above or passed in. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2020-06-01 16:29:29 +02:00
										 |  |  |         block_len = (4 * GiB) + x86ms->above_4g_mem_size; | 
					
						
							| 
									
										
										
										
											2014-06-19 21:40:26 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-11-14 11:22:29 +01:00
										 |  |  |     memory_region_init_ram(&xen_memory, NULL, "xen.ram", block_len, | 
					
						
							| 
									
										
											  
											
												Fix bad error handling after memory_region_init_ram()
Symptom:
    $ qemu-system-x86_64 -m 10000000
    Unexpected error in ram_block_add() at /work/armbru/qemu/exec.c:1456:
    upstream-qemu: cannot set up guest memory 'pc.ram': Cannot allocate memory
    Aborted (core dumped)
Root cause: commit ef701d7 screwed up handling of out-of-memory
conditions.  Before the commit, we report the error and exit(1), in
one place, ram_block_add().  The commit lifts the error handling up
the call chain some, to three places.  Fine.  Except it uses
&error_abort in these places, changing the behavior from exit(1) to
abort(), and thus undoing the work of commit 3922825 "exec: Don't
abort when we can't allocate guest memory".
The three places are:
* memory_region_init_ram()
  Commit 4994653 (right after commit ef701d7) lifted the error
  handling further, through memory_region_init_ram(), multiplying the
  incorrect use of &error_abort.  Later on, imitation of existing
  (bad) code may have created more.
* memory_region_init_ram_ptr()
  The &error_abort is still there.
* memory_region_init_rom_device()
  Doesn't need fixing, because commit 33e0eb5 (soon after commit
  ef701d7) lifted the error handling further, and in the process
  changed it from &error_abort to passing it up the call chain.
  Correct, because the callers are realize() methods.
Fix the error handling after memory_region_init_ram() with a
Coccinelle semantic patch:
    @r@
    expression mr, owner, name, size, err;
    position p;
    @@
            memory_region_init_ram(mr, owner, name, size,
    (
    -                              &error_abort
    +                              &error_fatal
    |
                                   err@p
    )
                                  );
    @script:python@
        p << r.p;
    @@
    print "%s:%s:%s" % (p[0].file, p[0].line, p[0].column)
When the last argument is &error_abort, it gets replaced by
&error_fatal.  This is the fix.
If the last argument is anything else, its position is reported.  This
lets us check the fix is complete.  Four positions get reported:
* ram_backend_memory_alloc()
  Error is passed up the call chain, ultimately through
  user_creatable_complete().  As far as I can tell, it's callers all
  handle the error sanely.
* fsl_imx25_realize(), fsl_imx31_realize(), dp8393x_realize()
  DeviceClass.realize() methods, errors handled sanely further up the
  call chain.
We're good.  Test case again behaves:
    $ qemu-system-x86_64 -m 10000000
    qemu-system-x86_64: cannot set up guest memory 'pc.ram': Cannot allocate memory
    [Exit 1 ]
The next commits will repair the rest of commit ef701d7's damage.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <1441983105-26376-3-git-send-email-armbru@redhat.com>
Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
											
										 
											2015-09-11 16:51:43 +02:00
										 |  |  |                            &error_fatal); | 
					
						
							| 
									
										
										
										
											2023-11-14 11:22:29 +01:00
										 |  |  |     *ram_memory_p = &xen_memory; | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 05:41:28 -04:00
										 |  |  |     memory_region_init_alias(&ram_640k, NULL, "xen.ram.640k", | 
					
						
							| 
									
										
										
										
											2023-11-14 11:22:29 +01:00
										 |  |  |                              &xen_memory, 0, 0xa0000); | 
					
						
							| 
									
										
										
										
											2011-12-18 16:27:48 +02:00
										 |  |  |     memory_region_add_subregion(sysmem, 0, &ram_640k); | 
					
						
							| 
									
										
										
										
											2011-07-20 08:17:43 +00:00
										 |  |  |     /* Skip of the VGA IO memory space, it will be registered later by the VGA
 | 
					
						
							|  |  |  |      * emulated device. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The area between 0xc0000 and 0x100000 will be used by SeaBIOS to load | 
					
						
							|  |  |  |      * the Options ROM, so it is registered here as RAM. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-06-06 05:41:28 -04:00
										 |  |  |     memory_region_init_alias(&ram_lo, NULL, "xen.ram.lo", | 
					
						
							| 
									
										
										
										
											2023-11-14 11:22:29 +01:00
										 |  |  |                              &xen_memory, 0xc0000, | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |                              x86ms->below_4g_mem_size - 0xc0000); | 
					
						
							| 
									
										
										
										
											2011-12-18 16:27:48 +02:00
										 |  |  |     memory_region_add_subregion(sysmem, 0xc0000, &ram_lo); | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |     if (x86ms->above_4g_mem_size > 0) { | 
					
						
							| 
									
										
										
										
											2013-06-06 05:41:28 -04:00
										 |  |  |         memory_region_init_alias(&ram_hi, NULL, "xen.ram.hi", | 
					
						
							| 
									
										
										
										
											2023-11-14 11:22:29 +01:00
										 |  |  |                                  &xen_memory, 0x100000000ULL, | 
					
						
							| 
									
										
										
										
											2019-10-22 09:39:50 +02:00
										 |  |  |                                  x86ms->above_4g_mem_size); | 
					
						
							| 
									
										
										
										
											2011-12-18 16:27:48 +02:00
										 |  |  |         memory_region_add_subregion(sysmem, 0x100000000ULL, &ram_hi); | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:53:26 +01:00
										 |  |  | static XenPhysmap *get_physmapping(hwaddr start_addr, ram_addr_t size, | 
					
						
							|  |  |  |                                    int page_mask) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     XenPhysmap *physmap = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:53:26 +01:00
										 |  |  |     start_addr &= page_mask; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  |     QLIST_FOREACH(physmap, &xen_physmap, list) { | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |         if (range_covers_byte(physmap->start_addr, physmap->size, start_addr)) { | 
					
						
							|  |  |  |             return physmap; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:53:26 +01:00
										 |  |  | static hwaddr xen_phys_offset_to_gaddr(hwaddr phys_offset, ram_addr_t size, | 
					
						
							|  |  |  |                                        int page_mask) | 
					
						
							| 
									
										
										
										
											2012-01-18 12:21:38 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:53:26 +01:00
										 |  |  |     hwaddr addr = phys_offset & page_mask; | 
					
						
							| 
									
										
										
										
											2012-01-18 12:21:38 +00:00
										 |  |  |     XenPhysmap *physmap = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  |     QLIST_FOREACH(physmap, &xen_physmap, list) { | 
					
						
							| 
									
										
										
										
											2012-01-18 12:21:38 +00:00
										 |  |  |         if (range_covers_byte(physmap->phys_offset, physmap->size, addr)) { | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  |             return physmap->start_addr + (phys_offset - physmap->phys_offset); | 
					
						
							| 
									
										
										
										
											2012-01-18 12:21:38 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  |     return phys_offset; | 
					
						
							| 
									
										
										
										
											2012-01-18 12:21:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  | #ifdef XEN_COMPAT_PHYSMAP
 | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:00 +01:00
										 |  |  | static int xen_save_physmap(XenIOState *state, XenPhysmap *physmap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char path[80], value[17]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     snprintf(path, sizeof(path), | 
					
						
							|  |  |  |             "/local/domain/0/device-model/%d/physmap/%"PRIx64"/start_addr", | 
					
						
							|  |  |  |             xen_domid, (uint64_t)physmap->phys_offset); | 
					
						
							|  |  |  |     snprintf(value, sizeof(value), "%"PRIx64, (uint64_t)physmap->start_addr); | 
					
						
							|  |  |  |     if (!xs_write(state->xenstore, 0, path, value, strlen(value))) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     snprintf(path, sizeof(path), | 
					
						
							|  |  |  |             "/local/domain/0/device-model/%d/physmap/%"PRIx64"/size", | 
					
						
							|  |  |  |             xen_domid, (uint64_t)physmap->phys_offset); | 
					
						
							|  |  |  |     snprintf(value, sizeof(value), "%"PRIx64, (uint64_t)physmap->size); | 
					
						
							|  |  |  |     if (!xs_write(state->xenstore, 0, path, value, strlen(value))) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (physmap->name) { | 
					
						
							|  |  |  |         snprintf(path, sizeof(path), | 
					
						
							|  |  |  |                 "/local/domain/0/device-model/%d/physmap/%"PRIx64"/name", | 
					
						
							|  |  |  |                 xen_domid, (uint64_t)physmap->phys_offset); | 
					
						
							|  |  |  |         if (!xs_write(state->xenstore, 0, path, | 
					
						
							|  |  |  |                       physmap->name, strlen(physmap->name))) { | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:03 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | static int xen_save_physmap(XenIOState *state, XenPhysmap *physmap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | static int xen_add_to_physmap(XenIOState *state, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                               hwaddr start_addr, | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |                               ram_addr_t size, | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  |                               MemoryRegion *mr, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                               hwaddr offset_within_region) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     unsigned target_page_bits = qemu_target_page_bits(); | 
					
						
							|  |  |  |     int page_size = qemu_target_page_size(); | 
					
						
							|  |  |  |     int page_mask = -page_size; | 
					
						
							| 
									
										
										
										
											2017-10-23 10:27:27 +01:00
										 |  |  |     unsigned long nr_pages; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     int rc = 0; | 
					
						
							|  |  |  |     XenPhysmap *physmap = NULL; | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr pfn, start_gpfn; | 
					
						
							|  |  |  |     hwaddr phys_offset = memory_region_get_ram_addr(mr); | 
					
						
							| 
									
										
										
										
											2014-08-25 20:09:48 -07:00
										 |  |  |     const char *mr_name; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     if (get_physmapping(start_addr, size, page_mask)) { | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (size <= 0) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-15 17:29:27 +01:00
										 |  |  |     /* Xen can only handle a single dirty log region for now and we want
 | 
					
						
							|  |  |  |      * the linear framebuffer to be that region. | 
					
						
							|  |  |  |      * Avoid tracking any regions that is not videoram and avoid tracking | 
					
						
							|  |  |  |      * the legacy vga region. */ | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  |     if (mr == framebuffer && start_addr > 0xbffff) { | 
					
						
							|  |  |  |         goto go_physmap; | 
					
						
							| 
									
										
										
										
											2011-06-15 17:29:27 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | go_physmap: | 
					
						
							| 
									
										
										
										
											2012-12-17 11:37:43 +00:00
										 |  |  |     DPRINTF("mapping vram to %"HWADDR_PRIx" - %"HWADDR_PRIx"\n", | 
					
						
							|  |  |  |             start_addr, start_addr + size); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:03 +01:00
										 |  |  |     mr_name = memory_region_name(mr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-15 15:41:56 +01:00
										 |  |  |     physmap = g_new(XenPhysmap, 1); | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     physmap->start_addr = start_addr; | 
					
						
							|  |  |  |     physmap->size = size; | 
					
						
							|  |  |  |     physmap->name = mr_name; | 
					
						
							|  |  |  |     physmap->phys_offset = phys_offset; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  |     QLIST_INSERT_HEAD(&xen_physmap, physmap, list); | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (runstate_check(RUN_STATE_INMIGRATE)) { | 
					
						
							|  |  |  |         /* Now when we have a physmap entry we can replace a dummy mapping with
 | 
					
						
							|  |  |  |          * a real one of guest foreign memory. */ | 
					
						
							|  |  |  |         uint8_t *p = xen_replace_cache_entry(phys_offset, start_addr, size); | 
					
						
							|  |  |  |         assert(p && p == memory_region_get_ram_ptr(mr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     pfn = phys_offset >> target_page_bits; | 
					
						
							|  |  |  |     start_gpfn = start_addr >> target_page_bits; | 
					
						
							|  |  |  |     nr_pages = size >> target_page_bits; | 
					
						
							| 
									
										
										
										
											2017-10-23 10:27:27 +01:00
										 |  |  |     rc = xendevicemodel_relocate_memory(xen_dmod, xen_domid, nr_pages, pfn, | 
					
						
							|  |  |  |                                         start_gpfn); | 
					
						
							|  |  |  |     if (rc) { | 
					
						
							|  |  |  |         int saved_errno = errno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         error_report("relocate_memory %lu pages from GFN %"HWADDR_PRIx | 
					
						
							|  |  |  |                      " to GFN %"HWADDR_PRIx" failed: %s", | 
					
						
							|  |  |  |                      nr_pages, pfn, start_gpfn, strerror(saved_errno)); | 
					
						
							|  |  |  |         errno = saved_errno; | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-23 10:27:27 +01:00
										 |  |  |     rc = xendevicemodel_pin_memory_cacheattr(xen_dmod, xen_domid, | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |                                    start_addr >> target_page_bits, | 
					
						
							|  |  |  |                                    (start_addr + size - 1) >> target_page_bits, | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |                                    XEN_DOMCTL_MEM_CACHEATTR_WB); | 
					
						
							| 
									
										
										
										
											2017-10-23 10:27:27 +01:00
										 |  |  |     if (rc) { | 
					
						
							|  |  |  |         error_report("pin_memory_cacheattr failed: %s", strerror(errno)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:00 +01:00
										 |  |  |     return xen_save_physmap(state, physmap); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int xen_remove_from_physmap(XenIOState *state, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                                    hwaddr start_addr, | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |                                    ram_addr_t size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     unsigned target_page_bits = qemu_target_page_bits(); | 
					
						
							|  |  |  |     int page_size = qemu_target_page_size(); | 
					
						
							|  |  |  |     int page_mask = -page_size; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     int rc = 0; | 
					
						
							|  |  |  |     XenPhysmap *physmap = NULL; | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr phys_offset = 0; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     physmap = get_physmapping(start_addr, size, page_mask); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     if (physmap == NULL) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     phys_offset = physmap->phys_offset; | 
					
						
							|  |  |  |     size = physmap->size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 13:53:53 +01:00
										 |  |  |     DPRINTF("unmapping vram to %"HWADDR_PRIx" - %"HWADDR_PRIx", at " | 
					
						
							|  |  |  |             "%"HWADDR_PRIx"\n", start_addr, start_addr + size, phys_offset); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     size >>= target_page_bits; | 
					
						
							|  |  |  |     start_addr >>= target_page_bits; | 
					
						
							|  |  |  |     phys_offset >>= target_page_bits; | 
					
						
							| 
									
										
										
										
											2017-10-23 10:27:27 +01:00
										 |  |  |     rc = xendevicemodel_relocate_memory(xen_dmod, xen_domid, size, start_addr, | 
					
						
							|  |  |  |                                         phys_offset); | 
					
						
							|  |  |  |     if (rc) { | 
					
						
							|  |  |  |         int saved_errno = errno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         error_report("relocate_memory "RAM_ADDR_FMT" pages" | 
					
						
							|  |  |  |                      " from GFN %"HWADDR_PRIx | 
					
						
							|  |  |  |                      " to GFN %"HWADDR_PRIx" failed: %s", | 
					
						
							|  |  |  |                      size, start_addr, phys_offset, strerror(saved_errno)); | 
					
						
							|  |  |  |         errno = saved_errno; | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QLIST_REMOVE(physmap, list); | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |     if (log_for_dirtybit == physmap) { | 
					
						
							|  |  |  |         log_for_dirtybit = NULL; | 
					
						
							|  |  |  |         g_free(dirty_bitmap); | 
					
						
							|  |  |  |         dirty_bitmap = NULL; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-10 22:36:22 +02:00
										 |  |  |     g_free(physmap); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  | static void xen_sync_dirty_bitmap(XenIOState *state, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                                   hwaddr start_addr, | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  |                                   ram_addr_t size) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     unsigned target_page_bits = qemu_target_page_bits(); | 
					
						
							|  |  |  |     int page_size = qemu_target_page_size(); | 
					
						
							|  |  |  |     int page_mask = -page_size; | 
					
						
							|  |  |  |     hwaddr npages = size >> target_page_bits; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     const int width = sizeof(unsigned long) * 8; | 
					
						
							| 
									
										
										
										
											2019-06-18 12:23:41 +01:00
										 |  |  |     size_t bitmap_size = DIV_ROUND_UP(npages, width); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     int rc, i, j; | 
					
						
							|  |  |  |     const XenPhysmap *physmap = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     physmap = get_physmapping(start_addr, size, page_mask); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     if (physmap == NULL) { | 
					
						
							|  |  |  |         /* not handled */ | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |     if (log_for_dirtybit == NULL) { | 
					
						
							|  |  |  |         log_for_dirtybit = physmap; | 
					
						
							|  |  |  |         dirty_bitmap = g_new(unsigned long, bitmap_size); | 
					
						
							|  |  |  |     } else if (log_for_dirtybit != physmap) { | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  |         /* Only one range for dirty bitmap can be tracked. */ | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     rc = xen_track_dirty_vram(xen_domid, start_addr >> target_page_bits, | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |                               npages, dirty_bitmap); | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  |     if (rc < 0) { | 
					
						
							| 
									
										
										
										
											2014-05-23 17:57:47 +02:00
										 |  |  | #ifndef ENODATA
 | 
					
						
							|  |  |  | #define ENODATA  ENOENT
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         if (errno == ENODATA) { | 
					
						
							| 
									
										
										
										
											2012-10-03 13:49:40 +00:00
										 |  |  |             memory_region_set_dirty(framebuffer, 0, size); | 
					
						
							| 
									
										
										
										
											2023-01-10 22:29:47 +01:00
										 |  |  |             DPRINTF("xen: track_dirty_vram failed (0x" HWADDR_FMT_plx | 
					
						
							|  |  |  |                     ", 0x" HWADDR_FMT_plx "): %s\n", | 
					
						
							| 
									
										
										
										
											2014-05-23 17:57:47 +02:00
										 |  |  |                     start_addr, start_addr + size, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-18 12:23:41 +01:00
										 |  |  |     for (i = 0; i < bitmap_size; i++) { | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |         unsigned long map = dirty_bitmap[i]; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |         while (map != 0) { | 
					
						
							| 
									
										
										
										
											2014-04-29 16:17:28 +02:00
										 |  |  |             j = ctzl(map); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |             map &= ~(1ul << j); | 
					
						
							| 
									
										
										
										
											2011-12-21 14:21:27 +02:00
										 |  |  |             memory_region_set_dirty(framebuffer, | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |                                     (i * width + j) * page_size, page_size); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |         }; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  | static void xen_log_start(MemoryListener *listener, | 
					
						
							| 
									
										
										
										
											2015-04-25 14:38:30 +02:00
										 |  |  |                           MemoryRegionSection *section, | 
					
						
							|  |  |  |                           int old, int new) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  |     XenIOState *state = container_of(listener, XenIOState, memory_listener); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-25 14:38:30 +02:00
										 |  |  |     if (new & ~old & (1 << DIRTY_MEMORY_VGA)) { | 
					
						
							|  |  |  |         xen_sync_dirty_bitmap(state, section->offset_within_address_space, | 
					
						
							|  |  |  |                               int128_get64(section->size)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-25 14:38:30 +02:00
										 |  |  | static void xen_log_stop(MemoryListener *listener, MemoryRegionSection *section, | 
					
						
							|  |  |  |                          int old, int new) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-04-25 14:38:30 +02:00
										 |  |  |     if (old & ~new & (1 << DIRTY_MEMORY_VGA)) { | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |         log_for_dirtybit = NULL; | 
					
						
							|  |  |  |         g_free(dirty_bitmap); | 
					
						
							|  |  |  |         dirty_bitmap = NULL; | 
					
						
							| 
									
										
										
										
											2015-04-25 14:38:30 +02:00
										 |  |  |         /* Disable dirty bit tracking */ | 
					
						
							| 
									
										
										
										
											2017-03-07 10:55:32 +00:00
										 |  |  |         xen_track_dirty_vram(xen_domid, 0, 0, NULL); | 
					
						
							| 
									
										
										
										
											2015-04-25 14:38:30 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  | static void xen_log_sync(MemoryListener *listener, MemoryRegionSection *section) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  |     XenIOState *state = container_of(listener, XenIOState, memory_listener); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-05 12:47:08 +00:00
										 |  |  |     xen_sync_dirty_bitmap(state, section->offset_within_address_space, | 
					
						
							| 
									
										
										
										
											2013-05-27 10:08:27 +02:00
										 |  |  |                           int128_get64(section->size)); | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-20 07:49:05 +01:00
										 |  |  | static bool xen_log_global_start(MemoryListener *listener, Error **errp) | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:19 +00:00
										 |  |  |     if (xen_enabled()) { | 
					
						
							|  |  |  |         xen_in_migration = true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-03-20 07:49:05 +01:00
										 |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void xen_log_global_stop(MemoryListener *listener) | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:19 +00:00
										 |  |  |     xen_in_migration = false; | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-18 11:10:57 +01:00
										 |  |  | static const MemoryListener xen_memory_listener = { | 
					
						
							| 
									
										
										
										
											2021-08-16 21:35:52 -04:00
										 |  |  |     .name = "xen-memory", | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  |     .region_add = xen_region_add, | 
					
						
							|  |  |  |     .region_del = xen_region_del, | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  |     .log_start = xen_log_start, | 
					
						
							|  |  |  |     .log_stop = xen_log_stop, | 
					
						
							| 
									
										
										
										
											2011-12-19 12:07:50 +02:00
										 |  |  |     .log_sync = xen_log_sync, | 
					
						
							|  |  |  |     .log_global_start = xen_log_global_start, | 
					
						
							|  |  |  |     .log_global_stop = xen_log_global_stop, | 
					
						
							| 
									
										
										
										
											2023-06-20 09:50:47 -07:00
										 |  |  |     .priority = MEMORY_LISTENER_PRIORITY_ACCEL, | 
					
						
							| 
									
										
										
										
											2011-05-24 14:34:21 +01:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-08-31 16:41:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 15:49:12 -04:00
										 |  |  | static void regs_to_cpu(vmware_regs_t *vmport_regs, ioreq_t *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X86CPU *cpu; | 
					
						
							|  |  |  |     CPUX86State *env; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cpu = X86_CPU(current_cpu); | 
					
						
							|  |  |  |     env = &cpu->env; | 
					
						
							|  |  |  |     env->regs[R_EAX] = req->data; | 
					
						
							|  |  |  |     env->regs[R_EBX] = vmport_regs->ebx; | 
					
						
							|  |  |  |     env->regs[R_ECX] = vmport_regs->ecx; | 
					
						
							|  |  |  |     env->regs[R_EDX] = vmport_regs->edx; | 
					
						
							|  |  |  |     env->regs[R_ESI] = vmport_regs->esi; | 
					
						
							|  |  |  |     env->regs[R_EDI] = vmport_regs->edi; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void regs_from_cpu(vmware_regs_t *vmport_regs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X86CPU *cpu = X86_CPU(current_cpu); | 
					
						
							|  |  |  |     CPUX86State *env = &cpu->env; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vmport_regs->ebx = env->regs[R_EBX]; | 
					
						
							|  |  |  |     vmport_regs->ecx = env->regs[R_ECX]; | 
					
						
							|  |  |  |     vmport_regs->edx = env->regs[R_EDX]; | 
					
						
							|  |  |  |     vmport_regs->esi = env->regs[R_ESI]; | 
					
						
							|  |  |  |     vmport_regs->edi = env->regs[R_EDI]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void handle_vmport_ioreq(XenIOState *state, ioreq_t *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     vmware_regs_t *vmport_regs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |     assert(shared_vmport_page); | 
					
						
							| 
									
										
										
										
											2014-10-20 15:49:12 -04:00
										 |  |  |     vmport_regs = | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |         &shared_vmport_page->vcpu_vmport_regs[state->send_vcpu]; | 
					
						
							| 
									
										
										
										
											2014-10-20 15:49:12 -04:00
										 |  |  |     QEMU_BUILD_BUG_ON(sizeof(*req) < sizeof(*vmport_regs)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     current_cpu = state->cpu_by_vcpu_id[state->send_vcpu]; | 
					
						
							|  |  |  |     regs_to_cpu(vmport_regs, req); | 
					
						
							|  |  |  |     cpu_ioreq_pio(req); | 
					
						
							|  |  |  |     regs_from_cpu(vmport_regs); | 
					
						
							|  |  |  |     current_cpu = NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:03 +01:00
										 |  |  | #ifdef XEN_COMPAT_PHYSMAP
 | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  | static void xen_read_physmap(XenIOState *state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     XenPhysmap *physmap = NULL; | 
					
						
							|  |  |  |     unsigned int len, num, i; | 
					
						
							|  |  |  |     char path[80], *value = NULL; | 
					
						
							|  |  |  |     char **entries = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     snprintf(path, sizeof(path), | 
					
						
							|  |  |  |             "/local/domain/0/device-model/%d/physmap", xen_domid); | 
					
						
							|  |  |  |     entries = xs_directory(state->xenstore, 0, path, &num); | 
					
						
							|  |  |  |     if (entries == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < num; i++) { | 
					
						
							| 
									
										
										
										
											2022-03-15 15:41:56 +01:00
										 |  |  |         physmap = g_new(XenPhysmap, 1); | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  |         physmap->phys_offset = strtoull(entries[i], NULL, 16); | 
					
						
							|  |  |  |         snprintf(path, sizeof(path), | 
					
						
							|  |  |  |                 "/local/domain/0/device-model/%d/physmap/%s/start_addr", | 
					
						
							|  |  |  |                 xen_domid, entries[i]); | 
					
						
							|  |  |  |         value = xs_read(state->xenstore, 0, path, &len); | 
					
						
							|  |  |  |         if (value == NULL) { | 
					
						
							| 
									
										
										
										
											2013-06-10 22:36:22 +02:00
										 |  |  |             g_free(physmap); | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         physmap->start_addr = strtoull(value, NULL, 16); | 
					
						
							|  |  |  |         free(value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         snprintf(path, sizeof(path), | 
					
						
							|  |  |  |                 "/local/domain/0/device-model/%d/physmap/%s/size", | 
					
						
							|  |  |  |                 xen_domid, entries[i]); | 
					
						
							|  |  |  |         value = xs_read(state->xenstore, 0, path, &len); | 
					
						
							|  |  |  |         if (value == NULL) { | 
					
						
							| 
									
										
										
										
											2013-06-10 22:36:22 +02:00
										 |  |  |             g_free(physmap); | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         physmap->size = strtoull(value, NULL, 16); | 
					
						
							|  |  |  |         free(value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         snprintf(path, sizeof(path), | 
					
						
							|  |  |  |                 "/local/domain/0/device-model/%d/physmap/%s/name", | 
					
						
							|  |  |  |                 xen_domid, entries[i]); | 
					
						
							|  |  |  |         physmap->name = xs_read(state->xenstore, 0, path, &len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  |         QLIST_INSERT_HEAD(&xen_physmap, physmap, list); | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     free(entries); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-10 23:40:03 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | static void xen_read_physmap(XenIOState *state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 16:40:23 +00:00
										 |  |  | static void xen_wakeup_notifier(Notifier *notifier, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-08 17:55:26 +02:00
										 |  |  | void xen_hvm_init_pc(PCMachineState *pcms, MemoryRegion **ram_memory) | 
					
						
							| 
									
										
										
										
											2018-05-15 17:40:51 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-19 04:54:25 +08:00
										 |  |  |     MachineState *ms = MACHINE(pcms); | 
					
						
							|  |  |  |     unsigned int max_cpus = ms->smp.max_cpus; | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  |     int rc; | 
					
						
							| 
									
										
										
										
											2018-05-15 17:40:51 +01:00
										 |  |  |     xen_pfn_t ioreq_pfn; | 
					
						
							| 
									
										
										
										
											2010-09-06 20:07:14 +01:00
										 |  |  |     XenIOState *state; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-15 15:41:56 +01:00
										 |  |  |     state = g_new0(XenIOState, 1); | 
					
						
							| 
									
										
										
										
											2010-09-06 20:07:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-18 11:10:57 +01:00
										 |  |  |     xen_register_ioreq(state, max_cpus, &xen_memory_listener); | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QLIST_INIT(&xen_physmap); | 
					
						
							| 
									
										
										
										
											2012-01-19 15:56:11 +00:00
										 |  |  |     xen_read_physmap(state); | 
					
						
							| 
									
										
										
										
											2016-11-08 14:07:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |     suspend.notify = xen_suspend_notifier; | 
					
						
							|  |  |  |     qemu_register_suspend_notifier(&suspend); | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |     wakeup.notify = xen_wakeup_notifier; | 
					
						
							|  |  |  |     qemu_register_wakeup_notifier(&wakeup); | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rc = xen_get_vmport_regs_pfn(xen_xc, xen_domid, &ioreq_pfn); | 
					
						
							|  |  |  |     if (!rc) { | 
					
						
							|  |  |  |         DPRINTF("shared vmport page at pfn %lx\n", ioreq_pfn); | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |         shared_vmport_page = | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:30 -07:00
										 |  |  |             xenforeignmemory_map(xen_fmem, xen_domid, PROT_READ|PROT_WRITE, | 
					
						
							|  |  |  |                                  1, &ioreq_pfn, NULL); | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:31 -07:00
										 |  |  |         if (shared_vmport_page == NULL) { | 
					
						
							| 
									
										
										
										
											2023-06-14 17:03:30 -07:00
										 |  |  |             error_report("map shared vmport IO page returned error %d handle=%p", | 
					
						
							|  |  |  |                          errno, xen_xc); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else if (rc != -ENOSYS) { | 
					
						
							|  |  |  |         error_report("get vmport regs pfn returned error %d, rc=%d", | 
					
						
							|  |  |  |                      errno, rc); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xen_ram_init(pcms, ms->ram_size, ram_memory); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-08 14:07:22 +00:00
										 |  |  |     /* Disable ACPI build because Xen handles it */ | 
					
						
							|  |  |  |     pcms->acpi_build_enabled = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 16:09:38 +01:00
										 |  |  |     return; | 
					
						
							| 
									
										
										
										
											2011-06-24 15:54:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 16:09:38 +01:00
										 |  |  | err: | 
					
						
							|  |  |  |     error_report("xen hardware virtual machine initialisation failed"); | 
					
						
							|  |  |  |     exit(1); | 
					
						
							| 
									
										
										
										
											2010-06-30 12:58:34 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-09-06 20:07:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 16:40:50 +02:00
										 |  |  | void xen_register_framebuffer(MemoryRegion *mr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     framebuffer = mr; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-21 15:40:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-07 10:55:31 +00:00
										 |  |  | void xen_hvm_modified_memory(ram_addr_t start, ram_addr_t length) | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     unsigned target_page_bits = qemu_target_page_bits(); | 
					
						
							|  |  |  |     int page_size = qemu_target_page_size(); | 
					
						
							|  |  |  |     int page_mask = -page_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  |     if (unlikely(xen_in_migration)) { | 
					
						
							|  |  |  |         int rc; | 
					
						
							|  |  |  |         ram_addr_t start_pfn, nb_pages; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |         start = xen_phys_offset_to_gaddr(start, length, page_mask); | 
					
						
							| 
									
										
										
										
											2018-04-25 14:46:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  |         if (length == 0) { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |             length = page_size; | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |         start_pfn = start >> target_page_bits; | 
					
						
							|  |  |  |         nb_pages = ((start + length + page_size - 1) >> target_page_bits) | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  |             - start_pfn; | 
					
						
							| 
									
										
										
										
											2017-03-07 10:55:32 +00:00
										 |  |  |         rc = xen_modified_memory(xen_domid, start_pfn, nb_pages); | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  |         if (rc) { | 
					
						
							|  |  |  |             fprintf(stderr, | 
					
						
							|  |  |  |                     "%s failed for "RAM_ADDR_FMT" ("RAM_ADDR_FMT"): %i, %s\n", | 
					
						
							| 
									
										
										
										
											2017-10-11 16:52:03 +01:00
										 |  |  |                     __func__, start, nb_pages, errno, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2012-10-03 13:48:45 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-07 16:16:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void qmp_xen_set_global_dirty_log(bool enable, Error **errp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (enable) { | 
					
						
							| 
									
										
										
										
											2024-03-20 07:49:07 +01:00
										 |  |  |         memory_global_dirty_log_start(GLOBAL_DIRTY_MIGRATION, errp); | 
					
						
							| 
									
										
										
										
											2014-05-07 16:16:43 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-06-29 16:01:19 +00:00
										 |  |  |         memory_global_dirty_log_stop(GLOBAL_DIRTY_MIGRATION); | 
					
						
							| 
									
										
										
										
											2014-05-07 16:16:43 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | void arch_xen_set_memory(XenIOState *state, MemoryRegionSection *section, | 
					
						
							|  |  |  |                                 bool add) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     unsigned target_page_bits = qemu_target_page_bits(); | 
					
						
							|  |  |  |     int page_size = qemu_target_page_size(); | 
					
						
							|  |  |  |     int page_mask = -page_size; | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  |     hwaddr start_addr = section->offset_within_address_space; | 
					
						
							|  |  |  |     ram_addr_t size = int128_get64(section->size); | 
					
						
							|  |  |  |     bool log_dirty = memory_region_is_logging(section->mr, DIRTY_MEMORY_VGA); | 
					
						
							|  |  |  |     hvmmem_type_t mem_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!memory_region_is_ram(section->mr)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (log_dirty != add) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     trace_xen_client_set_memory(start_addr, size, log_dirty); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |     start_addr &= page_mask; | 
					
						
							|  |  |  |     size = ROUND_UP(size, page_size); | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (add) { | 
					
						
							|  |  |  |         if (!memory_region_is_rom(section->mr)) { | 
					
						
							|  |  |  |             xen_add_to_physmap(state, start_addr, size, | 
					
						
							|  |  |  |                                section->mr, section->offset_within_region); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             mem_type = HVMMEM_ram_ro; | 
					
						
							|  |  |  |             if (xen_set_mem_type(xen_domid, mem_type, | 
					
						
							| 
									
										
										
										
											2023-11-14 15:58:23 +01:00
										 |  |  |                                  start_addr >> target_page_bits, | 
					
						
							|  |  |  |                                  size >> target_page_bits)) { | 
					
						
							| 
									
										
											  
											
												xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
This patch does following:
1. creates arch_handle_ioreq() and arch_xen_set_memory(). This is done in
    preparation for moving most of xen-hvm code to an arch-neutral location,
    move the x86-specific portion of xen_set_memory to arch_xen_set_memory.
    Also, move handle_vmport_ioreq to arch_handle_ioreq.
2. Pure code movement: move common functions to hw/xen/xen-hvm-common.c
    Extract common functionalities from hw/i386/xen/xen-hvm.c and move them to
    hw/xen/xen-hvm-common.c. These common functions are useful for creating
    an IOREQ server.
    xen_hvm_init_pc() contains the architecture independent code for creating
    and mapping a IOREQ server, connecting memory and IO listeners, initializing
    a xen bus and registering backends. Moved this common xen code to a new
    function xen_register_ioreq() which can be used by both x86 and ARM machines.
    Following functions are moved to hw/xen/xen-hvm-common.c:
        xen_vcpu_eport(), xen_vcpu_ioreq(), xen_ram_alloc(), xen_set_memory(),
        xen_region_add(), xen_region_del(), xen_io_add(), xen_io_del(),
        xen_device_realize(), xen_device_unrealize(),
        cpu_get_ioreq_from_shared_memory(), cpu_get_ioreq(), do_inp(),
        do_outp(), rw_phys_req_item(), read_phys_req_item(),
        write_phys_req_item(), cpu_ioreq_pio(), cpu_ioreq_move(),
        cpu_ioreq_config(), handle_ioreq(), handle_buffered_iopage(),
        handle_buffered_io(), cpu_handle_ioreq(), xen_main_loop_prepare(),
        xen_hvm_change_state_handler(), xen_exit_notifier(),
        xen_map_ioreq_server(), destroy_hvm_domain() and
        xen_shutdown_fatal_error()
3. Removed static type from below functions:
    1. xen_region_add()
    2. xen_region_del()
    3. xen_io_add()
    4. xen_io_del()
    5. xen_device_realize()
    6. xen_device_unrealize()
    7. xen_hvm_change_state_handler()
    8. cpu_ioreq_pio()
    9. xen_exit_notifier()
4. Replace TARGET_PAGE_SIZE with XC_PAGE_SIZE to match the page side with Xen.
Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
											
										 
											2023-06-14 17:03:32 -07:00
										 |  |  |                 DPRINTF("xen_set_mem_type error, addr: "HWADDR_FMT_plx"\n", | 
					
						
							|  |  |  |                         start_addr); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (xen_remove_from_physmap(state, start_addr, size) < 0) { | 
					
						
							|  |  |  |             DPRINTF("physmapping does not exist at "HWADDR_FMT_plx"\n", start_addr); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void arch_handle_ioreq(XenIOState *state, ioreq_t *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (req->type) { | 
					
						
							|  |  |  |     case IOREQ_TYPE_VMWARE_PORT: | 
					
						
							|  |  |  |             handle_vmport_ioreq(state, req); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         hw_error("Invalid ioreq type 0x%x\n", req->type); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | } |