All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Baluta <daniel.baluta@oss.nxp.com>
To: broonie@kernel.org, alsa-devel@alsa-project.org
Cc: pierre-louis.bossart@linux.intel.com, lgirdwood@gmail.com,
	daniel.baluta@nxp.com, daniel.baluta@gmail.com,
	AjitKumar.Pandey@amd.com, Balakishore.pati@amd.com,
	vsreddy@amd.com, Julian.Schroeder@amd.com,
	vishnuvardhanrao.ravulapati@amd.com,
	linux-kernel@vger.kernel.org, yc.hung@mediatek.com,
	linux-mediatek@lists.infradead.org
Subject: [PATCH 00/21] ASoC: SOF: Platform updates for AMD and Mediatek
Date: Wed, 17 Nov 2021 11:37:13 +0200	[thread overview]
Message-ID: <20211117093734.17407-1-daniel.baluta@oss.nxp.com> (raw)

From: Daniel Baluta <daniel.baluta@nxp.com>

This patchseries adds Renoir ACP HW support and Mediatek MT8195
platform.

Notes:
- I first send the meditatek support in a previous emails but it failed
  to apply because there are some dependencies on AMD patches related to
  DAI ids.

Ajit Kumar Pandey (12):
  ASoC: SOF: amd: Add Renoir ACP HW support
  ASoC: SOF: amd: Add helper callbacks for ACP's DMA configuration
  ASoC: SOF: amd: Add fw loader and renoir dsp ops to load firmware
  ASoC: SOF: amd: Add IPC support for ACP IP block
  ASoC: SOF: amd: Add dai driver dsp ops callback for Renoir
  ASoC: SOF: amd: Add PCM stream callback for Renoir dai's
  ASoC: amd: Add module to determine ACP configuration
  ASoC: SOF: amd: Add machine driver dsp ops for Renoir platform
  ASoC: SOF: amd: Add Renoir PCI driver interface
  ASoC: amd: acp-config: Remove legacy acpi based machine struct
  ASoC: SOF: topology: Add support for AMD ACP DAIs
  ASoC: SOF: amd: Add support for SOF firmware authentication

V sujith kumar Reddy (1):
  ASoC: SOF: amd: Add trace logger support

