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>
|
2018-07-24 17:00:10 +08:00
|
|
|
#include <ioreq.h>
|
2018-05-30 08:41:52 +08:00
|
|
|
#include <mtrr.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
#include <vcpu.h>
|
2018-03-05 15:09:30 +08:00
|
|
|
#include <trusty.h>
|
2018-06-14 21:07:26 +08:00
|
|
|
#include <guest_pm.h>
|
2018-06-14 10:11:57 +08:00
|
|
|
#include <host_pm.h>
|
2018-08-22 14:41:39 +08:00
|
|
|
#include <vpic.h>
|
2018-08-22 15:42:46 +08:00
|
|
|
#include <vuart.h>
|
2018-08-22 17:09:41 +08:00
|
|
|
#include <vioapic.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
#include <vm.h>
|
|
|
|
#include <cpuid.h>
|
|
|
|
#include <mmu.h>
|
2018-07-16 16:25:35 +08:00
|
|
|
#include <pgtable_types.h>
|
|
|
|
#include <pgtable.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
#include <irq.h>
|
|
|
|
#include <timer.h>
|
|
|
|
#include <vmx.h>
|
|
|
|
#include <assign.h>
|
|
|
|
#include <vtd.h>
|
|
|
|
|
|
|
|
#include <vlapic.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 */
|