All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/20] ASoC: Sound Open Firmware (SOF) - Intel support
@ 2019-03-21 16:10 Pierre-Louis Bossart
  2019-03-21 16:10 ` [PATCH v4 01/20] ASoC: SOF: Intel: Add BYT, CHT and BSW DSP HW support Pierre-Louis Bossart
                   ` (19 more replies)
  0 siblings, 20 replies; 35+ messages in thread
From: Pierre-Louis Bossart @ 2019-03-21 16:10 UTC (permalink / raw)
  To: alsa-devel
  Cc: Daniel Baluta, Alan Cox, tiwai, Pierre-Louis Bossart,
	liam.r.girdwood, vkoul, broonie, andriy.shevchenko,
	sound-open-firmware

This patch series introduces the support for Intel devices (Baytrail,
CherryTrail, Broadwell, ApolloLake, GeminiLake, CannonLake,
IceLake). Support for Haswell, Skylake and KabyLake is incomplete at
the moment and is not shared for now.

The series starts with the 'legacy' devices, then all the more recent
ones and concludes with ACPI/PCI hooks. SKL+ platforms can be compiled
without HDaudio link/codec support, in which case the hdac library is
not used. When support for HDMI or HDaudio codecs is selected, parts
of this library are used.

A small set of machine drivers supported by SOF is now provided as
part of this series, more to follow.

Support for SPI-based devices, compressed streams is also not provided
for now since it's not ready for upstream just yet.

Thank you for reviews and comments, we appreciate the time spent
commenting on this large patchset. Thanks in particular to Alan Cox
and Andy Shevchenko for their comments on an earlier version.

Changes since v3:

Removed Haswell, Skylake and Kabylake support (code is not tested or
is still under development). These devices will be re-added when there
is functional firmware and for Skylake/Kabylake a signed version of
the firmware usable on existing platforms.
Added support for existing machine drivers when relevant (more machine
drivers will be added in next batch)
Fixed hardware programming sequences (ROM init timeout, HDaudio
capture, simultaneous capture and playback, DMA preload)
Avoid reading IPC reply on CTX_SAVE reply since memory windows might
be powered off.
Simplified NOCODEC support, now mutually exclusive with HDaudio link
to avoid suspend/resume issues.

Changes since v2:

Addressed dozens of comments from Takashi Iwai, Mark Brown, Andy
Shevchenko, Daniel Baluta (Thanks!)
Transition to new display power management
Fixed suspend issues
Optimized register polling, better handling of timeouts and firmware
download retries
Detect number of HDaudio codec and select machine driver accordingly
Added workqueue based probe for HDaudio (dependency on modules)
Fixed platform name override and conflicts with DT deferred probe
changes
Added prefix for firmware and topology files and module arguments
Split Baytrail and Edison
Fixed warnings (smatch, cppcheck)

Keyon Jie (2):
  ASoC: SOF: Intel: Add hda-bus support and initialization
  ASoC: SOF: Intel: add SKL+ platform DAIs

Liam Girdwood (15):
  ASoC: SOF: Intel: Add BYT, CHT and BSW DSP HW support.
  ASoC: SOF: Intel: Add BDW HW DSP support
  ASoC: SOF: Intel: Add APL/CNL HW DSP support
  ASoC: SOF: Intel: Add HDA controller for Intel DSP
  ASoC: SOF: Intel: Add Intel specific HDA DSP HW operations
  ASoC: SOF: Intel: Add Intel specific HDA IPC mechanisms.
  ASoC: SOF: Intel: Add Intel specific HDA firmware loader
  ASoC: SOF: Intel: Add Intel specific HDA PCM operations
  ASoC: SOF: Intel: Add Intel specific HDA stream operations
  ASoC: SOF: Intel: Add Intel specific HDA trace operations
  ASoC: SOF: Intel: Add platform differentiation for APL and CNL
  ASoC: SOF: Add ACPI device support
  ASoC: SOF: Add PCI device support
  ASoC: SOF: Add Build support for SOF core and Intel drivers
  ASoC: Intel: Make sure HSW/BDW based machine drivers build for SOF