YC Hung (8):
  ASoC: SOF: mediatek: Add mt8195 hardware support
  ASoC: SOF: tokens: add token for Mediatek AFE
  ASoC: SOF: topology: Add support for Mediatek AFE DAI
  ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware
  ASoC: SOF: Add mt8195 device descriptor
  ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195
  ASoC: SOF: mediatek: Add mt8195 dsp clock support
  ASoC: SOF: mediatek: Add DSP system PM callback for mt8195

 include/sound/sof/dai-amd.h                   |  21 +
 include/sound/sof/dai-mediatek.h              |  23 +
 include/sound/sof/dai.h                       |  10 +
 include/uapi/sound/sof/tokens.h               |   5 +
 sound/soc/amd/Kconfig                         |   6 +
 sound/soc/amd/Makefile                        |   2 +
 sound/soc/amd/acp-config.c                    |  71 +++
 sound/soc/amd/mach-config.h                   |  28 ++
 sound/soc/sof/Kconfig                         |   4 +-
 sound/soc/sof/Makefile                        |   2 +
 sound/soc/sof/amd/Kconfig                     |  33 ++
 sound/soc/sof/amd/Makefile                    |  11 +
 sound/soc/sof/amd/acp-dsp-offset.h            |  78 +++
 sound/soc/sof/amd/acp-ipc.c                   | 187 ++++++++
 sound/soc/sof/amd/acp-loader.c                | 199 ++++++++
 sound/soc/sof/amd/acp-pcm.c                   |  82 ++++
 sound/soc/sof/amd/acp-stream.c                | 181 +++++++
 sound/soc/sof/amd/acp-trace.c                 |  84 ++++
 sound/soc/sof/amd/acp.c                       | 446 ++++++++++++++++++
 sound/soc/sof/amd/acp.h                       | 226 +++++++++
 sound/soc/sof/amd/pci-rn.c                    | 165 +++++++
 sound/soc/sof/amd/renoir.c                    | 185 ++++++++
 sound/soc/sof/mediatek/Kconfig                |  33 ++
 sound/soc/sof/mediatek/Makefile               |   2 +
 sound/soc/sof/mediatek/adsp_helper.h          |  49 ++
 sound/soc/sof/mediatek/mediatek-ops.h         |   8 +
 sound/soc/sof/mediatek/mt8195/Makefile        |   3 +
 sound/soc/sof/mediatek/mt8195/mt8195-clk.c    | 158 +++++++
 sound/soc/sof/mediatek/mt8195/mt8195-clk.h    |  28 ++
 sound/soc/sof/mediatek/mt8195/mt8195-loader.c |  56 +++
 sound/soc/sof/mediatek/mt8195/mt8195.c        | 437 +++++++++++++++++
 sound/soc/sof/mediatek/mt8195/mt8195.h        | 158 +++++++
 sound/soc/sof/pcm.c                           |  48 ++
 sound/soc/sof/sof-of-dev.c                    |  13 +
 sound/soc/sof/topology.c                      | 168 +++++++
 35 files changed, 3209 insertions(+), 1 deletion(-)
 create mode 100644 include/sound/sof/dai-amd.h
 create mode 100644 include/sound/sof/dai-mediatek.h
 create mode 100644 sound/soc/amd/acp-config.c
 create mode 100644 sound/soc/amd/mach-config.h
 create mode 100644 sound/soc/sof/amd/Kconfig
 create mode 100644 sound/soc/sof/amd/Makefile
 create mode 100644 sound/soc/sof/amd/acp-dsp-offset.h
 create mode 100644 sound/soc/sof/amd/acp-ipc.c
 create mode 100644 sound/soc/sof/amd/acp-loader.c
 create mode 100644 sound/soc/sof/amd/acp-pcm.c
 create mode 100644 sound/soc/sof/amd/acp-stream.c
 create mode 100644 sound/soc/sof/amd/acp-trace.c
 create mode 100644 sound/soc/sof/amd/acp.c
 create mode 100644 sound/soc/sof/amd/acp.h
 create mode 100644 sound/soc/sof/amd/pci-rn.c
 create mode 100644 sound/soc/sof/amd/renoir.c
 create mode 100644 sound/soc/sof/mediatek/Kconfig
 create mode 100644 sound/soc/sof/mediatek/Makefile
 create mode 100644 sound/soc/sof/mediatek/adsp_helper.h
 create mode 100644 sound/soc/sof/mediatek/mediatek-ops.h
 create mode 100644 sound/soc/sof/mediatek/mt8195/Makefile
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-clk.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-clk.h
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-loader.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.h

-- 
2.27.0


WARNING: multiple messages have this Message-ID (diff)
From: Daniel Baluta <daniel.baluta@oss.nxp.com>
To: broonie@kernel.org, alsa-devel@alsa-project.org
Cc: daniel.baluta@gmail.com, AjitKumar.Pandey@amd.com,
	linux-kernel@vger.kernel.org,
	pierre-louis.bossart@linux.intel.com, lgirdwood@gmail.com,
	Julian.Schroeder@amd.com, linux-mediatek@lists.infradead.org,
	Balakishore.pati@amd.com, yc.hung@mediatek.com,
	vishnuvardhanrao.ravulapati@amd.com, vsreddy@amd.com,
	daniel.baluta@nxp.com
Subject: [PATCH 00/21] ASoC: SOF: Platform updates for AMD and Mediatek
Date: Wed, 17 Nov 2021 11:37:13 +0200	[thread overview]
Message-ID: <20211117093734.17407-1-daniel.baluta@oss.nxp.com> (raw)

From: Daniel Baluta <daniel.baluta@nxp.com>

This patchseries adds Renoir ACP HW support and Mediatek MT8195
platform.

Notes:
- I first send the meditatek support in a previous emails but it failed
  to apply because there are some dependencies on AMD patches related to
  DAI ids.

