linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Philippe Ombredanne <pombredanne@nexb.com>
To: Vinod Koul <vinod.koul@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	LKML <linux-kernel@vger.kernel.org>,
	ALSA <alsa-devel@alsa-project.org>, Mark <broonie@kernel.org>,
	Takashi <tiwai@suse.de>,
	Pierre <pierre-louis.bossart@linux.intel.com>,
	patches.audio@intel.com, alan@linux.intel.com,
	Charles Keepax <ckeepax@opensource.cirrus.com>,
	Sagar Dharia <sdharia@codeaurora.org>,
	Srini Kandagatla <srinivas.kandagatla@linaro.org>,
	plai@codeaurora.org, Sudheer Papothi <spapothi@codeaurora.org>
Subject: Re: [PATCH v5 00/15] soundwire: Add a new SoundWire subsystem
Date: Wed, 6 Dec 2017 21:44:40 +0100	[thread overview]
Message-ID: <CAOFm3uFNo2Y9_4mHzzsypO4n67KtJF8ZKqW8si_F46K77NFwrg@mail.gmail.com> (raw)
In-Reply-To: <1512575231-4154-1-git-send-email-vinod.koul@intel.com>

On Wed, Dec 6, 2017 at 4:46 PM, Vinod Koul <vinod.koul@intel.com> wrote:
> 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_v5
>
> v4: https://lkml.org/lkml/2017/12/1/205
> v3: https://lkml.org/lkml/2017/11/30/160
> v2: https://lkml.org/lkml/2017/11/10/216
> v1: https://lkml.org/lkml/2017/10/18/1030
> RFC: https://lkml.org/lkml/2016/10/21/395
>
> Changes in v5:
> - Address comments by Pierre
>   - add reference to mid.mipi.org in documentation
>   - add group and master device number and don't use those for enumeration
>   - fix unused calls in disco code and also remove superfluous initialization
>   - remove sdw_transfer apis slave arg, make enum values integer and not
>     bitmaps
>   - clarify the sdw_program_device_num loop and fix interrupt handling
>
> Changes in v4:
> - Remove text licenses and add SPDX tags only with C99 style comments
> - make bus_type code as GPL v2.0 only
>
> Changes in v3:
> - Update the kernel-doc styles and fix included headers for files
> - handle dev_pm_domain_attach() for defered probe
> - remove OF placeholders
> - change regmap license to GPLv2 only
>
> 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 (11):
>   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
>   MAINTAINERS: Add SoundWire entry
>
>  Documentation/driver-api/index.rst             |   1 +
>  Documentation/driver-api/soundwire/index.rst   |  15 +
>  Documentation/driver-api/soundwire/summary.rst | 207 ++++++
>  MAINTAINERS                                    |  10 +
>  drivers/Kconfig                                |   2 +
>  drivers/Makefile                               |   1 +
>  drivers/base/regmap/Kconfig                    |   4 +
>  drivers/base/regmap/Makefile                   |   1 +
>  drivers/base/regmap/regmap-sdw.c               |  92 +++
>  drivers/soundwire/Kconfig                      |  37 +
>  drivers/soundwire/Makefile                     |  18 +
>  drivers/soundwire/bus.c                        | 967 +++++++++++++++++++++++++
>  drivers/soundwire/bus.h                        |  73 ++
>  drivers/soundwire/bus_type.c                   | 193 +++++
>  drivers/soundwire/cadence_master.c             | 749 +++++++++++++++++++
>  drivers/soundwire/cadence_master.h             |  48 ++
>  drivers/soundwire/intel.c                      | 347 +++++++++
>  drivers/soundwire/intel.h                      |  23 +
>  drivers/soundwire/intel_init.c                 | 198 +++++
>  drivers/soundwire/mipi_disco.c                 | 370 ++++++++++
>  drivers/soundwire/slave.c                      | 115 +++
>  drivers/soundwire/sysfs.c                      | 343 +++++++++
>  include/linux/mod_devicetable.h                |   6 +
>  include/linux/regmap.h                         |  37 +
>  include/linux/soundwire/sdw.h                  | 495 +++++++++++++
>  include/linux/soundwire/sdw_intel.h            |  24 +
>  include/linux/soundwire/sdw_registers.h        | 194 +++++
>  include/linux/soundwire/sdw_type.h             |  19 +
>  scripts/mod/devicetable-offsets.c              |   4 +
>  scripts/mod/file2alias.c                       |  15 +
>  30 files changed, 4608 insertions(+)

