📄 dom_fw.h
字号:
/* * Xen domain firmware emulation * * Copyright (C) 2004 Hewlett-Packard Co * Dan Magenheimer (dan.magenheimer@hp.com) *//* Portion of guest physical memory space reserved for PAL/SAL/EFI/ACPI data and code. */#define FW_BASE_PADDR 0x0000UL/* It is assumed that FW_END_PADDR_MIN = FW_TABLES_END_PADDR_MIN */#define FW_END_PADDR_MIN 0x3000UL/* This is used to determined the portion of a domain's metaphysical memory space reserved for the hypercall patch table. *//* Map: Index Addr 0x0000-0x000f 0x0000-0x00ff : unused 0x0010-0x001f 0x0100-0x01ff : EFI 0x0080-0x008f 0x0800-0x08ff : PAL/SAL 0x0090-0x009f 0x0900-0x09ff : FPSWA*/#define FW_HYPERCALL_BASE_PADDR 0x0000UL#define FW_HYPERCALL_END_PADDR 0X1000UL#define FW_HYPERCALL_PADDR(index) (FW_HYPERCALL_BASE_PADDR + (16UL * index))/* Base and end guest physical address of ACPI tables. */#define FW_ACPI_BASE_PADDR 0x1000UL#define FW_ACPI_END_PADDR 0x2000UL/* Base and end guest physical address of EFI and SAL (non-ACPI) tables. */#define FW_TABLES_BASE_PADDR 0x2000UL#define FW_TABLES_END_PADDR_MIN 0x3000UL/* Hypercalls number have a low part and a high part. The high part is the class (xen/pal/sal/efi). */#define FW_HYPERCALL_NUM_MASK_HIGH ~0xffUL#define FW_HYPERCALL_NUM_MASK_LOW 0xffUL/* Xen hypercalls are 0-63. */#define FW_HYPERCALL_XEN 0x0000UL/* Define some faster and lighter hypercalls. See definitions in arch-ia64.h */#define FW_HYPERCALL_XEN_FAST 0x0200UL/* * PAL can be called in physical or virtual mode simply by * branching to pal_entry_point, which is found in one of the * SAL system table entrypoint descriptors (type=0). Parameters * may be passed in r28-r31 (static) or r32-r35 (stacked); which * convention is used depends on which procedure is being called. * r28 contains the PAL index, the indicator of which PAL procedure * is to be called: Index=0 is reserved, 1-255 indicates static * parameters, 256-511 indicates stacked parameters. 512-1023 * are implementation-specific and 1024+ are reserved. * rp=b0 indicates the return point. * * A single hypercall is used for all PAL calls. * The hypercall stub is xen_ia64_pal_call_stub (dom_fw_asm.S). * Its size is 2 bundles. */#define FW_HYPERCALL_PAL_CALL_INDEX 0x80UL#define FW_HYPERCALL_PAL_CALL_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_PAL_CALL_INDEX)#define FW_HYPERCALL_PAL_CALL 0x1000UL/* * SAL consists of a table of descriptors, one of which (type=0) * contains a sal_entry_point which provides access to a number of * functions. Parameters are passed in r33-r39; r32 contains the * index of the SAL function being called. At entry, r1=gp contains * a global pointer which may be needed by the function. rp=b0 * indicates the return point. SAL may not be re-entrant; an * OS must ensure it is called by one processor at a time. * * A single hypercall is used for all SAL calls. */#define FW_HYPERCALL_SAL_CALL_INDEX 0x82UL#define FW_HYPERCALL_SAL_CALL_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_SAL_CALL_INDEX)#define FW_HYPERCALL_SAL_CALL 0x1100UL/* SAL return point. */#define FW_HYPERCALL_SAL_RETURN_INDEX 0x84UL#define FW_HYPERCALL_SAL_RETURN_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_SAL_RETURN_INDEX)#define FW_HYPERCALL_SAL_RETURN 0x1200UL/* * EFI is accessed via the EFI system table, which contains: * - a header which contains version info * - console information (stdin,stdout,stderr) * as well as pointers to: * - the EFI configuration table, which contains GUID/pointer pairs, * one of which is a pointer to the SAL system table; another is * a pointer to the ACPI table * - the runtime services table, which contains a header followed by * a list of (11) unique "runtime" entry points. EFI runtime entry * points are real function descriptors so contain both a (physical) * address and a global pointer. They are entered (at first) in * physical mode, though it is possible (optionally... requests can * be ignored and calls still must be OK) to call one entry point * which switches the others so they are capable of being called in * virtual mode. Parameters are passed in stacked registers, and * rp=b0 indicates the return point. * - the boot services table, which contains bootloader-related * entry points (ADD MORE HERE LATER) * * Each runtime (and boot) entry point requires a unique hypercall. *//* these are indexes into the runtime services table */#define FW_HYPERCALL_EFI_GET_TIME_INDEX 0x10UL#define FW_HYPERCALL_EFI_SET_TIME_INDEX 0x11UL#define FW_HYPERCALL_EFI_GET_WAKEUP_TIME_INDEX 0x12UL#define FW_HYPERCALL_EFI_SET_WAKEUP_TIME_INDEX 0x13UL#define FW_HYPERCALL_EFI_SET_VIRTUAL_ADDRESS_MAP_INDEX 0x14UL#define FW_HYPERCALL_EFI_GET_VARIABLE_INDEX 0x15UL#define FW_HYPERCALL_EFI_GET_NEXT_VARIABLE_INDEX 0x16UL#define FW_HYPERCALL_EFI_SET_VARIABLE_INDEX 0x17UL#define FW_HYPERCALL_EFI_GET_NEXT_HIGH_MONO_COUNT_INDEX 0x18UL#define FW_HYPERCALL_EFI_RESET_SYSTEM_INDEX 0x19UL/* these are hypercall numbers */#define FW_HYPERCALL_EFI_CALL 0x300UL#define FW_HYPERCALL_EFI_GET_TIME 0x300UL#define FW_HYPERCALL_EFI_SET_TIME 0x301UL#define FW_HYPERCALL_EFI_GET_WAKEUP_TIME 0x302UL#define FW_HYPERCALL_EFI_SET_WAKEUP_TIME 0x303UL#define FW_HYPERCALL_EFI_SET_VIRTUAL_ADDRESS_MAP 0x304UL#define FW_HYPERCALL_EFI_GET_VARIABLE 0x305UL#define FW_HYPERCALL_EFI_GET_NEXT_VARIABLE 0x306UL#define FW_HYPERCALL_EFI_SET_VARIABLE 0x307UL#define FW_HYPERCALL_EFI_GET_NEXT_HIGH_MONO_COUNT 0x308UL#define FW_HYPERCALL_EFI_RESET_SYSTEM 0x309UL/* these are the physical addresses of the pseudo-entry points that * contain the hypercalls */#define FW_HYPERCALL_EFI_GET_TIME_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_GET_TIME_INDEX)#define FW_HYPERCALL_EFI_SET_TIME_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_SET_TIME_INDEX)#define FW_HYPERCALL_EFI_GET_WAKEUP_TIME_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_GET_WAKEUP_TIME_INDEX)#define FW_HYPERCALL_EFI_SET_WAKEUP_TIME_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_SET_WAKEUP_TIME_INDEX)#define FW_HYPERCALL_EFI_SET_VIRTUAL_ADDRESS_MAP_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_SET_VIRTUAL_ADDRESS_MAP_INDEX)#define FW_HYPERCALL_EFI_GET_VARIABLE_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_GET_VARIABLE_INDEX)#define FW_HYPERCALL_EFI_GET_NEXT_VARIABLE_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_GET_NEXT_VARIABLE_INDEX)#define FW_HYPERCALL_EFI_SET_VARIABLE_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_SET_VARIABLE_INDEX)#define FW_HYPERCALL_EFI_GET_NEXT_HIGH_MONO_COUNT_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_GET_NEXT_HIGH_MONO_COUNT_INDEX)#define FW_HYPERCALL_EFI_RESET_SYSTEM_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_EFI_RESET_SYSTEM_INDEX)/* * This is a hypercall number for IPI. * A pseudo-entry-point is not presented to IPI hypercall. This hypercall number * is used in xen_send_ipi of linux-2.6-xen-sparse/arch/ia64/xen/hypercall.S. */#define FW_HYPERCALL_IPI 0x400UL/* * This is a hypercall number for FPSWA. * FPSWA hypercall uses 2 bundles for a pseudo-entry-point and a hypercall-patch. */#define FW_HYPERCALL_FPSWA_ENTRY_INDEX 0x90UL#define FW_HYPERCALL_FPSWA_PATCH_INDEX 0x91UL#define FW_HYPERCALL_FPSWA_ENTRY_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_FPSWA_ENTRY_INDEX)#define FW_HYPERCALL_FPSWA_PATCH_PADDR FW_HYPERCALL_PADDR(FW_HYPERCALL_FPSWA_PATCH_INDEX)#define FW_HYPERCALL_FPSWA 0x500UL/* Set the shared_info base virtual address. */#define FW_HYPERCALL_SET_SHARED_INFO_VA 0x600UL/* Hvmstub hypercalls. See details in hvm_stub.h */#define FW_HYPERCALL_SIOEMU 0x800UL/* Hypercalls index bellow _FIRST_ARCH are reserved by Xen, while those above are for the architecture. Note: this limit was defined by Xen/ia64 (and not by Xen). This can be renumbered safely.*/#define FW_HYPERCALL_FIRST_ARCH 0x300UL/* Interrupt vector used for os boot rendez vous. */#define XEN_SAL_BOOT_RENDEZ_VEC 0xF3#define EFI_MEMDESC_VERSION 1/* Additionnal OEM SAL. */#define SAL_XEN_SAL_RETURN 0x02000000#ifdef __XEN__#include <linux/efi.h>extern struct ia64_pal_retval xen_pal_emulator(u64, u64, u64, u64);extern struct sal_ret_values sal_emulator (long index, unsigned long in1, unsigned long in2, unsigned long in3, unsigned long in4, unsigned long in5, unsigned long in6, unsigned long in7);extern struct ia64_pal_retval pal_emulator_static (unsigned long);extern efi_status_t efi_emulator (struct pt_regs *regs, unsigned long *fault);extern int dom_fw_setup (struct domain *, unsigned long bp_mpa, unsigned long maxmem);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -