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 2DD0ED801DB for ; Wed, 8 Nov 2023 03:48:42 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=o+L3CT3nFVBbY9hAXhqEOpftMqB9OpoxR35hAJqX8Oc=; c=relaxed/simple; d=groups.io; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:In-Reply-To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type:Content-Disposition; s=20140610; t=1699415320; v=1; b=cCkBadQyhJfKIjhlAoa7dFgSbBptaOZpESh25mJUhbmoQP2V02gv6PMttSg3uxWjxjc2Biu7 rROYZcdR6y+IxK292K4Q1Wja2nN7cduw166dG9r1Cv0anKR3cnHX6KrYmFvEcJSv5zG6/CRkMoo BJPtItg6u9z2WI4FfPGhIYPE= X-Received: by 127.0.0.2 with SMTP id XLZNYY7687511xZeEepqxlEj; Tue, 07 Nov 2023 19:48:40 -0800 X-Received: from mail-il1-f173.google.com (mail-il1-f173.google.com [209.85.166.173]) by mx.groups.io with SMTP id smtpd.web10.6706.1699415320168118128 for ; Tue, 07 Nov 2023 19:48:40 -0800 X-Received: by mail-il1-f173.google.com with SMTP id e9e14a558f8ab-35932aa21a3so24088235ab.2 for ; Tue, 07 Nov 2023 19:48:40 -0800 (PST) X-Gm-Message-State: RNrmYyfileL4ixVhE3zfw9mTx7686176AA= X-Google-Smtp-Source: AGHT+IGV+TmGhKfelCFYSFEZuEAPdaulPHSyUYuFiPFTsVeKcQKpaPnpKJgwg9oNtLZ7edDmfQTVOA== X-Received: by 2002:a05:6e02:148f:b0:359:398d:7c32 with SMTP id n15-20020a056e02148f00b00359398d7c32mr1209058ilk.0.1699415319374; Tue, 07 Nov 2023 19:48:39 -0800 (PST) X-Received: from sunil-laptop ([106.51.188.78]) by smtp.gmail.com with ESMTPSA id eq7-20020a0566384e2700b0042b5423f021sm2987653jab.54.2023.11.07.19.48.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 07 Nov 2023 19:48:38 -0800 (PST) Date: Wed, 8 Nov 2023 09:18:28 +0530 From: "Sunil V L" To: Laszlo Ersek , Liming Gao , Michael D Kinney Cc: devel@edk2.groups.io, Dhaval , Ard Biesheuvel , Jiewen Yao , Jordan Justen , Gerd Hoffmann , Andrei Warkentin , Liming Gao , Zhiguang Liu , Daniel Schaefer Subject: Re: [edk2-devel] [PATCH v8 0/5] Cache Management Operations Support For RISC-V Message-ID: References: <20231106025356.167717-1-dhaval@rivosinc.com> MIME-Version: 1.0 In-Reply-To: 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 Reply-To: devel@edk2.groups.io,sunilvl@ventanamicro.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=cCkBadQy; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io; dmarc=none On Tue, Nov 07, 2023 at 07:04:58PM +0100, Laszlo Ersek wrote: > On 11/7/23 08:15, Sunil V L wrote: > > On Mon, Nov 06, 2023 at 08:23:51AM +0530, Dhaval wrote: > >> Implementing code to support Cache Management Operations (CMO) defined by > >> RISC-V CMO instructions.https://github.com/riscv/riscv-CMOs > >> This is a re-write of original series v5. > >> The patchset contains 5 patches- created based on V5 feedback. > >> 1. Restructuring of existing code and move instruction declarations into BaseLib > >> 2. Renaming existing functions to denote type of instruction used to maanage cache. > >> This is useful for further patches where more cache management instructions are added. > >> 3. Add the new cache maintenance operations to BaseLib, including the > >> new assembly instruction encodings. > >> 4. Update BaseCacheMaintenanceLib (utilizing the new BaseLib primitives) > >> 5. Add platform level PCD to allow overriding of RISC-V features. > >> > >> Code Link: https://github.com/tianocore/edk2/pull/5002 > >> > >> Cc: Ard Biesheuvel > >> Cc: Jiewen Yao > >> Cc: Jordan Justen > >> Cc: Gerd Hoffmann > >> Cc: Sunil V L > >> Cc: Andrei Warkentin > >> Cc: Laszlo Ersek > >> Cc: Michael D Kinney > >> Cc: Liming Gao > >> Cc: Zhiguang Liu > >> Cc: Daniel Schaefer > >> > >> Dhaval (5): > >> MdePkg: Move RISC-V Cache Management Declarations Into BaseLib > >> MdePkg: Rename Cache Management Function To Clarify Fence Based Op > >> MdePkg: Implement RISC-V Cache Management Operations > >> MdePkg: Utilize Cache Management Operations Implementation For RISC-V > >> OvmfPkg/RiscVVirt: Override for RV CPU Features > > > > If nobody objects, I will merge this tomorrow with or without ack from > > MdePkg maintainers. The changes are related to RISC-V only anyway. > > I think you'll have to ask Mike or Liming to do the merge, given that > we're now in soft feature freeze. I do agree though that the series's > review completed in time for the merge; v8 picked up tags given previously. > Ahh, yes. Thanks for reminding me. Hi Liming, Mike, Could you help merging this series? Thanks, Sunil -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#110888): https://edk2.groups.io/g/devel/message/110888 Mute This Topic: https://groups.io/mt/102413464/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-