150-ASoC-mchp-i2s-mcc-Add-compatible-for-SAMA7G5.patch 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. From d6493e6f1c42f7ad350ea25e11f0e71fc32e6116 Mon Sep 17 00:00:00 2001
  2. From: Codrin Ciubotariu <[email protected]>
  3. Date: Mon, 1 Mar 2021 19:09:00 +0200
  4. Subject: [PATCH 150/247] ASoC: mchp-i2s-mcc: Add compatible for SAMA7G5
  5. Microchip's new SAMA7G5 includes an updated I2S-MCC compatible with the
  6. previous version found on SAM9X60. The new controller includes 8 (4 * 2)
  7. input and output data pins for up to 8 channels for I2S and Left-Justified
  8. formats.
  9. Signed-off-by: Codrin Ciubotariu <[email protected]>
  10. Link: https://lore.kernel.org/r/[email protected]
  11. Signed-off-by: Mark Brown <[email protected]>
  12. ---
  13. sound/soc/atmel/Kconfig | 3 +++
  14. sound/soc/atmel/mchp-i2s-mcc.c | 3 +++
  15. 2 files changed, 6 insertions(+)
  16. --- a/sound/soc/atmel/Kconfig
  17. +++ b/sound/soc/atmel/Kconfig
  18. @@ -126,10 +126,13 @@ config SND_MCHP_SOC_I2S_MCC
  19. Say Y or M if you want to add support for I2S Multi-Channel ASoC
  20. driver on the following Microchip platforms:
  21. - sam9x60
  22. + - sama7g5
  23. The I2SMCC complies with the Inter-IC Sound (I2S) bus specification
  24. and supports a Time Division Multiplexed (TDM) interface with
  25. external multi-channel audio codecs.
  26. + Starting with sama7g5, I2S and Left-Justified multi-channel is
  27. + supported by using multiple data pins, output and input, without TDM.
  28. config SND_MCHP_SOC_SPDIFTX
  29. tristate "Microchip ASoC driver for boards using S/PDIF TX"
  30. --- a/sound/soc/atmel/mchp-i2s-mcc.c
  31. +++ b/sound/soc/atmel/mchp-i2s-mcc.c
  32. @@ -873,6 +873,9 @@ static const struct of_device_id mchp_i2
  33. {
  34. .compatible = "microchip,sam9x60-i2smcc",
  35. },
  36. + {
  37. + .compatible = "microchip,sama7g5-i2smcc",
  38. + },
  39. { /* sentinel */ }
  40. };
  41. MODULE_DEVICE_TABLE(of, mchp_i2s_mcc_dt_ids);