From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id E23C7AC0D50 for ; Wed, 27 Nov 2024 09:12:57 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=4iqDiGqC/Tv7CBztnidzKsqfK4uraIQuWrTsth+xs0o=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240830; t=1732698777; v=1; x=1732957976; b=OjhzSinL71j1KRhlXm99ylxJ1LZXgNZ9mNjAlypNz7LJwp4kH7g+o5nwDH4B0lkEVsXFEUqj 8GNuqR0YSKeYDX2rdZUfZt4WQD419dss3eVZOUBuV1h8BiB5PgTFMlI+Kqo0iB47tnu32hK9o1O VoU3e5ciLJtiEgbbloldXMjvb1Vk4Hhqr7LMV5CiQIL7aFU3rFK/gUk0pkycw0Qv5E1oeEMzPum o8LR3jqUDcvcZ68m/OZJesh66JVKtg/vJXtRHr0Ba1RgFvARKb7NtiUcz7dzFrTL3lM3I2V06Yo ACPLczT/FXbf6s8pvp/sV3AzkmsbNwyL96/YYtt4ncZag== X-Received: by 127.0.0.2 with SMTP id yRJYYY7687511xQUbKk5lUzJ; Wed, 27 Nov 2024 01:12:56 -0800 X-Received: from zg8tmja5ljk3lje4ms43mwaa.icoremail.net (zg8tmja5ljk3lje4ms43mwaa.icoremail.net [209.97.181.73]) by mx.groups.io with SMTP id smtpd.web11.68119.1732698773874548459 for ; Wed, 27 Nov 2024 01:12:55 -0800 X-Received: from prodtpl.icoremail.net (unknown [10.12.1.20]) by hzbj-icmmx-6 (Coremail) with SMTP id AQAAfwAX9nqS4kZnJUgFBQ--.64894S2; Wed, 27 Nov 2024 17:12:50 +0800 (CST) X-Received: from phytium.com.cn (unknown [218.76.62.144]) by mail (Coremail) with SMTP id AQAAfwCn_nqR4kZnVcRcAA--.11074S3; Wed, 27 Nov 2024 17:12:50 +0800 (CST) From: "Yuquan Wang" To: AbdulLateef.Attar@amd.com, gaoliming@byosoft.com.cn, michael.d.kinney@intel.com, zhiguang.liu@intel.com Cc: Jonathan.Cameron@Huawei.com, marcin.juszkiewicz@linaro.org, chenbaozi@phytium.com.cn, devel@edk2.groups.io, linux-cxl@vger.kernel.org, Yuquan Wang Subject: [edk2-devel] [RFC EDK2 PATCH v5 0/1] MdePkg/IndustryStandard: add definitions for CXL CEDT Date: Wed, 27 Nov 2024 17:12:28 +0800 Message-Id: <20241127091229.112833-1-wangyuquan1236@phytium.com.cn> MIME-Version: 1.0 X-CM-TRANSID: AQAAfwCn_nqR4kZnVcRcAA--.11074S3 X-CM-SenderInfo: 5zdqw5pxtxt0arstlqxsk13x1xpou0fpof0/1tbiAQACAWdGJokDzQABsD X-Coremail-Antispam: 1Uk129KBjvdXoW7Gry3Cr45Xw4fAF4rur4rKrg_yoWDXwb_u3 4Iyry8Gw18ZFyxXay5KF1rtr97Gr4Utr1Fka9xXr1xWF1DJrs8Cw4UJ39xZFyfurW2qF1f J3Z8ZrWfAwnFgjkaLaAFLSUrUUUUbb8apTn2vfkv8UJUUUU8wcxFpf9Il3svdxBIdaVrnU Uv73VFW2AGmfu7jjvjm3AaLaJ3UjIYCTnIWjDUYxBIdaVFxhVjvjDU0xZFpf9x0zRUUUUU UUUU= Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Wed, 27 Nov 2024 01:12:55 -0800 Resent-From: wangyuquan1236@phytium.com.cn Reply-To: devel@edk2.groups.io,wangyuquan1236@phytium.com.cn List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: VJzLGbN3Y39ORgkbEhlIwSjex7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240830 header.b=OjhzSinL; dmarc=none; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io v4 -> v5: - Add some comments on maximum sizing - Introduce a errata fixed at CXL3.2 v3 -> v4: - Fix the style of the variable name according to EDKII coding guidelines v2 -> v3: - Put each struct into the file for the spec they were introduced RFC because - Less experience and not particularly confident in edk2 area I am trying to support cxl on Qemu sbsa-ref platform, but it relies on CXL ACPI elements within compiled UEFI flash instead of virt/i386 using qemu-build-Acpi tables. Thus I introduce fundamental structures of CEDT into the header file for the spec they were introduced. Yuquan Wang (1): MdePkg/IndustryStandard: add definitions for CXL CEDT MdePkg/Include/IndustryStandard/Cxl20.h | 41 +++++++++++++++++ MdePkg/Include/IndustryStandard/Cxl30.h | 59 +++++++++++++++++++++++++ MdePkg/Include/IndustryStandard/Cxl31.h | 47 ++++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 MdePkg/Include/IndustryStandard/Cxl31.h -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#120850): https://edk2.groups.io/g/devel/message/120850 Mute This Topic: https://groups.io/mt/109803981/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-