All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH 00/14] Virtual bus implementation and SOF multi-client support
@ 2020-05-28 19:43 Ranjani Sridharan
  2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 01/14] Implementation of Virtual Bus Ranjani Sridharan
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Ranjani Sridharan @ 2020-05-28 19:43 UTC (permalink / raw)
  To: intel-wired-lan

This set of patches introduces the virtual bus implementation along
with the example usage in the Sound Open Firmware(SOF) audio driver.

The primary purpose of the virtual bus is meant to be a minimalist
software-based bus used for connecting virtual devices to be able 
to communicate with each other.

The SOF driver adopts the virtual bus for implementing the multi-client
support. A client in the context of the SOF driver is a device that needs
to communicate with the DSP via IPCs. With multi-client support, the sound
card can be separated into multiple orthogonal virtual devices for
local device (mic/speakers etc), HDMI, sensing, probes, debug etc. 
In this series, we demonstrate the usage of the virtual bus with the help
of the IPC test client which is used for testing the serialization of IPCs
when multiple clients talk to the DSP at the same time.

This version includes a series of incremental changes in virtual-bus based
of Andy and Pierre's comments. These should be squashed with the first commit.

Dave Ertman (1):
  Implementation of Virtual Bus

Ranjani Sridharan (13):
  virtual-bus: rename struct virtbus_dev_id
  virtual-bus: reword Kconfig help
  virtual-bus: add comment for virtbus entry
  virtual-bus: move MODULE macros to the end of the file
  virtual-bus: remove INVALID_ID and fix error path
  virtual-bus: remove #ifdef for PM ops
  virtual-bus: remove superfluous assignment
  virtual-bus: fix return value for match function
  virtual-bus: reorder header includes
  virtual-bus: remove filename from header
  ASoC: SOF: Introduce descriptors for SOF client
  ASoC: SOF: Create client driver for IPC test
  ASoC: SOF: ops: Add new op for client registration

 Documentation/driver-api/index.rst       |   1 +
 Documentation/driver-api/virtual_bus.rst |  93 ++++++
 drivers/bus/Kconfig                      |  11 +
 drivers/bus/Makefile                     |   2 +
 drivers/bus/virtual_bus.c                | 209 ++++++++++++++
 include/linux/mod_devicetable.h          |   8 +
 include/linux/virtual_bus.h              |  62 ++++
 scripts/mod/devicetable-offsets.c        |   3 +
 scripts/mod/file2alias.c                 |   8 +
 sound/soc/sof/Kconfig                    |  29 ++
 sound/soc/sof/Makefile                   |   7 +-
 sound/soc/sof/core.c                     |  10 +
 sound/soc/sof/intel/Kconfig              |   1 +
 sound/soc/sof/intel/apl.c                |  19 ++
 sound/soc/sof/intel/bdw.c                |  19 ++
 sound/soc/sof/intel/byt.c                |  22 ++
 sound/soc/sof/intel/cnl.c                |  19 ++
 sound/soc/sof/ops.h                      |  20 ++
 sound/soc/sof/sof-client.c               |  89 ++++++
 sound/soc/sof/sof-client.h               |  79 +++++
 sound/soc/sof/sof-ipc-test-client.c      | 348 +++++++++++++++++++++++
 sound/soc/sof/sof-priv.h                 |   9 +
 22 files changed, 1067 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/driver-api/virtual_bus.rst
 create mode 100644 drivers/bus/virtual_bus.c
 create mode 100644 include/linux/virtual_bus.h
 create mode 100644 sound/soc/sof/sof-client.c
 create mode 100644 sound/soc/sof/sof-client.h
 create mode 100644 sound/soc/sof/sof-ipc-test-client.c

-- 
2.17.1


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

end of thread, other threads:[~2020-05-31 13:49 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-28 19:43 [Intel-wired-lan] [PATCH 00/14] Virtual bus implementation and SOF multi-client support Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 01/14] Implementation of Virtual Bus Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 02/14] virtual-bus: rename struct virtbus_dev_id Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 03/14] virtual-bus: reword Kconfig help Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 04/14] virtual-bus: add comment for virtbus entry Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 05/14] virtual-bus: move MODULE macros to the end of the file Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 06/14] virtual-bus: remove INVALID_ID and fix error path Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 07/14] virtual-bus: remove #ifdef for PM ops Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 08/14] virtual-bus: remove superfluous assignment Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 09/14] virtual-bus: fix return value for match function Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 10/14] virtual-bus: reorder header includes Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 11/14] virtual-bus: remove filename from header Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 12/14] ASoC: SOF: Introduce descriptors for SOF client Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 13/14] ASoC: SOF: Create client driver for IPC test Ranjani Sridharan
2020-05-28 19:43 ` [Intel-wired-lan] [PATCH 14/14] ASoC: SOF: ops: Add new op for client registration Ranjani Sridharan
2020-05-31 13:49   ` kbuild test robot

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.