1 /******************************************************************************
4 * HVM parameter and information table, written into guest memory map.
7 #ifndef __XEN_PUBLIC_HVM_HVM_INFO_TABLE_H__
8 #define __XEN_PUBLIC_HVM_HVM_INFO_TABLE_H__
10 #define HVM_INFO_PFN 0x09F
11 #define HVM_INFO_OFFSET 0x800
12 #define HVM_INFO_PADDR ((HVM_INFO_PFN << 12) + HVM_INFO_OFFSET)
14 struct hvm_info_table {
15 char signature[8]; /* "HVM INFO" */
22 #endif /* __XEN_PUBLIC_HVM_HVM_INFO_TABLE_H__ */