From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com []) by mx.groups.io with SMTP id smtpd.web10.6968.1594464191547650055 for ; Sat, 11 Jul 2020 03:43:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: ashraf.javeed@intel.com) IronPort-SDR: TwC3BcQe0ttU0oEDRzwXbHJoGO+a3DjIp1FUzoWLSXitWWgc429cbdwAaolC+fdiom/pY/EoFN 254Tzxedazgw== X-IronPort-AV: E=McAfee;i="6000,8403,9678"; a="135846558" X-IronPort-AV: E=Sophos;i="5.75,339,1589266800"; d="scan'208";a="135846558" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Jul 2020 03:43:14 -0700 IronPort-SDR: GTONHlA4lH2FrFePCZWGB8TAp3okMocs+XsICP9mTcz/P+E53+gBXsvSRg0QIfdbORDTHGVXhA 5rtUEOD+z2FA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,339,1589266800"; d="scan'208";a="458601084" Received: from unknown (HELO PIDSBABIOS005.gar.corp.intel.com) ([10.223.9.183]) by orsmga005.jf.intel.com with ESMTP; 11 Jul 2020 03:43:13 -0700 From: "Javeed, Ashraf" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: =?UTF-8?B?W1BBVENIIFYxIDIvMl0g77u/TWRlUGtnLUluZHVzdHJ5U3RhbmRhcmQ6IE1haW4gaGVhZGVyIGZvciBhbGwgdmVyc2lvbnMgb2YgQ1hMIHJlZ2lzdGVycw==?= Date: Sat, 11 Jul 2020 16:10:09 +0530 Message-Id: <20200711104009.15296-3-ashraf.javeed@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20200711104009.15296-1-ashraf.javeed@intel.com> References: <20200711104009.15296-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 --- 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