alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/7] ASoC: intel - add skylake PCM driver
@ 2015-05-11 10:53 Vinod Koul
  2015-05-11 10:53 ` [PATCH v4 1/7] ASoC: hda - add ASoC HDA codec match function Vinod Koul
                   ` (8 more replies)
  0 siblings, 9 replies; 57+ messages in thread
From: Vinod Koul @ 2015-05-11 10:53 UTC (permalink / raw)
  To: alsa-devel; +Cc: liam.r.girdwood, tiwai, broonie, Vinod Koul, patches.audio

SKL has HDA controller based audio subsystem with DSP and support for I2S,
HDA, PDM links. The hda core code has been moved to sound/hda/ by Takashi
which current HDA drivers use and will also be used by ASoC SKL driver.

The SKL platform driver will load and create the soc_hdac_bus which embeds
the hdac_bus, same for hdac_device (hda codecs) and hdac_stream (pcms) This
is on top of hdac code in Takashi's topic/hda

This patch provides the match function for asoc type hda codecs and let's
them get enumerated by hdac. The second patch in this series adds the
controller specific soc code. Common parts are in hdac core with changes
introduced as part of SKL controller in soc part. Then we add the rest of
controller PCM driver code (still HDA) and last patch breaks the HDA streams
to host and link which will allow insertion of DSP in between these links.

The subsequent series will add IPC driver for SKL (using common IPC
routines), then DSP topology handlers, DSP code with I2S support and then
lastly when DFW is accepted then its handlers.

This patch series adds the hda codec match functions followed by asoc hda
controller routines, then SKL PCM driver and last decouples the controller
for splitting the links

Fixes in v4:
  Updates changelog in patch1 and few other patches
  Address Takashi's comment
  Address Marks comments

Jeeja KP (7):
  ASoC: hda - add ASoC HDA codec match function
  ALSA: hda - add new HDA registers
  ASoC: hda - add asoc hda core bus, controller and stream helpers
  ASoC: intel - add Skylake HDA platform driver
  ASoC: intel - add Skylake HDA audio driver
  ASoC: intel - add makefile support for SKL driver
  ASoC: intel - adds support for decoupled mode in skl driver

 include/sound/hda_register.h          |  88 ++++
 include/sound/soc-hda-codec.h         |  49 ++
 include/sound/soc-hdaudio.h           | 360 +++++++++++++
 sound/soc/Kconfig                     |   1 +
 sound/soc/Makefile                    |   1 +
 sound/soc/hda/Kconfig                 |   3 +
 sound/soc/hda/Makefile                |   4 +
 sound/soc/hda/soc-hda-codec.c         |  89 ++++
 sound/soc/hda/soc-hdac-bus.c          | 115 +++++
 sound/soc/hda/soc-hdac-controller.c   | 296 +++++++++++
 sound/soc/hda/soc-hdac-stream.c       | 409 +++++++++++++++
 sound/soc/intel/Kconfig               |  17 +
 sound/soc/intel/Makefile              |   1 +
 sound/soc/intel/skylake/Makefile      |   3 +
 sound/soc/intel/skylake/hda-skl-pcm.c | 937 ++++++++++++++++++++++++++++++++++
 sound/soc/intel/skylake/hda-skl.c     | 670 ++++++++++++++++++++++++
 sound/soc/intel/skylake/hda-skl.h     |  74 +++
 17 files changed, 3117 insertions(+)
 create mode 100644 include/sound/soc-hda-codec.h
 create mode 100644 include/sound/soc-hdaudio.h
 create mode 100644 sound/soc/hda/Kconfig
 create mode 100644 sound/soc/hda/Makefile
 create mode 100644 sound/soc/hda/soc-hda-codec.c
 create mode 100644 sound/soc/hda/soc-hdac-bus.c
 create mode 100644 sound/soc/hda/soc-hdac-controller.c
 create mode 100644 sound/soc/hda/soc-hdac-stream.c
 create mode 100644 sound/soc/intel/skylake/Makefile
 create mode 100644 sound/soc/intel/skylake/hda-skl-pcm.c
 create mode 100644 sound/soc/intel/skylake/hda-skl.c
 create mode 100644 sound/soc/intel/skylake/hda-skl.h

