public inbox for linux-sound@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 00/23] ASoC: amd: acp70: add soundwire and acp pdm support
@ 2025-01-20 10:01 Vijendar Mukunda
  2025-01-20 10:01 ` [PATCH V2 01/23] ASoC: amd: add register header file for ACP7.0 platform Vijendar Mukunda
                   ` (23 more replies)
  0 siblings, 24 replies; 36+ messages in thread
From: Vijendar Mukunda @ 2025-01-20 10:01 UTC (permalink / raw)
  To: broonie
  Cc: alsa-devel, lgirdwood, perex, tiwai, Basavaraj.Hiregoudar,
	Sunil-kumar.Dommati, venkataprasad.potturu, Mario.Limonciello,
	linux-sound, linux-kernel, Vijendar Mukunda

This patch series includes below changes
	- Add Audio IO support for ACP7.0 and ACP7.1 platforms for
	SoundWire IO and ACP PDM controller combination.
	- Add common driver modules for ACP7.0 and ACP7.1 platforms
	(acp pci driver, Soundwire dma driver, pdm platform driver).
	- Add SoundWire generic machine driver changes for legacy stack
	(No DSP enabled) for ACP7.0 & ACP7.1 platforms.
	- Add SoundWire machines for ACP7.0 & ACP7.1 platforms.

Changes since v1:
	- Change the code sequence for handling SoundWire wake interrupts.
	- Add new patch to restore host wake interrupt mask
	- Add new patch to enable ACP PME during ACP init sequence.
	- Change ACP PCI driver PM ops code sequence.

Vijendar Mukunda (23):
  ASoC: amd: add register header file for ACP7.0 platform
  ASoC: amd: acp70: add acp pci driver for ACP7.0 and ACP7.1 platforms
  ASoC: amd: acp70: add acp init and de-init functions
  ASoC: amd: acp70: add logic for scanning acp child devices
  ASoC: amd: acp70: create platform devices for acp child nodes
  ASoC: amd: acp70: enable driver build for ACP7.0 platform
  ASoC: amd: acp70: add acp pdm platform driver
  ASoC: amd: acp70: add acp pdm driver dma ops and dai ops
  ASoC: amd: acp70: add acp soundwire dma driver
  ASoC: amd: update ACP7.0 KConfig option description
  ASoC: amd: acp70: add soundwire dma driver dma ops
  ASoC: amd: acp70: add acp ip interrupt handler
  ASoC: amd: acp70: add acp pdm driver pm ops
  ASoC: amd: acp70: add pm ops support for soundwire dma driver
  ASoC: amd: acp70: add acp driver pm ops support
  ASoC: amd: acp70: enable wake capability for acp pci driver
  ASoC: amd: acp70: add soundwire wake interrupt handling
  ASoC: amd: acp70: enable soundwire host wake irq mask
  ASoC: amd: acp70: enable acp pme enable during acp init sequence
  ASoC: amd: acp70: create a device node for soundwire machine driver
  ASoC: amd: acp: add machine driver changes for ACP7.0 and ACP7.1
    platforms
  ASoC: amd: acp: add RT711, RT714 & RT1316 support for ACP7.0 platform
  ASoC: amd: acp: amd-acp70-acpi-match: Add rt722 support

 include/sound/acp70_chip_offset_byte.h   | 484 +++++++++++++
 sound/soc/amd/Kconfig                    |  12 +
 sound/soc/amd/Makefile                   |   1 +
 sound/soc/amd/acp/Makefile               |   2 +-
 sound/soc/amd/acp/acp-sdw-legacy-mach.c  |  16 +
 sound/soc/amd/acp/acp-sdw-mach-common.c  |  34 +
 sound/soc/amd/acp/amd-acp70-acpi-match.c | 132 ++++
 sound/soc/amd/acp/soc_amd_sdw_common.h   |  11 +
 sound/soc/amd/acp70/Makefile             |   9 +
 sound/soc/amd/acp70/acp70-pdm-dma.c      | 463 +++++++++++++
 sound/soc/amd/acp70/acp70-sdw-dma.c      | 586 ++++++++++++++++
 sound/soc/amd/acp70/acp70.h              | 288 ++++++++
 sound/soc/amd/acp70/pci-acp70.c          | 833 +++++++++++++++++++++++
 sound/soc/amd/mach-config.h              |   1 +
 14 files changed, 2871 insertions(+), 1 deletion(-)
 create mode 100644 include/sound/acp70_chip_offset_byte.h
 create mode 100644 sound/soc/amd/acp/amd-acp70-acpi-match.c
 create mode 100644 sound/soc/amd/acp70/Makefile
 create mode 100644 sound/soc/amd/acp70/acp70-pdm-dma.c
 create mode 100644 sound/soc/amd/acp70/acp70-sdw-dma.c
 create mode 100644 sound/soc/amd/acp70/acp70.h
 create mode 100644 sound/soc/amd/acp70/pci-acp70.c

