mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-23 23:54:55 +00:00
-- rename struct vioapic --> struct acrn_vioapic -- update 'vioapic' field in 'struct arch_vm' from pointer to instance -- change vm_ioapic(vm) to inline, and move it to vm.h -- change vioapic_init to void type Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> Reviewed-by: Anthony Xu <anthony.xu@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
44 lines
770 B
C
44 lines
770 B
C
/*
|
|
* 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 <ioapic.h>
|
|
#include <lapic.h>
|
|
#include <msr.h>
|
|
#include <io.h>
|
|
#include <ioreq.h>
|
|
#include <mtrr.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 <mmu.h>
|
|
#include <pgtable_types.h>
|
|
#include <pgtable.h>
|
|
#include <irq.h>
|
|
#include <timer.h>
|
|
#include <vmx.h>
|
|
#include <assign.h>
|
|
#include <vtd.h>
|
|
|
|
#include <vlapic.h>
|
|
#include <guest.h>
|
|
#include <vmexit.h>
|
|
#include <cpufeatures.h>
|
|
|
|
#endif /* HV_ARCH_H */
|