mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
alsa-mixer: distinguish Focusrite Saffire Pro 10 i/o from Liquid Saffire 56
In a former commit37358e42c4("alsa: Suppress udev detection of sound card for some units on IEEE 1394 bus"), PulseAudio has udev rules to suppress handling some units on IEEE 1394 bus for a below issue: Bug 199365 - repeating bus resets on Firewire bus with Focusrite Saffaire 26/io https://bugzilla.kernel.org/show_bug.cgi?id=199365 However, I found that the rules match another model; Focusrite Liquid Saffire 56. For detail, refer to below patch for Linux sound subsystem: [alsa-devel] [PATCH] ALSA: bebob: use more identical mod_alias for Saffire Pro 10 I/O against Liquid Saffire 56 https://mailman.alsa-project.org/pipermail/alsa-devel/2019-February/146003.html For PulseAudio, the udev rule should be improved, because Liquid Saffire 56 (an application of TCAT TCD2200 ASIC, a.k.a Dice Jr.) can be handled by pulseaudio without the issue. This commit changes udev rule with model name instead of model_id from configuration ROM. Below is data on udevd for Liquid Saffire 56, for your information: $ udevadm info -q all -p /sys/bus/firewire/devices/fw1.0/sound/card2/ P: /devices/pci0000:00/0000:00:01.2/0000:03:00.2/0000:04:07.0/0000:0a:00.0/0000:0b:00.0/fw1/fw1.0/sound/card2 E: DEVPATH=/devices/pci0000:00/0000:00:01.2/0000:03:00.2/0000:04:07.0/0000:0a:00.0/0000:0b:00.0/fw1/fw1.0/sound/card2 E: ID_BUS=firewire E: ID_FOR_SEAT=sound-pci-0000_0b_00_0 E: ID_ID=firewire-0x00130e04018001e9 E: ID_MODEL=LIQUID_SAFFIRE_56 E: ID_MODEL_FROM_DATABASE=XIO2213A/B/XIO2221 IEEE-1394b OHCI Controller [Cheetah Express] E: ID_MODEL_ID=0x000006 E: ID_PATH=pci-0000:0b:00.0 E: ID_PATH_TAG=pci-0000_0b_00_0 E: ID_PCI_CLASS_FROM_DATABASE=Serial bus controller E: ID_PCI_INTERFACE_FROM_DATABASE=OHCI E: ID_PCI_SUBCLASS_FROM_DATABASE=FireWire (IEEE 1394) E: ID_SERIAL=0x00130e04018001e9 E: ID_SERIAL_SHORT=0x00130e04018001e9 E: ID_VENDOR=Focusrite E: ID_VENDOR_FROM_DATABASE=Texas Instruments E: ID_VENDOR_ID=0x00130e E: SOUND_INITIALIZED=1 E: SUBSYSTEM=sound E: SYSTEMD_WANTS=sound.target E: TAGS=💺systemd: E: USEC_INITIALIZED=9802422583 Fixes:37358e42c4("alsa: Suppress udev detection of sound card for some units on IEEE 1394 bus") Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
This commit is contained in:
parent
db788229c6
commit
0d67e36655
1 changed files with 4 additions and 1 deletions
|
|
@ -127,6 +127,9 @@ LABEL="pulseaudio_firewire_quirk"
|
|||
# Focusrite Saffire Pro 10/26 i/o has a quirk to disappear from IEEE 1394 bus when losing connections.
|
||||
# https://bugzilla.kernel.org/show_bug.cgi?id=199365
|
||||
ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL_ID}=="0x000003", ENV{PULSE_IGNORE}="1"
|
||||
ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL_ID}=="0x000006", ENV{PULSE_IGNORE}="1"
|
||||
# Both of Saffire Pro 10 i/o and Liquid Saffire 56 has the same ID_MODEL_ID
|
||||
# (0x000006). Here, use the identical name in configuration ROM to distinguish
|
||||
# the former.
|
||||
ENV{ID_VENDOR_ID}=="0x00130e", ENV{ID_MODEL}=="Pro10IO" ENV{PULSE_IGNORE}="1"
|
||||
|
||||
LABEL="pulseaudio_end"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue