[alsa-devel] [GIT PULL] soundwire updates
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
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
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
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
participants (2)
-
Greg KH
-
Vinod