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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 9ACCCC3ABCC for ; Tue, 13 May 2025 13:11:04 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E361D10E3A3; Tue, 13 May 2025 13:11:03 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="YxlRHcBd"; dkim-atps=neutral Received: from nyc.source.kernel.org (nyc.source.kernel.org [147.75.193.91]) by gabe.freedesktop.org (Postfix) with ESMTPS id 32EE010E3A3; Tue, 13 May 2025 13:11:03 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by nyc.source.kernel.org (Postfix) with ESMTP id 68EACA4CC8E; Tue, 13 May 2025 13:11:02 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 148CBC4CEE4; Tue, 13 May 2025 13:10:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1747141862; bh=gKhlhLz8On/I4blpj1Xo3XEfw/VwE1nkBsqpbi+0TmQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YxlRHcBdIyTjITqhshYiFpQXnErtT8W0x9QfgcocaaCo3KmngxVi2PXU3ae//Rjoh n4XkubZAQmTCqOZ45WiYdnv11SkVaD8EReCBBjhdAeVed0+ggtyM/eMMx7I7O6YZwC 0roJwxFIGOud8lJxctuySPBSWWTOZpr76LQKKFxNeAou84cnhNOVJKKAH0+telo092 sBi0KjRi4500jrLdmCQQPQiPSNXK+31H5gtWADb+Fm+ygH8whuP46M/dbSvAuRyZnw 3wKeAbQFoyl7THTiqI57VDigZ26jxFa7EcQgfJTBB/rjbroheuwJo7tpThgRc9SlH2 lZe92SOiaznnA== Date: Tue, 13 May 2025 15:10:54 +0200 From: Danilo Krummrich To: Alexandre Courbot Cc: Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , David Airlie , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Jonathan Corbet , John Hubbard , Ben Skeggs , Joel Fernandes , Timur Tabi , Alistair Popple , linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org, nouveau@lists.freedesktop.org, dri-devel@lists.freedesktop.org, Shirish Baskaran Subject: Re: [PATCH v3 00/19] nova-core: run FWSEC-FRTS to perform first stage of GSP initialization Message-ID: References: <20250507-nova-frts-v3-0-fcb02749754d@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250507-nova-frts-v3-0-fcb02749754d@nvidia.com> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Wed, May 07, 2025 at 10:52:27PM +0900, Alexandre Courbot wrote: > gpu: nova-core: derive useful traits for Chipset > gpu: nova-core: add missing GA100 definition > gpu: nova-core: take bound device in Gpu::new > gpu: nova-core: define registers layout using helper macro [ Fix typo in commit message. - Danilo ] > gpu: nova-core: fix layout of NV_PMC_BOOT_0 [ Use Result from kernel::prelude. - Danilo ] > gpu: nova-core: move Firmware to firmware module [ Don't require a bound device, remove pub visibility from Firmware fields, use FIRMWARE_VERSION consistently. - Danilo ] Applied the patches above to nova-next, thanks!