All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] ASoC: mediatek: Add support for MT8195 SoC
@ 2021-06-17  5:47 ` Trevor Wu
  0 siblings, 0 replies; 56+ messages in thread
From: Trevor Wu @ 2021-06-17  5:47 UTC (permalink / raw)
  To: broonie, tiwai, robh+dt, matthias.bgg
  Cc: trevor.wu, alsa-devel, linux-mediatek, linux-arm-kernel,
	linux-kernel, devicetree, bicycle.tsai, jiaxin.yu, cychiang

This series of patches adds support for Mediatek AFE of MT8195 SoC.
Patches are based on broonie tree "for-next" branch.

Trevor Wu (8):
  ASoC: mediatek: mt8195: update mediatek common driver
  ASoC: mediatek: mt8195: support etdm in platform driver
  ASoC: mediatek: mt8195: support adda in platform driver
  ASoC: mediatek: mt8195: support pcm in platform driver
  ASoC: mediatek: mt8195: add platform driver
  dt-bindings: mediatek: mt8195: add audio afe document
  ASoC: mediatek: mt8195: add machine driver with mt6359, rt1019 and
    rt5682
  dt-bindings: mediatek: mt8195: add mt8195-mt6359-rt1019-rt5682
    document

 .../bindings/sound/mt8195-afe-pcm.yaml        |   72 +
 .../sound/mt8195-mt6359-rt1019-rt5682.yaml    |   39 +
 sound/soc/mediatek/Kconfig                    |   23 +
 sound/soc/mediatek/Makefile                   |    1 +
 sound/soc/mediatek/common/mtk-afe-fe-dai.c    |   20 +-
 sound/soc/mediatek/common/mtk-base-afe.h      |   10 +-
 sound/soc/mediatek/mt8195/Makefile            |   14 +
 sound/soc/mediatek/mt8195/mt8195-afe-clk.c    |  899 +++++
 sound/soc/mediatek/mt8195/mt8195-afe-clk.h    |  201 +
 sound/soc/mediatek/mt8195/mt8195-afe-common.h |  200 +
 sound/soc/mediatek/mt8195/mt8195-afe-pcm.c    | 3264 +++++++++++++++++
 sound/soc/mediatek/mt8195/mt8195-dai-adda.c   |  929 +++++
 sound/soc/mediatek/mt8195/mt8195-dai-etdm.c   | 2666 ++++++++++++++
 sound/soc/mediatek/mt8195/mt8195-dai-pcm.c    |  393 ++
 .../mt8195/mt8195-mt6359-rt1019-rt5682.c      |  974 +++++
 sound/soc/mediatek/mt8195/mt8195-reg.h        | 2793 ++++++++++++++
 16 files changed, 12494 insertions(+), 4 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml
 create mode 100644 Documentation/devicetree/bindings/sound/mt8195-mt6359-rt1019-rt5682.yaml
 create mode 100644 sound/soc/mediatek/mt8195/Makefile
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-afe-clk.c
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-afe-clk.h
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-afe-common.h
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-afe-pcm.c
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-dai-adda.c
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-dai-etdm.c
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-dai-pcm.c
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-mt6359-rt1019-rt5682.c
 create mode 100644 sound/soc/mediatek/mt8195/mt8195-reg.h

-- 
2.18.0


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

end of thread, other threads:[~2021-06-23  8:13 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-17  5:47 [PATCH 0/8] ASoC: mediatek: Add support for MT8195 SoC Trevor Wu
2021-06-17  5:47 ` Trevor Wu
2021-06-17  5:47 ` Trevor Wu
2021-06-17  5:47 ` Trevor Wu
2021-06-17  5:47 ` [PATCH 1/8] ASoC: mediatek: mt8195: update mediatek common driver Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47 ` [PATCH 2/8] ASoC: mediatek: mt8195: support etdm in platform driver Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47 ` [PATCH 3/8] ASoC: mediatek: mt8195: support adda " Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47 ` [PATCH 4/8] ASoC: mediatek: mt8195: support pcm " Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47 ` [PATCH 5/8] ASoC: mediatek: mt8195: add " Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-18  7:24   ` kernel test robot
2021-06-18  7:24     ` kernel test robot
2021-06-18  7:24     ` kernel test robot
2021-06-18  7:24     ` kernel test robot
2021-06-18  7:24     ` kernel test robot
2021-06-17  5:47 ` [PATCH 6/8] dt-bindings: mediatek: mt8195: add audio afe document Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17 21:26   ` Rob Herring
2021-06-17 21:26     ` Rob Herring
2021-06-17 21:26     ` Rob Herring
2021-06-17 21:26     ` Rob Herring
2021-06-23  8:10     ` Trevor Wu
2021-06-23  8:10       ` Trevor Wu
2021-06-23  8:10       ` Trevor Wu
2021-06-23  8:10       ` Trevor Wu
2021-06-17  5:47 ` [PATCH 7/8] ASoC: mediatek: mt8195: add machine driver with mt6359, rt1019 and rt5682 Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-21  6:44   ` kernel test robot
2021-06-21  6:44     ` kernel test robot
2021-06-21  6:44     ` kernel test robot
2021-06-21  6:44     ` kernel test robot
2021-06-21  6:44     ` kernel test robot
2021-06-17  5:47 ` [PATCH 8/8] dt-bindings: mediatek: mt8195: add mt8195-mt6359-rt1019-rt5682 document Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17  5:47   ` Trevor Wu
2021-06-17 21:26   ` Rob Herring
2021-06-17 21:26     ` Rob Herring
2021-06-17 21:26     ` Rob Herring
2021-06-17 21:26     ` Rob Herring

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.