diff options
author | Mark Brown <broonie@kernel.org> | 2024-01-29 19:41:50 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-01-29 19:41:50 +0000 |
commit | 5d71e60004512a6d171f54f79485f06713a17aff (patch) | |
tree | 37b4c995225d34d91ef8290cbb58511c40395d6d /sound | |
parent | c6dce23ec993f7da7790a9eadb36864ceb60e942 (diff) | |
parent | 7a9dc944f129bb56ef855d9c0b0647bc3e98a56f (diff) |
arm64: sun50i-h616: Add DMA and SPDIF controllers
Merge series from Chen-Yu Tsai <wens@kernel.org>:
This series adds SPDIF controllers for the H616 and H618.
There's also a fix for SPDIF on H6: the controller also has a
receiver that was not correctly modeled.
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sunxi/sun4i-spdif.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/sunxi/sun4i-spdif.c b/sound/soc/sunxi/sun4i-spdif.c index 702386823d17..f41c30955857 100644 --- a/sound/soc/sunxi/sun4i-spdif.c +++ b/sound/soc/sunxi/sun4i-spdif.c @@ -577,6 +577,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); |