From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <bounce+27952+110820+7686176+12367111@groups.io> Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 7689E740037 for <rebecca@openfw.io>; Tue, 7 Nov 2023 07:15:32 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=NGGfOtkif42Tm+kXj8RhAENPZWdQRkAKFK4G+/d//oo=; 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=1699341331; v=1; b=PLNKB45V+GUcM5xNGbDGDYtFRDtQCQWaPnLouJd7Qq3E9aGMlebFBy+7a4PbwKzwv/eBnZ5L RC2UVneiBr4pEXsJVFhGZ6hMbfJnqk1Jtksq/NHN+e1nXF/F7uvHC9tgADHbA879GqbHL1uC1XU NFvUfjGXP3QHgdLOs7lvj0NM= X-Received: by 127.0.0.2 with SMTP id EEYGYY7687511xAN7Sh1OCVD; Mon, 06 Nov 2023 23:15:31 -0800 X-Received: from mail-il1-f175.google.com (mail-il1-f175.google.com [209.85.166.175]) by mx.groups.io with SMTP id smtpd.web11.5179.1699341330214007854 for <devel@edk2.groups.io>; Mon, 06 Nov 2023 23:15:30 -0800 X-Received: by mail-il1-f175.google.com with SMTP id e9e14a558f8ab-359974f4c7eso10456745ab.1 for <devel@edk2.groups.io>; Mon, 06 Nov 2023 23:15:30 -0800 (PST) X-Gm-Message-State: sOeURyV6FqtQqkZ2kXBklS1hx7686176AA= X-Google-Smtp-Source: AGHT+IFkRChFQAqoHnT7FT4FZt0xHnjjgSrVuGXvxnU1Hh4j6FVhnOhy0SzejsLBs36cYfFyg6SlIQ== X-Received: by 2002:a05:6e02:12c3:b0:359:2dc2:ea97 with SMTP id i3-20020a056e0212c300b003592dc2ea97mr1987308ilm.21.1699341329437; Mon, 06 Nov 2023 23:15:29 -0800 (PST) X-Received: from sunil-laptop ([106.51.188.78]) by smtp.gmail.com with ESMTPSA id p11-20020a056e02104b00b0035163fb9f9fsm2945112ilj.43.2023.11.06.23.15.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 06 Nov 2023 23:15:28 -0800 (PST) Date: Tue, 7 Nov 2023 12:45:19 +0530 From: "Sunil V L" <sunilvl@ventanamicro.com> To: Dhaval <dhaval@rivosinc.com> Cc: devel@edk2.groups.io, Ard Biesheuvel <ardb+tianocore@kernel.org>, Jiewen Yao <jiewen.yao@intel.com>, Jordan Justen <jordan.l.justen@intel.com>, Gerd Hoffmann <kraxel@redhat.com>, Andrei Warkentin <andrei.warkentin@intel.com>, Laszlo Ersek <lersek@redhat.com>, Michael D Kinney <michael.d.kinney@intel.com>, Liming Gao <gaoliming@byosoft.com.cn>, Zhiguang Liu <zhiguang.liu@intel.com>, Daniel Schaefer <git@danielschaefer.me> Subject: Re: [edk2-devel] [PATCH v8 0/5] Cache Management Operations Support For RISC-V Message-ID: <ZUnkB6SHQlJU8MJk@sunil-laptop> References: <20231106025356.167717-1-dhaval@rivosinc.com> MIME-Version: 1.0 In-Reply-To: <20231106025356.167717-1-dhaval@rivosinc.com> Precedence: Bulk List-Subscribe: <mailto:devel+subscribe@edk2.groups.io> List-Help: <mailto:devel+help@edk2.groups.io> Sender: devel@edk2.groups.io List-Id: <devel.edk2.groups.io> 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: <https://edk2.groups.io/g/devel/leave/12367111/7686176/1913456212/plugh> 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=PLNKB45V; dmarc=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 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 <ardb+tianocore@kernel.org> > Cc: Jiewen Yao <jiewen.yao@intel.com> > Cc: Jordan Justen <jordan.l.justen@intel.com> > Cc: Gerd Hoffmann <kraxel@redhat.com> > Cc: Sunil V L <sunilvl@ventanamicro.com> > Cc: Andrei Warkentin <andrei.warkentin@intel.com> > Cc: Laszlo Ersek <lersek@redhat.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Cc: Zhiguang Liu <zhiguang.liu@intel.com> > Cc: Daniel Schaefer <git@danielschaefer.me> > > 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. Thanks, Sunil -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#110820): https://edk2.groups.io/g/devel/message/110820 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] -=-=-=-=-=-=-=-=-=-=-=-