public inbox for alsa-devel@alsa-project.org
 help / color / mirror / Atom feed
From: Takashi Sakamoto <o-takashi@sakamocchi.jp>
To: Takashi Iwai <tiwai@suse.de>
Cc: alsa-devel@alsa-project.org, clemens@ladisch.de,
	ffado-devel@lists.sf.net
Subject: Re: [PATCH 17/25] ALSA: firewire-tascam: add skeleton for TASCAM FireWire series
Date: Thu, 13 Aug 2015 16:18:10 +0900	[thread overview]
Message-ID: <55CC44B2.6080200@sakamocchi.jp> (raw)
In-Reply-To: <s5hy4hfzox8.wl-tiwai@suse.de>

On Aug 13 2015 15:24, Takashi Iwai wrote:
> On Thu, 13 Aug 2015 02:20:13 +0200,
> Takashi Sakamoto wrote:
>>
>> This commit adds a new driver for TASCAM FireWire series. In this commit,
>> this driver just creates/removes card instance according to bus event.
>> More functionalities will be added in following commits.
>>
>> TASCAM FireWire series consists of:
>>   * PDI 1394P23 for IEEE 1394 PHY layer
>>   * PDI 1394L40 for IEEE 1394 LINK layer and IEC 61883 interface
>>   * XILINX XC9536XL
>>   * XILINX Spartan-II XC2S100
>>   * ATMEL AT91M42800A
>>
>> Ilya Zimnovich had investigated TASCAM FireWire series in 2011, and
>> discover some features of his FW-1804. You can see a part of his research
>> in FFADO project.
>> http://subversion.ffado.org/wiki/Tascam
>>
>> A part of my work is based on Ilya's investigation, while this series
>> doesn't support the FW-1804, because of a lack of config ROM
>> information and its protocol detail, especially for PCM channels.
>>
>> I observed that FW-1884 and FW-1082 don't work properly with 1394 OHCI
>> controller based on VT6315. The controller can actually communicate packets
>> to these models, while these models generate no sounds. It may be due to
>> the PHY/LINK layer issues. Using 1394 OHCI controller produced by the other
>> vendors such as Texas Instruments may enable to work. Or adding another
>> node on the bus.
>>
>> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
>> ---
>>   sound/firewire/Kconfig         |  11 +++
>>   sound/firewire/Makefile        |   1 +
>>   sound/firewire/tascam/Makefile |   2 +
>>   sound/firewire/tascam/tascam.c | 155 +++++++++++++++++++++++++++++++++++++++++
>>   sound/firewire/tascam/tascam.h |  28 ++++++++
>>   5 files changed, 197 insertions(+)
>>   create mode 100644 sound/firewire/tascam/Makefile
>>   create mode 100644 sound/firewire/tascam/tascam.c
>>   create mode 100644 sound/firewire/tascam/tascam.h
>>
>> diff --git a/sound/firewire/Kconfig b/sound/firewire/Kconfig
>> index 80f3b57..605cb91 100644
>> --- a/sound/firewire/Kconfig
>> +++ b/sound/firewire/Kconfig
>> @@ -135,4 +135,15 @@ config SND_FIREWIRE_DIGI00X
>>   	 To compile this driver as a module, choose M here: the module
>>   	 will be called snd-firewire-digi00x.
>>
>> +config SND_FIREWIRE_TASCAM
>> +	tristate "TASCAM FireWire series support"
>> +	select SND_FIREWIRE_LIB
>> +	help
>> +	 Say Y here to include support for TASCAM.
>> +	  * FW-1884
>> +	  * FW-1082
>> +
>> +	 To compile this driver as a module, choose M here: the module
>> +	 will be called snd-firewire-tascam.
>> +
>>   endif # SND_FIREWIRE
>> diff --git a/sound/firewire/Makefile b/sound/firewire/Makefile
>> index 5325d15..6ae50f5 100644
>> --- a/sound/firewire/Makefile
>> +++ b/sound/firewire/Makefile
>> @@ -12,3 +12,4 @@ obj-$(CONFIG_SND_SCS1X) += snd-scs1x.o
>>   obj-$(CONFIG_SND_FIREWORKS) += fireworks/
>>   obj-$(CONFIG_SND_BEBOB) += bebob/
>>   obj-$(CONFIG_SND_FIREWIRE_DIGI00X) += digi00x/
>> +obj-$(CONFIG_SND_FIREWIRE_TASCAM) += tascam/
>> diff --git a/sound/firewire/tascam/Makefile b/sound/firewire/tascam/Makefile
>> new file mode 100644
>> index 0000000..29bdbce
>> --- /dev/null
>> +++ b/sound/firewire/tascam/Makefile
>> @@ -0,0 +1,2 @@
>> +snd-firewire-tascam-objs := tascam.o
>> +obj-m += snd-firewire-tascam.o
>
> This should be
> obj-$(CONFIG_SND_FIREWIRE_TASCAM) += snd-firewire-tascam.o

