[PATCH v3 00/11] Add Tegra264 support in AHUB drivers

Sheetal . posted 11 patches 7 months ago
.../bus/nvidia,tegra210-aconnect.yaml         |   1 +
.../sound/nvidia,tegra-audio-graph-card.yaml  |   1 +
.../bindings/sound/nvidia,tegra186-asrc.yaml  |   4 +-
.../bindings/sound/nvidia,tegra186-dspk.yaml  |   1 +
.../sound/nvidia,tegra210-admaif.yaml         |  17 +
.../bindings/sound/nvidia,tegra210-adx.yaml   |   4 +-
.../bindings/sound/nvidia,tegra210-ahub.yaml  |   1 +
.../bindings/sound/nvidia,tegra210-amx.yaml   |   6 +-
.../bindings/sound/nvidia,tegra210-dmic.yaml  |   1 +
.../bindings/sound/nvidia,tegra210-i2s.yaml   |   4 +-
.../bindings/sound/nvidia,tegra210-mbdrc.yaml |   1 +
.../bindings/sound/nvidia,tegra210-mixer.yaml |   1 +
.../bindings/sound/nvidia,tegra210-mvc.yaml   |   1 +
.../bindings/sound/nvidia,tegra210-ope.yaml   |   1 +
.../bindings/sound/nvidia,tegra210-peq.yaml   |   1 +
.../bindings/sound/nvidia,tegra210-sfc.yaml   |   1 +
sound/soc/tegra/tegra186_asrc.c               |  18 +-
sound/soc/tegra/tegra186_asrc.h               |  12 +-
sound/soc/tegra/tegra210_admaif.c             | 223 ++++-
sound/soc/tegra/tegra210_admaif.h             |  78 ++
sound/soc/tegra/tegra210_adx.c                | 229 ++++-
sound/soc/tegra/tegra210_adx.h                |  36 +-
sound/soc/tegra/tegra210_ahub.c               | 848 +++++++++++++++++-
sound/soc/tegra/tegra210_ahub.h               |  52 +-
sound/soc/tegra/tegra210_amx.c                | 229 ++++-
sound/soc/tegra/tegra210_amx.h                |  34 +-
sound/soc/tegra/tegra210_i2s.c                | 231 ++++-
sound/soc/tegra/tegra210_i2s.h                |  51 +-
sound/soc/tegra/tegra_audio_graph_card.c      |  14 +-
sound/soc/tegra/tegra_cif.h                   |  30 +-
sound/soc/tegra/tegra_isomgr_bw.c             |   7 +-
31 files changed, 1981 insertions(+), 157 deletions(-)
[PATCH v3 00/11] Add Tegra264 support in AHUB drivers
Posted by Sheetal . 7 months ago
From: Sheetal <sheetal@nvidia.com>

The patch series includes the necessary changes to enable
support for the Tegra264 platforms in AHUB drivers.

Changelog
=========
v2 -> v3:
--------
 - Patch 1/11: Update commit message and update binding doc with info
   that the properties are not relevant for Tegra210.

v1 -> v2:
---------
 - Patch 1/11: New patch to resolve the dtbs_check error on base yaml
   file which is modified in Patch2 for Tegra264 support.
 - Patch 2/11: Fix Tegra264 SoC compatible string order.

