diff options
author | Javeed, Ashraf <ashraf.javeed@intel.com> | 2020-07-25 02:26:13 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-07-27 03:35:55 +0000 |
commit | 6074f57e5b19c4cfd45a139b793191f34fa31781 (patch) | |
tree | 08f53951bf1157a51e31fbb62726ff010b1581f0 /MdePkg/Include | |
parent | c25f146d8dd9ac369ed999c46b443cc5dff94521 (diff) | |
download | edk2-6074f57e5b19c4cfd45a139b793191f34fa31781.tar.gz edk2-6074f57e5b19c4cfd45a139b793191f34fa31781.tar.bz2 edk2-6074f57e5b19c4cfd45a139b793191f34fa31781.zip |
MdePkg/Include/IndustryStandard: Main CXL header
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2611
Introducing the Cxl.h as the main header file to support all versions
of Compute Express Link Specification register definitions.
Signed-off-by: Ashraf Javeed <ashraf.javeed@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/IndustryStandard/Cxl.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/Cxl.h b/MdePkg/Include/IndustryStandard/Cxl.h new file mode 100644 index 0000000000..632aa146d0 --- /dev/null +++ b/MdePkg/Include/IndustryStandard/Cxl.h @@ -0,0 +1,22 @@ +/** @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/Cxl11.h>
+//
+// CXL assigned new Vendor ID
+//
+#define CXL_DVSEC_VENDOR_ID 0x1E98
+
+#endif
+
|