Indeed. I completely forgot it...


Thank you

Takashi Sakamoto

  reply	other threads:[~2015-08-13  7:18 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-13  0:19 [PATCH 00/25] ALSA: support AMDTP variants Takashi Sakamoto
2015-08-13  0:19 ` [PATCH 01/25] ALSA: firewire-lib: rename 'amdtp' to 'amdtp-stream' for functional separation Takashi Sakamoto
2015-08-13  0:19 ` [PATCH 02/25] ALSA: firewire-lib: functional separation for packet transmission layer and data processing layer Takashi Sakamoto
2015-08-13  0:19 ` [PATCH 03/25] ALSA: firewire-lib: add helper functions for asynchronous MIDI port Takashi Sakamoto
2015-08-13  6:31   ` Takashi Iwai
2015-08-13  7:57     ` Takashi Sakamoto
2015-08-15 10:15       ` Stefan Richter
2015-08-15 10:19         ` Stefan Richter
2015-08-16  6:47         ` Takashi Iwai
2015-08-16 12:15           ` Stefan Richter
2015-08-17 14:01             ` Takashi Iwai
2015-08-13  0:20 ` [PATCH 04/25] ALSA: firewire-lib: add a restriction for a transaction at once Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 05/25] ALSA: firewire-lib: schedule tasklet again when MIDI substream has rest of MIDI messages Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 06/25] ALSA: firewire-lib: add throttle for MIDI data rate Takashi Sakamoto
2015-08-13 21:34   ` Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 07/25] ALSA: firewire-lib: avoid endless loop to transfer MIDI messages at fatal error Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 08/25] ALSA: firewire-digi00x: add skeleton for Digi 002/003 family Takashi Sakamoto
2015-08-13  6:33   ` Takashi Iwai
2015-08-13  0:20 ` [PATCH 09/25] ALSA: firewire-digi00x: add data processing layer Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 10/25] ALSA: firewire-digi00x: add stream functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 11/25] ALSA: firewire-digi00x: add proc node to show clock status Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 12/25] ALSA: firewire-digi00x: add PCM functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 13/25] ALSA: firewire-digi00x: add MIDI functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 14/25] ALSA: firewire-digi00x: add hwdep interface Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 15/25] ALSA: firewire-digi00x: add support for asynchronous messaging Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 16/25] ALSA: firewire-digi00x: add support for MIDI ports for machine control Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 17/25] ALSA: firewire-tascam: add skeleton for TASCAM FireWire series Takashi Sakamoto
2015-08-13  6:24   ` Takashi Iwai
2015-08-13  7:18     ` Takashi Sakamoto [this message]
2015-08-13  0:20 ` [PATCH 18/25] ALSA: firewire-tascam: add a structure for model-dependent parameters Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 19/25] ALSA: firewire-tascam: add proc node to show firmware information Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 20/25] ALSA: firewire-tascam: add data processing layer Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 21/25] ALSA: firewire-tascam: add streaming functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 22/25] ALSA: firewire-tascam: add PCM functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 23/25] ALSA: firewire-tascam: add transaction functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 24/25] ALSA: firewire-tascam: add MIDI functionality Takashi Sakamoto
2015-08-13  0:20 ` [PATCH 25/25] ALSA: firewire-tascam: add hwdep interface Takashi Sakamoto
2015-08-13  0:32 ` [PATCH 00/25] ALSA: support AMDTP variants Takashi Sakamoto
  -- strict thread matches above, loose matches on Subject: below --
2015-08-22  9:19 [PATCH 00/25 v2] " Takashi Sakamoto
2015-08-22  9:19 ` [PATCH 17/25] ALSA: firewire-tascam: add skeleton for TASCAM FireWire series Takashi Sakamoto

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=55CC44B2.6080200@sakamocchi.jp \
    --to=o-takashi@sakamocchi.jp \
    --cc=alsa-devel@alsa-project.org \
    --cc=clemens@ladisch.de \
    --cc=ffado-devel@lists.sf.net \
    --cc=tiwai@suse.de \
    /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