hv: rename RTCM source files

'ptcm' and 'ptct' are legacy name according
   to the latest TCC spec, hence rename below files
   to avoid confusing:

  ptcm.c -> rtcm.c
  ptcm.h -> rtcm.h
  ptct.h -> rtct.h

Tracked-On: #5649
Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
This commit is contained in:
Yonghua Huang 2021-01-28 10:06:09 +08:00 committed by wenlingz
parent d8b754e53a
commit 806f479108
11 changed files with 10 additions and 10 deletions

View File

@ -198,7 +198,7 @@ ifeq ($(CONFIG_MULTIBOOT2),y)
BOOT_C_SRCS += boot/multiboot/multiboot2.c
endif
BOOT_C_SRCS += boot/reloc.c
BOOT_C_SRCS += arch/x86/ptcm.c
BOOT_C_SRCS += arch/x86/rtcm.c
# hardware management component
HW_S_SRCS += arch/x86/idt.S

View File

@ -35,7 +35,7 @@
#include <host_pm.h>
#include <pci.h>
#include <acrn_common.h>
#include <ptcm.h>
#include <rtcm.h>
/* Per ACPI spec:
* There are two fundamental types of ACPI tables:

View File

@ -28,7 +28,7 @@
#include <uart16550.h>
#include <vpci.h>
#include <ivshmem.h>
#include <ptcm.h>
#include <rtcm.h>
#define CPU_UP_TIMEOUT 100U /* millisecond */
#define CPU_DOWN_TIMEOUT 100U /* millisecond */

View File

@ -15,7 +15,7 @@
#include <vtd.h>
#include <logmsg.h>
#include <trace.h>
#include <ptct.h>
#include <rtct.h>
#define DBG_LEVEL_EPT 6U

View File

@ -10,7 +10,7 @@
#include <reloc.h>
#include <vacpi.h>
#include <logmsg.h>
#include <ptcm.h>
#include <rtcm.h>
#define ENTRY_HPA1_LOW_PART1 2U
#define ENTRY_HPA1_LOW_PART2 4U

View File

@ -35,7 +35,7 @@
#include <trampoline.h>
#include <assign.h>
#include <vgpio.h>
#include <ptcm.h>
#include <rtcm.h>
/* Local variables */

View File

@ -19,7 +19,7 @@
#include <vtd.h>
#include <vcpuid.h>
#include <trace.h>
#include <ptcm.h>
#include <rtcm.h>
/*
* According to "SDM APPENDIX C VMX BASIC EXIT REASONS",

View File

@ -8,7 +8,7 @@
#include <logmsg.h>
#include <misc_cfg.h>
#include <mmu.h>
#include <ptcm.h>
#include <rtcm.h>
uint64_t psram_area_bottom;

View File

@ -22,7 +22,7 @@
#include <mmio_dev.h>
#include <ivshmem.h>
#include <vmcs9900.h>
#include <ptcm.h>
#include <rtcm.h>
#define DBG_LEVEL_HYCALL 6U

View File

@ -7,7 +7,7 @@
#ifndef PTCM_H
#define PTCM_H
#include <ptct.h>
#include <rtct.h>
#define MSABI __attribute__((ms_abi))