hv:remove common header files

remove hypervisor.h/hv_debug.h/hv_arch.h

Tracked-On: #1842
Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>

deleted:    include/arch/x86/hv_arch.h
deleted:    include/hv_debug.h
deleted:    include/hypervisor.h
This commit is contained in:
Mingqiang Chi
2019-04-29 17:13:23 +08:00
committed by wenlingz
parent b1f61669fc
commit b68aee6ef1
12 changed files with 35 additions and 118 deletions

View File

@@ -1,46 +0,0 @@
/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef HV_ARCH_H
#define HV_ARCH_H
#include <cpu.h>
#include <gdt.h>
#include <idt.h>
#include <apicreg.h>
#include <lapic.h>
#include <msr.h>
#include <io.h>
#include <io_req.h>
#include <vmx_io.h>
#include <ioapic.h>
#include <vmtrr.h>
#include <timer.h>
#include <vlapic.h>
#include <schedule.h>
#include <vcpu.h>
#include <trusty.h>
#include <guest_pm.h>
#include <host_pm.h>
#include <vpic.h>
#include <vuart.h>
#include <vioapic.h>
#include <vm.h>
#include <cpuid.h>
#include <page.h>
#include <ept.h>
#include <mmu.h>
#include <pgtable.h>
#include <irq.h>
#include <vmx.h>
#include <vmcs.h>
#include <assign.h>
#include <guest_memory.h>
#include <vmexit.h>
#include <cpufeatures.h>
#endif /* HV_ARCH_H */

View File

@@ -6,6 +6,7 @@
#ifndef ZEROPAGE_H
#define ZEROPAGE_H
#include <e820.h>
struct zero_page {
uint8_t pad1[0x1e8]; /* 0x000 */

View File

@@ -1,18 +0,0 @@
/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef HV_DEBUG_H
#define HV_DEBUG_H
#include <logmsg.h>
#include <console.h>
#include <dump.h>
#include <trace.h>
#include <sbuf.h>
#include <npk_log.h>
#include <profiling.h>
#endif /* HV_DEBUG_H */

View File

@@ -1,39 +0,0 @@
/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/************************************************************************
*
* FILE NAME
*
* hypervisor.h
*
* DESCRIPTION
*
* This file includes hypervisor used header files.
* It should be included in all the source files.
*
*
************************************************************************/
#ifndef HYPERVISOR_H
#define HYPERVISOR_H
/* Include config header file containing config options */
#include <types.h>
#include <errno.h>
#include <rtl.h>
#include <spinlock.h>
#include <mem_mgt.h>
#include <util.h>
#include <list.h>
#include <atomic.h>
#include <bits.h>
#include <sprintf.h>
#include "acrn_common.h"
#include <acrn_hv_defs.h>
#include <hv_arch.h>
#include <hv_debug.h>
#endif /* HYPERVISOR_H */