All of lore.kernel.org
 help / color / mirror / Atom feed
* [v3 00/19] ASoC: mediatek: Add support for MT8186 SoC
@ 2022-03-13 15:10 ` Jiaxin Yu
  0 siblings, 0 replies; 156+ messages in thread
From: Jiaxin Yu @ 2022-03-13 15:10 UTC (permalink / raw)
  To: broonie, robh+dt, angelogioacchino.delregno
  Cc: aaronyu, matthias.bgg, trevor.wu, tzungbi, julianbraha,
	alsa-devel, devicetree, linux-arm-kernel, linux-mediatek,
	linux-kernel, Project_Global_Chrome_Upstream_Group, Jiaxin Yu

From: Jiaxin Yu <jiaxin.yu@mediatek.corp-partner.google.com>

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

Changes since v2:
  - add a new compatible string "mediatek,mt6366-sound"
  - modify the log level for simplicity
  - use dev_err_probe(...) instead of dev_err(...) in dev probe()
  - optimized the logic of some code
  - use BIT() and GENMASK() macros to descript the registers

  Thanks for AngeloGioacchino's careful reviews.

Changes since v1:
  [v2 01/17]
    - add a new ID to the existing mt6358 codec driver
  [v2 03/17]
    - modify log level in DAPM events
    - use standard numeric control with name ending in Switch
    - return 1 when the value changed in mixer control's .get callback
  [v2 05/17]
    - ending in Switch to the standard on/off controls
    - change to "HW Gain 1 Volume" and "HW Gain 2 Volume"
  [v2 09/17]
    - return an error in the default case rather than just picking one of
      the behaviours when do .set_fmt
    - use the new defines that are _PROVIDER_MASK, _DAIFMT_CBP_CFP and
      _DAIFMT_CBC_CFC
  [v2 10/17]
  [v2 11/17]
    - the clock and gpio are aplit out into separate  patches

  The source file's GPL comment use c++ style, and the header fils's GPL
  comment use c style. We have added "Switch" after the names of all the
  controls that just are simple on/off.

Jiaxin Yu (19):
  ASoC: mediatek: mt6366: support for mt6366 codec
  dt-bindings: mediatek: mt6358: add new compatible for using mt6366
  ASoC: mediatek: mt8186: support audsys clock control
  ASoC: mediatek: mt8186: support adda in platform driver
  ASoC: mediatek: mt8186: support hostless in platform driver
  ASoC: mediatek: mt8186: support hw gain in platform driver
  ASoC: mediatek: mt8186: support i2s in platform driver
  ASoC: mediatek: mt8186: support pcm in platform driver
  ASoC: mediatek: mt8186: support src in platform driver
  ASoC: mediatek: mt8186: support tdm in platform driver
  ASoC: mediatek: mt8186: support audio clock control in platform driver
  ASoC: mediatek: mt8186: support gpio control in platform driver
  ASoC: mediatek: mt8186: add platform driver
  dt-bindings: mediatek: mt8186: add audio afe document
  ASoC: mediatek: mt8186: add machine driver with mt6366, da7219 and
    max98357
  dt-bindings: mediatek: mt8186: add mt8186-mt6366-da7219-max98357
    document
  ASoC: mediatek: mt8186: add machine driver with mt6366, rt1019 and
    rt5682s
  dt-bindings: mediatek: mt8186: add mt8186-mt6366-rt1019-rt5682s
    document
  ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs

 .../devicetree/bindings/sound/mt6358.txt      |    4 +-
 .../bindings/sound/mt8186-afe-pcm.yaml        |  175 +
 .../sound/mt8186-mt6366-da7219-max98357.yaml  |   47 +
 .../sound/mt8186-mt6366-rt1019-rt5682s.yaml   |   47 +
 sound/soc/codecs/mt6358.c                     |    5 +
 sound/soc/mediatek/Kconfig                    |   44 +
 sound/soc/mediatek/Makefile                   |    1 +
 sound/soc/mediatek/mt8186/Makefile            |   21 +
 sound/soc/mediatek/mt8186/mt8186-afe-clk.c    |  651 ++++
 sound/soc/mediatek/mt8186/mt8186-afe-clk.h    |  106 +
 sound/soc/mediatek/mt8186/mt8186-afe-common.h |  235 ++
 .../soc/mediatek/mt8186/mt8186-afe-control.c  |  261 ++
 sound/soc/mediatek/mt8186/mt8186-afe-gpio.c   |  244 ++
 sound/soc/mediatek/mt8186/mt8186-afe-gpio.h   |   19 +
 sound/soc/mediatek/mt8186/mt8186-afe-pcm.c    | 3001 +++++++++++++++++
 sound/soc/mediatek/mt8186/mt8186-audsys-clk.c |  150 +
 sound/soc/mediatek/mt8186/mt8186-audsys-clk.h |   15 +
 .../soc/mediatek/mt8186/mt8186-audsys-clkid.h |   45 +
 sound/soc/mediatek/mt8186/mt8186-dai-adda.c   |  878 +++++
 .../soc/mediatek/mt8186/mt8186-dai-hostless.c |  298 ++
 .../soc/mediatek/mt8186/mt8186-dai-hw-gain.c  |  236 ++
 sound/soc/mediatek/mt8186/mt8186-dai-i2s.c    | 1355 ++++++++
 sound/soc/mediatek/mt8186/mt8186-dai-pcm.c    |  423 +++
 sound/soc/mediatek/mt8186/mt8186-dai-src.c    |  726 ++++
 sound/soc/mediatek/mt8186/mt8186-dai-tdm.c    |  695 ++++
 .../mediatek/mt8186/mt8186-interconnection.h  |   69 +
 .../soc/mediatek/mt8186/mt8186-misc-control.c |  295 ++
 .../mt8186/mt8186-mt6366-da7219-max98357.c    |  924 +++++
 .../mt8186/mt8186-mt6366-rt1019-rt5682s.c     |  900 +++++
 sound/soc/mediatek/mt8186/mt8186-reg.h        | 2913 ++++++++++++++++
 30 files changed, 14782 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/sound/mt8186-afe-pcm.yaml
 create mode 100644 Documentation/devicetree/bindings/sound/mt8186-mt6366-da7219-max98357.yaml
 create mode 100644 Documentation/devicetree/bindings/sound/mt8186-mt6366-rt1019-rt5682s.yaml
 create mode 100644 sound/soc/mediatek/mt8186/Makefile
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-clk.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-clk.h
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-common.h
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-control.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-gpio.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-gpio.h
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-afe-pcm.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-audsys-clk.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-audsys-clk.h
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-audsys-clkid.h
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-adda.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-hostless.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-hw-gain.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-i2s.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-pcm.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-src.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-dai-tdm.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-interconnection.h
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-misc-control.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-mt6366-da7219-max98357.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-mt6366-rt1019-rt5682s.c
 create mode 100644 sound/soc/mediatek/mt8186/mt8186-reg.h

-- 
2.18.0


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

end of thread, other threads:[~2022-04-05  4:12 UTC | newest]

Thread overview: 156+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-13 15:10 [v3 00/19] ASoC: mediatek: Add support for MT8186 SoC Jiaxin Yu
2022-03-13 15:10 ` Jiaxin Yu
2022-03-13 15:10 ` Jiaxin Yu
2022-03-13 15:10 ` Jiaxin Yu
2022-03-13 15:10 ` [v3 01/19] ASoC: mediatek: mt6366: support for mt6366 codec Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10 ` [v3 02/19] dt-bindings: mediatek: mt6358: add new compatible for using mt6366 Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-23 17:09   ` Rob Herring
2022-03-23 17:09     ` Rob Herring
2022-03-23 17:09     ` Rob Herring
2022-03-23 17:09     ` Rob Herring
2022-03-13 15:10 ` [v3 03/19] ASoC: mediatek: mt8186: support audsys clock control Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:18   ` AngeloGioacchino Del Regno
2022-03-14 10:18     ` AngeloGioacchino Del Regno
2022-03-14 10:18     ` AngeloGioacchino Del Regno
2022-03-14 10:18     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 04/19] ASoC: mediatek: mt8186: support adda in platform driver Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:25   ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 05/19] ASoC: mediatek: mt8186: support hostless " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:25   ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 06/19] ASoC: mediatek: mt8186: support hw gain " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:25   ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 07/19] ASoC: mediatek: mt8186: support i2s " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:28   ` AngeloGioacchino Del Regno
2022-03-14 10:28     ` AngeloGioacchino Del Regno
2022-03-14 10:28     ` AngeloGioacchino Del Regno
2022-03-14 10:28     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 08/19] ASoC: mediatek: mt8186: support pcm " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:29   ` AngeloGioacchino Del Regno
2022-03-14 10:29     ` AngeloGioacchino Del Regno
2022-03-14 10:29     ` AngeloGioacchino Del Regno
2022-03-14 10:29     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 09/19] ASoC: mediatek: mt8186: support src " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:34   ` AngeloGioacchino Del Regno
2022-03-14 10:34     ` AngeloGioacchino Del Regno
2022-03-14 10:34     ` AngeloGioacchino Del Regno
2022-03-14 10:34     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 10/19] ASoC: mediatek: mt8186: support tdm " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:39   ` AngeloGioacchino Del Regno
2022-03-14 10:39     ` AngeloGioacchino Del Regno
2022-03-14 10:39     ` AngeloGioacchino Del Regno
2022-03-14 10:39     ` AngeloGioacchino Del Regno
2022-03-15 13:15     ` Mark Brown
2022-03-15 13:15       ` Mark Brown
2022-03-15 13:15       ` Mark Brown
2022-03-15 13:15       ` Mark Brown
2022-03-15 13:19       ` AngeloGioacchino Del Regno
2022-03-15 13:19         ` AngeloGioacchino Del Regno
2022-03-15 13:19         ` AngeloGioacchino Del Regno
2022-03-15 13:19         ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 11/19] ASoC: mediatek: mt8186: support audio clock control " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10 ` [v3 12/19] ASoC: mediatek: mt8186: support gpio " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10 ` [v3 13/19] ASoC: mediatek: mt8186: add " Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 18:59   ` kernel test robot
2022-03-13 18:59     ` kernel test robot
2022-03-13 18:59     ` kernel test robot
2022-03-13 18:59     ` kernel test robot
2022-03-14 10:11     ` Jiaxin Yu
2022-03-14 10:11       ` Jiaxin Yu
2022-03-14 10:11       ` Jiaxin Yu
2022-03-14 10:11       ` Jiaxin Yu
2022-03-14 10:11       ` Jiaxin Yu
2022-03-13 15:10 ` [v3 14/19] dt-bindings: mediatek: mt8186: add audio afe document Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:25   ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-14 10:25     ` AngeloGioacchino Del Regno
2022-03-13 15:10 ` [v3 15/19] ASoC: mediatek: mt8186: add machine driver with mt6366, da7219 and max98357 Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:44   ` AngeloGioacchino Del Regno
2022-03-14 10:44     ` AngeloGioacchino Del Regno
2022-03-14 10:44     ` AngeloGioacchino Del Regno
2022-03-14 10:44     ` AngeloGioacchino Del Regno
2022-04-05  4:06     ` Jiaxin Yu
2022-04-05  4:06       ` Jiaxin Yu
2022-04-05  4:06       ` Jiaxin Yu
2022-04-05  4:06       ` Jiaxin Yu
2022-03-13 15:10 ` [v3 16/19] dt-bindings: mediatek: mt8186: add mt8186-mt6366-da7219-max98357 document Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10 ` [v3 17/19] ASoC: mediatek: mt8186: add machine driver with mt6366, rt1019 and rt5682s Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10 ` [v3 18/19] dt-bindings: mediatek: mt8186: add mt8186-mt6366-rt1019-rt5682s document Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10 ` [v3 19/19] ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-13 15:10   ` Jiaxin Yu
2022-03-14 10:18   ` AngeloGioacchino Del Regno
2022-03-14 10:18     ` AngeloGioacchino Del Regno
2022-03-14 10:18     ` AngeloGioacchino Del Regno
2022-03-14 10:18     ` AngeloGioacchino Del Regno
2022-03-14 11:55     ` Jiaxin Yu
2022-03-14 11:55       ` Jiaxin Yu
2022-03-14 11:55       ` Jiaxin Yu
2022-03-14 11:55       ` Jiaxin Yu
2022-04-05  3:04     ` Jiaxin Yu
2022-04-05  3:04       ` Jiaxin Yu
2022-04-05  3:04       ` Jiaxin Yu
2022-04-05  3:04       ` Jiaxin Yu

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.