From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CB65C2F83AC for ; Fri, 20 Feb 2026 04:10:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771560635; cv=none; b=VJwRldSDlstxc854Zz1qotOH0cEu+3iEPajMgTPWmxxfNWdYjYt2lSDong6g0pLknfgp4y3jB7hB0GITJoVN8QaOgA/rh1Xcyi/8bVf/BL6ZOTTi6ycQRVS1IJKGvebDWbp+YXoaRMkHQBdc9iE4+FBYhv6K9t0FGfJDRyoX6l4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771560635; c=relaxed/simple; bh=Xis41vA84Ib6Iac3csxCMpPDnfg/BYT4y4VrELxBXk8=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=VI0sZODE7BQkczmVp12cuY+Gk4SV2cEUuQu1F5NygVDnBvMcAN+I/J6/JV9loHg1XRfI8/K2+d73lHYcxjToaXKokuKZ75BlFts0QQw0avz2zwXpRcqNUQ3P02uvy+QGs6HP+ghvnDr1WOP7R3lMMJMhLnTrssvINzluS7OdtMM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=qPSxnHkP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="qPSxnHkP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5BB6AC2BCC7; Fri, 20 Feb 2026 04:10:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771560635; bh=Xis41vA84Ib6Iac3csxCMpPDnfg/BYT4y4VrELxBXk8=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=qPSxnHkPCTbPreq1C6URnn6R2Kvk+nWireKZh2YyJvgeTt4+DXdhXTaI4nxXmNQJS vVnMcEuwqFFhI5qM9y84pm7NUKcL9HrtJia5al8ueCVq39h5+whMmLQXWInG4wrSgH Yi48etiCuS4MVbtc1FYZGguCoNqu8kEeu+M3YidHMC28614rEPFezAtQUMhH9GNvJf QsG/A0NJ10WvjEy7SCbqEDrO0X8jmjx9lVoHoumlkx38QEB3GnCTpWECY6EItVV3pj x1qnM7FfQ1AooHty+ey95A5Yz4URfoeiD+OfC2q/kRLw3Mv7vTY8KLu+qu6GJznIm0 TUdYYt4i46+8A== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id 02DA83809A88; Fri, 20 Feb 2026 04:10:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH v3 0/2] riscv-imsic/aplic: Preserve IMSIC and APLIC states during suspend From: patchwork-bot+linux-riscv@kernel.org Message-Id: <177156064355.189817.13911084684524665897.git-patchwork-notify@kernel.org> Date: Fri, 20 Feb 2026 04:10:43 +0000 References: <20251202-preserve-aplic-imsic-v3-0-1844fbf1fe92@sifive.com> In-Reply-To: <20251202-preserve-aplic-imsic-v3-0-1844fbf1fe92@sifive.com> To: Nick Hu Cc: linux-riscv@lists.infradead.org, anup@brainfault.org, tglx@linutronix.de, pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu, alex@ghiti.fr, linux-kernel@vger.kernel.org, yongxuan.wang@sifive.com, cyan.yang@sifive.com, liujingqi@lanxincomputing.com Hello: This series was applied to riscv/linux.git (fixes) by Thomas Gleixner : On Tue, 02 Dec 2025 14:07:39 +0800 you wrote: > Since the APLIC and IMSIC may be reset when the platform enters a deep > sleep state, it is necessary to implement save and restore functions > to ensure their states are correctly preserved and restored. > > Chagnes in V3: > - Refine the commit messages and comments > - Rename "imsic_restore()" to "imsic_hw_states_init()" > - Rename "aplic_direct_restore()" to "aplic_direct_restore_states()" > - Rename "aplic_add()" to "aplic_pm_add()" > - Rename "aplic_remove()" to "aplic_pm_remove()" > - Rename "aplic_save()" to "aplic_save_states()" > - Rename "aplic_restore()" to "aplic_restore_states()" > - Use "struct aplic_saved_regs" and "struct aplic_src_ctrl" to preserve > the APLIC states > > [...] Here is the summary with links: - [v3,1/2] irqchip/riscv-imsic: Add a CPU pm notifier to restore the IMSIC on exit https://git.kernel.org/riscv/c/f48b4bd0915b - [v3,2/2] irqchip/riscv-aplic: Preserve APLIC states across suspend/resume https://git.kernel.org/riscv/c/95a8ddde3660 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html