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 23757C7115B for ; Mon, 23 Jun 2025 21:01:52 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A72A910E45B; Mon, 23 Jun 2025 21:01:51 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="Pim3mZX7"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id 21DC610E1DC; Mon, 23 Jun 2025 21:01:46 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 936D15C5B96; Mon, 23 Jun 2025 20:59:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B4AF7C4CEEA; Mon, 23 Jun 2025 21:01:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1750712501; bh=cXERQ1WmiGcavPsAUvd/Crx3myoOelB9VzsYgMSyqhY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Pim3mZX7P22cyRJaxzARvvsGUQba6pzW1S54DajAidtnK+pjc26kCIT6gp5FcHyoU 4LKJ3PM8JXySQIIUGIRNPPO5muVBX09FIIu+xVm33HPD6xLgk/pqOWRuDlhl2Q6+F0 PeqqAjkxfWl/Sya2gwOOALAZ1bGBk9DEspMFZN6bCz72nSrS4gQScTKd8OGZdBxXCL A883g7Bd4lsxrr7Wc/dnfj4Zetd/WKI2aJ7ZeIWVJdHANreVP9wC1MTjmqBKnvfchv 0WWDAatZxoBBeyF37BzqDHE+SvypbijyUdQt8E14Howwvy46wN9FnEIl2+tvZHbLnL oJmK6rHvudkuA== Date: Mon, 23 Jun 2025 23:01:33 +0200 From: Danilo Krummrich To: Alexandre Courbot Cc: Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Andreas Hindborg , Alice Ryhl , Trevor Gross , David Airlie , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Benno Lossin , 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, Lyude Paul , Shirish Baskaran Subject: Re: [PATCH v6 00/24] nova-core: run FWSEC-FRTS to perform first stage of GSP initialization Message-ID: References: <20250619-nova-frts-v6-0-ecf41ef99252@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250619-nova-frts-v6-0-ecf41ef99252@nvidia.com> X-BeenThere: nouveau@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Nouveau development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: nouveau-bounces@lists.freedesktop.org Sender: "Nouveau" On Thu, Jun 19, 2025 at 10:23:44PM +0900, Alexandre Courbot wrote: Applied to nova-next, thanks! > Alexandre Courbot (21): > rust: make ETIMEDOUT error available > rust: sizes: add constants up to SZ_2G > gpu: nova-core: use absolute paths in register!() macro > gpu: nova-core: add delimiter for helper rules in register!() macro > gpu: nova-core: expose the offset of each register as a type constant > gpu: nova-core: allow register aliases > gpu: nova-core: increase BAR0 size to 16MB > gpu: nova-core: add helper function to wait on condition > gpu: nova-core: wait for GFW_BOOT completion [ Slightly adjust comments in wait_gfw_boot_completion(). - Danilo ] > gpu: nova-core: add DMA object struct > gpu: nova-core: register sysmem flush page [ * Use kernel::page::PAGE_SIZE instead of kernel::bindings::PAGE_SIZE. * Get rid of the Option for SysmemFlush. * Slightly reword SysmemFlush doc-comments. - Danilo ] > gpu: nova-core: add falcon register definitions and base code > gpu: nova-core: firmware: add ucode descriptor used by FWSEC-FRTS > gpu: nova-core: compute layout of the FRTS region [ In doc-comment of FbLayout s/bootup process/boot process/ - Danilo ] > gpu: nova-core: add types for patching firmware binaries > gpu: nova-core: extract FWSEC from BIOS and patch it to run FWSEC-FRTS > gpu: nova-core: load and run FWSEC-FRTS > gpu: nova-core: update and annotate TODO list > > Joel Fernandes (3): > gpu: nova-core: vbios: Add base support for VBIOS construction and iteration [ Replace extend_with() and copy_from_slice() with extend_from_slice(); re-format and use markdown in comments. - Danilo ] > gpu: nova-core: vbios: Add support to look up PMU table in FWSEC [ Re-format and use markdown in comments. - Danilo ] > gpu: nova-core: vbios: Add support for FWSEC ucode extraction [ Re-format and use markdown in comments. - Danilo ] There's one thing that would be nice to fix subsequently, which is properly resetting the GPU. Currently, it needs a power cycle to be able to probe successfully after unbinding the driver. - Danilo