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 23BB82ED179; Tue, 17 Jun 2025 16:08:58 +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=1750176538; cv=none; b=bxCIHrMHS+z6izcOOwfegrDOzMYW93JKR9VrOKgBdedwHzpbTmaeHm5ZRlsXFqX5etRsn4I7I39xjQPQD0Qnd03tEoD+Wh8G08tgipts20X8i4adjLmBIbp83GG/fj3M8a3S41y77KAXQhwNIps4K27EhS3CfdohzSuKdIyGDV0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750176538; c=relaxed/simple; bh=7j2NYvOnWVcuoqn0TUp3TslP5JODh3FtfYfRag1Zouo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JlHRKF0RLASh/m4Sq3yxRbubIZjMedJ+1VaxD2+XDnIK6fNTYKDsh+AjTF+4g3ezxWTDfZo1y2+YVei9cPUcpHrQzG+CFbG02iIpbMOAIgS/Z82U/StEhi1vGi5tSxLvreLD9047UxJ6LsEekfeQAmyEHBG1CmDzzPl3ubMNOq8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hKJ0CWKU; 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="hKJ0CWKU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 87C7CC4CEE3; Tue, 17 Jun 2025 16:08:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750176538; bh=7j2NYvOnWVcuoqn0TUp3TslP5JODh3FtfYfRag1Zouo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hKJ0CWKUo1W2pbYiN5SyiAHcP2NOI/839eNyt7ooy2EH11biCPUa5Ol18wnqZ/+yV u4xBTFIPrO5dqnu2IjJUUyqgyf7NV9Dhtgr5Bbjma9/qo0QhaLy7DVutAasayDzkHA Gsnb1oC255hVcDQ0GdkQBcoMm1dWGwRbZyj2vPSQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Adam Ford , Frank Li , Shawn Guo , Sasha Levin Subject: [PATCH 6.12 240/512] arm64: dts: imx8mn-beacon: Set SAI5 MCLK direction to output for HDMI audio Date: Tue, 17 Jun 2025 17:23:26 +0200 Message-ID: <20250617152429.345678276@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250617152419.512865572@linuxfoundation.org> References: <20250617152419.512865572@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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Adam Ford [ Upstream commit a747c4dd2a60c4d0179b372032a4b98548135096 ] The HDMI bridge chip fails to generate an audio source due to the SAI5 master clock (MCLK) direction not being set to output. This prevents proper clocking of the HDMI audio interface. Add the `fsl,sai-mclk-direction-output` property to the SAI5 node to ensure the MCLK is driven by the SoC, resolving the HDMI sound issue. Fixes: 1d6880ceef43 ("arm64: dts: imx8mn-beacon: Add HDMI video with sound") Signed-off-by: Adam Ford Reviewed-by: Frank Li Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/freescale/imx8mn-beacon-kit.dts | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/boot/dts/freescale/imx8mn-beacon-kit.dts b/arch/arm64/boot/dts/freescale/imx8mn-beacon-kit.dts index 1df5ceb113879..37fc5ed98d7f6 100644 --- a/arch/arm64/boot/dts/freescale/imx8mn-beacon-kit.dts +++ b/arch/arm64/boot/dts/freescale/imx8mn-beacon-kit.dts @@ -124,6 +124,7 @@ assigned-clock-parents = <&clk IMX8MN_AUDIO_PLL1_OUT>; assigned-clock-rates = <24576000>; #sound-dai-cells = <0>; + fsl,sai-mclk-direction-output; status = "okay"; }; -- 2.39.5