Ajit Kumar Pandey (12):
  ASoC: SOF: amd: Add Renoir ACP HW support
  ASoC: SOF: amd: Add helper callbacks for ACP's DMA configuration
  ASoC: SOF: amd: Add fw loader and renoir dsp ops to load firmware
  ASoC: SOF: amd: Add IPC support for ACP IP block
  ASoC: SOF: amd: Add dai driver dsp ops callback for Renoir
  ASoC: SOF: amd: Add PCM stream callback for Renoir dai's
  ASoC: amd: Add module to determine ACP configuration
  ASoC: SOF: amd: Add machine driver dsp ops for Renoir platform
  ASoC: SOF: amd: Add Renoir PCI driver interface
  ASoC: amd: acp-config: Remove legacy acpi based machine struct
  ASoC: SOF: topology: Add support for AMD ACP DAIs
  ASoC: SOF: amd: Add support for SOF firmware authentication

V sujith kumar Reddy (1):
  ASoC: SOF: amd: Add trace logger support

YC Hung (8):
  ASoC: SOF: mediatek: Add mt8195 hardware support
  ASoC: SOF: tokens: add token for Mediatek AFE
  ASoC: SOF: topology: Add support for Mediatek AFE DAI
  ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware
  ASoC: SOF: Add mt8195 device descriptor
  ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195
  ASoC: SOF: mediatek: Add mt8195 dsp clock support
  ASoC: SOF: mediatek: Add DSP system PM callback for mt8195

 include/sound/sof/dai-amd.h                   |  21 +
 include/sound/sof/dai-mediatek.h              |  23 +
 include/sound/sof/dai.h                       |  10 +
 include/uapi/sound/sof/tokens.h               |   5 +
 sound/soc/amd/Kconfig                         |   6 +
 sound/soc/amd/Makefile                        |   2 +
 sound/soc/amd/acp-config.c                    |  71 +++
 sound/soc/amd/mach-config.h                   |  28 ++
 sound/soc/sof/Kconfig                         |   4 +-
 sound/soc/sof/Makefile                        |   2 +
 sound/soc/sof/amd/Kconfig                     |  33 ++
 sound/soc/sof/amd/Makefile                    |  11 +
 sound/soc/sof/amd/acp-dsp-offset.h            |  78 +++
 sound/soc/sof/amd/acp-ipc.c                   | 187 ++++++++
 sound/soc/sof/amd/acp-loader.c                | 199 ++++++++
 sound/soc/sof/amd/acp-pcm.c                   |  82 ++++
 sound/soc/sof/amd/acp-stream.c                | 181 +++++++
 sound/soc/sof/amd/acp-trace.c                 |  84 ++++
 sound/soc/sof/amd/acp.c                       | 446 ++++++++++++++++++
 sound/soc/sof/amd/acp.h                       | 226 +++++++++
 sound/soc/sof/amd/pci-rn.c                    | 165 +++++++
 sound/soc/sof/amd/renoir.c                    | 185 ++++++++
 sound/soc/sof/mediatek/Kconfig                |  33 ++
 sound/soc/sof/mediatek/Makefile               |   2 +
 sound/soc/sof/mediatek/adsp_helper.h          |  49 ++
 sound/soc/sof/mediatek/mediatek-ops.h         |   8 +
 sound/soc/sof/mediatek/mt8195/Makefile        |   3 +
 sound/soc/sof/mediatek/mt8195/mt8195-clk.c    | 158 +++++++
 sound/soc/sof/mediatek/mt8195/mt8195-clk.h    |  28 ++
 sound/soc/sof/mediatek/mt8195/mt8195-loader.c |  56 +++
 sound/soc/sof/mediatek/mt8195/mt8195.c        | 437 +++++++++++++++++
 sound/soc/sof/mediatek/mt8195/mt8195.h        | 158 +++++++
 sound/soc/sof/pcm.c                           |  48 ++
 sound/soc/sof/sof-of-dev.c                    |  13 +
 sound/soc/sof/topology.c                      | 168 +++++++
 35 files changed, 3209 insertions(+), 1 deletion(-)
 create mode 100644 include/sound/sof/dai-amd.h
 create mode 100644 include/sound/sof/dai-mediatek.h
 create mode 100644 sound/soc/amd/acp-config.c
 create mode 100644 sound/soc/amd/mach-config.h
 create mode 100644 sound/soc/sof/amd/Kconfig
 create mode 100644 sound/soc/sof/amd/Makefile
 create mode 100644 sound/soc/sof/amd/acp-dsp-offset.h
 create mode 100644 sound/soc/sof/amd/acp-ipc.c
 create mode 100644 sound/soc/sof/amd/acp-loader.c
 create mode 100644 sound/soc/sof/amd/acp-pcm.c
 create mode 100644 sound/soc/sof/amd/acp-stream.c
 create mode 100644 sound/soc/sof/amd/acp-trace.c
 create mode 100644 sound/soc/sof/amd/acp.c
 create mode 100644 sound/soc/sof/amd/acp.h
 create mode 100644 sound/soc/sof/amd/pci-rn.c
 create mode 100644 sound/soc/sof/amd/renoir.c
 create mode 100644 sound/soc/sof/mediatek/Kconfig
 create mode 100644 sound/soc/sof/mediatek/Makefile
 create mode 100644 sound/soc/sof/mediatek/adsp_helper.h
 create mode 100644 sound/soc/sof/mediatek/mediatek-ops.h
 create mode 100644 sound/soc/sof/mediatek/mt8195/Makefile
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-clk.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-clk.h
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-loader.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.h

