From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Vinod Koul <vkoul@kernel.org>
Cc: alsa-devel@alsa-project.org, tiwai@suse.de,
gregkh@linuxfoundation.org, broonie@kernel.org,
Bard liao <yung-chuan.liao@linux.intel.com>,
Rander Wang <rander.wang@linux.intel.com>
Subject: Re: [PATCH v2 0/3] regmap: add SoundWire 1.2 MBQ support
Date: Thu, 3 Sep 2020 08:51:03 -0500 [thread overview]
Message-ID: <32ba445b-2bb3-592a-8f5e-dca458f7193a@linux.intel.com> (raw)
In-Reply-To: <20200903103617.GP2639@vkoul-mobl>
On 9/3/20 5:36 AM, Vinod Koul wrote:
> On 01-09-20, 11:22, Pierre-Louis Bossart wrote:
>> In preparation of the upstream contribution of SDCA (SoundWire Device
>> Class for Audio) ASoC codec drivers [1] [2], add regmap support
>> SoundWire 1.2 MBQ support. The MBQ (Multi-Byte Quantity) registers
>> need to be handled in a different way from regular 8-bit SoundWire
>> registers, their main application is going to be for volume/gain
>> controls.
>>
>> The second patch was initially suggested for inclusion in the
>> SoundWire tree, and was modified to add more background information on
>> SDCA in the commit message as requested by Vinod Koul.
>
> Is this targetted towards the sdw tree or regmap tree, I think it may
> have dependencies so sdw can be used.
>
> It would be nice to mention these things here in cover
It was intended for the regmap tree (the cover letter does not include
the soundwire: prefix).
Patch2 would need the ack of SoundWire maintainers (Bard already provide
his tag).
The dependencies are regmap->ASoC for codec integration. There will be
no dependencies for the SoundWire core proper, SDCA is really about the
device side of things beyond what the bus provides.
Thanks!
>
>>
>> Changes since v1:
>> Rebased on regmap tree (conflict with SPI stuff).
>> Removed mod_devicetable.h header
>> Removed -EOPNOTSUPP error codes, use -ENOTSUPP
>> Added long description of SDCA
>> Used FIELD_PREP/GET as suggested by Vinod Koul
>> Added Bard Liao's Acked-by tag.
>>
>> Pierre-Louis Bossart (3):
>> regmap: sdw: add required header files
>> soundwire: SDCA: add helper macro to access controls
>> regmap: sdw: add support for SoundWire 1.2 MBQ
>>
>> drivers/base/regmap/Kconfig | 6 +-
>> drivers/base/regmap/Makefile | 1 +
>> drivers/base/regmap/regmap-sdw-mbq.c | 101 ++++++++++++++++++++++++
>> drivers/base/regmap/regmap-sdw.c | 2 +
>> include/linux/regmap.h | 21 +++++
>> include/linux/soundwire/sdw_registers.h | 33 ++++++++
>> 6 files changed, 163 insertions(+), 1 deletion(-)
>> create mode 100644 drivers/base/regmap/regmap-sdw-mbq.c
>>
>>
>> base-commit: d17343b87da422a59d99a3ed130573dbeb96c582
>> --
>> 2.25.1
>
prev parent reply other threads:[~2020-09-03 13:52 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-01 16:22 [PATCH v2 0/3] regmap: add SoundWire 1.2 MBQ support Pierre-Louis Bossart
2020-09-01 16:22 ` [PATCH v2 1/3] regmap: sdw: add required header files Pierre-Louis Bossart
2020-09-01 16:22 ` Pierre-Louis Bossart
2020-09-01 16:22 ` [PATCH v2 2/3] soundwire: SDCA: add helper macro to access controls Pierre-Louis Bossart
2020-09-01 16:22 ` Pierre-Louis Bossart
2020-09-04 5:02 ` Vinod Koul
2020-09-04 5:02 ` Vinod Koul
2020-09-08 13:33 ` Pierre-Louis Bossart
2020-09-08 13:33 ` Pierre-Louis Bossart
2020-09-09 7:55 ` Vinod Koul
2020-09-09 7:55 ` Vinod Koul
2020-09-09 13:48 ` Pierre-Louis Bossart
2020-09-10 6:22 ` Vinod Koul
2020-09-10 6:22 ` Vinod Koul
2020-09-10 13:53 ` Pierre-Louis Bossart
2020-09-11 7:06 ` Vinod Koul
2020-09-11 7:06 ` Vinod Koul
2020-09-11 14:50 ` Pierre-Louis Bossart
2020-09-11 14:50 ` Pierre-Louis Bossart
2020-09-14 5:08 ` Vinod Koul
2020-09-14 5:08 ` Vinod Koul
2020-09-14 14:44 ` Pierre-Louis Bossart
2020-09-14 14:44 ` Pierre-Louis Bossart
2020-09-16 12:35 ` Vinod Koul
2020-09-16 12:35 ` Vinod Koul
2020-09-16 13:11 ` Pierre-Louis Bossart
2020-09-01 16:22 ` [PATCH v2 3/3] regmap: sdw: add support for SoundWire 1.2 MBQ Pierre-Louis Bossart
2020-09-01 16:22 ` Pierre-Louis Bossart
2020-09-03 10:36 ` [PATCH v2 0/3] regmap: add SoundWire 1.2 MBQ support Vinod Koul
2020-09-03 13:51 ` Pierre-Louis Bossart [this message]
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=32ba445b-2bb3-592a-8f5e-dca458f7193a@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=rander.wang@linux.intel.com \
--cc=tiwai@suse.de \
--cc=vkoul@kernel.org \
--cc=yung-chuan.liao@linux.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 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.