modulization: move virtual cpuid stuff into guest dir
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>
This commit is contained in:
parent
90d7bddd2f
commit
07427b4ca9
|
@ -133,7 +133,6 @@ S_SRCS += arch/x86/idt.S
|
||||||
C_SRCS += arch/x86/ioapic.c
|
C_SRCS += arch/x86/ioapic.c
|
||||||
C_SRCS += arch/x86/lapic.c
|
C_SRCS += arch/x86/lapic.c
|
||||||
C_SRCS += arch/x86/cpu.c
|
C_SRCS += arch/x86/cpu.c
|
||||||
C_SRCS += arch/x86/cpuid.c
|
|
||||||
C_SRCS += arch/x86/mmu.c
|
C_SRCS += arch/x86/mmu.c
|
||||||
C_SRCS += arch/x86/e820.c
|
C_SRCS += arch/x86/e820.c
|
||||||
C_SRCS += arch/x86/pagetable.c
|
C_SRCS += arch/x86/pagetable.c
|
||||||
|
@ -157,6 +156,7 @@ C_SRCS += arch/x86/pm.c
|
||||||
S_SRCS += arch/x86/wakeup.S
|
S_SRCS += arch/x86/wakeup.S
|
||||||
C_SRCS += arch/x86/static_checks.c
|
C_SRCS += arch/x86/static_checks.c
|
||||||
C_SRCS += arch/x86/trampoline.c
|
C_SRCS += arch/x86/trampoline.c
|
||||||
|
C_SRCS += arch/x86/guest/vcpuid.c
|
||||||
C_SRCS += arch/x86/guest/vcpu.c
|
C_SRCS += arch/x86/guest/vcpu.c
|
||||||
C_SRCS += arch/x86/guest/vm.c
|
C_SRCS += arch/x86/guest/vm.c
|
||||||
C_SRCS += arch/x86/guest/vlapic.c
|
C_SRCS += arch/x86/guest/vlapic.c
|
||||||
|
|
|
@ -135,9 +135,4 @@ static inline void cpuid_subleaf(uint32_t leaf, uint32_t subleaf,
|
||||||
asm_cpuid(eax, ebx, ecx, edx);
|
asm_cpuid(eax, ebx, ecx, edx);
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t set_vcpuid_entries(struct acrn_vm *vm);
|
|
||||||
void guest_cpuid(struct acrn_vcpu *vcpu,
|
|
||||||
uint32_t *eax, uint32_t *ebx,
|
|
||||||
uint32_t *ecx, uint32_t *edx);
|
|
||||||
|
|
||||||
#endif /* CPUID_H_ */
|
#endif /* CPUID_H_ */
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef VCPUID_H_
|
||||||
|
#define VCPUID_H_
|
||||||
|
|
||||||
|
int32_t set_vcpuid_entries(struct acrn_vm *vm);
|
||||||
|
void guest_cpuid(struct acrn_vcpu *vcpu,
|
||||||
|
uint32_t *eax, uint32_t *ebx,
|
||||||
|
uint32_t *ecx, uint32_t *edx);
|
||||||
|
|
||||||
|
#endif /* VCPUID_H_ */
|
|
@ -28,6 +28,7 @@
|
||||||
#include <vioapic.h>
|
#include <vioapic.h>
|
||||||
#include <vm.h>
|
#include <vm.h>
|
||||||
#include <cpuid.h>
|
#include <cpuid.h>
|
||||||
|
#include <vcpuid.h>
|
||||||
#include <page.h>
|
#include <page.h>
|
||||||
#include <mmu.h>
|
#include <mmu.h>
|
||||||
#include <pgtable.h>
|
#include <pgtable.h>
|
||||||
|
|
Loading…
Reference in New Issue