Files
acrn-hypervisor/hypervisor/include/arch/x86/hv_arch.h
Grandhi, Sainath 4ff9f5dfb2 hv: Enumerate IOAPIC info from MADT
IOAPIC info, specifically ID, is needed to map the IOAPIC to
corresponding DMAR. DMAR table in ACPI has a field that has IOAPIC
ID, that matches the info provided in MADT. Both (IOAPIC info from
MADT and from DMAR) is needed for remapping IOAPIC interrupts.

Tracked-On: #2426
Signed-off-by: Sainath Grandhi <sainath.grandhi@intel.com>
Acked-by: Anthony Xu <anthony.xu@intel.com>
2019-02-01 15:54:55 +08:00

49 lines
861 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 <lapic.h>
#include <msr.h>
#include <io.h>
#include <io_req.h>
#include <io_emul.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 <vcpuid.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 <vtd.h>
#include <guest.h>
#include <vmexit.h>
#include <cpufeatures.h>
#endif /* HV_ARCH_H */