alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] soundwire updates
@ 2018-05-11 16:47 Vinod
  2018-05-12 14:13 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Vinod @ 2018-05-11 16:47 UTC (permalink / raw)
  To: Greg KH; +Cc: alsa-devel, Mark Brown, Shreyas NC


[-- Attachment #1.1: Type: text/plain, Size: 2875 bytes --]

Hi Greg,

As discussed here is the pull request containing SoundWire streaming patches
and email update patch for me.
I have added Mark's Ack on ASoC patch as well.

The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:

  Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git next

for you to fetch changes up to c46302ec554c575e79d791c7c84fd4c795e97680:

  soundwire: intel: Add audio DAI ops (2018-05-11 21:48:07 +0530)

----------------------------------------------------------------
Sanyog Kale (7):
      Documentation: soundwire: Add more documentation
      soundwire: Add support for SoundWire stream management
      soundwire: Add support for port management
      soundwire: Add Master and Slave port programming
      soundwire: Add helpers for ports operations
      soundwire: Add bank switch routine
      soundwire: Add stream configuration APIs

Shreyas NC (2):
      ASoC: Add SoundWire stream programming interface
      soundwire: Remove cdns_master_ops

Vinod Koul (5):
      soundwire: Update email address for Vinod
      soundwire: cdns: Add port routines
      soundwire: cdns: Add stream routines
      soundwire: intel: Add stream initialization
      soundwire: intel: Add audio DAI ops

 .../driver-api/soundwire/error_handling.rst        |   65 +
 Documentation/driver-api/soundwire/index.rst       |    3 +
 Documentation/driver-api/soundwire/locking.rst     |  106 ++
 Documentation/driver-api/soundwire/stream.rst      |  372 +++++
 MAINTAINERS                                        |    2 +-
 drivers/soundwire/Kconfig                          |    2 +-
 drivers/soundwire/Makefile                         |    2 +-
 drivers/soundwire/bus.c                            |   43 +
 drivers/soundwire/bus.h                            |   72 +
 drivers/soundwire/cadence_master.c                 |  451 +++++-
 drivers/soundwire/cadence_master.h                 |  151 ++
 drivers/soundwire/intel.c                          |  525 ++++++-
 drivers/soundwire/intel.h                          |    4 +
 drivers/soundwire/intel_init.c                     |    3 +
 drivers/soundwire/stream.c                         | 1479 ++++++++++++++++++++
 include/linux/soundwire/sdw.h                      |  332 ++++-
 include/linux/soundwire/sdw_intel.h                |   14 +
 include/sound/soc-dai.h                            |   23 +
 18 files changed, 3634 insertions(+), 15 deletions(-)
 create mode 100644 Documentation/driver-api/soundwire/error_handling.rst
 create mode 100644 Documentation/driver-api/soundwire/locking.rst
 create mode 100644 Documentation/driver-api/soundwire/stream.rst
 create mode 100644 drivers/soundwire/stream.c

Thanks
-- 
~Vinod

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

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [GIT PULL] soundwire updates
  2018-05-11 16:47 [GIT PULL] soundwire updates Vinod
@ 2018-05-12 14:13 ` Greg KH
  2018-05-13  5:23   ` Vinod
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2018-05-12 14:13 UTC (permalink / raw)
  To: Vinod; +Cc: alsa-devel, Mark Brown, Shreyas NC

On Fri, May 11, 2018 at 10:17:06PM +0530, Vinod wrote:
> Hi Greg,
> 
> As discussed here is the pull request containing SoundWire streaming patches
> and email update patch for me.
> I have added Mark's Ack on ASoC patch as well.
> 
> The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:
> 
>   Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git next

Can I get a signed-tag to pull from?  That looks like a random branch, I
don't really "trust" that :)

thanks,

greg k-h

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

* Re: [GIT PULL] soundwire updates
  2018-05-12 14:13 ` Greg KH
@ 2018-05-13  5:23   ` Vinod
  2018-05-13  9:55     ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Vinod @ 2018-05-13  5:23 UTC (permalink / raw)
  To: Greg KH; +Cc: alsa-devel, Mark Brown, Shreyas NC


[-- Attachment #1.1: Type: text/plain, Size: 3562 bytes --]

On 12-05-18, 16:13, Greg KH wrote:
> On Fri, May 11, 2018 at 10:17:06PM +0530, Vinod wrote:
> > Hi Greg,
> > 
> > As discussed here is the pull request containing SoundWire streaming patches
> > and email update patch for me.
> > I have added Mark's Ack on ASoC patch as well.
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git next
> 
> Can I get a signed-tag to pull from?  That looks like a random branch, I
> don't really "trust" that :)

No worried I wasn't aware of your preference, so here you go with a signed tag.


The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:

  Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)

are available in the Git repository at:

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

for you to fetch changes up to c46302ec554c575e79d791c7c84fd4c795e97680:

  soundwire: intel: Add audio DAI ops (2018-05-11 21:48:07 +0530)

----------------------------------------------------------------
soundwire streaming

This contains:
 - Support for SoundWire Streaming
 - Documentation updates for streaming
 - Cadence and Intel driver updates for streaming
 - ASoC API for programming soundwire stream

----------------------------------------------------------------
Sanyog Kale (7):
      Documentation: soundwire: Add more documentation
      soundwire: Add support for SoundWire stream management
      soundwire: Add support for port management
      soundwire: Add Master and Slave port programming
      soundwire: Add helpers for ports operations
      soundwire: Add bank switch routine
      soundwire: Add stream configuration APIs

Shreyas NC (2):
      ASoC: Add SoundWire stream programming interface
      soundwire: Remove cdns_master_ops

Vinod Koul (5):
      soundwire: Update email address for Vinod
      soundwire: cdns: Add port routines
      soundwire: cdns: Add stream routines
      soundwire: intel: Add stream initialization
      soundwire: intel: Add audio DAI ops

 .../driver-api/soundwire/error_handling.rst        |   65 +
 Documentation/driver-api/soundwire/index.rst       |    3 +
 Documentation/driver-api/soundwire/locking.rst     |  106 ++
 Documentation/driver-api/soundwire/stream.rst      |  372 +++++
 MAINTAINERS                                        |    2 +-
 drivers/soundwire/Kconfig                          |    2 +-
 drivers/soundwire/Makefile                         |    2 +-
 drivers/soundwire/bus.c                            |   43 +
 drivers/soundwire/bus.h                            |   72 +
 drivers/soundwire/cadence_master.c                 |  451 +++++-
 drivers/soundwire/cadence_master.h                 |  151 ++
 drivers/soundwire/intel.c                          |  525 ++++++-
 drivers/soundwire/intel.h                          |    4 +
 drivers/soundwire/intel_init.c                     |    3 +
 drivers/soundwire/stream.c                         | 1479 ++++++++++++++++++++
 include/linux/soundwire/sdw.h                      |  332 ++++-
 include/linux/soundwire/sdw_intel.h                |   14 +
 include/sound/soc-dai.h                            |   23 +
 18 files changed, 3634 insertions(+), 15 deletions(-)
 create mode 100644 Documentation/driver-api/soundwire/error_handling.rst
 create mode 100644 Documentation/driver-api/soundwire/locking.rst
 create mode 100644 Documentation/driver-api/soundwire/stream.rst
 create mode 100644 drivers/soundwire/stream.c

-- 
~Vinod

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

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [GIT PULL] soundwire updates
  2018-05-13  5:23   ` Vinod
@ 2018-05-13  9:55     ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2018-05-13  9:55 UTC (permalink / raw)
  To: Vinod; +Cc: alsa-devel, Mark Brown, Shreyas NC

On Sun, May 13, 2018 at 10:53:54AM +0530, Vinod wrote:
> On 12-05-18, 16:13, Greg KH wrote:
> > On Fri, May 11, 2018 at 10:17:06PM +0530, Vinod wrote:
> > > Hi Greg,
> > > 
> > > As discussed here is the pull request containing SoundWire streaming patches
> > > and email update patch for me.
> > > I have added Mark's Ack on ASoC patch as well.
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git next
> > 
> > Can I get a signed-tag to pull from?  That looks like a random branch, I
> > don't really "trust" that :)
> 
> No worried I wasn't aware of your preference, so here you go with a signed tag.

Who does not use signed tags for kernel pull requests?  We need to go
tell them to do so :)

> 
> The following changes since commit 60cc43fc888428bb2f18f08997432d426a243338:
> 
>   Linux 4.17-rc1 (2018-04-15 18:24:20 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-streaming

Pulled in and pushed out, thanks.

greg k-h

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

* [GIT PULL] soundwire updates
@ 2018-12-06 17:16 Vinod Koul
  2018-12-07  7:10 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Vinod Koul @ 2018-12-06 17:16 UTC (permalink / raw)
  To: Greg KH; +Cc: alsa-devel, Pierre-Louis Bossart


[-- Attachment #1.1: Type: text/plain, Size: 978 bytes --]

Hey Greg,

Please pull to receive a single commit for soundwire tree for this
cycle. Am off next week so sending this bit early

The following changes since commit 651022382c7f8da46cb4872a545ee1da6d097d2a:

  Linux 4.20-rc1 (2018-11-04 15:37:52 -0800)

are available in the Git repository at:

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

for you to fetch changes up to b1635596860dd3229645e41276f6c83ca788e4c1:

  soundwire: intel: constify snd_soc_dai_ops structures (2018-11-12 15:36:06 +0530)

----------------------------------------------------------------
soundwire updates for 4.21-rc1

A single change:
 - constify snd_soc_dai_ops struct by Julia

----------------------------------------------------------------
Julia Lawall (1):
      soundwire: intel: constify snd_soc_dai_ops structures

 drivers/soundwire/intel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
~Vinod

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

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [GIT PULL] soundwire updates
  2018-12-06 17:16 Vinod Koul
@ 2018-12-07  7:10 ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2018-12-07  7:10 UTC (permalink / raw)
  To: Vinod Koul; +Cc: alsa-devel, Pierre-Louis Bossart

On Thu, Dec 06, 2018 at 10:46:21PM +0530, Vinod Koul wrote:
> Hey Greg,
> 
> Please pull to receive a single commit for soundwire tree for this
> cycle. Am off next week so sending this bit early
> 
> The following changes since commit 651022382c7f8da46cb4872a545ee1da6d097d2a:
> 
>   Linux 4.20-rc1 (2018-11-04 15:37:52 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-4.21-rc1

Now pulled, thanks.

greg k-h

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

end of thread, other threads:[~2018-12-07  7:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-11 16:47 [GIT PULL] soundwire updates Vinod
2018-05-12 14:13 ` Greg KH
2018-05-13  5:23   ` Vinod
2018-05-13  9:55     ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2018-12-06 17:16 Vinod Koul
2018-12-07  7:10 ` 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).