All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH 00/17] Enhancement for firewire-lib
@ 2013-11-23  6:07 Takashi Sakamoto
  2013-11-23  6:07 ` [PATCH 01/17] firewire-lib: Rename functions, structure, member for both direction Takashi Sakamoto
                   ` (16 more replies)
  0 siblings, 17 replies; 40+ messages in thread
From: Takashi Sakamoto @ 2013-11-23  6:07 UTC (permalink / raw)
  To: clemens, tiwai, perex; +Cc: alsa-devel, linux1394-devel, ffado-devel

This series of patch extend functionalities of current firewire-lib:
 - support for both in/out AMDTP stream
 - support for duplex stream synchronization (blocking mode only)
 - support for both MIDI/PCM stream
 - support for both in/out CMP
 - support for some AV/C general commands

Additionally, at the last of this series, some quirks for Fireworks are added.

I'm happy to receive your comments, especially for sort processing.

Takashi Sakamoto (17):
  firewire-lib: Rename functions, structure, member for both direction
  firewire-lib: Add macros instead of fixed value for AMDTP
  firewire-lib: Add 'direction' member to 'amdtp_stream' structure
  firewire-lib: Split some codes into functions to reuse in future
  firewire-lib: Add support for AMDTP transmit stream and PCM capture
  firewire-lib: Add support for MIDI capture/playback
  firewire-lib: give syt value to handle_out_packet()
  firewire-lib: Add support for duplex streams with synchronization
  firewire-lib: Add sort function for transmitted packet
  firewire-lib: Add transfer delay to synchronized duplex streams
  firewire-lib: Add support for channel mapping
  firewire-lib: Rename macros, variables and functions for CMP
  firewire-lib: Add 'direction' member to 'cmp_connection' structure
  firewire-lib: Add handling output connection by CMP
  firewire-lib: Add a new function to check others' connection
  firewire-lib: Add some AV/C general commands
  firewire-lib: Add quirks for Fireworks chipset

 sound/firewire/amdtp.c    | 1014 +++++++++++++++++++++++++++++++++++----------
 sound/firewire/amdtp.h    |  161 +++++--
 sound/firewire/cmp.c      |  217 +++++++---
 sound/firewire/cmp.h      |   14 +-
 sound/firewire/dice.c     |   46 +-
 sound/firewire/fcp.c      |  149 +++++++
 sound/firewire/fcp.h      |   16 +
 sound/firewire/speakers.c |   94 ++---
 8 files changed, 1319 insertions(+), 392 deletions(-)

-- 
1.8.3.2

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

end of thread, other threads:[~2013-12-18 17:27 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-23  6:07 [RFC][PATCH 00/17] Enhancement for firewire-lib Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 01/17] firewire-lib: Rename functions, structure, member for both direction Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 02/17] firewire-lib: Add macros instead of fixed value for AMDTP Takashi Sakamoto
2013-11-25 15:27   ` Clemens Ladisch
2013-11-26  9:50     ` Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 03/17] firewire-lib: Add 'direction' member to 'amdtp_stream' structure Takashi Sakamoto
2013-11-25 15:27   ` [alsa-devel] " Clemens Ladisch
2013-11-26 10:01     ` Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 04/17] firewire-lib: Split some codes into functions to reuse in future Takashi Sakamoto
2013-11-25 15:27   ` [alsa-devel] " Clemens Ladisch
2013-11-26 10:52     ` Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 05/17] firewire-lib: Add support for AMDTP transmit stream and PCM capture Takashi Sakamoto
2013-11-25 15:27   ` [alsa-devel] " Clemens Ladisch
2013-11-26 10:50     ` Takashi Sakamoto
2013-11-26 11:17       ` Takashi Sakamoto
2013-12-18 11:57     ` Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 06/17] firewire-lib: Add support for MIDI capture/playback Takashi Sakamoto
2013-11-25 15:27   ` [alsa-devel] " Clemens Ladisch
2013-11-26 12:04     ` Takashi Sakamoto
2013-11-26 13:02       ` Clemens Ladisch
2013-11-26 17:10         ` Takashi Sakamoto
2013-11-26 17:50           ` Clemens Ladisch
2013-11-27  8:33           ` Alan Horstmann
2013-11-27 16:12             ` Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 07/17] firewire-lib: give syt value to handle_out_packet() Takashi Sakamoto
2013-11-25 15:27   ` [alsa-devel] " Clemens Ladisch
2013-11-26 10:59     ` Takashi Sakamoto
2013-12-18 12:29     ` Takashi Sakamoto
2013-12-18 17:26       ` Clemens Ladisch
2013-11-23  6:07 ` [PATCH 08/17] firewire-lib: Add support for duplex streams with synchronization Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 09/17] firewire-lib: Add sort function for transmitted packet Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 10/17] firewire-lib: Add transfer delay to synchronized duplex streams Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 11/17] firewire-lib: Add support for channel mapping Takashi Sakamoto
2013-11-23  6:07 ` [PATCH 12/17] firewire-lib: Rename macros, variables and functions for CMP Takashi Sakamoto
2013-11-23  6:08 ` [PATCH 13/17] firewire-lib: Add 'direction' member to 'cmp_connection' structure Takashi Sakamoto
2013-11-23  6:08 ` [PATCH 14/17] firewire-lib: Add handling output connection by CMP Takashi Sakamoto
2013-11-23  6:08 ` [PATCH 15/17] firewire-lib: Add a new function to check others' connection Takashi Sakamoto
2013-11-23  6:08 ` [PATCH 16/17] firewire-lib: Add some AV/C general commands Takashi Sakamoto
2013-11-23  6:08 ` [PATCH 17/17] firewire-lib: Add quirks for Fireworks chipset Takashi Sakamoto
2013-11-25  3:13   ` Takashi Sakamoto

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.