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 6B88A329E46; Mon, 20 Apr 2026 15:48:34 +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=1776700114; cv=none; b=UgpZR7Cr9ehbwCseKtHPFFRjXuuaQRhwPCVvGvN753qQlGkicipN6hzywRUOJTOIWAruW7vPmpnPtGLZgjB/J9LzYurIn+a08z6i6RAa0oq7BOwgsh8U8fwpljp3ykaZ9tWpTxTHNq9EbSlgHxtUCCQRA5UsyMio7O/pJDtowdM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700114; c=relaxed/simple; bh=Jg2Iqzf+RCIpN/mLMm1I8MzCNg4FWAKjryfmgcyArnw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iWU5wXnSMKC6rBFfNB2ZZMEAwen62LiTEAZLTa5PcAz8CKO5CU4ja1OToC2FtCLM1sBXdRsx369nOITcmg2WUnVZ9B5A8yVPds4rQMnMbdDrlSxOdWPiq3v2ORV2ERBLkPLHpS5XfFw773SZF0ymkB1DbQg91XbmwxvJUBV2jjw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=NHlWDKcx; 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="NHlWDKcx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BFFD6C19425; Mon, 20 Apr 2026 15:48:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700114; bh=Jg2Iqzf+RCIpN/mLMm1I8MzCNg4FWAKjryfmgcyArnw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NHlWDKcxzvsoPsyyj8ptuFqSXHUOZl4pznpStNPWLkHAxWIGKi6QPlTDROqJHaeyh bSiAI27YJwoIO1Q2z60XO0lLOClkbP/diXANPRNGfJ7Ik9/JP8d9FNJBXZ56YgKvFY JpN08EiaE3DGnbunGmgUJ9MnUqCltJ5HET4mfLvk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Daniel J Blueman , Konrad Dybcio , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.19 048/220] arm64: dts: qcom: hamoa/x1: fix idle exit latency Date: Mon, 20 Apr 2026 17:39:49 +0200 Message-ID: <20260420153935.770067459@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153934.013228280@linuxfoundation.org> References: <20260420153934.013228280@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Daniel J Blueman [ Upstream commit 3ecea84d2b90bbf934d5ca75514fa902fd71e03f ] Designs based on the Qualcomm X1 Hamoa reference platform report: driver: Idle state 1 target residency too low This is because the declared X1 idle entry plus exit latency of 680us exceeds the declared minimum 600us residency time: entry-latency-us = <180>; exit-latency-us = <500>; min-residency-us = <600>; Fix this to be 320us so the sum of the entry and exit latencies matches the downstream 500us exit latency, as directed by Maulik. Tested on a Lenovo Yoga Slim 7x with Qualcomm X1E-80-100. Fixes: 2e65616ef07f ("arm64: dts: qcom: x1e80100: Update C4/C5 residency/exit numbers") Signed-off-by: Daniel J Blueman Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20260220124626.8611-1-daniel@quora.org Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/qcom/hamoa.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/hamoa.dtsi b/arch/arm64/boot/dts/qcom/hamoa.dtsi index 9e0934b302c3e..f1ebb99d94241 100644 --- a/arch/arm64/boot/dts/qcom/hamoa.dtsi +++ b/arch/arm64/boot/dts/qcom/hamoa.dtsi @@ -269,7 +269,7 @@ cluster_c4: cpu-sleep-0 { idle-state-name = "ret"; arm,psci-suspend-param = <0x00000004>; entry-latency-us = <180>; - exit-latency-us = <500>; + exit-latency-us = <320>; min-residency-us = <600>; }; }; -- 2.53.0