From: Takashi Iwai <tiwai@suse.de>
To: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Cc: alsa-devel@alsa-project.org, clemens@ladisch.de,
ffado-devel@lists.sf.net
Subject: Re: [PATCH 00/14] ALSA: fireface: new driver for RME Fireface series
Date: Wed, 05 Apr 2017 21:32:24 +0200 [thread overview]
Message-ID: <s5hinmibqgn.wl-tiwai@suse.de> (raw)
In-Reply-To: <20170331130612.18331-1-o-takashi@sakamocchi.jp>
On Fri, 31 Mar 2017 15:05:58 +0200,
Takashi Sakamoto wrote:
>
> Hi,
>
> This patchset updates my previous RFCv3, and go for ALSA upstream.
>
> [alsa-devel] [RFC v3][PATCH 00/13] ALSA: fireface: new driver for RME Fireface series
> http://mailman.alsa-project.org/pipermail/alsa-devel/2017-February/117811.html
>
> This patchset newly adds a driver into ALSA firewire stack, to support for
> Fireface 400 in RME FireWire series.
>
> Unfortunately, units on this series are completely against IEC 61883-1/6.
> This brings much commits and descriptions into this patchset. I'd ask you
> to review much amount of codes, as well as MOTU FireWire series, to finish
> my work for AMDTP variants[0].
>
> As I noted to my former patchset, units of the series have unique feature;
> resampling between packet/data block processing layer and sample
> processing layer. This patchset relies on this layer, in short the driver
> doesn't handle sampling clock frequency, just handle sampling transmission
> frequency and expects units to generates audio from resampled data. Users
> should use proper application to configure sampling clock frequency when
> they want to match the frequency and sampling transmission frequency.
>
> Changes from RFCv3:
> * Add function pointer to AMDTP structure to reduce branching on
> packet processing.
> * Improve commit description.
>
> [0]: [alsa-devel] [RFC][PATCH 00/37] ALSA: firewire: support AMDTP variants
> [alsa-devel] [RFC][PATCH 00/37] ALSA: firewire: support AMDTP variants
Now applied all 14 patches. Thanks.
Takashi
>
> Takashi Sakamoto (14):
> 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: use the same prototype for functions to handle
> packet
> 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-trace.h | 6 +-
> sound/firewire/amdtp-stream.c | 107 ++++++--
> sound/firewire/amdtp-stream.h | 6 +
> 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 | 409 ++++++++++++++++++++++++++++
> 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 | 146 ++++++++++
> 18 files changed, 2365 insertions(+), 23 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
>
prev parent reply other threads:[~2017-04-05 19:32 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-31 13:05 [PATCH 00/14] ALSA: fireface: new driver for RME Fireface series Takashi Sakamoto
2017-03-31 13:05 ` [PATCH 01/14] ALSA: fireface: add skeleton " Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 02/14] ALSA: fireface: postpone sound card registration Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 03/14] ALSA: fireface: add model specific structure Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 04/14] ALSA: fireface: add an abstraction layer for model-specific protocols Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 05/14] ALSA: fireface: add transaction support Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 06/14] ALSA: fireface: add support for MIDI functionality Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 07/14] ALSA: fireface: add proc node to help debugging Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 08/14] ALSA: firewire-lib: use the same prototype for functions to handle packet Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 09/14] ALSA: firewire-lib: add no-header packet processing Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 10/14] ALSA: fireface: add unique data processing layer Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 11/14] ALSA: fireface: add stream management functionality Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 12/14] ALSA: fireface: add support for PCM functionality Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 13/14] ALSA: fireface: add hwdep interface Takashi Sakamoto
2017-03-31 13:06 ` [PATCH 14/14] ALSA: fireface: add support for Fireface 400 Takashi Sakamoto
2017-04-05 19:32 ` Takashi Iwai [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5hinmibqgn.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=clemens@ladisch.de \
--cc=ffado-devel@lists.sf.net \
--cc=o-takashi@sakamocchi.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox