All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/30 v3] ALSA: Enhancement for existed FireWire drivers
@ 2014-11-28 15:59 Takashi Sakamoto
  2014-11-28 15:59 ` [PATCH 01/30] ALSA: dice: suppress checkpatch.pl warnings Takashi Sakamoto
                   ` (31 more replies)
  0 siblings, 32 replies; 49+ messages in thread
From: Takashi Sakamoto @ 2014-11-28 15:59 UTC (permalink / raw)
  To: clemens, tiwai; +Cc: alsa-devel, ffado-devel

This patchset is to enable ALSA Dice driver to handle more models, to
improve ALSA firewire-speakers driver as OXFW driver. This patchset is
for linux-next branch.

== Updates from my previous post:

[alsa-devel] [PATCH 00/29 v2] ALSA: Enhancement for existed FireWire drivers
http://mailman.alsa-project.org/pipermail/alsa-devel/2014-October/082844.html

 - Add a patch to fix some minor bugs (dice)
 - Improve handling config-rom strings for loud models (oxfw) 
 - Fix a bug of mutual exclusive lock for AMDTP streams (oxfw)
 - Obsolete atomic_t for reference counters (dice/oxfw)

Takashi Sakamoto (30):
  ALSA: dice: suppress checkpatch.pl warnings
  ALSA: dice: Rename structure and its members
  ALSA: dice: Move file to its own directory
  ALSA: dice: Split transaction functionality into a file
  ALSA: dice: Split stream functionality into a file
  ALSA: dice: Split PCM functionality into a file
  ALSA: dice: Split hwdep functionality into a file
  ALSA: dice: Split proc interface into a file
  ALSA: dice: Add new functions for constraints of PCM parameters
  ALSA: dice: Change the way to start stream
  ALSA: dice: Add support for duplex streams with synchronization
  ALSA: dice: Support for non SYT-Match sampling clock source mode
  ALSA: dice: Add support for capturing PCM samples
  ALSA: dice: Add support for MIDI capture/playback
  ALSA: dice: remove experimental state
  ALSA: speakers: Rename to oxfw and rename some members
  ALSA: oxfw: Move to its own directory
  ALSA: oxfw: Split stream functionality to a new file and add a header
    file
  ALSA: oxfw: Split PCM functionality to a new file
  ALSA: oxfw: Split control functionality to a new file
  ALSA: oxfw: Change the way to name card
  ALSA: oxfw: Add support for AV/C stream format command to get/set
    supported stream formation
  ALSA: oxfw: Change the way to make PCM rules/constraints
  ALSA: oxfw: Add proc interface for debugging purpose
  ALSA: oxfw: Change the way to start stream
  ALSA: oxfw: Add support for Behringer/Mackie devices
  ALSA: oxfw: Add support AMDTP in-stream
  ALSA: oxfw: add support for capturing PCM samples
  ALSA: oxfw: Add support for capture/playback MIDI messages
  ALSA: oxfw: Add hwdep interface

 include/uapi/sound/asound.h                |    3 +-
 include/uapi/sound/firewire.h              |    3 +-
 sound/firewire/Kconfig                     |   26 +-
 sound/firewire/Makefile                    |    7 +-
 sound/firewire/dice.c                      | 1511 ----------------------------
 sound/firewire/dice/Makefile               |    3 +
 sound/firewire/dice/dice-hwdep.c           |  190 ++++
 sound/firewire/{ => dice}/dice-interface.h |    0
 sound/firewire/dice/dice-midi.c            |  194 ++++
 sound/firewire/dice/dice-pcm.c             |  424 ++++++++
 sound/firewire/dice/dice-proc.c            |  252 +++++
 sound/firewire/dice/dice-stream.c          |  407 ++++++++
 sound/firewire/dice/dice-transaction.c     |  382 +++++++
 sound/firewire/dice/dice.c                 |  361 +++++++
 sound/firewire/dice/dice.h                 |  189 ++++
 sound/firewire/oxfw/Makefile               |    3 +
 sound/firewire/oxfw/oxfw-command.c         |  153 +++
 sound/firewire/oxfw/oxfw-control.c         |  283 ++++++
 sound/firewire/oxfw/oxfw-hwdep.c           |  190 ++++
 sound/firewire/oxfw/oxfw-midi.c            |  207 ++++
 sound/firewire/oxfw/oxfw-pcm.c             |  425 ++++++++
 sound/firewire/oxfw/oxfw-proc.c            |  113 +++
 sound/firewire/oxfw/oxfw-stream.c          |  685 +++++++++++++
 sound/firewire/oxfw/oxfw.c                 |  315 ++++++
 sound/firewire/oxfw/oxfw.h                 |  145 +++
 sound/firewire/speakers.c                  |  792 ---------------
 26 files changed, 4944 insertions(+), 2319 deletions(-)
 delete mode 100644 sound/firewire/dice.c
 create mode 100644 sound/firewire/dice/Makefile
 create mode 100644 sound/firewire/dice/dice-hwdep.c
 rename sound/firewire/{ => dice}/dice-interface.h (100%)
 create mode 100644 sound/firewire/dice/dice-midi.c
 create mode 100644 sound/firewire/dice/dice-pcm.c
 create mode 100644 sound/firewire/dice/dice-proc.c
 create mode 100644 sound/firewire/dice/dice-stream.c
 create mode 100644 sound/firewire/dice/dice-transaction.c
 create mode 100644 sound/firewire/dice/dice.c
 create mode 100644 sound/firewire/dice/dice.h
 create mode 100644 sound/firewire/oxfw/Makefile
 create mode 100644 sound/firewire/oxfw/oxfw-command.c
 create mode 100644 sound/firewire/oxfw/oxfw-control.c
 create mode 100644 sound/firewire/oxfw/oxfw-hwdep.c
 create mode 100644 sound/firewire/oxfw/oxfw-midi.c
 create mode 100644 sound/firewire/oxfw/oxfw-pcm.c
 create mode 100644 sound/firewire/oxfw/oxfw-proc.c
 create mode 100644 sound/firewire/oxfw/oxfw-stream.c
 create mode 100644 sound/firewire/oxfw/oxfw.c
 create mode 100644 sound/firewire/oxfw/oxfw.h
 delete mode 100644 sound/firewire/speakers.c

