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 B545E13A26F; Tue, 27 Feb 2024 14:26:43 +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=1709044003; cv=none; b=dUV9AnTXMKEup2zp8D/hwmcBYOpf7xlHCg7BFAR5MY8pLG++Q1+vvt0KM6C9PZ2xn+EJUIUQuZkxz+CUwb8VefAALCC0YD2yNCjM+f81DFrLJKDUU7SQDCxZjqJgHtwJ8WeRgKOYFtFTcftxbX4/7xzYzXjuYLIpRAY276BpFTc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709044003; c=relaxed/simple; bh=uDNxFuq9kUA88YJIBIJCO9Eor9uhSkppOh+RKE/SsdY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=jrnTvMq7UwxiH6pMAnz3d238UlNab//HRAg5Ip11Yn3xYEUN9iigVP21IMPBBoZd1HaKgTZetvUZdQvDy4Lfkmh7U+s4/jvFkkKzHWmfXYgh2Cn60WHYPGrUSrT+mq3p2ssNHJXAHzhRXSy4P/elHmxDx45IerjFwJZBFvJ/u+U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=R4l8mJee; 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="R4l8mJee" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 40A29C433C7; Tue, 27 Feb 2024 14:26:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1709044003; bh=uDNxFuq9kUA88YJIBIJCO9Eor9uhSkppOh+RKE/SsdY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R4l8mJeeyh/e4fhoVqA44nRdirovwfb+/T6URH7ixBKElTz115B0WPCK8BM0WRPkP ONEtaIwUUL2bCWUxew2YYpyXa7vI9TewiLRzeQodrRJYtvqTSOMDtV+nS/t8MA/3Ov +vbXp23mPfnCu/Lg+YdObczc7YBwDUSoHCsuTnqE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Chen-Yu Tsai , Andre Przywara , Jernej Skrabec , Mark Brown , Sasha Levin Subject: [PATCH 5.10 027/122] ASoC: sunxi: sun4i-spdif: Add support for Allwinner H616 Date: Tue, 27 Feb 2024 14:26:28 +0100 Message-ID: <20240227131559.596306119@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240227131558.694096204@linuxfoundation.org> References: <20240227131558.694096204@linuxfoundation.org> User-Agent: quilt/0.67 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-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Chen-Yu Tsai [ Upstream commit 0adf963b8463faa44653e22e56ce55f747e68868 ] The SPDIF hardware block found in the H616 SoC has the same layout as the one found in the H6 SoC, except that it is missing the receiver side. Since the driver currently only supports the transmit function, support for the H616 is identical to what is currently done for the H6. Signed-off-by: Chen-Yu Tsai Reviewed-by: Andre Przywara Reviewed-by: Jernej Skrabec Link: https://msgid.link/r/20240127163247.384439-4-wens@kernel.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/sunxi/sun4i-spdif.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sound/soc/sunxi/sun4i-spdif.c b/sound/soc/sunxi/sun4i-spdif.c index 228485fe07342..6dcad1aa25037 100644 --- a/sound/soc/sunxi/sun4i-spdif.c +++ b/sound/soc/sunxi/sun4i-spdif.c @@ -464,6 +464,11 @@ static const struct of_device_id sun4i_spdif_of_match[] = { .compatible = "allwinner,sun50i-h6-spdif", .data = &sun50i_h6_spdif_quirks, }, + { + .compatible = "allwinner,sun50i-h616-spdif", + /* Essentially the same as the H6, but without RX */ + .data = &sun50i_h6_spdif_quirks, + }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, sun4i_spdif_of_match); -- 2.43.0