-- 
2.27.0


WARNING: multiple messages have this Message-ID (diff)
From: Daniel Baluta <daniel.baluta@oss.nxp.com>
To: broonie@kernel.org, alsa-devel@alsa-project.org
Cc: pierre-louis.bossart@linux.intel.com, lgirdwood@gmail.com,
	daniel.baluta@nxp.com, daniel.baluta@gmail.com,
	AjitKumar.Pandey@amd.com, Balakishore.pati@amd.com,
	vsreddy@amd.com, Julian.Schroeder@amd.com,
	vishnuvardhanrao.ravulapati@amd.com,
	linux-kernel@vger.kernel.org, yc.hung@mediatek.com,
	linux-mediatek@lists.infradead.org
Subject: [PATCH 00/21] ASoC: SOF: Platform updates for AMD and Mediatek
Date: Wed, 17 Nov 2021 11:37:13 +0200	[thread overview]
Message-ID: <20211117093734.17407-1-daniel.baluta@oss.nxp.com> (raw)

From: Daniel Baluta <daniel.baluta@nxp.com>

This patchseries adds Renoir ACP HW support and Mediatek MT8195
platform.

Notes:
- I first send the meditatek support in a previous emails but it failed
  to apply because there are some dependencies on AMD patches related to
  DAI ids.

Ajit Kumar Pandey (12):
  ASoC: SOF: amd: Add Renoir ACP HW support
  ASoC: SOF: amd: Add helper callbacks for ACP's DMA configuration
  ASoC: SOF: amd: Add fw loader and renoir dsp ops to load firmware
  ASoC: SOF: amd: Add IPC support for ACP IP block
  ASoC: SOF: amd: Add dai driver dsp ops callback for Renoir
  ASoC: SOF: amd: Add PCM stream callback for Renoir dai's
  ASoC: amd: Add module to determine ACP configuration
  ASoC: SOF: amd: Add machine driver dsp ops for Renoir platform
  ASoC: SOF: amd: Add Renoir PCI driver interface
  ASoC: amd: acp-config: Remove legacy acpi based machine struct
  ASoC: SOF: topology: Add support for AMD ACP DAIs
  ASoC: SOF: amd: Add support for SOF firmware authentication

V sujith kumar Reddy (1):
  ASoC: SOF: amd: Add trace logger support

