mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-04-04 19:33:54 +00:00
Update below terminologies according to latest TCC Spec: PTCM -> RTCM PTCT -> RTCT PTCM binary -> CRL pSRAM -> Software SRAM Tracked-On: #5649 Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
17 lines
340 B
C
17 lines
340 B
C
/*
|
|
* Copyright (C) 2020 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef RTCT_H
|
|
#define RTCT_H
|
|
|
|
|
|
/* TODO: Move to high-memory region. */
|
|
#define SOFTWARE_SRAM_BASE_HPA 0x40080000UL
|
|
#define SOFTWARE_SRAM_BASE_GPA 0x40080000UL
|
|
#define SOFTWARE_SRAM_MAX_SIZE 0x00800000UL
|
|
|
|
#endif /* RTCT_H */
|