From: "Mukunda,Vijendar" <vijendar.mukunda@amd.com>
To: broonie@kernel.org
Cc: alsa-devel@alsa-project.org,
pierre-louis.bossart@linux.intel.com,
Basavaraj.Hiregoudar@amd.com, Sunil-kumar.Dommati@amd.com,
Mastan.Katragadda@amd.com, Arungopal.kondaveeti@amd.com,
mario.limonciello@amd.com
Subject: Re: [PATCH V4 0/9] ASoC: amd: ps: add SoundWire support
Date: Mon, 19 Jun 2023 11:02:52 +0530 [thread overview]
Message-ID: <5a397996-beb6-90ec-979c-22c4bfd7dcf3@amd.com> (raw)
In-Reply-To: <20230612095903.2113464-1-Vijendar.Mukunda@amd.com>
On 12/06/23 15:28, Vijendar Mukunda wrote:
> This patch series add support for
> - Platform device creation for SoundWire Manager instances and
> PDM controller.
> - SoundWire DMA driver.
> - Interrupt handling for SoundWire manager related interrupts,
> SoundWire DMA interrupts and ACP error interrupts.
> - ACP PCI driver PM ops modification with respect to SoundWire
> Power modes.
>
> Changes since v3:
> - use pdev_config instead of pdev_mask in the code.
> - define platform device configuration macros rather than enums
> - add comments for MIPI DisCo version
> - refactor SoundWire DMA start/stop sequence using single
> function
> - refactor "acp_reset" flag related functionality.
>
> Changes since v2:
> - add comments in irq handler.
> - remove workqueue for SoundWire DMA interrupts and use thread
> implementation for DMA interrupt handling.
> - add error checks in sdw_amd_scan_controller()
> - remove passing "acp_lock" as platform resource for SoundWire DMA driver
> and PDM driver.
> - retrieve "acp_lock" reference from parent driver directly and
> use the reference in SoundWire DMA driver.
> - add handling for acp pci driver probe even when no ACP PDM or
> SoundWire manager platform devices created.
> - Fix indentation for acp_sdw_dma_count structure variables.
> - Use macro instead of hard coded values for FIFO offset and PTE offset.
> - Change pm_runtime enable sequence in SoundWire DMA driver
> probe function.
> - Refactor system level resume callback in SoundWire DMA
>
> Changes since v1:
> - update "soundwire" as "SoundWire" in code.
> - add comments for platform device mask and platform device
> count
> - remove unused variables in acp pci driver private data
> structure
> - refactor dma enable register structures in SoundWire DMA driver
> - add TODO comments in IRQ handler
> - update IRQ mask values using bit macros
> - Fix build error reported in Makefile
> - rename "sdw_dma_stream_instance" structure name as "acp_sdw_dma_stream"
@Mark: We have provided replies for upstream review comments for V4 patch set.
We are going to push as supplement patches for minor fixes.
Should I resend the patch series?
>
> Vijendar Mukunda (9):
> ASoC: amd: ps: create platform devices based on acp config
> ASoC: amd: ps: handle SoundWire interrupts in acp pci driver
> ASoC: amd: ps: add SoundWire dma driver
> ASoC: amd: ps: add SoundWire dma driver dma ops
> ASoC: amd: ps: add support for SoundWire DMA interrupts
> ASoC: amd: ps: add pm ops support for SoundWire dma driver
> ASoC: amd: ps: enable SoundWire dma driver build
> ASoC: amd: update comments in Kconfig file
> ASoC: amd: ps: add acp_reset flag check in acp pci driver pm ops.
>
> sound/soc/amd/Kconfig | 3 +-
> sound/soc/amd/ps/Makefile | 2 +
> sound/soc/amd/ps/acp63.h | 172 ++++++++++-
> sound/soc/amd/ps/pci-ps.c | 419 +++++++++++++++++++++++--
> sound/soc/amd/ps/ps-sdw-dma.c | 555 ++++++++++++++++++++++++++++++++++
> 5 files changed, 1115 insertions(+), 36 deletions(-)
> create mode 100644 sound/soc/amd/ps/ps-sdw-dma.c
>
next prev parent reply other threads:[~2023-06-19 5:32 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-12 9:58 [PATCH V4 0/9] ASoC: amd: ps: add SoundWire support Vijendar Mukunda
2023-06-12 9:58 ` [PATCH V4 1/9] ASoC: amd: ps: create platform devices based on acp config Vijendar Mukunda
2023-06-12 18:09 ` Pierre-Louis Bossart
2023-06-13 5:42 ` Mukunda,Vijendar
2023-06-15 16:23 ` Pierre-Louis Bossart
2023-06-12 9:58 ` [PATCH V4 2/9] ASoC: amd: ps: handle SoundWire interrupts in acp pci driver Vijendar Mukunda
2023-06-12 9:58 ` [PATCH V4 3/9] ASoC: amd: ps: add SoundWire dma driver Vijendar Mukunda
2023-06-12 9:58 ` [PATCH V4 4/9] ASoC: amd: ps: add SoundWire dma driver dma ops Vijendar Mukunda
2023-06-12 18:06 ` Pierre-Louis Bossart
2023-06-13 7:00 ` Mukunda,Vijendar
2023-06-15 15:50 ` Mukunda,Vijendar
2023-06-15 15:56 ` Mark Brown
2023-06-15 16:09 ` Mukunda,Vijendar
2023-06-15 16:12 ` Mukunda,Vijendar
2023-06-15 16:21 ` Pierre-Louis Bossart
2023-06-15 17:13 ` Mukunda,Vijendar
2023-06-12 9:58 ` [PATCH V4 5/9] ASoC: amd: ps: add support for SoundWire DMA interrupts Vijendar Mukunda
2023-06-12 9:59 ` [PATCH V4 6/9] ASoC: amd: ps: add pm ops support for SoundWire dma driver Vijendar Mukunda
2023-06-12 9:59 ` [PATCH V4 7/9] ASoC: amd: ps: enable SoundWire dma driver build Vijendar Mukunda
2023-06-12 9:59 ` [PATCH V4 8/9] ASoC: amd: update comments in Kconfig file Vijendar Mukunda
2023-06-12 9:59 ` [PATCH V4 9/9] ASoC: amd: ps: add acp_reset flag check in acp pci driver pm ops Vijendar Mukunda
2023-06-19 5:32 ` Mukunda,Vijendar [this message]
2023-06-19 7:31 ` [PATCH V4 0/9] ASoC: amd: ps: add SoundWire support Mukunda,Vijendar
2023-06-19 12:52 ` Mark Brown
2023-06-21 0:34 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5a397996-beb6-90ec-979c-22c4bfd7dcf3@amd.com \
--to=vijendar.mukunda@amd.com \
--cc=Arungopal.kondaveeti@amd.com \
--cc=Basavaraj.Hiregoudar@amd.com \
--cc=Mastan.Katragadda@amd.com \
--cc=Sunil-kumar.Dommati@amd.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=mario.limonciello@amd.com \
--cc=pierre-louis.bossart@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox