linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] soundwire updates for v5.12-rc1
@ 2021-02-12 11:14 Vinod Koul
  2021-02-12 11:18 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Vinod Koul @ 2021-02-12 11:14 UTC (permalink / raw)
  To: Greg KH; +Cc: LKML

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

Hello greg,

Few more patches came in late and would be great to have in upcoming
merge window. Please pull to receive a fix for Intel laptops and support
for _no_pm in sdw regmap (acked by Mark)

The following changes since commit 6d7a1ff71cbb326fadfbedb7f75c1fc8f5c84d84:

  soundwire: bus: clarify dev_err/dbg device references (2021-02-07 17:49:17 +0530)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-2_5.12-rc1

for you to fetch changes up to 8d8d958428674518cef083cd97e535ac5ac9f9d8:

  regmap: sdw-mbq: use MODULE_LICENSE("GPL") (2021-02-11 10:54:00 +0530)

----------------------------------------------------------------
soundwire second update for 5.12-rc1

Some late changes for sdw:
 - fix for crash on intel driver
 - support for _no_pm IO calls in sdw regmap

----------------------------------------------------------------
Bard Liao (3):
      regmap: sdw: use _no_pm functions in regmap_read/write
      regmap: sdw: use no_pm routines for SoundWire 1.2 MBQ
      regmap: sdw-mbq: use MODULE_LICENSE("GPL")

Marcin Ślusarz (1):
      soundwire: intel: fix possible crash when no device is detected

 drivers/base/regmap/regmap-sdw-mbq.c | 10 +++++-----
 drivers/base/regmap/regmap-sdw.c     |  4 ++--
 drivers/soundwire/intel_init.c       |  3 ++-
 3 files changed, 9 insertions(+), 8 deletions(-)

Thanks
-- 
~Vinod

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

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

* Re: [GIT PULL] soundwire updates for v5.12-rc1
  2021-02-12 11:14 [GIT PULL] soundwire updates for v5.12-rc1 Vinod Koul
@ 2021-02-12 11:18 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2021-02-12 11:18 UTC (permalink / raw)
  To: Vinod Koul; +Cc: LKML

On Fri, Feb 12, 2021 at 04:44:22PM +0530, Vinod Koul wrote:
> Hello greg,
> 
> Few more patches came in late and would be great to have in upcoming
> merge window. Please pull to receive a fix for Intel laptops and support
> for _no_pm in sdw regmap (acked by Mark)
> 
> The following changes since commit 6d7a1ff71cbb326fadfbedb7f75c1fc8f5c84d84:
> 
>   soundwire: bus: clarify dev_err/dbg device references (2021-02-07 17:49:17 +0530)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-2_5.12-rc1

Pulled and pushed out, thanks.

greg k-h

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

* Re: [GIT PULL]: soundwire: updates for v5.12-rc1
  2021-02-07 17:36 [GIT PULL]: soundwire: " Vinod Koul
@ 2021-02-09  8:31 ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2021-02-09  8:31 UTC (permalink / raw)
  To: Vinod Koul; +Cc: LKML, Linux Phy, Kishon Vijay Abraham I

On Sun, Feb 07, 2021 at 11:06:01PM +0530, Vinod Koul wrote:
> Hello Greg,
> 
> Please pull to receive update for v5.12-rc1. This update includes new
> no_pm IO routines and bunch of updates for intel & cadence drivers.
> 
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.12-rc1

Pulled and pushed out, thanks.

greg k-h

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

* [GIT PULL]: soundwire: updates for v5.12-rc1
@ 2021-02-07 17:36 Vinod Koul
  2021-02-09  8:31 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Vinod Koul @ 2021-02-07 17:36 UTC (permalink / raw)
  To: Greg KH; +Cc: LKML, Linux Phy, Kishon Vijay Abraham I

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

Hello Greg,

Please pull to receive update for v5.12-rc1. This update includes new
no_pm IO routines and bunch of updates for intel & cadence drivers.

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.12-rc1

for you to fetch changes up to 6d7a1ff71cbb326fadfbedb7f75c1fc8f5c84d84:

  soundwire: bus: clarify dev_err/dbg device references (2021-02-07 17:49:17 +0530)

----------------------------------------------------------------
soundwire updates for 5.12-rc1

Updates forv5.12-rc1 are:
 - New no_pm IO routines and the usage in Intel drivers
 - Intel driver & Cadence lib updates

----------------------------------------------------------------
Bard Liao (3):
      soundwire: intel: don't return error when clock stop failed
      soundwire: bus: add more details to track failed transfers
      soundwire: export sdw_write/read_no_pm functions

Chao Song (1):
      soundwire: return earlier if no slave is attached

Pierre-Louis Bossart (11):
      soundwire: cadence: reduce timeout on transactions
      soundwire: use consistent format for Slave devID logs
      soundwire: cadence: add status in dev_dbg 'State change' log
      soundwire: cadence: fix ACK/NAK handling
      soundwire: cadence: adjust verbosity in response handling
      soundwire: bus: add better dev_dbg to track complete() calls
      soundwire: bus: use sdw_update_no_pm when initializing a device
      soundwire: bus: use sdw_write_no_pm when setting the bus scale registers
      soundwire: bus: use no_pm IO routines for all interrupt handling
      soundwire: bus: fix confusion on device used by pm_runtime
      soundwire: bus: clarify dev_err/dbg device references

Rikard Falkeborn (1):
      soundwire: sysfs: Constify static struct attribute_group

Srinivas Kandagatla (1):
      soundwire: debugfs: use controller id instead of link_id

Vinod Koul (2):
      MAINTAINERS: soundwire: Add soundwire tree
      soundwire: Revert "soundwire: debugfs: use controller id instead of link_id"

Zheng Yongjun (1):
      soundwire: intel: Use kzalloc for allocating only one thing

 MAINTAINERS                        |   1 +
 drivers/soundwire/bus.c            | 179 ++++++++++++++++++++-----------------
 drivers/soundwire/cadence_master.c |  31 +++----
 drivers/soundwire/intel.c          |   8 +-
 drivers/soundwire/slave.c          |  10 +--
 drivers/soundwire/sysfs_slave.c    |   2 +-
 include/linux/soundwire/sdw.h      |   2 +
 7 files changed, 128 insertions(+), 105 deletions(-)

Thanks
-- 
~Vinod

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

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

end of thread, other threads:[~2021-02-12 11:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-12 11:14 [GIT PULL] soundwire updates for v5.12-rc1 Vinod Koul
2021-02-12 11:18 ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2021-02-07 17:36 [GIT PULL]: soundwire: " Vinod Koul
2021-02-09  8:31 ` Greg KH

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