public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/23] Intel SST driver update
@ 2011-05-03 16:31 Alan Cox
  2011-05-03 16:31 ` [PATCH 01/23] intel_sst: Save audio state across D3 on Medfield Alan Cox
                   ` (23 more replies)
  0 siblings, 24 replies; 42+ messages in thread
From: Alan Cox @ 2011-05-03 16:31 UTC (permalink / raw)
  To: greg, linux-kernel

This is a forward port of various further Intel work on the SST driver in
staging. This keeps the staging driver up to date while the ALSA driver
development continues.

Alan



---

Andy CH Lin (1):
      intel_sst: intelmid_v2_control: correct jack event type

Chandramouli Narayanan (1):
      intel_sst: fix runtime pm issue

Dharageswari R (1):
      intel_sst: Line out support

Feng Tang (1):
      intel_sst: make sure the sst_drop_stream() get called when needed

Lu Guanqun (9):
      intel_sst: fix output noises when it's not in playback
      sst: internal speaker needs setting a GPIO line
      intel_sst: add Master Volume
      sst: set default output and input device
      sst: return correct output/input device id
      intel_sst: move jack detection related configs to init time
      intel_sst: Enable recording via DMIC
      intel_sst: Enable recording via HS_MIC
      intel_sst: Set de-bounce time

Ramesh Babu K V (1):
      intel_sst: rework jack implementation

Sitanshu Nanavati (1):
      intel_sst: DMIC routing

Vinod Koul (5):
      intel_sst: parameter tuning ioctl
      intel_sst: ignore IRQ when suspended
      intel_sst: fix unload bugs
      intel_sst: MSIC codec power optimisation
      intel_sst: Save audio state across D3 on Medfield

Wu Fengguang (2):
      intel_sst: MRST can only do 16bit recording
      intel_sst: MRST can only do mono recording

xingchao (1):
      intel_sst: Headphone Automute support


 drivers/staging/intel_sst/intel_sst.c              |  129 +++
 drivers/staging/intel_sst/intel_sst.h              |   33 +
 .../staging/intel_sst/intel_sst_app_interface.c    |   37 +
 drivers/staging/intel_sst/intel_sst_common.h       |    9 
 .../staging/intel_sst/intel_sst_drv_interface.c    |   23 -
 drivers/staging/intel_sst/intel_sst_dsp.c          |   14 
 drivers/staging/intel_sst/intel_sst_fw_ipc.h       |    7 
 drivers/staging/intel_sst/intel_sst_ioctl.h        |    8 
 drivers/staging/intel_sst/intel_sst_ipc.c          |   74 ++
 drivers/staging/intel_sst/intel_sst_stream.c       |   15 
 .../staging/intel_sst/intel_sst_stream_encoded.c   |    8 
 drivers/staging/intel_sst/intelmid.c               |  473 +++--------
 drivers/staging/intel_sst/intelmid.h               |   38 +
 drivers/staging/intel_sst/intelmid_adc_control.h   |  193 +++++
 drivers/staging/intel_sst/intelmid_ctrl.c          |  304 +++++++
 drivers/staging/intel_sst/intelmid_msic_control.c  |  833 ++++++++++++++++++--
 drivers/staging/intel_sst/intelmid_pvt.c           |    1 
 drivers/staging/intel_sst/intelmid_snd_control.h   |    9 
 drivers/staging/intel_sst/intelmid_v0_control.c    |  109 ++-
 drivers/staging/intel_sst/intelmid_v1_control.c    |  141 +++
 drivers/staging/intel_sst/intelmid_v2_control.c    |  219 ++++-
 drivers/staging/intel_sst/jack.h                   |   10 
 22 files changed, 2125 insertions(+), 562 deletions(-)
 create mode 100644 drivers/staging/intel_sst/intelmid_adc_control.h
 delete mode 100644 drivers/staging/intel_sst/jack.h

-- 
	"Policy is a poor man's substitute for common sense."
			-- David Woodhouse


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

end of thread, other threads:[~2011-05-10 20:08 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-03 16:31 [PATCH 00/23] Intel SST driver update Alan Cox
2011-05-03 16:31 ` [PATCH 01/23] intel_sst: Save audio state across D3 on Medfield Alan Cox
2011-05-03 17:42   ` Greg KH
2011-05-03 21:29     ` Alan Cox
2011-05-03 21:39       ` Mark Brown
2011-05-03 21:53         ` Alan Cox
2011-05-03 22:02           ` Greg KH
2011-05-03 22:26             ` Mark Brown
2011-05-03 22:32               ` Greg KH
2011-05-03 22:59                 ` Alan Cox
2011-05-03 23:06                   ` Greg KH
2011-05-04  8:57                     ` Mark Brown
2011-05-10 20:01                       ` Greg KH
2011-05-03 16:32 ` [PATCH 02/23] intel_sst: MSIC codec power optimisation Alan Cox
2011-05-03 16:58   ` Mark Brown
2011-05-03 17:02     ` Alan Cox
2011-05-03 17:02       ` Mark Brown
2011-05-03 16:32 ` [PATCH 03/23] intel_sst: fix unload bugs Alan Cox
2011-05-03 16:32 ` [PATCH 04/23] intel_sst: ignore IRQ when suspended Alan Cox
2011-05-03 16:32 ` [PATCH 05/23] intel_sst: Line out support Alan Cox
2011-05-03 16:32 ` [PATCH 06/23] intel_sst: parameter tuning ioctl Alan Cox
2011-05-03 16:33 ` [PATCH 07/23] intel_sst: DMIC routing Alan Cox
2011-05-03 16:33 ` [PATCH 08/23] intel_sst: rework jack implementation Alan Cox
2011-05-03 16:33 ` [PATCH 09/23] intel_sst: Set de-bounce time Alan Cox
2011-05-03 16:33 ` [PATCH 10/23] intel_sst: Enable recording via HS_MIC Alan Cox
2011-05-03 16:33 ` [PATCH 11/23] intel_sst: Enable recording via DMIC Alan Cox
2011-05-03 16:34 ` [PATCH 12/23] intel_sst: Headphone Automute support Alan Cox
2011-05-03 16:34 ` [PATCH 13/23] intel_sst: move jack detection related configs to init time Alan Cox
2011-05-03 16:34 ` [PATCH 14/23] sst: return correct output/input device id Alan Cox
2011-05-03 16:34 ` [PATCH 15/23] intel_sst: make sure the sst_drop_stream() get called when needed Alan Cox
2011-05-03 16:35 ` [PATCH 16/23] intel_sst: MRST can only do mono recording Alan Cox
2011-05-03 16:35 ` [PATCH 17/23] intel_sst: MRST can only do 16bit recording Alan Cox
2011-05-03 16:35 ` [PATCH 18/23] intel_sst: intelmid_v2_control: correct jack event type Alan Cox
2011-05-03 16:37 ` [PATCH 19/23] intel_sst: fix runtime pm issue Alan Cox
2011-05-03 16:38 ` [PATCH 20/23] sst: set default output and input device Alan Cox
2011-05-03 16:38 ` [PATCH 21/23] intel_sst: add Master Volume Alan Cox
2011-05-03 16:43 ` [PATCH 22/23] sst: internal speaker needs setting a GPIO line Alan Cox
2011-05-03 16:43 ` [PATCH 23/23] intel_sst: fix output noises when it's not in playback Alan Cox
2011-05-03 17:15 ` [PATCH 00/23] Intel SST driver update Mark Brown
2011-05-03 18:36   ` Alan Cox
2011-05-03 18:40     ` Mark Brown
2011-05-03 20:27       ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox