All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/14] soundwire: Add a new SoundWire subsystem
@ 2017-11-10 11:49 ` Vinod Koul
  0 siblings, 0 replies; 56+ messages in thread
From: Vinod Koul @ 2017-11-10 11:49 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: LKML, ALSA, Mark, Takashi, Pierre, Sanyog Kale, Shreyas NC,
	patches.audio, alan, Charles Keepax, Sagar Dharia,
	srinivas.kandagatla, plai, Sudheer Papothi

This patch series adds a new SoundWire subsystem which implements a
new MIPI bus protocol 'SoundWire'.

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.

This series adds SoundWire Bus, IO transfers, DisCo (Discovery and
Configuration) sysfs interface, regmap and Documentation summary

This patch series is also available on
git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git topic/patch_v2

v1: https://lkml.org/lkml/2017/10/18/1030
RFC: https://lkml.org/lkml/2016/10/21/395

Changes in v2:
- move documentation into driver-api and do rst conversion
- fix documentation comments
- add SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) to all
  source files
- rework the transfer logic and paging logic as commented on v1
- remove dummy sysfs fns
- registration checks and fixes
- remove slave check for regamp as that turned superfluous
- remove depends SoundWire symbol
- make modalias api arg const
- use bitmap for tracking assigned
- add counter for report present tracking
todo: add the dt-bindings

Sanyog Kale (4):
  Documentation: Add SoundWire summary
  soundwire: Add SoundWire MIPI defined registers
  soundwire: Add Slave status handling helpers
  soundwire: cdns: Add sdw_master_ops and IO transfer support

Vinod Koul (10):
  soundwire: Add SoundWire bus type
  soundwire: Add Master registration
  soundwire: Add MIPI DisCo property helpers
  soundwire: Add IO transfer
  regmap: Add SoundWire bus support
  soundwire: Add slave status handling
  soundwire: Add sysfs for SoundWire DisCo properties
  soundwire: cdns: Add cadence library
  soundwire: intel: Add Intel Master driver
  soundwire: intel: Add Intel init module

 Documentation/driver-api/index.rst             |    1 +
 Documentation/driver-api/soundwire/index.rst   |   15 +
 Documentation/driver-api/soundwire/summary.rst |  205 +++++
 drivers/Kconfig                                |    2 +
 drivers/Makefile                               |    1 +
 drivers/base/regmap/Kconfig                    |    4 +
 drivers/base/regmap/Makefile                   |    1 +
 drivers/base/regmap/regmap-sdw.c               |  140 ++++
 drivers/soundwire/Kconfig                      |   36 +
 drivers/soundwire/Makefile                     |   18 +
 drivers/soundwire/bus.c                        | 1013 ++++++++++++++++++++++++
 drivers/soundwire/bus.h                        |  126 +++
 drivers/soundwire/bus_type.c                   |  245 ++++++
 drivers/soundwire/cadence_master.c             |  791 ++++++++++++++++++
 drivers/soundwire/cadence_master.h             |   96 +++
 drivers/soundwire/intel.c                      |  391 +++++++++
 drivers/soundwire/intel.h                      |   72 ++
 drivers/soundwire/intel_init.c                 |  232 ++++++
 drivers/soundwire/mipi_disco.c                 |  422 ++++++++++
 drivers/soundwire/slave.c                      |  173 ++++
 drivers/soundwire/sysfs.c                      |  388 +++++++++
 include/linux/mod_devicetable.h                |    6 +
 include/linux/regmap.h                         |   37 +
 include/linux/soundwire/sdw.h                  |  563 +++++++++++++
 include/linux/soundwire/sdw_intel.h            |   74 ++
 include/linux/soundwire/sdw_registers.h        |  242 ++++++
 scripts/mod/devicetable-offsets.c              |    4 +
 scripts/mod/file2alias.c                       |   15 +
 28 files changed, 5313 insertions(+)
 create mode 100644 Documentation/driver-api/soundwire/index.rst
 create mode 100644 Documentation/driver-api/soundwire/summary.rst
 create mode 100644 drivers/base/regmap/regmap-sdw.c
 create mode 100644 drivers/soundwire/Kconfig
 create mode 100644 drivers/soundwire/Makefile
 create mode 100644 drivers/soundwire/bus.c
 create mode 100644 drivers/soundwire/bus.h
 create mode 100644 drivers/soundwire/bus_type.c
 create mode 100644 drivers/soundwire/cadence_master.c
 create mode 100644 drivers/soundwire/cadence_master.h
 create mode 100644 drivers/soundwire/intel.c
 create mode 100644 drivers/soundwire/intel.h
 create mode 100644 drivers/soundwire/intel_init.c
 create mode 100644 drivers/soundwire/mipi_disco.c
 create mode 100644 drivers/soundwire/slave.c
 create mode 100644 drivers/soundwire/sysfs.c
 create mode 100644 include/linux/soundwire/sdw.h
 create mode 100644 include/linux/soundwire/sdw_intel.h
 create mode 100644 include/linux/soundwire/sdw_registers.h

-- 
2.7.4

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

end of thread, other threads:[~2017-11-27 10:57 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-10 11:49 [PATCH v2 00/14] soundwire: Add a new SoundWire subsystem Vinod Koul
2017-11-10 11:49 ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 01/14] Documentation: Add SoundWire summary Vinod Koul
2017-11-10 11:49   ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 02/14] soundwire: Add SoundWire bus type Vinod Koul
2017-11-16 16:05   ` Srinivas Kandagatla
2017-11-16 16:05     ` Srinivas Kandagatla
2017-11-16 17:02     ` Vinod Koul
2017-11-16 17:02       ` Vinod Koul
2017-11-16 17:24       ` Mark Brown
2017-11-16 17:24         ` Mark Brown
2017-11-17  3:52         ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 03/14] soundwire: Add Master registration Vinod Koul
2017-11-10 11:49   ` Vinod Koul
2017-11-16 16:05   ` Srinivas Kandagatla
2017-11-16 16:05     ` Srinivas Kandagatla
2017-11-16 16:49     ` Vinod Koul
2017-11-16 16:49       ` Vinod Koul
2017-11-16 17:30       ` Mark Brown
2017-11-16 17:30         ` Mark Brown
2017-11-17  2:06         ` [alsa-devel] " Vinod Koul
2017-11-17  2:06           ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 04/14] soundwire: Add MIPI DisCo property helpers Vinod Koul
2017-11-10 11:49   ` Vinod Koul
2017-11-16 16:05   ` Srinivas Kandagatla
2017-11-16 17:04     ` Vinod Koul
2017-11-16 17:04       ` Vinod Koul
2017-11-23 14:38   ` Charles Keepax
2017-11-23 14:38     ` Charles Keepax
2017-11-24 16:04     ` Sanyog Kale
2017-11-27  7:59       ` Charles Keepax
2017-11-27  7:59         ` Charles Keepax
2017-11-27  9:18         ` Vinod Koul
2017-11-27  9:56           ` Charles Keepax
2017-11-27  9:56             ` Charles Keepax
2017-11-27 10:55             ` [alsa-devel] " Vinod Koul
2017-11-27 10:55               ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 05/14] soundwire: Add SoundWire MIPI defined registers Vinod Koul
2017-11-10 11:49 ` [PATCH v2 06/14] soundwire: Add IO transfer Vinod Koul
2017-11-10 11:49   ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 07/14] regmap: Add SoundWire bus support Vinod Koul
2017-11-16 12:04   ` Mark Brown
2017-11-16 12:04     ` Mark Brown
2017-11-16 13:02     ` Vinod Koul
2017-11-16 14:48       ` Mark Brown
2017-11-16 14:48         ` Mark Brown
2017-11-10 11:49 ` [PATCH v2 08/14] soundwire: Add Slave status handling helpers Vinod Koul
2017-11-16 16:05   ` Srinivas Kandagatla
2017-11-16 17:08     ` Vinod Koul
2017-11-16 17:08       ` Vinod Koul
2017-11-10 11:49 ` [PATCH v2 09/14] soundwire: Add slave status handling Vinod Koul
2017-11-10 11:49 ` [PATCH v2 10/14] soundwire: Add sysfs for SoundWire DisCo properties Vinod Koul
2017-11-10 11:49 ` [PATCH v2 11/14] soundwire: cdns: Add cadence library Vinod Koul
2017-11-10 11:49 ` [PATCH v2 12/14] soundwire: cdns: Add sdw_master_ops and IO transfer support Vinod Koul
2017-11-10 11:49 ` [PATCH v2 13/14] soundwire: intel: Add Intel Master driver Vinod Koul
2017-11-10 11:49 ` [PATCH v2 14/14] soundwire: intel: Add Intel init module Vinod Koul

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.