mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-22 18:18:09 +02:00
1) Add CXL 2.0 header file to comply with CXL 2.0 specification 2) CXL 2.0 header will embed Cxl11.h 3) Updated Cxl.h to point to 2.0 header file Signed-off-by: Chris Li <chrisli@os.amperecomputing.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> Cc: Ray Ni <ray.ni@intel.com> Cc: Yao, Jiewen <jiewen.yao@intel.com> Cc: Nong, Foster <foster.nong@intel.com> Cc: Kinney, Michael D <michael.d.kinney@intel.com>
22 lines
440 B
C
Executable File
22 lines
440 B
C
Executable File
/** @file
|
|
Support for the latest CXL standard
|
|
|
|
The main header to reference all versions of CXL Base specification registers
|
|
from the MDE
|
|
|
|
Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef _CXL_MAIN_H_
|
|
#define _CXL_MAIN_H_
|
|
|
|
#include <IndustryStandard/Cxl20.h>
|
|
//
|
|
// CXL assigned new Vendor ID
|
|
//
|
|
#define CXL_DVSEC_VENDOR_ID 0x1E98
|
|
|
|
#endif
|