OBJS = hvmloader.o mp_tables.o util.o smbios.o
OBJS += smp.o cacheattr.o xenbus.o
OBJS += e820.o pci.o pir.o ctype.o
+OBJS += hvm_param.o
ifeq ($(debug),y)
OBJS += tests.o
endif
--- /dev/null
+/*
+ * hvm_param.c: get/set HVM params.
+ *
+ * Copyright (C) 2014 Citrix Systems R&D Ltd.
+ */
+#include "util.h"
+#include "config.h"
+#include "hypercall.h"
+
+#include <xen/hvm/params.h>
+
+int hvm_param_get(uint32_t index, uint64_t *value)
+{
+ struct xen_hvm_param p;
+ int ret;
+
+ p.domid = DOMID_SELF;
+ p.index = index;
+
+ ret = hypercall_hvm_op(HVMOP_get_param, &p);
+ if (ret == 0)
+ *value = p.value;
+
+ return ret;
+}
+
+int hvm_param_set(uint32_t index, uint64_t value)
+{
+ struct xen_hvm_param p;
+
+ p.domid = DOMID_SELF;
+ p.index = index;
+ p.value = value;
+
+ return hypercall_hvm_op(HVMOP_set_param, &p);
+}
static void init_vm86_tss(void)
{
void *tss;
- struct xen_hvm_param p;
tss = mem_alloc(128, 128);
memset(tss, 0, 128);
- p.domid = DOMID_SELF;
- p.index = HVM_PARAM_VM86_TSS;
- p.value = virt_to_phys(tss);
- hypercall_hvm_op(HVMOP_set_param, &p);
+ hvm_param_set(HVM_PARAM_VM86_TSS, virt_to_phys(tss));
printf("vm86 TSS at %08lx\n", virt_to_phys(tss));
}
if ( acpi_enabled )
{
- struct xen_hvm_param p = {
- .domid = DOMID_SELF,
- .index = HVM_PARAM_ACPI_IOPORTS_LOCATION,
- .value = 1,
- };
-
if ( bios->acpi_build_tables )
{
printf("Loading ACPI ...\n");
acpi_enable_sci();
- hypercall_hvm_op(HVMOP_set_param, &p);
+ hvm_param_set(HVM_PARAM_ACPI_IOPORTS_LOCATION, 1);
}
init_vm86_tss();
*/
int xenstore_write(const char *path, const char *value);
+
+/* Get a HVM param.
+ */
+int hvm_param_get(uint32_t index, uint64_t *value);
+
+/* Set a HVM param.
+ */
+int hvm_param_set(uint32_t index, uint64_t value);
+
/* Setup PCI bus */
void pci_setup(void);
* Call once, before any other xenbus actions. */
void xenbus_setup(void)
{
- xen_hvm_param_t param;
+ uint64_t val;
/* Ask Xen where the xenbus shared page is. */
- param.domid = DOMID_SELF;
- param.index = HVM_PARAM_STORE_PFN;
- if ( hypercall_hvm_op(HVMOP_get_param, ¶m) )
+ if ( hvm_param_get(HVM_PARAM_STORE_PFN, &val) )
BUG();
- rings = (void *) (unsigned long) (param.value << PAGE_SHIFT);
+ rings = (void *) (unsigned long) (val << PAGE_SHIFT);
/* Ask Xen where the xenbus event channel is. */
- param.domid = DOMID_SELF;
- param.index = HVM_PARAM_STORE_EVTCHN;
- if ( hypercall_hvm_op(HVMOP_get_param, ¶m) )
+ if ( hvm_param_get(HVM_PARAM_STORE_EVTCHN, &val) )
BUG();
- event = param.value;
+ event = val;
printf("Xenbus rings @0x%lx, event channel %lu\n",
(unsigned long) rings, (unsigned long) event);