Files
Linux_Drivers/u-boot-2021.10/include/xen/hvm.h
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

28 lines
780 B
C

/* SPDX-License-Identifier: GPL-2.0
*
* Simple wrappers around HVM functions
*
* Copyright (c) 2002-2003, K A Fraser
* Copyright (c) 2005, Grzegorz Milos, gm281@cam.ac.uk,Intel Research Cambridge
* Copyright (c) 2020, EPAM Systems Inc.
*/
#ifndef XEN_HVM_H__
#define XEN_HVM_H__
#include <asm/xen/hypercall.h>
#include <xen/interface/hvm/params.h>
#include <xen/interface/xen.h>
extern struct shared_info *HYPERVISOR_shared_info;
int hvm_get_parameter(int idx, uint64_t *value);
int hvm_get_parameter_maintain_dcache(int idx, uint64_t *value);
struct shared_info *map_shared_info(void *p);
void do_hypervisor_callback(struct pt_regs *regs);
void mask_evtchn(uint32_t port);
void unmask_evtchn(uint32_t port);
void clear_evtchn(uint32_t port);
#endif /* XEN_HVM_H__ */