-- 
2.1.0

^ permalink raw reply	[flat|nested] 49+ messages in thread
* [PATCH 00/29 v2] ALSA: Enhancement for existed FireWire drivers
@ 2014-10-26 13:03 Takashi Sakamoto
  2014-10-26 13:29 ` [PATCH] hwdep: add OXFW driver support Takashi Sakamoto
  0 siblings, 1 reply; 49+ messages in thread
From: Takashi Sakamoto @ 2014-10-26 13:03 UTC (permalink / raw)
  To: clemens, tiwai; +Cc: alsa-devel, ffado-devel

This patchset is to enable ALSA Dice driver to handle more models, to
improve ALSA firewire-speakers driver as OXFW driver. This patchset is
for linux-next branch and all of my work for Linux 3.19.

== Features:
Currently, ALSA Dice driver is limited for playback-only devices. The aim
of this patchset is to add supports for:
 - Full-duplex streams with synchronization
 - Both PCM capture and playback
 - Both MIDI capture and playback

Currently, ALSA firewire-speakers driver is only for two playback-only models.
And this driver has a bug for one of them. The aim of this patchset is to fix
the bug and to add supports for more models with:
 - Both PCM capture and playback
 - Both MIDI capture and playback

The renew drivers doesn't support:
 - Synchronization between multiple devices on the same bus
   For this purpose, please join in user-space driver project (FFADO)
 - Any control functionality for internal DSP
   For this purpose, please use ffado-dbus-server/ffado-mixer,
   or write your own application


== Updates from my previous post:
[alsa-devel] [PATCH 00/14] ALSA: Dice enhancement
http://mailman.alsa-project.org/pipermail/alsa-devel/2014-October/081890.html
 - Fix typo
 - Minor code change

[alsa-devel] [RFC][PATCH 00/15 v4] OXFW driver, a succesor to firewire-speakers
http://mailman.alsa-project.org/pipermail/alsa-devel/2014-May/076581.html
 - Support more Mackie (Loud) models by name detection
 - Fix a bug to handle FireWave
 - Use AV/C Stream Format Information command to set sampling rate


== Remarks:
 - When the Dice driver is loaded, user-space driver fails to register
   notification address, thus cannot handle device for streaming. See:
http://mailman.alsa-project.org/pipermail/alsa-devel/2014-September/081731.html
 - OXFW chipset seems to transmit wrong values for timestamp, thus the
   driver don't apply full-duplex streams with synchronization


== Supported Dice-based models (as long as I know):
TC Electronic
 - Desktop Konnekt 6
 - Impact Twin
 - Konnekt 8/24D/Live
 - Studio Konnekt 48
PreSonus
 - FireStudio 26x26/Mobile/Project/Tube/LightPipe
 - StudioLive 1602/1642/2442
 - FireStation
Mackie
 - Onyx Blackbird
 - Onyx i-series (latter models)
Focusrite
 - Saffire Pro 14/24/24 DSP/26/40/56
M-Audio
 - Profire 610/2626
Alessis
 - IO 24/26
 - MultiMix 12/16
Weiss
 - ADC2
 - Vesta
 - Mineva
 - AFI 1
 - TAG DAC 1
 - INT 202
 - DAC 202
 - Flex 5000
DnR
 - Axus FireWire I/O card 16x16
Lexicon
 - I-ONIX FW 810S
Allen and Heath
 - Zed R16
Midas
 - Venice F32

== Supported OXFW-based models (as long as I know):
Griffin:
 - FireWave
LaCie:
 - Firewire Speakers
Behringer:
 - F-Control Audio 202
Mackie (Loud):
 - Onyx-i series (former models)
 - Onyx Satellite
 - Tapco Link.Firewire
 - d.2 pro/d.4 pro
 - U.420/U.420d

Takashi Sakamoto (29):
  ALSA: dice: Rename structure and its members
  ALSA: dice: Move file to its own directory
  ALSA: dice: Split transaction functionality into a file
  ALSA: dice: Split stream functionality into a file
  ALSA: dice: Split PCM functionality into a file
  ALSA: dice: Split hwdep functionality into a file
  ALSA: dice: Split proc interface into a file
  ALSA: dice: Add new functions for constraints of PCM parameters
  ALSA: dice: Change the way to start stream
  ALSA: dice: Add support for duplex streams with synchronization
  ALSA: dice: Support for non SYT-Match sampling clock source mode
  ALSA: dice: Add support for capturing PCM samples
  ALSA: dice: Add support for MIDI capture/playback
  ALSA: dice: remove experimental state
  ALSA: speakers: Rename to oxfw and rename some members
  ALSA: oxfw: Move to its own directory
  ALSA: oxfw: Split stream functionality to a new file and add a header
    file
  ALSA: oxfw: Split PCM functionality to a new file
  ALSA: oxfw: Split control functionality to a new file
  ALSA: oxfw: Change the way to name card
  ALSA: oxfw: Add support for AV/C stream format command to get/set
    supported stream formation
  ALSA: oxfw: Change the way to make PCM rules/constraints
  ALSA: oxfw: Add proc interface for debugging purpose
  ALSA: oxfw: Change the way to start stream
  ALSA: oxfw: Add support for Behringer/Mackie devices
  ALSA: oxfw: Add support AMDTP in-stream
  ALSA: oxfw: add support for capturing PCM samples
  ALSA: oxfw: Add support for capture/playback MIDI messages
  ALSA: oxfw: Add hwdep interface

 include/uapi/sound/asound.h                |    3 +-
 include/uapi/sound/firewire.h              |    3 +-
 sound/firewire/Kconfig                     |   26 +-
 sound/firewire/Makefile                    |    6 +-
 sound/firewire/dice.c                      | 1511 ----------------------------
 sound/firewire/dice/Makefile               |    3 +
 sound/firewire/dice/dice-hwdep.c           |  190 ++++
 sound/firewire/{ => dice}/dice-interface.h |    0
 sound/firewire/dice/dice-midi.c            |  176 ++++
 sound/firewire/dice/dice-pcm.c             |  404 ++++++++
 sound/firewire/dice/dice-proc.c            |  252 +++++
 sound/firewire/dice/dice-stream.c          |  423 ++++++++
 sound/firewire/dice/dice-transaction.c     |  382 +++++++
 sound/firewire/dice/dice.c                 |  359 +++++++
 sound/firewire/dice/dice.h                 |  189 ++++
 sound/firewire/oxfw/Makefile               |    3 +
 sound/firewire/oxfw/oxfw-command.c         |  153 +++
 sound/firewire/oxfw/oxfw-control.c         |  283 ++++++
 sound/firewire/oxfw/oxfw-hwdep.c           |  190 ++++
 sound/firewire/oxfw/oxfw-midi.c            |  189 ++++
 sound/firewire/oxfw/oxfw-pcm.c             |  399 ++++++++
 sound/firewire/oxfw/oxfw-proc.c            |  113 +++
 sound/firewire/oxfw/oxfw-stream.c          |  702 +++++++++++++
 sound/firewire/oxfw/oxfw.c                 |  310 ++++++
 sound/firewire/oxfw/oxfw.h                 |  145 +++
 sound/firewire/speakers.c                  |  792 ---------------
 26 files changed, 4887 insertions(+), 2319 deletions(-)
 delete mode 100644 sound/firewire/dice.c
 create mode 100644 sound/firewire/dice/Makefile
 create mode 100644 sound/firewire/dice/dice-hwdep.c
 rename sound/firewire/{ => dice}/dice-interface.h (100%)
 create mode 100644 sound/firewire/dice/dice-midi.c
 create mode 100644 sound/firewire/dice/dice-pcm.c
 create mode 100644 sound/firewire/dice/dice-proc.c
 create mode 100644 sound/firewire/dice/dice-stream.c
 create mode 100644 sound/firewire/dice/dice-transaction.c
 create mode 100644 sound/firewire/dice/dice.c
 create mode 100644 sound/firewire/dice/dice.h
 create mode 100644 sound/firewire/oxfw/Makefile
 create mode 100644 sound/firewire/oxfw/oxfw-command.c
 create mode 100644 sound/firewire/oxfw/oxfw-control.c
 create mode 100644 sound/firewire/oxfw/oxfw-hwdep.c
 create mode 100644 sound/firewire/oxfw/oxfw-midi.c
 create mode 100644 sound/firewire/oxfw/oxfw-pcm.c
 create mode 100644 sound/firewire/oxfw/oxfw-proc.c
 create mode 100644 sound/firewire/oxfw/oxfw-stream.c
 create mode 100644 sound/firewire/oxfw/oxfw.c
 create mode 100644 sound/firewire/oxfw/oxfw.h
 delete mode 100644 sound/firewire/speakers.c

-- 
1.9.1

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

end of thread, other threads:[~2014-12-03 14:19 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-28 15:59 [PATCH 00/30 v3] ALSA: Enhancement for existed FireWire drivers Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 01/30] ALSA: dice: suppress checkpatch.pl warnings Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 02/30] ALSA: dice: Rename structure and its members Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 03/30] ALSA: dice: Move file to its own directory Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 04/30] ALSA: dice: Split transaction functionality into a file Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 05/30] ALSA: dice: Split stream " Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 06/30] ALSA: dice: Split PCM " Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 07/30] ALSA: dice: Split hwdep " Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 08/30] ALSA: dice: Split proc interface " Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 09/30] ALSA: dice: Add new functions for constraints of PCM parameters Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 10/30] ALSA: dice: Change the way to start stream Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 11/30] ALSA: dice: Add support for duplex streams with synchronization Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 12/30] ALSA: dice: Support for non SYT-Match sampling clock source mode Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 13/30] ALSA: dice: Add support for capturing PCM samples Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 14/30] ALSA: dice: Add support for MIDI capture/playback Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 15/30] ALSA: dice: remove experimental state Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 16/30] ALSA: speakers: Rename to oxfw and rename some members Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 17/30] ALSA: oxfw: Move to its own directory Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 18/30] ALSA: oxfw: Split stream functionality to a new file and add a header file Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 19/30] ALSA: oxfw: Split PCM functionality to a new file Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 20/30] ALSA: oxfw: Split control " Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 21/30] ALSA: oxfw: Change the way to name card Takashi Sakamoto
2014-11-29 19:37   ` Takashi Iwai
2014-11-30  4:33     ` Takashi Sakamoto
2014-11-30  8:31       ` Takashi Iwai
2014-11-30 23:19         ` Takashi Sakamoto
2014-12-01  8:41           ` Takashi Iwai
2014-12-01 11:21             ` Clemens Ladisch
2014-12-01 15:05               ` Takashi Sakamoto
2014-12-01 15:21                 ` Takashi Iwai
2014-12-02  6:17                   ` Takashi Sakamoto
2014-12-02  6:41                     ` Takashi Iwai
2014-12-03 14:19                       ` Takashi Sakamoto
2014-12-01 14:58             ` Takashi Sakamoto
2014-12-01 15:22               ` Takashi Iwai
2014-11-28 15:59 ` [PATCH 22/30] ALSA: oxfw: Add support for AV/C stream format command to get/set supported stream formation Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 23/30] ALSA: oxfw: Change the way to make PCM rules/constraints Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 24/30] ALSA: oxfw: Add proc interface for debugging purpose Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 25/30] ALSA: oxfw: Change the way to start stream Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 26/30] ALSA: oxfw: Add support for Behringer/Mackie devices Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 27/30] ALSA: oxfw: Add support AMDTP in-stream Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 28/30] ALSA: oxfw: add support for capturing PCM samples Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 29/30] ALSA: oxfw: Add support for capture/playback MIDI messages Takashi Sakamoto
2014-11-28 15:59 ` [PATCH 30/30] ALSA: oxfw: Add hwdep interface Takashi Sakamoto
2014-11-28 16:03 ` [PATCH alsa-lib] hwdep: add OXFW driver support Takashi Sakamoto
2014-11-29 19:35 ` [PATCH 00/30 v3] ALSA: Enhancement for existed FireWire drivers Takashi Iwai
2014-11-30  3:21   ` Takashi Sakamoto
2014-11-30  8:35     ` Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2014-10-26 13:03 [PATCH 00/29 v2] " Takashi Sakamoto
2014-10-26 13:29 ` [PATCH] hwdep: add OXFW driver support Takashi Sakamoto
2014-10-26 13:43   ` [PATCH alsa-lib] " 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.