From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 118ADAC12E6 for ; Wed, 3 Apr 2024 17:34:00 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=uNJAhKzAXtHZMxSJRkauaHWWViWwGtLYz+Jkd4jcSVY=; 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=20240206; t=1712165639; v=1; b=guJQOp7EJHbPBohG+mAQ8j66Up52rWyuJ+xcnwCnmgsLFXYZHacrExWKJ2qv+UkAhuDiRCM8 eAVEQLorQzds8vi1V/LPHpGRzSROEnQAWnJUL0Cj0GD4PTS3eoZH6EQE/1QSWp8fYB/JCdYeN6y 9/jsHkaRo8M3PEWNdI8aSDnASZTw/jBvPBliWZxPb2kHtfRAra/5fbtMDg/mSttmC5mMmVieAqz 0sSaZPnt9Am08S443Rt4x5XOnO36nsIkPpFoEj5qYRdWs1Bh/LmG1Bw1HUPrYPd2MahRSfUYETe n2OmFe5nNGSs15o8y3cr8/TMS+3f/Dylt9RBniyztI5rw== X-Received: by 127.0.0.2 with SMTP id r0rOYY7687511xcAhUaxwEPA; Wed, 03 Apr 2024 10:33:59 -0700 X-Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.17810.1712165638862269142 for ; Wed, 03 Apr 2024 10:33:58 -0700 X-Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 283921007; Wed, 3 Apr 2024 10:34:29 -0700 (PDT) X-Received: from usa.arm.com (a079755.arm.com [10.162.46.129]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 5710B3F766; Wed, 3 Apr 2024 10:33:56 -0700 (PDT) From: "Prabin CA" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Sami Mujawar , Thomas Abraham Subject: [edk2-devel] [edk2-platforms][PATCH v1 0/5] Platform/Sgi: Extend SMBIOS support for RD-V2 and RD-Fremont Date: Wed, 3 Apr 2024 23:03:29 +0530 Message-Id: <20240403173334.3063987-1-prabin.ca@arm.com> MIME-Version: 1.0 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, 03 Apr 2024 10:33:58 -0700 Resent-From: prabin.ca@arm.com Reply-To: devel@edk2.groups.io,prabin.ca@arm.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: XMJ4AB3S24iSnh8g4BcRSh8ex7686176AA= Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=guJQOp7E; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=arm.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io Each CPUs of RD-V2 has 64KB of L1 instruction/data cache, 2MB of L2 cache and 32MB of system level cache. The system architecture of the RD-V2 platform is similar to the RD-N2 platform, except for the CPU and L2 cache size. So existing RD-N2 SMBIOS support is extended for RD-V2 platform to reuse rest of the RD-N2 SMBIOS configuration for the RD-V2 platform. Each CPUs of RD-Fremont include 64KB L1 instruction/data cache, 2MB L2 cache and 2MB of system level cache. This patch series adding the extended SMBIOS support for RD-Fremont platform. In addition to patches that extend the SMBIO support for these two platforms, there are two patches that update support for existing platforms. The first patch in this series introduce a PCD to specify L2 cache size. The second patch make use of this PCD in PPTT table. Link to gitlab branch with the patches in this series - https://gitlab.arm.com/infra-solutions/reference-design/platsw/edk2-platf= orms/-/commits/topics/rdv2/?ref_type=3Dheads Prabin CA (3): Platform/Sgi: Add a new PCD for L2 cache size Platform/Sgi: Use PCD value for L2 cache size in PPTT table Platform/Sgi: Extend SMBIOS support for RD-Fremont Pranav Madhu (2): Platform/Sgi: Define RD-V2 platform id values Platform/Sgi: Extend SMBIOS support for RD-V2 platform Platform/ARM/SgiPkg/SgiPlatform.dec = | 3 +++ Platform/ARM/SgiPkg/RdN2/RdN2.dsc = | 4 ++++ Platform/ARM/SgiPkg/AcpiTables/RdN2AcpiTables.inf = | 1 + Platform/ARM/SgiPkg/Include/SgiPlatform.h = | 12 ++++++++++- Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type1SystemInformation.c = | 10 ++++++++-- Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type4ProcessorInformation.= c | 12 ++++++++--- Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type7CacheInformation.c = | 21 +++++++++++++++++++- Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c = | 14 ++++++++++++- Platform/ARM/SgiPkg/AcpiTables/RdN2/Pptt.aslc = | 4 +++- 9 files changed, 72 insertions(+), 9 deletions(-) --=20 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#117378): https://edk2.groups.io/g/devel/message/117378 Mute This Topic: https://groups.io/mt/105313647/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-