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 488F85FDC1; Tue, 23 Jan 2024 01:50:55 +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=1705974655; cv=none; b=FYusYCvZOcq4eFbCyoGLw71cfdRDV3OldjTHEwDeJ/tmrtxdz5q0KyiARFs5Y3GcyJvrer2Nc87KdcX9n3NFCXvjnJowWX3PvOjZr4EBSZiOc1QJt2TFOxpFMS/xuJAUoYLcpSm+1bhCyril+z854ocM9QajtiY7wmqsopXz2a0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705974655; c=relaxed/simple; bh=jO3SLANhpaiCmfMyo3dTifB+vCZOMGw/sSUpVNUBkss=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=IOLw95l5UPghr/Vm3Gwn6HgKjsaYojAnMp6JzI/DInDsgYfNLQkwEhLh2hynLRcc9+bvwnU02KW6zCrgWbZ9j7+6QyNR8spt/Hs7RHbkqpPel51JPDd2NbKKuQ9khrXddwafFRYzJSECZIDRwGr4HUC8NzdQznvM9VrRqzXD2pQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xScfH2BX; 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="xScfH2BX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0C4DCC43399; Tue, 23 Jan 2024 01:50:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705974655; bh=jO3SLANhpaiCmfMyo3dTifB+vCZOMGw/sSUpVNUBkss=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xScfH2BXD59CwULs1DGnMWRZgGQi6vMF5iR77jMmRvw94vesgZhO+oPi0ZpVRmpRC BxbRFcx9MPa6mq3w1S9GhRKoNb9P17nk/jlrqwOxcVhwkjmn1Rqf0mHFBM645p2Bso qSf3Gy4Z20NcfRE9AYo0OVxETRi6CCLrRMr0FxIk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Neil Armstrong , Krzysztof Kozlowski , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.6 109/583] arm64: dts: qcom: sm8550: correct TX Soundwire clock Date: Mon, 22 Jan 2024 15:52:40 -0800 Message-ID: <20240122235815.503165991@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235812.238724226@linuxfoundation.org> References: <20240122235812.238724226@linuxfoundation.org> User-Agent: quilt/0.67 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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Krzysztof Kozlowski [ Upstream commit ead0f132fc494b46fcd94788456f9b264fd631bb ] The TX Soundwire controller should take clock from TX macro codec, not VA macro codec clock, otherwise the clock stays disabled. This looks like a copy-paste issue, because the SC8280xp code uses here correctly clock from TX macro. The VA macro clock is already consumed by TX macro codec, thus it won't be disabled by this change. Fixes: 61b006389bb7 ("arm64: dts: qcom: sm8550: add Soundwire controllers") Reported-by: Neil Armstrong Signed-off-by: Krzysztof Kozlowski Reviewed-by: Neil Armstrong Link: https://lore.kernel.org/r/20231129140537.161720-2-krzysztof.kozlowski@linaro.org Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/qcom/sm8550.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/sm8550.dtsi b/arch/arm64/boot/dts/qcom/sm8550.dtsi index d115960bdeec..52c0c1730702 100644 --- a/arch/arm64/boot/dts/qcom/sm8550.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8550.dtsi @@ -2178,7 +2178,7 @@ swr2: soundwire-controller@6d30000 { interrupts = , ; interrupt-names = "core", "wakeup"; - clocks = <&lpass_vamacro>; + clocks = <&lpass_txmacro>; clock-names = "iface"; label = "TX"; -- 2.43.0