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 8A8F1207E14; Tue, 8 Apr 2025 11:13:53 +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=1744110833; cv=none; b=LqWhRn096molBi8I8JeUQ1bVsDpqi2TJ6ke9ObBqX1LE97R5l5wBDO78i49nE9MMOTOf3nInq4goC6IKPC2yLYyeoa+AGpHKmIy05O13UwAI/dCqpq//ZcQ86czXoCSo/tY401cx0HvcZpBGyEmYbUlB4apgU54HrLDPd1FA5KQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744110833; c=relaxed/simple; bh=gXNzF0+L4BYgGoQXuW8GA8S8gg3WFrvpDgp8JwRjWqc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=LMyGfOaPuDmiba5LzUDTPsR0R6ltz3YMlv329WJKuTy0zTsnW3MIetUPfFHinLaOXXkLmPbPmjVid3tEQX8nGKxb4LpZZ91b2eGGdzxtKfN7ES9vqInTj19xvsoJNljhbmK4Z4x5BRjxigexk/m32b++yGfFWa5w3b3kiwSerQk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=fAdUDHJx; 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="fAdUDHJx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1C4EBC4CEE5; Tue, 8 Apr 2025 11:13:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744110833; bh=gXNzF0+L4BYgGoQXuW8GA8S8gg3WFrvpDgp8JwRjWqc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fAdUDHJxdJDVhHcLENvo5VM8Q5PWSeIFOHOkLyjV2hv3WFsulBIiSjhNx5s7vnc1D Z/gYIlZvDdhTEyLmOOIJDtLfFH5Nh0sFZYvd8AI9es6SMrgmE8LVAmg2OTrbIwxOEj oyjYsEKgRtS/Hf7dUAKbmhkS8PW6v+eOuAalcV7w= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Laurentiu Mihalcea , Iuliana Prodan , Peng Fan , Shawn Guo , Sasha Levin Subject: [PATCH 6.14 172/731] arm64: dts: imx8mp: change AUDIO_AXI_CLK_ROOT freq. to 800MHz Date: Tue, 8 Apr 2025 12:41:09 +0200 Message-ID: <20250408104918.277009586@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104914.247897328@linuxfoundation.org> References: <20250408104914.247897328@linuxfoundation.org> User-Agent: quilt/0.68 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.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Laurentiu Mihalcea [ Upstream commit c54e2f908da30a6c66195a6d0aba6412c673ec2c ] AUDIO_AXI_CLK_ROOT can't run at currently requested 600MHz w/ its parent SYS_PLL1 configured at 800MHz. Configure it to run at 800MHz as some applications running on the DSP expect the core to run at this frequency anyways. This change also affects the AUDIOMIX NoC. Fixes: b739681b3f8b ("arm64: dts: imx8mp: Fix SDMA2/3 clocks") Signed-off-by: Laurentiu Mihalcea Reviewed-by: Iuliana Prodan Reviewed-by: Peng Fan Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/freescale/imx8mp.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi index 86c3055789ba7..54147bce3b838 100644 --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -834,7 +834,7 @@ assigned-clock-parents = <&clk IMX8MP_SYS_PLL1_800M>, <&clk IMX8MP_SYS_PLL1_800M>; assigned-clock-rates = <400000000>, - <600000000>; + <800000000>; }; pgc_gpu2d: power-domain@6 { -- 2.39.5