From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com []) by mx.groups.io with SMTP id smtpd.web12.7142.1594973847500752299 for ; Fri, 17 Jul 2020 01:17:30 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: ashraf.javeed@intel.com) IronPort-SDR: 2VSIUvRY2AkZLGdtiInKuTXHstnOXtdD0jLr81rrhpj5UbGYlgabs6Jz6KE2ZzW8r6h42rlx3Y O9OOz+/ilzrw== X-IronPort-AV: E=McAfee;i="6000,8403,9684"; a="147063035" X-IronPort-AV: E=Sophos;i="5.75,362,1589266800"; d="scan'208";a="147063035" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jul 2020 01:17:30 -0700 IronPort-SDR: /ZJdajEXKj1c6c2PSeSx+aooEWHx3hdN5sVpiPd+BpIfSGXFpo8G61c1m8f8vgS/0pjTAAxCXV MpX8/xVTnNlg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,362,1589266800"; d="scan'208";a="486892800" Received: from pidsbabios005.gar.corp.intel.com ([10.66.128.37]) by fmsmga005.fm.intel.com with ESMTP; 17 Jul 2020 01:17:29 -0700 From: "Javeed, Ashraf" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: =?UTF-8?B?W1BBVENIIFYyIDIvMl0g77u/TWRlUGtnLUluZHVzdHJ5U3RhbmRhcmQ6IE1haW4gaGVhZGVyIGZvciBDWEwgcmVnaXN0ZXJz?= Date: Fri, 17 Jul 2020 13:43:37 +0530 Message-Id: <20200717081337.10076-3-ashraf.javeed@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20200717081337.10076-1-ashraf.javeed@intel.com> References: <20200717081337.10076-1-ashraf.javeed@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Cc: Michael D Kinney Cc: Liming Gao -- V2: Indentation and double declaration fix, copyright date update --- MdePkg/Include/IndustryStandard/Cxl.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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.
+SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + +#ifndef _CXL_MAIN_H_ +#define _CXL_MAIN_H_ + +#include +// +// CXL assigned new Vendor ID +// +#define CXL_DVSEC_VENDOR_ID 0x1E98 + +#endif + -- 2.21.0.windows.1