Pierre-Louis Bossart (3):
  ASoC: SOF: Intel: Add support for HDAudio codecs
  ASoC: Intel: Kconfig: expose common option between SST and SOF drivers
  ASoC: Intel: select relevant machine drivers for SOF

 sound/soc/Kconfig                   |   1 +
 sound/soc/Makefile                  |   1 +
 sound/soc/intel/Kconfig             |   7 +-
 sound/soc/intel/boards/Kconfig      |  22 +-
 sound/soc/intel/boards/bdw-rt5677.c |   4 +
 sound/soc/intel/boards/broadwell.c  |   4 +
 sound/soc/intel/boards/haswell.c    |   4 +
 sound/soc/sof/Kconfig               | 141 +++++
 sound/soc/sof/Makefile              |  18 +
 sound/soc/sof/intel/Kconfig         | 222 ++++++++
 sound/soc/sof/intel/Makefile        |  15 +
 sound/soc/sof/intel/apl.c           | 112 ++++
 sound/soc/sof/intel/bdw.c           | 694 ++++++++++++++++++++++
 sound/soc/sof/intel/byt.c           | 853 ++++++++++++++++++++++++++++
 sound/soc/sof/intel/cnl.c           | 257 +++++++++
 sound/soc/sof/intel/hda-bus.c       | 108 ++++
 sound/soc/sof/intel/hda-codec.c     | 171 ++++++
 sound/soc/sof/intel/hda-ctrl.c      | 165 ++++++
 sound/soc/sof/intel/hda-dai.c       | 318 +++++++++++
 sound/soc/sof/intel/hda-dsp.c       | 428 ++++++++++++++
 sound/soc/sof/intel/hda-ipc.c       | 402 +++++++++++++
 sound/soc/sof/intel/hda-loader.c    | 366 ++++++++++++
 sound/soc/sof/intel/hda-pcm.c       | 242 ++++++++
 sound/soc/sof/intel/hda-stream.c    | 682 ++++++++++++++++++++++
 sound/soc/sof/intel/hda-trace.c     |  98 ++++
 sound/soc/sof/intel/hda.c           | 672 ++++++++++++++++++++++
 sound/soc/sof/intel/hda.h           | 546 ++++++++++++++++++
 sound/soc/sof/intel/shim.h          | 179 ++++++
 sound/soc/sof/sof-acpi-dev.c        | 310 ++++++++++
 sound/soc/sof/sof-pci-dev.c         | 373 ++++++++++++
 30 files changed, 7407 insertions(+), 8 deletions(-)
 create mode 100644 sound/soc/sof/Kconfig
 create mode 100644 sound/soc/sof/Makefile
 create mode 100644 sound/soc/sof/intel/Kconfig
 create mode 100644 sound/soc/sof/intel/Makefile
 create mode 100644 sound/soc/sof/intel/apl.c
 create mode 100644 sound/soc/sof/intel/bdw.c
 create mode 100644 sound/soc/sof/intel/byt.c
 create mode 100644 sound/soc/sof/intel/cnl.c
 create mode 100644 sound/soc/sof/intel/hda-bus.c
 create mode 100644 sound/soc/sof/intel/hda-codec.c
 create mode 100644 sound/soc/sof/intel/hda-ctrl.c
 create mode 100644 sound/soc/sof/intel/hda-dai.c
 create mode 100644 sound/soc/sof/intel/hda-dsp.c
 create mode 100644 sound/soc/sof/intel/hda-ipc.c
 create mode 100644 sound/soc/sof/intel/hda-loader.c
 create mode 100644 sound/soc/sof/intel/hda-pcm.c
 create mode 100644 sound/soc/sof/intel/hda-stream.c
 create mode 100644 sound/soc/sof/intel/hda-trace.c
 create mode 100644 sound/soc/sof/intel/hda.c
 create mode 100644 sound/soc/sof/intel/hda.h
 create mode 100644 sound/soc/sof/intel/shim.h
 create mode 100644 sound/soc/sof/sof-acpi-dev.c
 create mode 100644 sound/soc/sof/sof-pci-dev.c

-- 
2.17.1

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

end of thread, other threads:[~2019-04-04 14:58 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-21 16:10 [PATCH v4 00/20] ASoC: Sound Open Firmware (SOF) - Intel support Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 01/20] ASoC: SOF: Intel: Add BYT, CHT and BSW DSP HW support Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 02/20] ASoC: SOF: Intel: Add BDW HW DSP support Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 03/20] ASoC: SOF: Intel: Add APL/CNL " Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 04/20] ASoC: SOF: Intel: Add HDA controller for Intel DSP Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 05/20] ASoC: SOF: Intel: Add Intel specific HDA DSP HW operations Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 06/20] ASoC: SOF: Intel: Add Intel specific HDA IPC mechanisms Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 07/20] ASoC: SOF: Intel: Add Intel specific HDA firmware loader Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 08/20] ASoC: SOF: Intel: Add Intel specific HDA PCM operations Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 09/20] ASoC: SOF: Intel: Add hda-bus support and initialization Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 10/20] ASoC: SOF: Intel: Add Intel specific HDA stream operations Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 11/20] ASoC: SOF: Intel: Add Intel specific HDA trace operations Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 12/20] ASoC: SOF: Intel: Add support for HDAudio codecs Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 13/20] ASoC: SOF: Intel: add SKL+ platform DAIs Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 14/20] ASoC: SOF: Intel: Add platform differentiation for APL and CNL Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 15/20] ASoC: SOF: Add ACPI device support Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 16/20] ASoC: SOF: Add PCI " Pierre-Louis Bossart
2019-03-28 17:48   ` Andy Shevchenko
2019-03-28 17:49     ` Andy Shevchenko
2019-03-28 18:21       ` Pierre-Louis Bossart
2019-03-28 22:08         ` Andy Shevchenko
2019-03-30  0:30           ` [Sound-open-firmware] " Pierre-Louis Bossart
2019-04-01 17:26             ` Pierre-Louis Bossart
2019-04-01 19:05               ` Takashi Iwai
2019-04-01 21:59                 ` Pierre-Louis Bossart
2019-04-02  5:26                   ` Mark Brown
2019-04-04 14:33                 ` Takashi Iwai
2019-04-04 14:58                   ` Pierre-Louis Bossart
2019-03-30 18:46           ` Ranjani Sridharan
2019-04-01  7:28         ` Mark Brown
2019-03-21 16:10 ` [PATCH v4 17/20] ASoC: Intel: Kconfig: expose common option between SST and SOF drivers Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 18/20] ASoC: SOF: Add Build support for SOF core and Intel drivers Pierre-Louis Bossart
2019-04-04 14:33   ` Takashi Iwai
2019-03-21 16:10 ` [PATCH v4 19/20] ASoC: Intel: Make sure HSW/BDW based machine drivers build for SOF Pierre-Louis Bossart
2019-03-21 16:10 ` [PATCH v4 20/20] ASoC: Intel: select relevant machine drivers " Pierre-Louis Bossart

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.