linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] regmap updates for v5.11
@ 2020-12-14 14:47 Mark Brown
  2020-12-15 23:47 ` Linus Torvalds
  2020-12-16  1:00 ` pr-tracker-bot
  0 siblings, 2 replies; 4+ messages in thread
From: Mark Brown @ 2020-12-14 14:47 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, Mark Brown

The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:

  Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git tags/regmap-v5.11

for you to fetch changes up to 4616c509d187d2afda4a8f1121c2a3ef16bbcefe:

  Merge remote-tracking branch 'regmap/for-5.11' into regmap-next (2020-11-30 18:16:06 +0000)

----------------------------------------------------------------
regmap: Updates for v5.11

This is quite a busy release for regmap with two substantial features
being added:

 - Support for register maps Soundwire 1.2 multi-byte operations,
   allowing atomic support for registers larger than a single byte.
 - Support for relaxed I/O without barriers in MMIO regmaps, allowing
   them to be used efficiently on systems where default MMIO operations
   include barriers.

There was also an addition and revert of use of the new Soundwire
support for RT715 due to build issues with the driver built in, my tests
only covered building it as a module, the patch wasn't just dropped as
it had already been merged elsewhere.

----------------------------------------------------------------
Adrian Ratiu (1):
      regmap: mmio: add config option to allow relaxed MMIO accesses

Jack Yu (1):
      ASoC/SoundWire: rt715-sdca: First version of rt715 sdw sdca codec driver

Lucas Tanure (1):
      regmap: Fix order of regmap write log

Mark Brown (4):
      Merge series "regmap/SoundWire/ASoC: Add SoundWire SDCA support" from Bard Liao <yung-chuan.liao@linux.intel.com>:
      ASoC: rt715: Fix build
      Merge branch '20201104_yung_chuan_liao_regmap_soundwire_asoc_add_soundwire_sdca_support' into regmap-5.11
      Merge remote-tracking branch 'regmap/for-5.11' into regmap-next

Philippe Duplessis-Guindon (1):
      regmap: Remove duplicate `type` field from regmap `regcache_sync` trace event

Pierre-Louis Bossart (3):
      regmap: sdw: add required header files
      soundwire: SDCA: add helper macro to access controls
      regmap/SoundWire: sdw: add support for SoundWire 1.2 MBQ

 drivers/base/regmap/Kconfig             |   6 +-
 drivers/base/regmap/Makefile            |   1 +
 drivers/base/regmap/regmap-mmio.c       |  90 +++++++++++++++++++++++++---
 drivers/base/regmap/regmap-sdw-mbq.c    | 101 ++++++++++++++++++++++++++++++++
 drivers/base/regmap/regmap-sdw.c        |   2 +
 drivers/base/regmap/regmap.c            |  11 ++--
 drivers/base/regmap/trace.h             |   1 -
 include/linux/regmap.h                  |  40 +++++++++++++
 include/linux/soundwire/sdw_registers.h |  32 ++++++++++
 9 files changed, 270 insertions(+), 14 deletions(-)
 create mode 100644 drivers/base/regmap/regmap-sdw-mbq.c

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

* Re: [GIT PULL] regmap updates for v5.11
  2020-12-14 14:47 [GIT PULL] regmap updates for v5.11 Mark Brown
@ 2020-12-15 23:47 ` Linus Torvalds
  2020-12-16 18:25   ` Mark Brown
  2020-12-16  1:00 ` pr-tracker-bot
  1 sibling, 1 reply; 4+ messages in thread
From: Linus Torvalds @ 2020-12-15 23:47 UTC (permalink / raw)
  To: Mark Brown, Takashi Iwai; +Cc: Linux Kernel Mailing List

On Mon, Dec 14, 2020 at 6:47 AM Mark Brown <broonie@kernel.org> wrote:
>
> There was also an addition and revert of use of the new Soundwire
> support for RT715 due to build issues with the driver built in, my tests
> only covered building it as a module, the patch wasn't just dropped as
> it had already been merged elsewhere.

Ok, this made my diffstat look very odd and very different from yours
- because I had already gotten that driver from the sound tree, so my
diffstat looked very different from the one you have - and instead of
being the no-op that it was for you (add and then delete), it showed
up as just a delete for me.

I assume you've synchronized with Takashi so that this isn't a big
surprise for him..

              Linus

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

* Re: [GIT PULL] regmap updates for v5.11
  2020-12-14 14:47 [GIT PULL] regmap updates for v5.11 Mark Brown
  2020-12-15 23:47 ` Linus Torvalds
@ 2020-12-16  1:00 ` pr-tracker-bot
  1 sibling, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-12-16  1:00 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linus Torvalds, linux-kernel, Mark Brown

The pull request you sent on Mon, 14 Dec 2020 14:47:31 +0000:

> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git tags/regmap-v5.11

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/a45f1d43311d3a4f6534e48a3655ba3247a59d48

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [GIT PULL] regmap updates for v5.11
  2020-12-15 23:47 ` Linus Torvalds
@ 2020-12-16 18:25   ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2020-12-16 18:25 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Takashi Iwai, Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 972 bytes --]

On Tue, Dec 15, 2020 at 03:47:47PM -0800, Linus Torvalds wrote:
> On Mon, Dec 14, 2020 at 6:47 AM Mark Brown <broonie@kernel.org> wrote:

> > There was also an addition and revert of use of the new Soundwire
> > support for RT715 due to build issues with the driver built in, my tests
> > only covered building it as a module, the patch wasn't just dropped as
> > it had already been merged elsewhere.

> Ok, this made my diffstat look very odd and very different from yours
> - because I had already gotten that driver from the sound tree, so my
> diffstat looked very different from the one you have - and instead of
> being the no-op that it was for you (add and then delete), it showed
> up as just a delete for me.

Yes, that looks good - it matches what was in -next.  I had actually
meant the add to go through instead but I'd not noticed that the delete
was winning (I think I checked this in -next at the wrong point), I'll
make sure things go through for v5.12.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2020-12-16 19:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-14 14:47 [GIT PULL] regmap updates for v5.11 Mark Brown
2020-12-15 23:47 ` Linus Torvalds
2020-12-16 18:25   ` Mark Brown
2020-12-16  1:00 ` pr-tracker-bot

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