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 E02F413B7AB; Tue, 27 Feb 2024 14:22: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=1709043755; cv=none; b=WTT93ZOcMwT8vPx/UErB+ggtm4NiLpHA+AJ8fTl1+G8HmxsFyZed6Y99q79umZydd+/SF4trn/gyRz329FBIdkCqoKk+x6E/9wb78wRuVxXfO2Rki5AG2CuKrNJZd3qn86A1nFZuBqmrCy3CIEQmLrONV5R64Oni/LcUtV4l6Rg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709043755; c=relaxed/simple; bh=oUmk/ODu45r1x91LtBGZ845o+yDy1qsnTFNe1wOnZNA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=VnWUU9SnYOV8ftAJdPMHyxB+jMOJfxspUTr2+vthLzm0mih2PTaXP32NQLaDoyFaR2DO7UGvGbtj9ks7WNx8Sy6T0j3DX+RRoSKmHQKzY1XeN4ImmX3BGieoVg5Vh2OH/yVCSsUvqXYYJQd0PsXQ8aw85cJXj2CjAiIdIrdJl9c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YDPRfpbt; 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="YDPRfpbt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 60FC0C433C7; Tue, 27 Feb 2024 14:22:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1709043754; bh=oUmk/ODu45r1x91LtBGZ845o+yDy1qsnTFNe1wOnZNA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YDPRfpbtgSN7yjok7FVxos5LY6Zxv+CwgmigrjlPIDQVuB4mhZzI9vwdG5eVVy8G/ 48504YDN1tFcvzTN6aNGwQ+wNAiEJzQWlqhCghZJVVgU1o7QernSNTZK6X/x1Ygg5V Pw3J4A4ojoeHWnbGnTfcveeqHdJ/+SXj8vCPbw1M= 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.4 25/84] ASoC: sunxi: sun4i-spdif: Add support for Allwinner H616 Date: Tue, 27 Feb 2024 14:26:52 +0100 Message-ID: <20240227131553.684144663@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240227131552.864701583@linuxfoundation.org> References: <20240227131552.864701583@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.4-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 cbe598b0fb107..680d64e0d69f4 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