2018-03-07 20:57:14 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2018-05-26 01:49:13 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-03-07 20:57:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HV_ARCH_H
|
|
|
|
#define HV_ARCH_H
|
|
|
|
|
|
|
|
#include <cpu.h>
|
|
|
|
#include <gdt.h>
|
|
|
|
#include <idt.h>
|
|
|
|
#include <apicreg.h>
|
|
|
|
#include <ioapic.h>
|
|
|
|
#include <lapic.h>
|
|
|
|
#include <msr.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <vcpu.h>
|
2018-03-05 15:09:30 +08:00
|
|
|
#include <trusty.h>
|
2018-04-17 12:12:33 +08:00
|
|
|
#include <pm.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
#include <vm.h>
|
|
|
|
#include <cpuid.h>
|
|
|
|
#include <mmu.h>
|
|
|
|
#include <irq.h>
|
|
|
|
#include <timer.h>
|
|
|
|
#include <softirq.h>
|
|
|
|
#include <vmx.h>
|
|
|
|
#include <assign.h>
|
|
|
|
#include <vtd.h>
|
|
|
|
|
|
|
|
#include <vpic.h>
|
|
|
|
#include <vlapic.h>
|
|
|
|
#include <vioapic.h>
|
|
|
|
#include <guest.h>
|
|
|
|
#include <vmexit.h>
|
2018-04-09 09:19:35 +08:00
|
|
|
#include <cpufeatures.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
|
|
|
|
#endif /* HV_ARCH_H */
|