From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com []) by mx.groups.io with SMTP id smtpd.web11.1976.1595615180507569692 for ; Fri, 24 Jul 2020 11:26:25 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: ashraf.javeed@intel.com) IronPort-SDR: Aiz5baZXMF+kWRsT2wa5Pug5DYxnc2MYP41fZ1L4T7oZ5VpkbuaMkOfVxhcA541EP5wfYcb/YH UWuLnEywARmw== X-IronPort-AV: E=McAfee;i="6000,8403,9692"; a="148678678" X-IronPort-AV: E=Sophos;i="5.75,391,1589266800"; d="scan'208";a="148678678" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jul 2020 11:26:24 -0700 IronPort-SDR: w2NNpXKp2oihR3x+dtFpuqEMTmdwdVAnZZAkQS44sg3i7qeIsHwA2k4sS+qGICl/1ttcafhmOP 78jHp43mM4qQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,391,1589266800"; d="scan'208";a="489292149" Received: from pidsbabios005.gar.corp.intel.com ([10.66.128.37]) by fmsmga005.fm.intel.com with ESMTP; 24 Jul 2020 11:26:21 -0700 From: "Javeed, Ashraf" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: =?UTF-8?B?W1BBVENIIFY0IDIvMl0g77u/TWRlUGtnL0luY2x1ZGUvSW5kdXN0cnlTdGFuZGFyZDogTWFpbiBDWEwgaGVhZGVy?= Date: Fri, 24 Jul 2020 23:56:13 +0530 Message-Id: <20200724182613.9344-3-ashraf.javeed@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20200724182613.9344-1-ashraf.javeed@intel.com> References: <20200724182613.9344-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 -- V4: fix code style V3: Copyright date fix 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