mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-21 06:39:53 +00:00
functions like set_vcpuid_entries & guest_cpuid should only server for virtual cpuid, so move such kind of functions to guest/vcpuid.c. and all native cpuid APIs will keep in cpuid.h Tracked-On: #1842 Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
45 lines
781 B
C
45 lines
781 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 <timer.h>
|
|
#include <vlapic.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 <assign.h>
|
|
#include <vtd.h>
|
|
|
|
#include <guest.h>
|
|
#include <vmexit.h>
|
|
#include <cpufeatures.h>
|
|
|
|
#endif /* HV_ARCH_H */
|