From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id AFC57CAC58E for ; Mon, 15 Sep 2025 06:26:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:Message-ID: In-Reply-To:Subject:cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=e+D9oUGVrO4v+w3qfk9JWeMB4Ky/Rg9KsbukkAg+T0Q=; b=S3qM0pIOJjCdVU 1M3VbIppKUZf7lUCTLRQP0J4RQ4n8Iu4h1QKnqsGEGrO4MFPfqX8fupO30V+oRHwhsT7u5xTzYFZo 7twx32VyJWhvpyhJ1e5B84gt4YuM9NSZeSDub7+vuRtR2Hw54aArfjlM/VkS6INaqikO/+ObR9rta iv2ROnkgfIHauFjNmNZU5Y8hrUvZbjbNxvVmR4oDJItHKvNLsdCqQ54QQz33kF6QBI1b9YL8AvjUw y+0NG6vIstw60yZ5pLyXXko69p6ibJUb16jTv4/yf9M4texHYwJPuIvKpLHACRttcG2aiWpKiXP1H gE0GamhIWliVqBOfIYGA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1uy2ey-00000002upF-1zrO; Mon, 15 Sep 2025 06:25:56 +0000 Received: from tor.source.kernel.org ([172.105.4.254]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1uy2ew-00000002uoj-2uxi; Mon, 15 Sep 2025 06:25:54 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 4BCC96014D; Mon, 15 Sep 2025 06:25:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49D65C4CEF1; Mon, 15 Sep 2025 06:25:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1757917552; bh=YXcIhrbg/wc7/PC0yhFG/NxcxwFsfdkDJDbFz4bgiJo=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=NlJfJLF7m2EQcyHFVyI/13N9QUB8Cft+tGjjcwm2v4qFJzXXHZcfIRcaPOKWtEm3Q 53a67rBuOs6EzCf1tJOPVATA/lku9Lqm64q8eQm0oyU8otM22h1qtPmBlYUfgazuIX s2vckc1AEmG1XLvcJp0hmMA/Z0NSoElXF3If2J5IitpCaJkxwRs7dmLWQiBYHlyyw0 l1jdYhYCsltrJlJrNKjcaicpNUdONiCcNwwR+XNFL0yckEvExlW1ZK730jSMdIqkDT trxkfG+Vyyhz95CaL1S3lhlvuXn4oCm7QBaA2oPoNnjxHqU5OViT/BuZrjgR6hLbe7 9oy4QSJJvrFdw== Date: Mon, 15 Sep 2025 00:25:52 -0600 (MDT) From: Paul Walmsley To: Atish Patra , Anup Patel cc: Will Deacon , Mark Rutland , Paul Walmsley , Palmer Dabbelt , Mayuresh Chitale , linux-riscv@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, kvm-riscv@lists.infradead.org, Sean Christopherson Subject: Re: [PATCH v6 0/8] Add SBI v3.0 PMU enhancements In-Reply-To: <20250909-pmu_event_info-v6-0-d8f80cacb884@rivosinc.com> Message-ID: References: <20250909-pmu_event_info-v6-0-d8f80cacb884@rivosinc.com> MIME-Version: 1.0 X-BeenThere: linux-riscv@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-riscv" Errors-To: linux-riscv-bounces+linux-riscv=archiver.kernel.org@lists.infradead.org On Tue, 9 Sep 2025, Atish Patra wrote: > SBI v3.0 specification[1] added two new improvements to the PMU chaper. > The SBI v3.0 specification is frozen and under public review phase as > per the RISC-V International guidelines. > > 1. Added an additional get_event_info function to query event availablity > in bulk instead of individual SBI calls for each event. This helps in > improving the boot time. > > 2. Raw event width allowed by the platform is widened to have 56 bits > with RAW event v2 as per new clarification in the priv ISA[2]. > > Apart from implementing these new features, this series improves the gpa > range check in KVM and updates the kvm SBI implementation to SBI v3.0. > > The opensbi patches have been merged. This series can be found at [3]. > > [1] https://github.com/riscv-non-isa/riscv-sbi-doc/releases/download/v3.0-rc7/riscv-sbi.pdf > [2] https://github.com/riscv/riscv-isa-manual/issues/1578 > [3] https://github.com/atishp04/linux/tree/b4/pmu_event_info_v6 > > Signed-off-by: Atish Patra For the series: Acked-by: Paul Walmsley - Paul _______________________________________________ linux-riscv mailing list linux-riscv@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-riscv