-- 
1.9.1

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

end of thread, other threads:[~2015-06-02 14:30 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-11 10:53 [PATCH v4 0/7] ASoC: intel - add skylake PCM driver Vinod Koul
2015-05-11 10:53 ` [PATCH v4 1/7] ASoC: hda - add ASoC HDA codec match function Vinod Koul
2015-05-22 12:56   ` Mark Brown
2015-05-22 13:35     ` Takashi Iwai
2015-05-22 17:41       ` Mark Brown
2015-05-22 18:13         ` Takashi Iwai
2015-05-23  5:51           ` Vinod Koul
2015-05-25 10:48             ` Mark Brown
2015-05-25 11:21               ` Vinod Koul
2015-05-25 11:55                 ` Takashi Iwai
2015-05-25 13:58                   ` Mark Brown
2015-05-26  5:24                     ` Takashi Iwai
2015-05-26 13:32                       ` Mark Brown
2015-05-26 13:41                         ` Takashi Iwai
2015-05-26 19:43                           ` Mark Brown
2015-05-27  6:05                             ` Takashi Iwai
2015-05-27 18:34                               ` Mark Brown
2015-05-27 19:17                                 ` Takashi Iwai
2015-05-28 19:53                                   ` Mark Brown
2015-05-29  4:58                                     ` Takashi Iwai
2015-05-29  8:15                                       ` Vinod Koul
2015-05-29 17:35                                         ` Mark Brown
2015-06-01  5:05                                           ` Vinod Koul
2015-06-02 10:38                                             ` Mark Brown
2015-06-02 12:25                                               ` Vinod Koul
2015-05-11 10:54 ` [PATCH v4 2/7] ALSA: hda - add new HDA registers Vinod Koul
2015-05-22 12:58   ` Mark Brown
2015-05-22 13:32     ` Takashi Iwai
2015-05-11 10:54 ` [PATCH v4 3/7] ASoC: hda - add asoc hda core bus, controller and stream helpers Vinod Koul
2015-05-26 18:51   ` Mark Brown
2015-05-27  5:40     ` Vinod Koul
2015-05-11 10:54 ` [PATCH v4 4/7] ASoC: intel - add Skylake HDA platform driver Vinod Koul
2015-05-11 10:54 ` [PATCH v4 5/7] ASoC: intel - add Skylake HDA audio driver Vinod Koul
2015-05-29 17:41   ` Mark Brown
2015-05-29 18:25     ` Takashi Iwai
2015-06-02 10:45       ` Mark Brown
2015-06-02 10:53         ` Takashi Iwai
2015-06-02 11:07           ` Mark Brown
2015-06-02 11:57             ` Takashi Iwai
2015-06-02 12:39             ` Vinod Koul
2015-06-02 14:30               ` Mark Brown
2015-06-01  5:13     ` Vinod Koul
2015-06-01  5:32       ` Takashi Iwai
2015-06-02 10:42         ` Mark Brown
2015-06-02 10:48           ` Takashi Iwai
2015-06-02 11:10             ` Mark Brown
2015-06-02 11:44               ` Takashi Iwai
2015-06-02 12:29                 ` Vinod Koul
2015-05-11 10:54 ` [PATCH v4 6/7] ASoC: intel - add makefile support for SKL driver Vinod Koul
2015-05-11 10:54 ` [PATCH v4 7/7] ASoC: intel - adds support for decoupled mode in skl driver Vinod Koul
2015-05-22 12:20 ` [PATCH v4 0/7] ASoC: intel - add skylake PCM driver Vinod Koul
2015-05-22 13:12   ` Mark Brown
2015-05-25  6:57 ` Takashi Iwai
2015-05-25 11:24   ` Vinod Koul
2015-05-25 11:58     ` Takashi Iwai
2015-05-26  4:14       ` Vinod Koul
2015-05-26  5:27         ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).