mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-09 00:46:57 +00:00
-- rename io.c to io_emul.c, add io_emul.h -- rename io_request.c to io_req.c,rename ioreq.h to io_req.h -- move some APIs declaration from ioreq.h to io_emul.h related IO emulation Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com> Reviewed-by: Eddie Dong <eddie.dong@intel.com> modified: ../doc/acrn.doxyfile modified: Makefile renamed: arch/x86/io.c -> arch/x86/io_emul.c renamed: common/io_request.c -> common/io_req.c modified: include/arch/x86/hv_arch.h modified: include/arch/x86/io.h new file: include/arch/x86/io_emul.h renamed: include/arch/x86/ioreq.h -> include/arch/x86/io_req.h
47 lines
824 B
C
47 lines
824 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 <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 <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 */
|