linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC 00/14] SoundWire bus driver
@ 2016-10-21 12:40 Hardik Shah
  2016-10-21 12:40 ` [RFC 01/14] SoundWire: Add SoundWire bus driver documentation Hardik Shah
                   ` (14 more replies)
  0 siblings, 15 replies; 35+ messages in thread
From: Hardik Shah @ 2016-10-21 12:40 UTC (permalink / raw)
  To: alsa-devel, linux-kernel
  Cc: tiwai, pierre-louis.bossart, broonie, lgirdwood, plai,
	patches.audio, Hardik Shah

Following RFC series adds SoundWire bus driver interface based on the
MIPI SoundWire specification 1.1

The SoundWire protocol is a robust, scalable, low complexity, low power,
low latency, two-pin (clock and data) multi-drop bus that allows for the
transfer of multiple audio streams and embedded control/commands.
SoundWire provides synchronization capabilities and supports both PCM
and PDM, multichannel data, isochronous and asynchronous modes.

SoundWire does borrow a number of concepts from existing interfaces such
as HDAudio, AC97, SLIMbus, which already provide control/audio on the
same wires, or legacy interfaces such as I2C/I2S, TDM, PDM.

The capabilities of SoundWire make it unique however in that it can be
implemented in peripherals such as microphones or amplifiers, mix PCM
and PDM formats and enable clock scaling to reduce power consumption.

More details about the SoundWire protocol can be obtained from MIPI
website as listed below (accessible to members only).

1. http://mipi.org/learning-center/webinars
2. https://members.mipi.org/wg/All-Members/document/download/65078
3. https://members.mipi.org/wg/Contributors/document/70055

Hardik Shah (12):
  SoundWire: Add SoundWire bus driver documentation
  SoundWire: Add SoundWire stream documentation
  SoundWire: Add error handling and locking documentation
  SoundWire: Add device_id table for SoundWire bus
  SoundWire: Add SoundWire bus driver interfaces
  SoundWire: Add register/unregister APIs
  SoundWire: Add SoundWire Slaves register definitions
  SoundWire: Add API for Slave registers read/write
  SoundWire: Add support to handle Slave status change
  SoundWire: Add support for clock stop
  SoundWire: Add tracing for Slave register read/write
  regmap: SoundWire: Add regmap support for SoundWire bus

Sanyog Kale (2):
  SoundWire: Add stream and port configuration
  SoundWire: Add support for SoundWire stream management

 Documentation/sound/alsa/sdw/error_handling.txt |   71 +
 Documentation/sound/alsa/sdw/locking.txt        |   64 +
 Documentation/sound/alsa/sdw/stream.txt         |  346 +++
 Documentation/sound/alsa/sdw/summary.txt        |  253 ++
 MAINTAINERS                                     |   12 +
 drivers/base/regmap/Kconfig                     |    3 +
 drivers/base/regmap/Makefile                    |    1 +
 drivers/base/regmap/regmap-sdw.c                |  240 ++
 include/linux/mod_devicetable.h                 |   13 +
 include/linux/regmap.h                          |   37 +
 include/sound/sdw/sdw_registers.h               |  277 ++
 include/sound/sdw_bus.h                         |  905 ++++++
 include/sound/sdw_master.h                      |  627 ++++
 include/sound/sdw_slave.h                       |  563 ++++
 include/trace/events/sdw.h                      |  209 ++
 sound/Kconfig                                   |    2 +
 sound/Makefile                                  |    1 +
 sound/sdw/Kconfig                               |    6 +
 sound/sdw/Makefile                              |    1 +
 sound/sdw/sdw.c                                 | 3749 +++++++++++++++++++++++
 sound/sdw/sdw_priv.h                            |  811 +++++
 sound/sdw/sdw_runtime.c                         | 2807 +++++++++++++++++
 22 files changed, 10998 insertions(+)
 create mode 100644 Documentation/sound/alsa/sdw/error_handling.txt
 create mode 100644 Documentation/sound/alsa/sdw/locking.txt
 create mode 100644 Documentation/sound/alsa/sdw/stream.txt
 create mode 100644 Documentation/sound/alsa/sdw/summary.txt
 create mode 100644 drivers/base/regmap/regmap-sdw.c
 create mode 100644 include/sound/sdw/sdw_registers.h
 create mode 100644 include/sound/sdw_bus.h
 create mode 100644 include/sound/sdw_master.h
 create mode 100644 include/sound/sdw_slave.h
 create mode 100644 include/trace/events/sdw.h
 create mode 100644 sound/sdw/Kconfig
 create mode 100644 sound/sdw/Makefile
 create mode 100644 sound/sdw/sdw.c
 create mode 100644 sound/sdw/sdw_priv.h
 create mode 100644 sound/sdw/sdw_runtime.c