YC Hung (8):
  ASoC: SOF: mediatek: Add mt8195 hardware support
  ASoC: SOF: tokens: add token for Mediatek AFE
  ASoC: SOF: topology: Add support for Mediatek AFE DAI
  ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware
  ASoC: SOF: Add mt8195 device descriptor
  ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195
  ASoC: SOF: mediatek: Add mt8195 dsp clock support
  ASoC: SOF: mediatek: Add DSP system PM callback for mt8195

 include/sound/sof/dai-amd.h                   |  21 +
 include/sound/sof/dai-mediatek.h              |  23 +
 include/sound/sof/dai.h                       |  10 +
 include/uapi/sound/sof/tokens.h               |   5 +
 sound/soc/amd/Kconfig                         |   6 +
 sound/soc/amd/Makefile                        |   2 +
 sound/soc/amd/acp-config.c                    |  71 +++
 sound/soc/amd/mach-config.h                   |  28 ++
 sound/soc/sof/Kconfig                         |   4 +-
 sound/soc/sof/Makefile                        |   2 +
 sound/soc/sof/amd/Kconfig                     |  33 ++
 sound/soc/sof/amd/Makefile                    |  11 +
 sound/soc/sof/amd/acp-dsp-offset.h            |  78 +++
 sound/soc/sof/amd/acp-ipc.c                   | 187 ++++++++
 sound/soc/sof/amd/acp-loader.c                | 199 ++++++++
 sound/soc/sof/amd/acp-pcm.c                   |  82 ++++
 sound/soc/sof/amd/acp-stream.c                | 181 +++++++
 sound/soc/sof/amd/acp-trace.c                 |  84 ++++
 sound/soc/sof/amd/acp.c                       | 446 ++++++++++++++++++
 sound/soc/sof/amd/acp.h                       | 226 +++++++++
 sound/soc/sof/amd/pci-rn.c                    | 165 +++++++
 sound/soc/sof/amd/renoir.c                    | 185 ++++++++
 sound/soc/sof/mediatek/Kconfig                |  33 ++
 sound/soc/sof/mediatek/Makefile               |   2 +
 sound/soc/sof/mediatek/adsp_helper.h          |  49 ++
 sound/soc/sof/mediatek/mediatek-ops.h         |   8 +
 sound/soc/sof/mediatek/mt8195/Makefile        |   3 +
 sound/soc/sof/mediatek/mt8195/mt8195-clk.c    | 158 +++++++
 sound/soc/sof/mediatek/mt8195/mt8195-clk.h    |  28 ++
 sound/soc/sof/mediatek/mt8195/mt8195-loader.c |  56 +++
 sound/soc/sof/mediatek/mt8195/mt8195.c        | 437 +++++++++++++++++
 sound/soc/sof/mediatek/mt8195/mt8195.h        | 158 +++++++
 sound/soc/sof/pcm.c                           |  48 ++
 sound/soc/sof/sof-of-dev.c                    |  13 +
 sound/soc/sof/topology.c                      | 168 +++++++
 35 files changed, 3209 insertions(+), 1 deletion(-)
 create mode 100644 include/sound/sof/dai-amd.h
 create mode 100644 include/sound/sof/dai-mediatek.h
 create mode 100644 sound/soc/amd/acp-config.c
 create mode 100644 sound/soc/amd/mach-config.h
 create mode 100644 sound/soc/sof/amd/Kconfig
 create mode 100644 sound/soc/sof/amd/Makefile
 create mode 100644 sound/soc/sof/amd/acp-dsp-offset.h
 create mode 100644 sound/soc/sof/amd/acp-ipc.c
 create mode 100644 sound/soc/sof/amd/acp-loader.c
 create mode 100644 sound/soc/sof/amd/acp-pcm.c
 create mode 100644 sound/soc/sof/amd/acp-stream.c
 create mode 100644 sound/soc/sof/amd/acp-trace.c
 create mode 100644 sound/soc/sof/amd/acp.c
 create mode 100644 sound/soc/sof/amd/acp.h
 create mode 100644 sound/soc/sof/amd/pci-rn.c
 create mode 100644 sound/soc/sof/amd/renoir.c
 create mode 100644 sound/soc/sof/mediatek/Kconfig
 create mode 100644 sound/soc/sof/mediatek/Makefile
 create mode 100644 sound/soc/sof/mediatek/adsp_helper.h
 create mode 100644 sound/soc/sof/mediatek/mediatek-ops.h
 create mode 100644 sound/soc/sof/mediatek/mt8195/Makefile
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-clk.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-clk.h
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-loader.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.c
 create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.h

-- 
2.27.0


_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

             reply	other threads:[~2021-11-17  9:38 UTC|newest]

