All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC v3][PATCH 00/13] ALSA: fireface: new driver for RME Fireface series
@ 2017-02-11 14:24 Takashi Sakamoto
  2017-02-11 14:24 ` [PATCH 01/13] ALSA: fireface: add skeleton " Takashi Sakamoto
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Takashi Sakamoto @ 2017-02-11 14:24 UTC (permalink / raw)
  To: clemens, tiwai; +Cc: alsa-devel, ffado-devel

Hi,

This patchset is a revised version of my former one:

[alsa-devel] [RFC v2][PATCH 00/11] ALSA: fireface: new driver for RME Fireface series
http://mailman.alsa-project.org/pipermail/alsa-devel/2015-December/102261.html

Since the end of 2015, ALSA firewire stack got many changes. This revision
adapt the former one to current stack. Furthermore, I add an abstraction layer
of Fireface protocol to help developers to add support for the rest of models.
(I'm unwilling to work further for this direction, because of its cost.)

Changes:
 * Rebase to current ALSA firewire stack and add optimization.
 * Rename local structure with shorter words.
 * Delegate a task to configure settings on write-only registers to user space
   applications.
 * Switch mode to fetch PCM frames from data blocks to sampling data processing
   layer voluntarily.
 * Revise comments with technical information from my analysis to Fireface 400
   packets.

The rebasing is actually done on my proposal of ALSA MOTU driver. Please apply
this patchset to it to prevent conflicts.
[alsa-devel] [PATCH 00/19][RFC v2] ALSA: firewire-motu: new driver for MOTU FireWire series
http://mailman.alsa-project.org/pipermail/alsa-devel/2017-January/117211.html

Currently, I have a plan to post this patchset to merge into Linux 4.12.
Corresponding merge window will be estimated to open this April. If you're
willing to test this module, please report the result till then.

Unfortunately, I did this work just with my notes and log dumps, thus without
any test device. I'm happy if you test this patchset with your Fireface 400.
For testers, I prepare for backport codes in my repository in github.com.
Please use 'topic/fireface' branch.
https://github.com/takaswie/snd-firewire-improve/tree/topic/fireface

If you have any question, please reply to me even if it's trivial; e.g. typo
in comments, as long as its' technical issue.


Regards

Takashi Sakamoto (13):
  ALSA: fireface: add skeleton for RME Fireface series
  ALSA: fireface: postpone sound card registration
  ALSA: fireface: add model specific structure
  ALSA: fireface: add an abstraction layer for model-specific protocols
  ALSA: fireface: add transaction support
  ALSA: fireface: add support for MIDI functionality
  ALSA: fireface: add proc node to help debugging
  ALSA: firewire-lib: add no-header packet processing
  ALSA: fireface: add unique data processing layer
  ALSA: fireface: add stream management functionality
  ALSA: fireface: add support for PCM functionality
  ALSA: fireface: add hwdep interface
  ALSA: fireface: add support for Fireface 400

 include/uapi/sound/asound.h                 |   3 +-
 include/uapi/sound/firewire.h               |   2 +-
 sound/firewire/Kconfig                      |   8 +
 sound/firewire/Makefile                     |   1 +
 sound/firewire/amdtp-stream.c               |  84 +++++-
 sound/firewire/amdtp-stream.h               |   2 +
 sound/firewire/fireface/Makefile            |   3 +
 sound/firewire/fireface/amdtp-ff.c          | 155 +++++++++++
 sound/firewire/fireface/ff-hwdep.c          | 191 +++++++++++++
 sound/firewire/fireface/ff-midi.c           | 131 +++++++++
 sound/firewire/fireface/ff-pcm.c            | 404 ++++++++++++++++++++++++++++
 sound/firewire/fireface/ff-proc.c           |  63 +++++
 sound/firewire/fireface/ff-protocol-ff400.c | 371 +++++++++++++++++++++++++
 sound/firewire/fireface/ff-stream.c         | 282 +++++++++++++++++++
 sound/firewire/fireface/ff-transaction.c    | 295 ++++++++++++++++++++
 sound/firewire/fireface/ff.c                | 209 ++++++++++++++
 sound/firewire/fireface/ff.h                | 145 ++++++++++
 17 files changed, 2342 insertions(+), 7 deletions(-)
 create mode 100644 sound/firewire/fireface/Makefile
 create mode 100644 sound/firewire/fireface/amdtp-ff.c
 create mode 100644 sound/firewire/fireface/ff-hwdep.c
 create mode 100644 sound/firewire/fireface/ff-midi.c
 create mode 100644 sound/firewire/fireface/ff-pcm.c
 create mode 100644 sound/firewire/fireface/ff-proc.c
 create mode 100644 sound/firewire/fireface/ff-protocol-ff400.c
 create mode 100644 sound/firewire/fireface/ff-stream.c
 create mode 100644 sound/firewire/fireface/ff-transaction.c
 create mode 100644 sound/firewire/fireface/ff.c
 create mode 100644 sound/firewire/fireface/ff.h

-- 
2.9.3

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

end of thread, other threads:[~2017-02-11 14:25 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-11 14:24 [RFC v3][PATCH 00/13] ALSA: fireface: new driver for RME Fireface series Takashi Sakamoto
2017-02-11 14:24 ` [PATCH 01/13] ALSA: fireface: add skeleton " Takashi Sakamoto
2017-02-11 14:24 ` [PATCH 02/13] ALSA: fireface: postpone sound card registration Takashi Sakamoto
2017-02-11 14:24 ` [PATCH 03/13] ALSA: fireface: add model specific structure Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 04/13] ALSA: fireface: add an abstraction layer for model-specific protocols Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 05/13] ALSA: fireface: add transaction support Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 06/13] ALSA: fireface: add support for MIDI functionality Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 07/13] ALSA: fireface: add proc node to help debugging Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 08/13] ALSA: firewire-lib: add no-header packet processing Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 09/13] ALSA: fireface: add unique data processing layer Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 10/13] ALSA: fireface: add stream management functionality Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 11/13] ALSA: fireface: add support for PCM functionality Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 12/13] ALSA: fireface: add hwdep interface Takashi Sakamoto
2017-02-11 14:25 ` [PATCH 13/13] ALSA: fireface: add support for Fireface 400 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.