Sheetal (11):
  dt-bindings: ASoC: admaif: Add missing properties
  dt-bindings: ASoC: Document Tegra264 APE support
  ASoC: tegra: CIF: Add Tegra264 support
  ASoC: tegra: ADMAIF: Add Tegra264 support
  ASoC: tegra: ASRC: Update ARAM address
  ASoC: tegra: Update PLL rate for Tegra264
  ASoC: tegra: I2S: Add Tegra264 support
  ASoC: tegra: AMX: Add Tegra264 support
  ASoC: tegra: ADX: Add Tegra264 support
  ASoC: tegra: AHUB: Add Tegra264 support
  ASoC: tegra: Tegra264 support in isomgr_bw

 .../bus/nvidia,tegra210-aconnect.yaml         |   1 +
 .../sound/nvidia,tegra-audio-graph-card.yaml  |   1 +
 .../bindings/sound/nvidia,tegra186-asrc.yaml  |   4 +-
 .../bindings/sound/nvidia,tegra186-dspk.yaml  |   1 +
 .../sound/nvidia,tegra210-admaif.yaml         |  17 +
 .../bindings/sound/nvidia,tegra210-adx.yaml   |   4 +-
 .../bindings/sound/nvidia,tegra210-ahub.yaml  |   1 +
 .../bindings/sound/nvidia,tegra210-amx.yaml   |   6 +-
 .../bindings/sound/nvidia,tegra210-dmic.yaml  |   1 +
 .../bindings/sound/nvidia,tegra210-i2s.yaml   |   4 +-
 .../bindings/sound/nvidia,tegra210-mbdrc.yaml |   1 +
 .../bindings/sound/nvidia,tegra210-mixer.yaml |   1 +
 .../bindings/sound/nvidia,tegra210-mvc.yaml   |   1 +
 .../bindings/sound/nvidia,tegra210-ope.yaml   |   1 +
 .../bindings/sound/nvidia,tegra210-peq.yaml   |   1 +
 .../bindings/sound/nvidia,tegra210-sfc.yaml   |   1 +
 sound/soc/tegra/tegra186_asrc.c               |  18 +-
 sound/soc/tegra/tegra186_asrc.h               |  12 +-
 sound/soc/tegra/tegra210_admaif.c             | 223 ++++-
 sound/soc/tegra/tegra210_admaif.h             |  78 ++
 sound/soc/tegra/tegra210_adx.c                | 229 ++++-
 sound/soc/tegra/tegra210_adx.h                |  36 +-
 sound/soc/tegra/tegra210_ahub.c               | 848 +++++++++++++++++-
 sound/soc/tegra/tegra210_ahub.h               |  52 +-
 sound/soc/tegra/tegra210_amx.c                | 229 ++++-
 sound/soc/tegra/tegra210_amx.h                |  34 +-
 sound/soc/tegra/tegra210_i2s.c                | 231 ++++-
 sound/soc/tegra/tegra210_i2s.h                |  51 +-
 sound/soc/tegra/tegra_audio_graph_card.c      |  14 +-
 sound/soc/tegra/tegra_cif.h                   |  30 +-
 sound/soc/tegra/tegra_isomgr_bw.c             |   7 +-
 31 files changed, 1981 insertions(+), 157 deletions(-)

-- 
2.17.1
Re: [PATCH v3 00/11] Add Tegra264 support in AHUB drivers
Posted by Mark Brown 6 months, 3 weeks ago
On Mon, 12 May 2025 05:17:36 +0000, Sheetal . wrote:
> The patch series includes the necessary changes to enable
> support for the Tegra264 platforms in AHUB drivers.
> 
> Changelog
> =========
> v2 -> v3:
> --------
>  - Patch 1/11: Update commit message and update binding doc with info
>    that the properties are not relevant for Tegra210.
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[01/11] dt-bindings: ASoC: admaif: Add missing properties
        commit: 37240f703041439cd8a39abd670dbfc0e75b725c
[02/11] dt-bindings: ASoC: Document Tegra264 APE support
        commit: 628dafc476eb658544ad6b5b3592bfcd82597051
[03/11] ASoC: tegra: CIF: Add Tegra264 support
        commit: 35c0d1de8e669878797e40cc625f4bdc37c3e084
[04/11] ASoC: tegra: ADMAIF: Add Tegra264 support
        commit: 7668c6378b0577893bcf8c0f272b6ed099e0787d
[05/11] ASoC: tegra: ASRC: Update ARAM address
        commit: fa83757df3f40c05b5ab4154253e8aeefa31a9a6
[06/11] ASoC: tegra: Update PLL rate for Tegra264
        commit: 1fb500476f609008ee1c499540af32c4fa5a19de
[07/11] ASoC: tegra: I2S: Add Tegra264 support
        commit: b3354438d89867654b4a95a9630fd3393e275e33
[08/11] ASoC: tegra: AMX: Add Tegra264 support
        commit: fd509c6f8e4028539bf35d80e3bcdce7b3ba0f9f
[09/11] ASoC: tegra: ADX: Add Tegra264 support
        commit: 7dc8299fbb1c8e6373e8e55d562b7674ee37b2b0
[10/11] ASoC: tegra: AHUB: Add Tegra264 support
        commit: 4152d33ab162d5378f57cd757e1de5cb4867dfb4
[11/11] ASoC: tegra: Tegra264 support in isomgr_bw
        commit: 7d852b34be4df61ae4327b47c39701d0f7ffcc70

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark