mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 04:17:47 +00:00
bde8a8f23b
Fireworks uses own command and response. This commit adds functionality to transact and adds some commands required for sound card instance and kernel streaming. There are two ways to deliver substance of this transaction: 1.AV/C vendor dependent command for command/response 2.Async transaction to specific addresses for command/response By way 1, I confirm AudioFire12 cannot correctly response to some commands with firmware version 5.0 or later. This is also confirmed by FFADO. So this driver implement way 2. The address for response gives an issue. When this driver allocate own callback function into the address, then no one can allocate its own callback function. This situation is not good for applications in user-land. This issue is solved in later commit. I note there is a command to change the address for response if the device supports. But this driver uses default value. So users should not execute this command as long as hoping this driver works correctly. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
80 lines
2.2 KiB
Plaintext
80 lines
2.2 KiB
Plaintext
menuconfig SND_FIREWIRE
|
|
bool "FireWire sound devices"
|
|
depends on FIREWIRE
|
|
default y
|
|
help
|
|
Support for IEEE-1394/FireWire/iLink sound devices.
|
|
|
|
if SND_FIREWIRE && FIREWIRE
|
|
|
|
config SND_FIREWIRE_LIB
|
|
tristate
|
|
depends on SND_PCM
|
|
|
|
config SND_DICE
|
|
tristate "DICE-based DACs (EXPERIMENTAL)"
|
|
select SND_HWDEP
|
|
select SND_PCM
|
|
select SND_FIREWIRE_LIB
|
|
help
|
|
Say Y here to include support for many DACs based on the DICE
|
|
chip family (DICE-II/Jr/Mini) from TC Applied Technologies.
|
|
|
|
At the moment, this driver supports playback only. If you
|
|
want to use devices that support capturing, use FFADO instead.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-dice.
|
|
|
|
config SND_FIREWIRE_SPEAKERS
|
|
tristate "FireWire speakers"
|
|
select SND_PCM
|
|
select SND_FIREWIRE_LIB
|
|
help
|
|
Say Y here to include support for the Griffin FireWave Surround
|
|
and the LaCie FireWire Speakers.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-firewire-speakers.
|
|
|
|
config SND_ISIGHT
|
|
tristate "Apple iSight microphone"
|
|
select SND_PCM
|
|
select SND_FIREWIRE_LIB
|
|
help
|
|
Say Y here to include support for the front and rear microphones
|
|
of the Apple iSight web camera.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-isight.
|
|
|
|
config SND_SCS1X
|
|
tristate "Stanton Control System 1 MIDI"
|
|
select SND_PCM
|
|
select SND_RAWMIDI
|
|
select SND_FIREWIRE_LIB
|
|
help
|
|
Say Y here to include support for the MIDI ports of the Stanton
|
|
SCS.1d/SCS.1m DJ controllers. (SCS.1m audio is still handled
|
|
by FFADO.)
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-scs1x.
|
|
|
|
config SND_FIREWORKS
|
|
tristate "Echo Fireworks board module support"
|
|
select SND_FIREWIRE_LIB
|
|
help
|
|
Say Y here to include support for FireWire devices based
|
|
on Echo Digital Audio Fireworks board:
|
|
* Mackie Onyx 400F/1200F
|
|
* Echo AudioFire12/8(until 2009 July)
|
|
* Echo AudioFire2/4/Pre8/8(since 2009 July)
|
|
* Echo Fireworks 8/HDMI
|
|
* Gibson Robot Interface Pack/GoldTop
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-fireworks.
|
|
|
|
endif # SND_FIREWIRE
|