-- 
2.34.1


^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2025-02-11  8:21 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-20 10:01 [PATCH V2 00/23] ASoC: amd: acp70: add soundwire and acp pdm support Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 01/23] ASoC: amd: add register header file for ACP7.0 platform Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 02/23] ASoC: amd: acp70: add acp pci driver for ACP7.0 and ACP7.1 platforms Vijendar Mukunda
2025-01-20 17:08   ` Mark Brown
2025-01-20 17:33     ` Mukunda,Vijendar
2025-01-20 10:01 ` [PATCH V2 03/23] ASoC: amd: acp70: add acp init and de-init functions Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 04/23] ASoC: amd: acp70: add logic for scanning acp child devices Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 05/23] ASoC: amd: acp70: create platform devices for acp child nodes Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 06/23] ASoC: amd: acp70: enable driver build for ACP7.0 platform Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 07/23] ASoC: amd: acp70: add acp pdm platform driver Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 08/23] ASoC: amd: acp70: add acp pdm driver dma ops and dai ops Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 09/23] ASoC: amd: acp70: add acp soundwire dma driver Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 10/23] ASoC: amd: update ACP7.0 KConfig option description Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 11/23] ASoC: amd: acp70: add soundwire dma driver dma ops Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 12/23] ASoC: amd: acp70: add acp ip interrupt handler Vijendar Mukunda
2025-01-20 17:55   ` Mark Brown
2025-01-20 18:18     ` Mukunda,Vijendar
2025-01-20 18:39       ` Mark Brown
2025-01-20 18:47         ` Mario Limonciello
2025-01-20 19:28           ` Mark Brown
2025-01-21  5:22             ` Mukunda,Vijendar
2025-01-20 10:01 ` [PATCH V2 13/23] ASoC: amd: acp70: add acp pdm driver pm ops Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 14/23] ASoC: amd: acp70: add pm ops support for soundwire dma driver Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 15/23] ASoC: amd: acp70: add acp driver pm ops support Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 16/23] ASoC: amd: acp70: enable wake capability for acp pci driver Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 17/23] ASoC: amd: acp70: add soundwire wake interrupt handling Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 18/23] ASoC: amd: acp70: enable soundwire host wake irq mask Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 19/23] ASoC: amd: acp70: enable acp pme enable during acp init sequence Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 20/23] ASoC: amd: acp70: create a device node for soundwire machine driver Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 21/23] ASoC: amd: acp: add machine driver changes for ACP7.0 and ACP7.1 platforms Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 22/23] ASoC: amd: acp: add RT711, RT714 & RT1316 support for ACP7.0 platform Vijendar Mukunda
2025-01-20 10:01 ` [PATCH V2 23/23] ASoC: amd: acp: amd-acp70-acpi-match: Add rt722 support Vijendar Mukunda
2025-02-10 16:29 ` [PATCH V2 00/23] ASoC: amd: acp70: add soundwire and acp pdm support Mark Brown
2025-02-10 16:46   ` Mukunda,Vijendar
2025-02-10 18:04     ` Mark Brown
2025-02-11  8:21       ` Mukunda,Vijendar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox