mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-20 00:58:10 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4516 1) Add CXL 3.0 header file to comply with CXL 3.0 specification 2) CXL 3.0 header will embed Cxl20.h 3) Updated Cxl.h to point to 3.0 header file Signed-off-by: Foster Nong <foster.nong@intel.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Ray Ni <ray.ni@intel.com> Cc: Chris Li <chrisli@os.amperecomputing.com> Acked-by: Liming Gao <gaoliming@byosoft.com.cn>
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/Cxl30.h>
|
|
//
|
|
// CXL assigned new Vendor ID
|
|
//
|
|
#define CXL_DVSEC_VENDOR_ID 0x1E98
|
|
|
|
#endif
|