diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-19 21:07:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-19 21:07:17 -0500 |
commit | 20e471fd34d1f79bed65fdc1bf4ad090f70472a5 (patch) | |
tree | 7e74e4ca71a90c6b39392dacab07e26feedb8185 /sound/usb | |
parent | ed55635e2e4df3169f21ae4047004b7235de956e (diff) | |
parent | d70a1b9893f820fdbcdffac408c909c50f2e6b43 (diff) |
Merge tag 'sound-fix-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
Pull sound fixes from Takashi Iwai:
"Here are a few fixes that have landed after the previous pull request.
All are driver specific fixes including:
- error/int value fixes in OXFW,
- Intel Skylake HD-audio HDMI codec support,
- Additional HD-audio Realtek codecs and AD1986A codec fixes/quirks,
- a few more DSD support and a quirk for Arcam rPAC in usb-audio,
- a typo fix for Scarlett 6i6,
- fixes for new ASIHPI firmware,
- ASoC Exynos7 cleanups,
- Intel ACPI support, and
- a fix for PCM512 register cache sync"
* tag 'sound-fix-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (24 commits)
ALSA: usb-audio: extend KEF X300A FU 10 tweak to Arcam rPAC
ALSA: hda/realtek - New codec support for ALC298
ALSA: asihpi: update to HPI version 4.14
ALSA: asihpi: increase tuner pad cache size
ALSA: asihpi: relax firmware version check
ALSA: usb-audio: Fix Scarlett 6i6 initialization typo
ALSA: hda - Add quirk for Packard Bell EasyNote MX65
ALSA: usb-audio: add native DSD support for Matrix Audio DACs
ALSA: hda/realtek - New codec support for ALC256
ALSA: hda/realtek - Add new Dell desktop for ALC3234 headset mode
ASoC: Intel: fix possible acpi enumeration panic
ALSA: hda/hdmi - apply Haswell fix-ups to Skylake display codec
ASoC: Intel: fix return value check in sst_acpi_probe()
ALSA: hda - Make add_stereo_mix_input flag tristate
ALSA: hda - Create capture source ctls when stereo mix input is added
ALSA: hda - Fix typos in snd_hda_get_int_hint() kerneldoc comments
ALSA: hda - add codec ID for Skylake display audio codec
ALSA: oxfw: some signedness bugs
ALSA: oxfw: fix detect_loud_models() return value
ASoC: rt5677: add REGMAP_I2C and REGMAP_IRQ dependency
...
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/mixer_maps.c | 15 | ||||
-rw-r--r-- | sound/usb/mixer_scarlett.c | 2 | ||||
-rw-r--r-- | sound/usb/quirks.c | 5 |
3 files changed, 16 insertions, 6 deletions
diff --git a/sound/usb/mixer_maps.c b/sound/usb/mixer_maps.c index 1994d41348f8..b703cb3cda19 100644 --- a/sound/usb/mixer_maps.c +++ b/sound/usb/mixer_maps.c | |||
@@ -333,8 +333,11 @@ static struct usbmix_name_map gamecom780_map[] = { | |||
333 | {} | 333 | {} |
334 | }; | 334 | }; |
335 | 335 | ||
336 | static const struct usbmix_name_map kef_x300a_map[] = { | 336 | /* some (all?) SCMS USB3318 devices are affected by a firmware lock up |
337 | { 10, NULL }, /* firmware locks up (?) when we try to access this FU */ | 337 | * when anything attempts to access FU 10 (control) |
338 | */ | ||
339 | static const struct usbmix_name_map scms_usb3318_map[] = { | ||
340 | { 10, NULL }, | ||
338 | { 0 } | 341 | { 0 } |
339 | }; | 342 | }; |
340 | 343 | ||
@@ -434,8 +437,14 @@ static struct usbmix_ctl_map usbmix_ctl_maps[] = { | |||
434 | .map = ebox44_map, | 437 | .map = ebox44_map, |
435 | }, | 438 | }, |
436 | { | 439 | { |
440 | /* KEF X300A */ | ||
437 | .id = USB_ID(0x27ac, 0x1000), | 441 | .id = USB_ID(0x27ac, 0x1000), |
438 | .map = kef_x300a_map, | 442 | .map = scms_usb3318_map, |
443 | }, | ||
444 | { | ||
445 | /* Arcam rPAC */ | ||
446 | .id = USB_ID(0x25c4, 0x0003), | ||
447 | .map = scms_usb3318_map, | ||
439 | }, | 448 | }, |
440 | { 0 } /* terminator */ | 449 | { 0 } /* terminator */ |
441 | }; | 450 | }; |
diff --git a/sound/usb/mixer_scarlett.c b/sound/usb/mixer_scarlett.c index 9109652b88b9..7438e7c4a842 100644 --- a/sound/usb/mixer_scarlett.c +++ b/sound/usb/mixer_scarlett.c | |||
@@ -655,7 +655,7 @@ static struct scarlett_device_info s6i6_info = { | |||
655 | .names = NULL | 655 | .names = NULL |
656 | }, | 656 | }, |
657 | 657 | ||
658 | .num_controls = 0, | 658 | .num_controls = 9, |
659 | .controls = { | 659 | .controls = { |
660 | { .num = 0, .type = SCARLETT_OUTPUTS, .name = "Monitor" }, | 660 | { .num = 0, .type = SCARLETT_OUTPUTS, .name = "Monitor" }, |
661 | { .num = 1, .type = SCARLETT_OUTPUTS, .name = "Headphone" }, | 661 | { .num = 1, .type = SCARLETT_OUTPUTS, .name = "Headphone" }, |
diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index 4dbfb3d18ee2..a7398412310b 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c | |||
@@ -1245,8 +1245,9 @@ u64 snd_usb_interface_dsd_format_quirks(struct snd_usb_audio *chip, | |||
1245 | 1245 | ||
1246 | /* XMOS based USB DACs */ | 1246 | /* XMOS based USB DACs */ |
1247 | switch (chip->usb_id) { | 1247 | switch (chip->usb_id) { |
1248 | /* iFi Audio micro/nano iDSD */ | 1248 | case USB_ID(0x20b1, 0x3008): /* iFi Audio micro/nano iDSD */ |
1249 | case USB_ID(0x20b1, 0x3008): | 1249 | case USB_ID(0x20b1, 0x2008): /* Matrix Audio X-Sabre */ |
1250 | case USB_ID(0x20b1, 0x300a): /* Matrix Audio Mini-i Pro */ | ||
1250 | if (fp->altsetting == 2) | 1251 | if (fp->altsetting == 2) |
1251 | return SNDRV_PCM_FMTBIT_DSD_U32_BE; | 1252 | return SNDRV_PCM_FMTBIT_DSD_U32_BE; |
1252 | break; | 1253 | break; |