Thread overview: 99+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-17  9:37 Daniel Baluta [this message]
2021-11-17  9:37 ` [PATCH 00/21] ASoC: SOF: Platform updates for AMD and Mediatek Daniel Baluta
2021-11-17  9:37 ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 01/21] ASoC: SOF: amd: Add Renoir ACP HW support Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 02/21] ASoC: SOF: amd: Add helper callbacks for ACP's DMA configuration Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 03/21] ASoC: SOF: amd: Add fw loader and renoir dsp ops to load firmware Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 04/21] ASoC: SOF: amd: Add IPC support for ACP IP block Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 05/21] ASoC: SOF: amd: Add dai driver dsp ops callback for Renoir Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 06/21] ASoC: SOF: amd: Add PCM stream callback for Renoir dai's Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 07/21] ASoC: amd: Add module to determine ACP configuration Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-30 16:41   ` Geert Uytterhoeven
2021-11-30 16:41     ` Geert Uytterhoeven
2021-11-30 16:41     ` Geert Uytterhoeven
2021-11-30 16:49     ` Pierre-Louis Bossart
2021-11-30 16:49       ` Pierre-Louis Bossart
2021-11-30 16:49       ` Pierre-Louis Bossart
2021-11-30 17:05       ` Mark Brown
2021-11-30 17:05         ` Mark Brown
2021-11-30 17:05         ` Mark Brown
2021-11-30 17:41         ` Daniel Baluta
2021-11-30 17:41           ` Daniel Baluta
2021-11-30 17:41           ` Daniel Baluta
2021-12-01 10:20         ` Geert Uytterhoeven
2021-12-01 10:20           ` Geert Uytterhoeven
2021-12-01 10:20           ` Geert Uytterhoeven
2021-11-17  9:37 ` [PATCH 08/21] ASoC: SOF: amd: Add machine driver dsp ops for Renoir platform Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 09/21] ASoC: SOF: amd: Add Renoir PCI driver interface Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 10/21] ASoC: amd: acp-config: Remove legacy acpi based machine struct Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 11/21] ASoC: SOF: topology: Add support for AMD ACP DAIs Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 12/21] ASoC: SOF: amd: Add trace logger support Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 13/21] ASoC: SOF: amd: Add support for SOF firmware authentication Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17 19:08   ` Curtis Malainey
2021-11-17 19:08     ` Curtis Malainey
2021-11-17 19:08     ` Curtis Malainey
2021-11-17  9:37 ` [PATCH 14/21] ASoC: SOF: mediatek: Add mt8195 hardware support Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 15/21] ASoC: SOF: tokens: add token for Mediatek AFE Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 16/21] ASoC: SOF: topology: Add support for Mediatek AFE DAI Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17 17:29   ` Mark Brown
2021-11-17 17:29     ` Mark Brown
2021-11-17 17:29     ` Mark Brown
2021-11-17 17:32     ` Daniel Baluta
2021-11-17 17:32       ` Daniel Baluta
2021-11-17 17:32       ` Daniel Baluta
2021-11-18  9:34       ` Daniel Baluta
2021-11-18  9:34         ` Daniel Baluta
2021-11-18  9:34         ` Daniel Baluta
2021-11-18  9:48         ` Daniel Baluta
2021-11-18  9:48           ` Daniel Baluta
2021-11-18  9:48           ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 17/21] ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 18/21] ASoC: SOF: Add mt8195 device descriptor Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 19/21] ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195 Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 20/21] ASoC: SOF: mediatek: Add mt8195 dsp clock support Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37 ` [PATCH 21/21] ASoC: SOF: mediatek: Add DSP system PM callback for mt8195 Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17  9:37   ` Daniel Baluta
2021-11-17 22:31 ` [PATCH 00/21] ASoC: SOF: Platform updates for AMD and Mediatek Mark Brown
2021-11-17 22:31   ` Mark Brown
2021-11-17 22:31   ` 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=20211117093734.17407-1-daniel.baluta@oss.nxp.com \
    --to=daniel.baluta@oss.nxp.com \
    --cc=AjitKumar.Pandey@amd.com \
    --cc=Balakishore.pati@amd.com \
    --cc=Julian.Schroeder@amd.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=daniel.baluta@gmail.com \
    --cc=daniel.baluta@nxp.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=vishnuvardhanrao.ravulapati@amd.com \
    --cc=vsreddy@amd.com \
    --cc=yc.hung@mediatek.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.