Vinod:
For the whole patch series usage of the new SPDX-License-identifiers:
Thank you very much!
This makes the code so much more pleasant to read.

I am not qualified to review the code, but feel free to add my ack or
review for the license id parts.
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
-- 
Cordially
Philippe Ombredanne

  parent reply	other threads:[~2017-12-06 20:45 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-06 15:46 [PATCH v5 00/15] soundwire: Add a new SoundWire subsystem Vinod Koul
2017-12-06 15:46 ` [PATCH v5 01/15] Documentation: Add SoundWire summary Vinod Koul
2017-12-06 15:46 ` [PATCH v5 02/15] soundwire: Add SoundWire bus type Vinod Koul
2017-12-13  9:16   ` Greg Kroah-Hartman
2017-12-06 15:46 ` [PATCH v5 03/15] soundwire: Add Master registration Vinod Koul
2017-12-11 16:02   ` Takashi Iwai
2017-12-11 16:44     ` [alsa-devel] " Vinod Koul
2017-12-13  9:16   ` Greg Kroah-Hartman
2017-12-06 15:47 ` [PATCH v5 04/15] soundwire: Add MIPI DisCo property helpers Vinod Koul
2017-12-11 16:10   ` Takashi Iwai
2017-12-11 17:00     ` Vinod Koul
2017-12-11 17:06       ` Takashi Iwai
2017-12-11 17:18         ` Vinod Koul
2017-12-06 15:47 ` [PATCH v5 05/15] soundwire: Add SoundWire MIPI defined registers Vinod Koul
2017-12-06 15:47 ` [PATCH v5 06/15] soundwire: Add IO transfer Vinod Koul
2017-12-06 15:47 ` [PATCH v5 07/15] regmap: Add SoundWire bus support Vinod Koul
2017-12-06 15:47 ` [PATCH v5 08/15] soundwire: Add Slave status handling helpers Vinod Koul
2017-12-06 15:47 ` [PATCH v5 09/15] soundwire: Add slave status handling Vinod Koul
2017-12-06 15:47 ` [PATCH v5 10/15] soundwire: Add sysfs for SoundWire DisCo properties Vinod Koul
2017-12-13  9:15   ` Greg Kroah-Hartman
2017-12-13  9:54     ` Vinod Koul
2017-12-13 14:31       ` Pierre-Louis Bossart
2017-12-13 16:28       ` Greg Kroah-Hartman
2017-12-13 16:52         ` [alsa-devel] " Vinod Koul
2017-12-13 16:59           ` Greg Kroah-Hartman
2017-12-22  8:26             ` Vinod Koul
2017-12-22  8:33               ` Greg Kroah-Hartman
2017-12-22 11:43                 ` Vinod Koul
2017-12-22 15:20                   ` Greg Kroah-Hartman
2017-12-06 15:47 ` [PATCH v5 11/15] soundwire: cdns: Add cadence library Vinod Koul
2017-12-06 15:47 ` [PATCH v5 12/15] soundwire: cdns: Add sdw_master_ops and IO transfer support Vinod Koul
2017-12-06 15:47 ` [PATCH v5 13/15] soundwire: intel: Add Intel Master driver Vinod Koul
2017-12-06 15:47 ` [PATCH v5 14/15] soundwire: intel: Add Intel init module Vinod Koul
2017-12-06 15:47 ` [PATCH v5 15/15] MAINTAINERS: Add SoundWire entry Vinod Koul
2017-12-06 20:44 ` Philippe Ombredanne [this message]
2017-12-07  0:38 ` [PATCH v5 00/15] soundwire: Add a new SoundWire subsystem Pierre-Louis Bossart
2017-12-11 16:30 ` Takashi Iwai
2017-12-13  9:18 ` Greg Kroah-Hartman
2017-12-13  9:57   ` Vinod Koul

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAOFm3uFNo2Y9_4mHzzsypO4n67KtJF8ZKqW8si_F46K77NFwrg@mail.gmail.com \
    --to=pombredanne@nexb.com \
    --cc=alan@linux.intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=ckeepax@opensource.cirrus.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=patches.audio@intel.com \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=plai@codeaurora.org \
    --cc=sdharia@codeaurora.org \
    --cc=spapothi@codeaurora.org \
    --cc=srinivas.kandagatla@linaro.org \
    --cc=tiwai@suse.de \
    --cc=vinod.koul@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).