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 7C678402BA9; Tue, 31 Mar 2026 16:32:40 +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=1774974760; cv=none; b=h78EDMCO1F2ameJA/YCmukbJ6Y0IWCXopeGqhRqAoaeoANq0SwbBiCD+ZEHJkHzRZT/iNYLjqoU1TCAb19W4mMXCdCBG0GK5y9A0fVDFjfU3zZ24voXlbVrnZGiCDHZgssj22CeotS8nfbys1Ty6HRUMgjCt351wkZntsJGHm60= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774974760; c=relaxed/simple; bh=yYCu9LhxgGTdG3pq/lEpmjBfA/sXyViEQmnCbJ19Qyg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=BuFKCZShOmbOUWBMvunDbPWAVAX91rnAy4KJl+r4cJXaSsBjRdO1kHi/O1Otj3c9/xi5cCk5wUceXbTd37KE4qNVXmG/OqJ+LOGcGmyg+Z+HRBY97FnbvhFl2rCQnUFf7OBOk00RHO4MKEdaZzueEksNBe9j4h43bN2hKEdaEDo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=cR7kgbtx; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="cR7kgbtx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1225EC19423; Tue, 31 Mar 2026 16:32:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774974760; bh=yYCu9LhxgGTdG3pq/lEpmjBfA/sXyViEQmnCbJ19Qyg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cR7kgbtx0Wu2TvVLk8ZDIogfBiRCB0LgPtcBwtTkjSpCQAj4oifbbUAzZc3/yzZjD z0bnn4BQnup1dmgG0Xm8G3qHjHokusWTJ9WcGg0WjWMK3JFmoNupjG57hFv8/747TX bImtqr5d2yND7G9T3hdZUarmbFOz7SvTyu8Ev8uA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Victor Lattaro Volpini , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.19 034/342] platform/x86: hp-wmi: Add Victus 16-d0xxx support Date: Tue, 31 Mar 2026 18:17:47 +0200 Message-ID: <20260331161800.161862817@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260331161758.909578033@linuxfoundation.org> References: <20260331161758.909578033@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Victor Lattaro Volpini [ Upstream commit 249f05e625c6e6c14b27fd34a2f06a1afb9b456d ] This patch enables Victus thermal profile support for the HP Victus 16-d0xxx. It does so by adding model's DMI board name 88F8 to victus_thermal_profile_boards. Tested on a Victus 16-d0xxx: - Victus thermal profile choices available (quiet, balanced, performance) instead of the default ones (cool, quiet, balanced, performance); - Profile switching works correctly; - About 4% increase in FPS using benchmark Cyberpunk 2077 on performance profile; - No noticeable regressions. Signed-off-by: Victor Lattaro Volpini Link: https://patch.msgid.link/20260210000048.250280-1-victorlattaro@proton.me Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- drivers/platform/x86/hp/hp-wmi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/platform/x86/hp/hp-wmi.c b/drivers/platform/x86/hp/hp-wmi.c index ec87fd96686cf..e3a7ac2485d68 100644 --- a/drivers/platform/x86/hp/hp-wmi.c +++ b/drivers/platform/x86/hp/hp-wmi.c @@ -154,8 +154,9 @@ static const char * const omen_timed_thermal_profile_boards[] = { "8BAD", }; -/* DMI Board names of Victus 16-d1xxx laptops */ +/* DMI Board names of Victus 16-d laptops */ static const char * const victus_thermal_profile_boards[] = { + "88F8", "8A25", }; -- 2.51.0