From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com []) by mx.groups.io with SMTP id smtpd.web10.12336.1584810469766332861 for ; Sat, 21 Mar 2020 10:07:53 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: ashraf.javeed@intel.com) IronPort-SDR: Wsl3Cb0OaSHG5Gq7ONXJpN7s1f7a1L22WUxc3UIqOssQZpobdKBsWitZIHy8gZOxPLHCsZQkI3 LLaqR5sdDRoA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Mar 2020 10:07:52 -0700 IronPort-SDR: DdJkMINCsoR/Hx1WabfdtExaBb3a/HcTiM30DMYolnrBznH+jA+dKfwVEHqS6cmt470lZoeiyI B97oFiFsIQGQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,289,1580803200"; d="scan'208";a="234811110" Received: from pidsbabios005.gar.corp.intel.com ([10.66.128.37]) by orsmga007.jf.intel.com with ESMTP; 21 Mar 2020 10:07:51 -0700 From: "Javeed, Ashraf" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: =?UTF-8?B?W1BBVENIIFYyIDIvMl0g77u/TWRlUGtnLUluZHVzdHJ5U3RhbmRhcmQ6IENYTCAxLjEgQmFzZSBTcGVjaWZpY2F0aW9uIHJlZ2lzdGVycw==?= Date: Sat, 21 Mar 2020 22:37:26 +0530 Message-Id: <20200321170726.9760-3-ashraf.javeed@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20200321170726.9760-1-ashraf.javeed@intel.com> References: <20200321170726.9760-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 CXL Base Specification register definitions. Signed-off-by: Ashraf Javeed Cc: Michael D Kinney Cc: Liming Gao --- MdePkg/Include/IndustryStandard/Cxl.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/MdePkg/Include/IndustryStandard/Cxl.h b/MdePkg/Include/IndustryStandard/Cxl.h new file mode 100644 index 0000000000..d945fcbda2 --- /dev/null +++ b/MdePkg/Include/IndustryStandard/Cxl.h @@ -0,0 +1,18 @@ +/** @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_H_ +#define _CXL_H_ + +#include + +#endif + -- 2.21.0.windows.1