All of lore.kernel.org
 help / color / mirror / Atom feed
From: Shunli Wang <shunli.wang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
To: broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
	wsd_upstream-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org,
	garlic.tseng-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org,
	linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	shunli.wang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org,
	kaichieh.chuang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org
Subject: [PATCH 0/6] ASoC: Mediatek: Add support for MT8183 AoC and MT6358 Codec
Date: Tue, 22 Jan 2019 14:39:07 +0800	[thread overview]
Message-ID: <1548139153-18783-1-git-send-email-shunli.wang@mediatek.com> (raw)

This patch adds support for Mediatek AFE for MT8183 SoC and codec for MT8183.
The patch is based on broonie tree "for-next" branch.

Shunli Wang (6):
  ASoC: mediatek: mt8183: add platform driver
  ASoC: mediatek: mt8183: add audio afe document
  ASoC: mediatek: mt6358: add codec driver
  ASoC: mediatek: mt6358: add codec document
  ASoC: mediatek: mt8183: add mt8183-mt6358 machine driver
  ASoC: mediatek: add document for mt8183-mt6358

 Documentation/devicetree/bindings/sound/mt6358.txt |   18 +
 .../devicetree/bindings/sound/mt8183-afe-pcm.txt   |   36 +
 .../devicetree/bindings/sound/mt8183-mt6358.txt    |   12 +
 sound/soc/codecs/Kconfig                           |    7 +
 sound/soc/codecs/Makefile                          |    2 +
 sound/soc/codecs/mt6358.c                          | 2336 ++++++++++++++++++++
 sound/soc/codecs/mt6358.h                          | 2314 +++++++++++++++++++
 sound/soc/mediatek/Kconfig                         |   20 +
 sound/soc/mediatek/Makefile                        |    1 +
 sound/soc/mediatek/mt8183/Makefile                 |   13 +
 sound/soc/mediatek/mt8183/mt8183-afe-clk.c         |  611 +++++
 sound/soc/mediatek/mt8183/mt8183-afe-clk.h         |   38 +
 sound/soc/mediatek/mt8183/mt8183-afe-common.h      |  108 +
 sound/soc/mediatek/mt8183/mt8183-afe-pcm.c         | 1237 +++++++++++
 sound/soc/mediatek/mt8183/mt8183-dai-adda.c        |  501 +++++
 sound/soc/mediatek/mt8183/mt8183-dai-hostless.c    |  118 +
 sound/soc/mediatek/mt8183/mt8183-dai-i2s.c         | 1040 +++++++++
 sound/soc/mediatek/mt8183/mt8183-dai-pcm.c         |  318 +++
 sound/soc/mediatek/mt8183/mt8183-dai-tdm.c         |  639 ++++++
 sound/soc/mediatek/mt8183/mt8183-interconnection.h |   33 +
 sound/soc/mediatek/mt8183/mt8183-mt6358.c          |  208 ++
 sound/soc/mediatek/mt8183/mt8183-reg.h             | 1666 ++++++++++++++
 22 files changed, 11276 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/sound/mt6358.txt
 create mode 100644 Documentation/devicetree/bindings/sound/mt8183-afe-pcm.txt
 create mode 100644 Documentation/devicetree/bindings/sound/mt8183-mt6358.txt
 create mode 100644 sound/soc/codecs/mt6358.c
 create mode 100644 sound/soc/codecs/mt6358.h
 create mode 100644 sound/soc/mediatek/mt8183/Makefile
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-afe-clk.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-afe-clk.h
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-afe-common.h
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-dai-adda.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-dai-hostless.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-dai-i2s.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-dai-pcm.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-dai-tdm.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-interconnection.h
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-mt6358.c
 create mode 100644 sound/soc/mediatek/mt8183/mt8183-reg.h

-- 
1.9.1

             reply	other threads:[~2019-01-22  6:39 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-22  6:39 Shunli Wang [this message]
     [not found] ` <1548139153-18783-1-git-send-email-shunli.wang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2019-01-22  6:39   ` [PATCH 1/6] ASoC: mediatek: mt8183: add platform driver Shunli Wang
     [not found]     ` <1548139153-18783-2-git-send-email-shunli.wang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2019-01-25 18:11       ` Applied "ASoC: mediatek: mt8183: add platform driver" to the asoc tree Mark Brown
2019-01-22  6:39   ` [PATCH 2/6] ASoC: mediatek: mt8183: add audio afe document Shunli Wang
2019-01-25 18:11     ` Applied "ASoC: mediatek: mt8183: add audio afe document" to the asoc tree Mark Brown
2019-01-22  6:39   ` [PATCH 3/6] ASoC: mediatek: mt6358: add codec driver Shunli Wang
2019-01-25 18:10     ` Mark Brown
2019-01-25 18:11     ` Applied "ASoC: mediatek: mt6358: add codec driver" to the asoc tree Mark Brown
2019-01-22  6:39   ` [PATCH 4/6] ASoC: mediatek: mt6358: add codec document Shunli Wang
2019-01-25 18:11     ` Applied "ASoC: mediatek: mt6358: add codec document" to the asoc tree Mark Brown
2019-01-22  6:39   ` [PATCH 5/6] ASoC: mediatek: mt8183: add mt8183-mt6358 machine driver Shunli Wang
2019-01-25 18:10     ` Mark Brown
2019-01-22  6:39   ` [PATCH 6/6] ASoC: mediatek: add document for mt8183-mt6358 Shunli Wang

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=1548139153-18783-1-git-send-email-shunli.wang@mediatek.com \
    --to=shunli.wang-nus5lvnupcjwk0htik3j/w@public.gmane.org \
    --cc=alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org \
    --cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=garlic.tseng-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org \
    --cc=kaichieh.chuang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org \
    --cc=linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=wsd_upstream-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org \
    /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.