-- 
1.7.9.5

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

end of thread, other threads:[~2016-11-17  4:56 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-21 12:40 [RFC 00/14] SoundWire bus driver Hardik Shah
2016-10-21 12:40 ` [RFC 01/14] SoundWire: Add SoundWire bus driver documentation Hardik Shah
2016-11-14 14:15   ` Charles Keepax
2016-11-15 14:29     ` Vinod Koul
2016-11-16 17:59       ` Mark Brown
2016-11-17  5:05         ` Vinod Koul
2016-10-21 12:41 ` [RFC 02/14] SoundWire: Add SoundWire stream documentation Hardik Shah
2016-11-14 15:31   ` Charles Keepax
2016-11-14 16:50     ` Pierre-Louis Bossart
2016-11-14 17:04       ` Charles Keepax
2016-10-21 12:41 ` [RFC 03/14] SoundWire: Add error handling and locking documentation Hardik Shah
2016-11-14 15:44   ` Charles Keepax
2016-11-15 14:42     ` Vinod Koul
2016-10-21 12:41 ` [RFC 04/14] SoundWire: Add device_id table for SoundWire bus Hardik Shah
2016-10-21 12:41 ` [RFC 05/14] SoundWire: Add SoundWire bus driver interfaces Hardik Shah
2016-11-14 13:17   ` Mark Brown
2016-11-14 17:28     ` [alsa-devel] " Pierre-Louis Bossart
2016-10-21 12:41 ` [RFC 06/14] SoundWire: Add register/unregister APIs Hardik Shah
2016-11-14 13:37   ` Mark Brown
2016-11-15 13:55     ` Vinod Koul
2016-10-21 12:41 ` [RFC 07/14] SoundWire: Add SoundWire Slaves register definitions Hardik Shah
2016-10-21 12:41 ` [RFC 08/14] SoundWire: Add API for Slave registers read/write Hardik Shah
2016-10-21 12:41 ` [RFC 09/14] SoundWire: Add support to handle Slave status change Hardik Shah
2016-11-14 16:08   ` Charles Keepax
2016-11-14 17:38     ` [alsa-devel] " Pierre-Louis Bossart
2016-11-15  9:56       ` Charles Keepax
2016-10-21 12:41 ` [RFC 10/14] SoundWire: Add support for clock stop Hardik Shah
2016-10-21 12:41 ` [RFC 11/14] SoundWire: Add tracing for Slave register read/write Hardik Shah
2016-10-21 12:41 ` [RFC 12/14] regmap: SoundWire: Add regmap support for SoundWire bus Hardik Shah
2016-10-28 18:03   ` Mark Brown
2016-11-02  8:11     ` Hardik Shah
2016-10-21 12:41 ` [RFC 13/14] SoundWire: Add stream and port configuration Hardik Shah
2016-10-21 12:41 ` [RFC 14/14] SoundWire: Add support for SoundWire stream management Hardik Shah
2016-11-14 12:11 ` [RFC 00/14] SoundWire bus driver Mark Brown
2016-11-15 13:37   ` Vinod Koul

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).