2 * USB Audio Driver for ALSA
4 * Quirks and vendor-specific extensions for mixer interfaces
6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
8 * Many codes borrowed from audio.c by
9 * Alan Cox (alan@lxorguk.ukuu.org.uk)
10 * Thomas Sailer (sailer@ife.ee.ethz.ch)
12 * Audio Advantage Micro II support added by:
13 * Przemek Rudy (prudy1@o2.pl)
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #include <linux/init.h>
31 #include <linux/slab.h>
32 #include <linux/usb.h>
33 #include <linux/usb/audio.h>
35 #include <sound/asoundef.h>
36 #include <sound/core.h>
37 #include <sound/control.h>
38 #include <sound/hwdep.h>
39 #include <sound/info.h>
43 #include "mixer_quirks.h"
44 #include "mixer_scarlett.h"
47 extern struct snd_kcontrol_new
*snd_usb_feature_unit_ctl
;
49 struct std_mono_table
{
50 unsigned int unitid
, control
, cmask
;
53 snd_kcontrol_tlv_rw_t
*tlv_callback
;
56 /* This function allows for the creation of standard UAC controls.
57 * See the quirks for M-Audio FTUs or Ebox-44.
58 * If you don't want to set a TLV callback pass NULL.
60 * Since there doesn't seem to be a devices that needs a multichannel
61 * version, we keep it mono for simplicity.
63 static int snd_create_std_mono_ctl_offset(struct usb_mixer_interface
*mixer
,
70 snd_kcontrol_tlv_rw_t
*tlv_callback
)
72 struct usb_mixer_elem_info
*cval
;
73 struct snd_kcontrol
*kctl
;
75 cval
= kzalloc(sizeof(*cval
), GFP_KERNEL
);
79 snd_usb_mixer_elem_init_std(&cval
->head
, mixer
, unitid
);
80 cval
->val_type
= val_type
;
82 cval
->control
= control
;
84 cval
->idx_off
= idx_off
;
86 /* get_min_max() is called only for integer volumes later,
87 * so provide a short-cut for booleans */
95 kctl
= snd_ctl_new1(snd_usb_feature_unit_ctl
, cval
);
102 snprintf(kctl
->id
.name
, sizeof(kctl
->id
.name
), name
);
103 kctl
->private_free
= snd_usb_mixer_elem_free
;
107 kctl
->tlv
.c
= tlv_callback
;
108 kctl
->vd
[0].access
|=
109 SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
110 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
;
112 /* Add control to mixer */
113 return snd_usb_mixer_add_control(&cval
->head
, kctl
);
116 static int snd_create_std_mono_ctl(struct usb_mixer_interface
*mixer
,
118 unsigned int control
,
122 snd_kcontrol_tlv_rw_t
*tlv_callback
)
124 return snd_create_std_mono_ctl_offset(mixer
, unitid
, control
, cmask
,
125 val_type
, 0 /* Offset */, name
, tlv_callback
);
129 * Create a set of standard UAC controls from a table
131 static int snd_create_std_mono_table(struct usb_mixer_interface
*mixer
,
132 struct std_mono_table
*t
)
136 while (t
->name
!= NULL
) {
137 err
= snd_create_std_mono_ctl(mixer
, t
->unitid
, t
->control
,
138 t
->cmask
, t
->val_type
, t
->name
, t
->tlv_callback
);
147 static int add_single_ctl_with_resume(struct usb_mixer_interface
*mixer
,
149 usb_mixer_elem_resume_func_t resume
,
150 const struct snd_kcontrol_new
*knew
,
151 struct usb_mixer_elem_list
**listp
)
153 struct usb_mixer_elem_list
*list
;
154 struct snd_kcontrol
*kctl
;
156 list
= kzalloc(sizeof(*list
), GFP_KERNEL
);
163 list
->resume
= resume
;
164 kctl
= snd_ctl_new1(knew
, list
);
169 kctl
->private_free
= snd_usb_mixer_elem_free
;
170 return snd_usb_mixer_add_control(list
, kctl
);
174 * Sound Blaster remote control configuration
176 * format of remote control data:
178 * Audigy 2 NX: 06 80 xx 00 00 00
179 * Live! 24-bit: 06 80 xx yy 22 83
181 static const struct rc_config
{
186 u8 min_packet_length
; /* minimum accepted length of the URB result */
190 { USB_ID(0x041e, 0x3000), 0, 1, 2, 1, 18, 0x0013 }, /* Extigy */
191 { USB_ID(0x041e, 0x3020), 2, 1, 6, 6, 18, 0x0013 }, /* Audigy 2 NX */
192 { USB_ID(0x041e, 0x3040), 2, 2, 6, 6, 2, 0x6e91 }, /* Live! 24-bit */
193 { USB_ID(0x041e, 0x3042), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 */
194 { USB_ID(0x041e, 0x30df), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 Pro */
195 { USB_ID(0x041e, 0x3237), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 Pro */
196 { USB_ID(0x041e, 0x3048), 2, 2, 6, 6, 2, 0x6e91 }, /* Toshiba SB0500 */
199 static void snd_usb_soundblaster_remote_complete(struct urb
*urb
)
201 struct usb_mixer_interface
*mixer
= urb
->context
;
202 const struct rc_config
*rc
= mixer
->rc_cfg
;
205 if (urb
->status
< 0 || urb
->actual_length
< rc
->min_packet_length
)
208 code
= mixer
->rc_buffer
[rc
->offset
];
210 code
|= mixer
->rc_buffer
[rc
->offset
+ 1] << 8;
212 /* the Mute button actually changes the mixer control */
213 if (code
== rc
->mute_code
)
214 snd_usb_mixer_notify_id(mixer
, rc
->mute_mixer_id
);
215 mixer
->rc_code
= code
;
217 wake_up(&mixer
->rc_waitq
);
220 static long snd_usb_sbrc_hwdep_read(struct snd_hwdep
*hw
, char __user
*buf
,
221 long count
, loff_t
*offset
)
223 struct usb_mixer_interface
*mixer
= hw
->private_data
;
227 if (count
!= 1 && count
!= 4)
229 err
= wait_event_interruptible(mixer
->rc_waitq
,
230 (rc_code
= xchg(&mixer
->rc_code
, 0)) != 0);
233 err
= put_user(rc_code
, buf
);
235 err
= put_user(rc_code
, (u32 __user
*)buf
);
237 return err
< 0 ? err
: count
;
240 static unsigned int snd_usb_sbrc_hwdep_poll(struct snd_hwdep
*hw
, struct file
*file
,
243 struct usb_mixer_interface
*mixer
= hw
->private_data
;
245 poll_wait(file
, &mixer
->rc_waitq
, wait
);
246 return mixer
->rc_code
? POLLIN
| POLLRDNORM
: 0;
249 static int snd_usb_soundblaster_remote_init(struct usb_mixer_interface
*mixer
)
251 struct snd_hwdep
*hwdep
;
254 for (i
= 0; i
< ARRAY_SIZE(rc_configs
); ++i
)
255 if (rc_configs
[i
].usb_id
== mixer
->chip
->usb_id
)
257 if (i
>= ARRAY_SIZE(rc_configs
))
259 mixer
->rc_cfg
= &rc_configs
[i
];
261 len
= mixer
->rc_cfg
->packet_length
;
263 init_waitqueue_head(&mixer
->rc_waitq
);
264 err
= snd_hwdep_new(mixer
->chip
->card
, "SB remote control", 0, &hwdep
);
267 snprintf(hwdep
->name
, sizeof(hwdep
->name
),
268 "%s remote control", mixer
->chip
->card
->shortname
);
269 hwdep
->iface
= SNDRV_HWDEP_IFACE_SB_RC
;
270 hwdep
->private_data
= mixer
;
271 hwdep
->ops
.read
= snd_usb_sbrc_hwdep_read
;
272 hwdep
->ops
.poll
= snd_usb_sbrc_hwdep_poll
;
273 hwdep
->exclusive
= 1;
275 mixer
->rc_urb
= usb_alloc_urb(0, GFP_KERNEL
);
278 mixer
->rc_setup_packet
= kmalloc(sizeof(*mixer
->rc_setup_packet
), GFP_KERNEL
);
279 if (!mixer
->rc_setup_packet
) {
280 usb_free_urb(mixer
->rc_urb
);
281 mixer
->rc_urb
= NULL
;
284 mixer
->rc_setup_packet
->bRequestType
=
285 USB_DIR_IN
| USB_TYPE_CLASS
| USB_RECIP_INTERFACE
;
286 mixer
->rc_setup_packet
->bRequest
= UAC_GET_MEM
;
287 mixer
->rc_setup_packet
->wValue
= cpu_to_le16(0);
288 mixer
->rc_setup_packet
->wIndex
= cpu_to_le16(0);
289 mixer
->rc_setup_packet
->wLength
= cpu_to_le16(len
);
290 usb_fill_control_urb(mixer
->rc_urb
, mixer
->chip
->dev
,
291 usb_rcvctrlpipe(mixer
->chip
->dev
, 0),
292 (u8
*)mixer
->rc_setup_packet
, mixer
->rc_buffer
, len
,
293 snd_usb_soundblaster_remote_complete
, mixer
);
297 #define snd_audigy2nx_led_info snd_ctl_boolean_mono_info
299 static int snd_audigy2nx_led_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
301 ucontrol
->value
.integer
.value
[0] = kcontrol
->private_value
>> 8;
305 static int snd_audigy2nx_led_update(struct usb_mixer_interface
*mixer
,
306 int value
, int index
)
308 struct snd_usb_audio
*chip
= mixer
->chip
;
311 down_read(&chip
->shutdown_rwsem
);
312 if (chip
->shutdown
) {
316 if (chip
->usb_id
== USB_ID(0x041e, 0x3042))
317 err
= snd_usb_ctl_msg(chip
->dev
,
318 usb_sndctrlpipe(chip
->dev
, 0), 0x24,
319 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
321 /* USB X-Fi S51 Pro */
322 if (chip
->usb_id
== USB_ID(0x041e, 0x30df))
323 err
= snd_usb_ctl_msg(chip
->dev
,
324 usb_sndctrlpipe(chip
->dev
, 0), 0x24,
325 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
328 err
= snd_usb_ctl_msg(chip
->dev
,
329 usb_sndctrlpipe(chip
->dev
, 0), 0x24,
330 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
331 value
, index
+ 2, NULL
, 0);
333 up_read(&chip
->shutdown_rwsem
);
337 static int snd_audigy2nx_led_put(struct snd_kcontrol
*kcontrol
,
338 struct snd_ctl_elem_value
*ucontrol
)
340 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
341 struct usb_mixer_interface
*mixer
= list
->mixer
;
342 int index
= kcontrol
->private_value
& 0xff;
343 int value
= ucontrol
->value
.integer
.value
[0];
344 int old_value
= kcontrol
->private_value
>> 8;
349 if (value
== old_value
)
351 kcontrol
->private_value
= (value
<< 8) | index
;
352 err
= snd_audigy2nx_led_update(mixer
, value
, index
);
353 return err
< 0 ? err
: 1;
356 static int snd_audigy2nx_led_resume(struct usb_mixer_elem_list
*list
)
358 int priv_value
= list
->kctl
->private_value
;
360 return snd_audigy2nx_led_update(list
->mixer
, priv_value
>> 8,
364 /* name and private_value are set dynamically */
365 static struct snd_kcontrol_new snd_audigy2nx_control
= {
366 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
367 .info
= snd_audigy2nx_led_info
,
368 .get
= snd_audigy2nx_led_get
,
369 .put
= snd_audigy2nx_led_put
,
372 static const char * const snd_audigy2nx_led_names
[] = {
375 "Dolby Digital LED Switch",
378 static int snd_audigy2nx_controls_create(struct usb_mixer_interface
*mixer
)
382 for (i
= 0; i
< ARRAY_SIZE(snd_audigy2nx_led_names
); ++i
) {
383 struct snd_kcontrol_new knew
;
385 /* USB X-Fi S51 doesn't have a CMSS LED */
386 if ((mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3042)) && i
== 0)
388 /* USB X-Fi S51 Pro doesn't have one either */
389 if ((mixer
->chip
->usb_id
== USB_ID(0x041e, 0x30df)) && i
== 0)
391 if (i
> 1 && /* Live24ext has 2 LEDs only */
392 (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
393 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3042) ||
394 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x30df) ||
395 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048)))
398 knew
= snd_audigy2nx_control
;
399 knew
.name
= snd_audigy2nx_led_names
[i
];
400 knew
.private_value
= (1 << 8) | i
; /* LED on as default */
401 err
= add_single_ctl_with_resume(mixer
, 0,
402 snd_audigy2nx_led_resume
,
410 static void snd_audigy2nx_proc_read(struct snd_info_entry
*entry
,
411 struct snd_info_buffer
*buffer
)
413 static const struct sb_jack
{
416 } jacks_audigy2nx
[] = {
422 }, jacks_live24ext
[] = {
423 {4, "line in"}, /* &1=Line, &2=Mic*/
424 {3, "hph out"}, /* headphones */
425 {0, "RC "}, /* last command, 6 bytes see rc_config above */
428 const struct sb_jack
*jacks
;
429 struct usb_mixer_interface
*mixer
= entry
->private_data
;
433 snd_iprintf(buffer
, "%s jacks\n\n", mixer
->chip
->card
->shortname
);
434 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3020))
435 jacks
= jacks_audigy2nx
;
436 else if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
437 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048))
438 jacks
= jacks_live24ext
;
442 for (i
= 0; jacks
[i
].name
; ++i
) {
443 snd_iprintf(buffer
, "%s: ", jacks
[i
].name
);
444 down_read(&mixer
->chip
->shutdown_rwsem
);
445 if (mixer
->chip
->shutdown
)
448 err
= snd_usb_ctl_msg(mixer
->chip
->dev
,
449 usb_rcvctrlpipe(mixer
->chip
->dev
, 0),
450 UAC_GET_MEM
, USB_DIR_IN
| USB_TYPE_CLASS
|
451 USB_RECIP_INTERFACE
, 0,
452 jacks
[i
].unitid
<< 8, buf
, 3);
453 up_read(&mixer
->chip
->shutdown_rwsem
);
454 if (err
== 3 && (buf
[0] == 3 || buf
[0] == 6))
455 snd_iprintf(buffer
, "%02x %02x\n", buf
[1], buf
[2]);
457 snd_iprintf(buffer
, "?\n");
462 static int snd_emu0204_ch_switch_info(struct snd_kcontrol
*kcontrol
,
463 struct snd_ctl_elem_info
*uinfo
)
465 static const char * const texts
[2] = {"1/2", "3/4"};
467 return snd_ctl_enum_info(uinfo
, 1, ARRAY_SIZE(texts
), texts
);
470 static int snd_emu0204_ch_switch_get(struct snd_kcontrol
*kcontrol
,
471 struct snd_ctl_elem_value
*ucontrol
)
473 ucontrol
->value
.enumerated
.item
[0] = kcontrol
->private_value
;
477 static int snd_emu0204_ch_switch_update(struct usb_mixer_interface
*mixer
,
480 struct snd_usb_audio
*chip
= mixer
->chip
;
482 unsigned char buf
[2];
484 down_read(&chip
->shutdown_rwsem
);
485 if (mixer
->chip
->shutdown
) {
491 buf
[1] = value
? 0x02 : 0x01;
492 err
= snd_usb_ctl_msg(chip
->dev
,
493 usb_sndctrlpipe(chip
->dev
, 0), UAC_SET_CUR
,
494 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_OUT
,
495 0x0400, 0x0e00, buf
, 2);
497 up_read(&chip
->shutdown_rwsem
);
501 static int snd_emu0204_ch_switch_put(struct snd_kcontrol
*kcontrol
,
502 struct snd_ctl_elem_value
*ucontrol
)
504 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
505 struct usb_mixer_interface
*mixer
= list
->mixer
;
506 unsigned int value
= ucontrol
->value
.enumerated
.item
[0];
512 if (value
== kcontrol
->private_value
)
515 kcontrol
->private_value
= value
;
516 err
= snd_emu0204_ch_switch_update(mixer
, value
);
517 return err
< 0 ? err
: 1;
520 static int snd_emu0204_ch_switch_resume(struct usb_mixer_elem_list
*list
)
522 return snd_emu0204_ch_switch_update(list
->mixer
,
523 list
->kctl
->private_value
);
526 static struct snd_kcontrol_new snd_emu0204_control
= {
527 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
528 .name
= "Front Jack Channels",
529 .info
= snd_emu0204_ch_switch_info
,
530 .get
= snd_emu0204_ch_switch_get
,
531 .put
= snd_emu0204_ch_switch_put
,
535 static int snd_emu0204_controls_create(struct usb_mixer_interface
*mixer
)
537 return add_single_ctl_with_resume(mixer
, 0,
538 snd_emu0204_ch_switch_resume
,
539 &snd_emu0204_control
, NULL
);
542 /* ASUS Xonar U1 / U3 controls */
544 static int snd_xonar_u1_switch_get(struct snd_kcontrol
*kcontrol
,
545 struct snd_ctl_elem_value
*ucontrol
)
547 ucontrol
->value
.integer
.value
[0] = !!(kcontrol
->private_value
& 0x02);
551 static int snd_xonar_u1_switch_update(struct usb_mixer_interface
*mixer
,
552 unsigned char status
)
554 struct snd_usb_audio
*chip
= mixer
->chip
;
557 down_read(&chip
->shutdown_rwsem
);
561 err
= snd_usb_ctl_msg(chip
->dev
,
562 usb_sndctrlpipe(chip
->dev
, 0), 0x08,
563 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
565 up_read(&chip
->shutdown_rwsem
);
569 static int snd_xonar_u1_switch_put(struct snd_kcontrol
*kcontrol
,
570 struct snd_ctl_elem_value
*ucontrol
)
572 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
573 u8 old_status
, new_status
;
576 old_status
= kcontrol
->private_value
;
577 if (ucontrol
->value
.integer
.value
[0])
578 new_status
= old_status
| 0x02;
580 new_status
= old_status
& ~0x02;
581 if (new_status
== old_status
)
584 kcontrol
->private_value
= new_status
;
585 err
= snd_xonar_u1_switch_update(list
->mixer
, new_status
);
586 return err
< 0 ? err
: 1;
589 static int snd_xonar_u1_switch_resume(struct usb_mixer_elem_list
*list
)
591 return snd_xonar_u1_switch_update(list
->mixer
,
592 list
->kctl
->private_value
);
595 static struct snd_kcontrol_new snd_xonar_u1_output_switch
= {
596 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
597 .name
= "Digital Playback Switch",
598 .info
= snd_ctl_boolean_mono_info
,
599 .get
= snd_xonar_u1_switch_get
,
600 .put
= snd_xonar_u1_switch_put
,
601 .private_value
= 0x05,
604 static int snd_xonar_u1_controls_create(struct usb_mixer_interface
*mixer
)
606 return add_single_ctl_with_resume(mixer
, 0,
607 snd_xonar_u1_switch_resume
,
608 &snd_xonar_u1_output_switch
, NULL
);
611 /* Digidesign Mbox 1 clock source switch (internal/spdif) */
613 static int snd_mbox1_switch_get(struct snd_kcontrol
*kctl
,
614 struct snd_ctl_elem_value
*ucontrol
)
616 ucontrol
->value
.enumerated
.item
[0] = kctl
->private_value
;
620 static int snd_mbox1_switch_update(struct usb_mixer_interface
*mixer
, int val
)
622 struct snd_usb_audio
*chip
= mixer
->chip
;
624 unsigned char buff
[3];
626 down_read(&chip
->shutdown_rwsem
);
627 if (chip
->shutdown
) {
632 /* Prepare for magic command to toggle clock source */
633 err
= snd_usb_ctl_msg(chip
->dev
,
634 usb_rcvctrlpipe(chip
->dev
, 0), 0x81,
637 USB_RECIP_INTERFACE
, 0x00, 0x500, buff
, 1);
640 err
= snd_usb_ctl_msg(chip
->dev
,
641 usb_rcvctrlpipe(chip
->dev
, 0), 0x81,
644 USB_RECIP_ENDPOINT
, 0x100, 0x81, buff
, 3);
648 /* 2 possibilities: Internal -> send sample rate
649 * S/PDIF sync -> send zeroes
650 * NB: Sample rate locked to 48kHz on purpose to
651 * prevent user from resetting the sample rate
652 * while S/PDIF sync is enabled and confusing
653 * this configuration.
660 buff
[0] = buff
[1] = buff
[2] = 0x00;
663 /* Send the magic command to toggle the clock source */
664 err
= snd_usb_ctl_msg(chip
->dev
,
665 usb_sndctrlpipe(chip
->dev
, 0), 0x1,
667 USB_RECIP_ENDPOINT
, 0x100, 0x81, buff
, 3);
670 err
= snd_usb_ctl_msg(chip
->dev
,
671 usb_rcvctrlpipe(chip
->dev
, 0), 0x81,
674 USB_RECIP_ENDPOINT
, 0x100, 0x81, buff
, 3);
677 err
= snd_usb_ctl_msg(chip
->dev
,
678 usb_rcvctrlpipe(chip
->dev
, 0), 0x81,
681 USB_RECIP_ENDPOINT
, 0x100, 0x2, buff
, 3);
686 up_read(&chip
->shutdown_rwsem
);
690 static int snd_mbox1_switch_put(struct snd_kcontrol
*kctl
,
691 struct snd_ctl_elem_value
*ucontrol
)
693 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kctl
);
694 struct usb_mixer_interface
*mixer
= list
->mixer
;
696 bool cur_val
, new_val
;
698 cur_val
= kctl
->private_value
;
699 new_val
= ucontrol
->value
.enumerated
.item
[0];
700 if (cur_val
== new_val
)
703 kctl
->private_value
= new_val
;
704 err
= snd_mbox1_switch_update(mixer
, new_val
);
705 return err
< 0 ? err
: 1;
708 static int snd_mbox1_switch_info(struct snd_kcontrol
*kcontrol
,
709 struct snd_ctl_elem_info
*uinfo
)
711 static const char *const texts
[2] = {
716 return snd_ctl_enum_info(uinfo
, 1, ARRAY_SIZE(texts
), texts
);
719 static int snd_mbox1_switch_resume(struct usb_mixer_elem_list
*list
)
721 return snd_mbox1_switch_update(list
->mixer
, list
->kctl
->private_value
);
724 static struct snd_kcontrol_new snd_mbox1_switch
= {
725 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
726 .name
= "Clock Source",
728 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
729 .info
= snd_mbox1_switch_info
,
730 .get
= snd_mbox1_switch_get
,
731 .put
= snd_mbox1_switch_put
,
735 static int snd_mbox1_create_sync_switch(struct usb_mixer_interface
*mixer
)
737 return add_single_ctl_with_resume(mixer
, 0,
738 snd_mbox1_switch_resume
,
739 &snd_mbox1_switch
, NULL
);
742 /* Native Instruments device quirks */
744 #define _MAKE_NI_CONTROL(bRequest,wIndex) ((bRequest) << 16 | (wIndex))
746 static int snd_ni_control_init_val(struct usb_mixer_interface
*mixer
,
747 struct snd_kcontrol
*kctl
)
749 struct usb_device
*dev
= mixer
->chip
->dev
;
750 unsigned int pval
= kctl
->private_value
;
754 err
= snd_usb_ctl_msg(dev
, usb_rcvctrlpipe(dev
, 0),
756 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
,
757 0, pval
& 0xffff, &value
, 1);
760 "unable to issue vendor read request (ret = %d)", err
);
764 kctl
->private_value
|= (value
<< 24);
768 static int snd_nativeinstruments_control_get(struct snd_kcontrol
*kcontrol
,
769 struct snd_ctl_elem_value
*ucontrol
)
771 ucontrol
->value
.integer
.value
[0] = kcontrol
->private_value
>> 24;
775 static int snd_ni_update_cur_val(struct usb_mixer_elem_list
*list
)
777 struct snd_usb_audio
*chip
= list
->mixer
->chip
;
778 unsigned int pval
= list
->kctl
->private_value
;
781 down_read(&chip
->shutdown_rwsem
);
785 err
= usb_control_msg(chip
->dev
, usb_sndctrlpipe(chip
->dev
, 0),
787 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
,
788 pval
>> 24, pval
& 0xffff, NULL
, 0, 1000);
789 up_read(&chip
->shutdown_rwsem
);
793 static int snd_nativeinstruments_control_put(struct snd_kcontrol
*kcontrol
,
794 struct snd_ctl_elem_value
*ucontrol
)
796 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
797 u8 oldval
= (kcontrol
->private_value
>> 24) & 0xff;
798 u8 newval
= ucontrol
->value
.integer
.value
[0];
801 if (oldval
== newval
)
804 kcontrol
->private_value
&= ~(0xff << 24);
805 kcontrol
->private_value
|= newval
;
806 err
= snd_ni_update_cur_val(list
);
807 return err
< 0 ? err
: 1;
810 static struct snd_kcontrol_new snd_nativeinstruments_ta6_mixers
[] = {
812 .name
= "Direct Thru Channel A",
813 .private_value
= _MAKE_NI_CONTROL(0x01, 0x03),
816 .name
= "Direct Thru Channel B",
817 .private_value
= _MAKE_NI_CONTROL(0x01, 0x05),
820 .name
= "Phono Input Channel A",
821 .private_value
= _MAKE_NI_CONTROL(0x02, 0x03),
824 .name
= "Phono Input Channel B",
825 .private_value
= _MAKE_NI_CONTROL(0x02, 0x05),
829 static struct snd_kcontrol_new snd_nativeinstruments_ta10_mixers
[] = {
831 .name
= "Direct Thru Channel A",
832 .private_value
= _MAKE_NI_CONTROL(0x01, 0x03),
835 .name
= "Direct Thru Channel B",
836 .private_value
= _MAKE_NI_CONTROL(0x01, 0x05),
839 .name
= "Direct Thru Channel C",
840 .private_value
= _MAKE_NI_CONTROL(0x01, 0x07),
843 .name
= "Direct Thru Channel D",
844 .private_value
= _MAKE_NI_CONTROL(0x01, 0x09),
847 .name
= "Phono Input Channel A",
848 .private_value
= _MAKE_NI_CONTROL(0x02, 0x03),
851 .name
= "Phono Input Channel B",
852 .private_value
= _MAKE_NI_CONTROL(0x02, 0x05),
855 .name
= "Phono Input Channel C",
856 .private_value
= _MAKE_NI_CONTROL(0x02, 0x07),
859 .name
= "Phono Input Channel D",
860 .private_value
= _MAKE_NI_CONTROL(0x02, 0x09),
864 static int snd_nativeinstruments_create_mixer(struct usb_mixer_interface
*mixer
,
865 const struct snd_kcontrol_new
*kc
,
869 struct snd_kcontrol_new
template = {
870 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
871 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
872 .get
= snd_nativeinstruments_control_get
,
873 .put
= snd_nativeinstruments_control_put
,
874 .info
= snd_ctl_boolean_mono_info
,
877 for (i
= 0; i
< count
; i
++) {
878 struct usb_mixer_elem_list
*list
;
880 template.name
= kc
[i
].name
;
881 template.private_value
= kc
[i
].private_value
;
883 err
= add_single_ctl_with_resume(mixer
, 0,
884 snd_ni_update_cur_val
,
888 snd_ni_control_init_val(mixer
, list
->kctl
);
894 /* M-Audio FastTrack Ultra quirks */
895 /* FTU Effect switch (also used by C400/C600) */
896 static int snd_ftu_eff_switch_info(struct snd_kcontrol
*kcontrol
,
897 struct snd_ctl_elem_info
*uinfo
)
899 static const char *const texts
[8] = {
900 "Room 1", "Room 2", "Room 3", "Hall 1",
901 "Hall 2", "Plate", "Delay", "Echo"
904 return snd_ctl_enum_info(uinfo
, 1, ARRAY_SIZE(texts
), texts
);
907 static int snd_ftu_eff_switch_init(struct usb_mixer_interface
*mixer
,
908 struct snd_kcontrol
*kctl
)
910 struct usb_device
*dev
= mixer
->chip
->dev
;
911 unsigned int pval
= kctl
->private_value
;
913 unsigned char value
[2];
918 err
= snd_usb_ctl_msg(dev
, usb_rcvctrlpipe(dev
, 0), UAC_GET_CUR
,
919 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_IN
,
921 snd_usb_ctrl_intf(mixer
->chip
) | ((pval
& 0xff) << 8),
926 kctl
->private_value
|= value
[0] << 24;
930 static int snd_ftu_eff_switch_get(struct snd_kcontrol
*kctl
,
931 struct snd_ctl_elem_value
*ucontrol
)
933 ucontrol
->value
.enumerated
.item
[0] = kctl
->private_value
>> 24;
937 static int snd_ftu_eff_switch_update(struct usb_mixer_elem_list
*list
)
939 struct snd_usb_audio
*chip
= list
->mixer
->chip
;
940 unsigned int pval
= list
->kctl
->private_value
;
941 unsigned char value
[2];
944 value
[0] = pval
>> 24;
947 down_read(&chip
->shutdown_rwsem
);
951 err
= snd_usb_ctl_msg(chip
->dev
,
952 usb_sndctrlpipe(chip
->dev
, 0),
954 USB_RECIP_INTERFACE
| USB_TYPE_CLASS
| USB_DIR_OUT
,
956 snd_usb_ctrl_intf(chip
) | ((pval
& 0xff) << 8),
958 up_read(&chip
->shutdown_rwsem
);
962 static int snd_ftu_eff_switch_put(struct snd_kcontrol
*kctl
,
963 struct snd_ctl_elem_value
*ucontrol
)
965 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kctl
);
966 unsigned int pval
= list
->kctl
->private_value
;
967 int cur_val
, err
, new_val
;
969 cur_val
= pval
>> 24;
970 new_val
= ucontrol
->value
.enumerated
.item
[0];
971 if (cur_val
== new_val
)
974 kctl
->private_value
&= ~(0xff << 24);
975 kctl
->private_value
|= new_val
<< 24;
976 err
= snd_ftu_eff_switch_update(list
);
977 return err
< 0 ? err
: 1;
980 static int snd_ftu_create_effect_switch(struct usb_mixer_interface
*mixer
,
981 int validx
, int bUnitID
)
983 static struct snd_kcontrol_new
template = {
984 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
985 .name
= "Effect Program Switch",
987 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
988 .info
= snd_ftu_eff_switch_info
,
989 .get
= snd_ftu_eff_switch_get
,
990 .put
= snd_ftu_eff_switch_put
992 struct usb_mixer_elem_list
*list
;
995 err
= add_single_ctl_with_resume(mixer
, bUnitID
,
996 snd_ftu_eff_switch_update
,
1000 list
->kctl
->private_value
= (validx
<< 8) | bUnitID
;
1001 snd_ftu_eff_switch_init(mixer
, list
->kctl
);
1005 /* Create volume controls for FTU devices*/
1006 static int snd_ftu_create_volume_ctls(struct usb_mixer_interface
*mixer
)
1009 unsigned int control
, cmask
;
1012 const unsigned int id
= 5;
1013 const int val_type
= USB_MIXER_S16
;
1015 for (out
= 0; out
< 8; out
++) {
1017 for (in
= 0; in
< 8; in
++) {
1019 snprintf(name
, sizeof(name
),
1020 "AIn%d - Out%d Capture Volume",
1022 err
= snd_create_std_mono_ctl(mixer
, id
, control
,
1023 cmask
, val_type
, name
,
1024 &snd_usb_mixer_vol_tlv
);
1028 for (in
= 8; in
< 16; in
++) {
1030 snprintf(name
, sizeof(name
),
1031 "DIn%d - Out%d Playback Volume",
1033 err
= snd_create_std_mono_ctl(mixer
, id
, control
,
1034 cmask
, val_type
, name
,
1035 &snd_usb_mixer_vol_tlv
);
1044 /* This control needs a volume quirk, see mixer.c */
1045 static int snd_ftu_create_effect_volume_ctl(struct usb_mixer_interface
*mixer
)
1047 static const char name
[] = "Effect Volume";
1048 const unsigned int id
= 6;
1049 const int val_type
= USB_MIXER_U8
;
1050 const unsigned int control
= 2;
1051 const unsigned int cmask
= 0;
1053 return snd_create_std_mono_ctl(mixer
, id
, control
, cmask
, val_type
,
1054 name
, snd_usb_mixer_vol_tlv
);
1057 /* This control needs a volume quirk, see mixer.c */
1058 static int snd_ftu_create_effect_duration_ctl(struct usb_mixer_interface
*mixer
)
1060 static const char name
[] = "Effect Duration";
1061 const unsigned int id
= 6;
1062 const int val_type
= USB_MIXER_S16
;
1063 const unsigned int control
= 3;
1064 const unsigned int cmask
= 0;
1066 return snd_create_std_mono_ctl(mixer
, id
, control
, cmask
, val_type
,
1067 name
, snd_usb_mixer_vol_tlv
);
1070 /* This control needs a volume quirk, see mixer.c */
1071 static int snd_ftu_create_effect_feedback_ctl(struct usb_mixer_interface
*mixer
)
1073 static const char name
[] = "Effect Feedback Volume";
1074 const unsigned int id
= 6;
1075 const int val_type
= USB_MIXER_U8
;
1076 const unsigned int control
= 4;
1077 const unsigned int cmask
= 0;
1079 return snd_create_std_mono_ctl(mixer
, id
, control
, cmask
, val_type
,
1083 static int snd_ftu_create_effect_return_ctls(struct usb_mixer_interface
*mixer
)
1089 const unsigned int id
= 7;
1090 const int val_type
= USB_MIXER_S16
;
1091 const unsigned int control
= 7;
1093 for (ch
= 0; ch
< 4; ++ch
) {
1095 snprintf(name
, sizeof(name
),
1096 "Effect Return %d Volume", ch
+ 1);
1097 err
= snd_create_std_mono_ctl(mixer
, id
, control
,
1098 cmask
, val_type
, name
,
1099 snd_usb_mixer_vol_tlv
);
1107 static int snd_ftu_create_effect_send_ctls(struct usb_mixer_interface
*mixer
)
1113 const unsigned int id
= 5;
1114 const int val_type
= USB_MIXER_S16
;
1115 const unsigned int control
= 9;
1117 for (ch
= 0; ch
< 8; ++ch
) {
1119 snprintf(name
, sizeof(name
),
1120 "Effect Send AIn%d Volume", ch
+ 1);
1121 err
= snd_create_std_mono_ctl(mixer
, id
, control
, cmask
,
1123 snd_usb_mixer_vol_tlv
);
1127 for (ch
= 8; ch
< 16; ++ch
) {
1129 snprintf(name
, sizeof(name
),
1130 "Effect Send DIn%d Volume", ch
- 7);
1131 err
= snd_create_std_mono_ctl(mixer
, id
, control
, cmask
,
1133 snd_usb_mixer_vol_tlv
);
1140 static int snd_ftu_create_mixer(struct usb_mixer_interface
*mixer
)
1144 err
= snd_ftu_create_volume_ctls(mixer
);
1148 err
= snd_ftu_create_effect_switch(mixer
, 1, 6);
1152 err
= snd_ftu_create_effect_volume_ctl(mixer
);
1156 err
= snd_ftu_create_effect_duration_ctl(mixer
);
1160 err
= snd_ftu_create_effect_feedback_ctl(mixer
);
1164 err
= snd_ftu_create_effect_return_ctls(mixer
);
1168 err
= snd_ftu_create_effect_send_ctls(mixer
);
1175 void snd_emuusb_set_samplerate(struct snd_usb_audio
*chip
,
1176 unsigned char samplerate_id
)
1178 struct usb_mixer_interface
*mixer
;
1179 struct usb_mixer_elem_info
*cval
;
1180 int unitid
= 12; /* SamleRate ExtensionUnit ID */
1182 list_for_each_entry(mixer
, &chip
->mixer_list
, list
) {
1183 cval
= (struct usb_mixer_elem_info
*)mixer
->id_elems
[unitid
];
1185 snd_usb_mixer_set_ctl_value(cval
, UAC_SET_CUR
,
1188 snd_usb_mixer_notify_id(mixer
, unitid
);
1194 /* M-Audio Fast Track C400/C600 */
1195 /* C400/C600 volume controls, this control needs a volume quirk, see mixer.c */
1196 static int snd_c400_create_vol_ctls(struct usb_mixer_interface
*mixer
)
1199 unsigned int cmask
, offset
;
1204 const unsigned int id
= 0x40;
1205 const int val_type
= USB_MIXER_S16
;
1206 const int control
= 1;
1208 switch (mixer
->chip
->usb_id
) {
1209 case USB_ID(0x0763, 0x2030):
1213 case USB_ID(0x0763, 0x2031):
1219 for (chan
= 0; chan
< num_outs
+ num_ins
; chan
++) {
1220 for (out
= 0; out
< num_outs
; out
++) {
1221 if (chan
< num_outs
) {
1222 snprintf(name
, sizeof(name
),
1223 "PCM%d-Out%d Playback Volume",
1226 snprintf(name
, sizeof(name
),
1227 "In%d-Out%d Playback Volume",
1228 chan
- num_outs
+ 1, out
+ 1);
1231 cmask
= (out
== 0) ? 0 : 1 << (out
- 1);
1232 offset
= chan
* num_outs
;
1233 err
= snd_create_std_mono_ctl_offset(mixer
, id
, control
,
1234 cmask
, val_type
, offset
, name
,
1235 &snd_usb_mixer_vol_tlv
);
1244 /* This control needs a volume quirk, see mixer.c */
1245 static int snd_c400_create_effect_volume_ctl(struct usb_mixer_interface
*mixer
)
1247 static const char name
[] = "Effect Volume";
1248 const unsigned int id
= 0x43;
1249 const int val_type
= USB_MIXER_U8
;
1250 const unsigned int control
= 3;
1251 const unsigned int cmask
= 0;
1253 return snd_create_std_mono_ctl(mixer
, id
, control
, cmask
, val_type
,
1254 name
, snd_usb_mixer_vol_tlv
);
1257 /* This control needs a volume quirk, see mixer.c */
1258 static int snd_c400_create_effect_duration_ctl(struct usb_mixer_interface
*mixer
)
1260 static const char name
[] = "Effect Duration";
1261 const unsigned int id
= 0x43;
1262 const int val_type
= USB_MIXER_S16
;
1263 const unsigned int control
= 4;
1264 const unsigned int cmask
= 0;
1266 return snd_create_std_mono_ctl(mixer
, id
, control
, cmask
, val_type
,
1267 name
, snd_usb_mixer_vol_tlv
);
1270 /* This control needs a volume quirk, see mixer.c */
1271 static int snd_c400_create_effect_feedback_ctl(struct usb_mixer_interface
*mixer
)
1273 static const char name
[] = "Effect Feedback Volume";
1274 const unsigned int id
= 0x43;
1275 const int val_type
= USB_MIXER_U8
;
1276 const unsigned int control
= 5;
1277 const unsigned int cmask
= 0;
1279 return snd_create_std_mono_ctl(mixer
, id
, control
, cmask
, val_type
,
1283 static int snd_c400_create_effect_vol_ctls(struct usb_mixer_interface
*mixer
)
1291 const unsigned int id
= 0x42;
1292 const int val_type
= USB_MIXER_S16
;
1293 const int control
= 1;
1295 switch (mixer
->chip
->usb_id
) {
1296 case USB_ID(0x0763, 0x2030):
1300 case USB_ID(0x0763, 0x2031):
1306 for (chan
= 0; chan
< num_outs
+ num_ins
; chan
++) {
1307 if (chan
< num_outs
) {
1308 snprintf(name
, sizeof(name
),
1309 "Effect Send DOut%d",
1312 snprintf(name
, sizeof(name
),
1313 "Effect Send AIn%d",
1314 chan
- num_outs
+ 1);
1317 cmask
= (chan
== 0) ? 0 : 1 << (chan
- 1);
1318 err
= snd_create_std_mono_ctl(mixer
, id
, control
,
1319 cmask
, val_type
, name
,
1320 &snd_usb_mixer_vol_tlv
);
1328 static int snd_c400_create_effect_ret_vol_ctls(struct usb_mixer_interface
*mixer
)
1336 const unsigned int id
= 0x40;
1337 const int val_type
= USB_MIXER_S16
;
1338 const int control
= 1;
1340 switch (mixer
->chip
->usb_id
) {
1341 case USB_ID(0x0763, 0x2030):
1344 /* { 0x3c, 0x43, 0x3e, 0x45, 0x40, 0x47 } */
1346 case USB_ID(0x0763, 0x2031):
1349 /* { 0x70, 0x79, 0x72, 0x7b, 0x74, 0x7d, 0x76, 0x7f } */
1353 for (chan
= 0; chan
< num_outs
; chan
++) {
1354 snprintf(name
, sizeof(name
),
1358 cmask
= (chan
== 0) ? 0 :
1359 1 << (chan
+ (chan
% 2) * num_outs
- 1);
1360 err
= snd_create_std_mono_ctl_offset(mixer
, id
, control
,
1361 cmask
, val_type
, offset
, name
,
1362 &snd_usb_mixer_vol_tlv
);
1370 static int snd_c400_create_mixer(struct usb_mixer_interface
*mixer
)
1374 err
= snd_c400_create_vol_ctls(mixer
);
1378 err
= snd_c400_create_effect_vol_ctls(mixer
);
1382 err
= snd_c400_create_effect_ret_vol_ctls(mixer
);
1386 err
= snd_ftu_create_effect_switch(mixer
, 2, 0x43);
1390 err
= snd_c400_create_effect_volume_ctl(mixer
);
1394 err
= snd_c400_create_effect_duration_ctl(mixer
);
1398 err
= snd_c400_create_effect_feedback_ctl(mixer
);
1406 * The mixer units for Ebox-44 are corrupt, and even where they
1407 * are valid they presents mono controls as L and R channels of
1408 * stereo. So we provide a good mixer here.
1410 static struct std_mono_table ebox44_table
[] = {
1415 .val_type
= USB_MIXER_INV_BOOLEAN
,
1416 .name
= "Headphone Playback Switch"
1422 .val_type
= USB_MIXER_S16
,
1423 .name
= "Headphone A Mix Playback Volume"
1429 .val_type
= USB_MIXER_S16
,
1430 .name
= "Headphone B Mix Playback Volume"
1437 .val_type
= USB_MIXER_INV_BOOLEAN
,
1438 .name
= "Output Playback Switch"
1444 .val_type
= USB_MIXER_S16
,
1445 .name
= "Output A Playback Volume"
1451 .val_type
= USB_MIXER_S16
,
1452 .name
= "Output B Playback Volume"
1459 .val_type
= USB_MIXER_INV_BOOLEAN
,
1460 .name
= "Input Capture Switch"
1466 .val_type
= USB_MIXER_S16
,
1467 .name
= "Input A Capture Volume"
1473 .val_type
= USB_MIXER_S16
,
1474 .name
= "Input B Capture Volume"
1480 /* Audio Advantage Micro II findings:
1482 * Mapping spdif AES bits to vendor register.bit:
1483 * AES0: [0 0 0 0 2.3 2.2 2.1 2.0] - default 0x00
1484 * AES1: [3.3 3.2.3.1.3.0 2.7 2.6 2.5 2.4] - default: 0x01
1485 * AES2: [0 0 0 0 0 0 0 0]
1486 * AES3: [0 0 0 0 0 0 x 0] - 'x' bit is set basing on standard usb request
1487 * (UAC_EP_CS_ATTR_SAMPLE_RATE) for Audio Devices
1491 * r3: 0x20 (b7 is zeroed just before playback (except IEC61937) and set
1492 * just after it to 0xa0, presumably it disables/mutes some analog
1493 * parts when there is no audio.)
1496 * Optical transmitter on/off:
1497 * vendor register.bit: 9.1
1498 * 0 - on (0x28 register value)
1499 * 1 - off (0x2a register value)
1502 static int snd_microii_spdif_info(struct snd_kcontrol
*kcontrol
,
1503 struct snd_ctl_elem_info
*uinfo
)
1505 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1510 static int snd_microii_spdif_default_get(struct snd_kcontrol
*kcontrol
,
1511 struct snd_ctl_elem_value
*ucontrol
)
1513 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
1514 struct snd_usb_audio
*chip
= list
->mixer
->chip
;
1516 struct usb_interface
*iface
;
1517 struct usb_host_interface
*alts
;
1519 unsigned char data
[3];
1522 down_read(&chip
->shutdown_rwsem
);
1523 if (chip
->shutdown
) {
1528 ucontrol
->value
.iec958
.status
[0] = kcontrol
->private_value
& 0xff;
1529 ucontrol
->value
.iec958
.status
[1] = (kcontrol
->private_value
>> 8) & 0xff;
1530 ucontrol
->value
.iec958
.status
[2] = 0x00;
1532 /* use known values for that card: interface#1 altsetting#1 */
1533 iface
= usb_ifnum_to_if(chip
->dev
, 1);
1534 alts
= &iface
->altsetting
[1];
1535 ep
= get_endpoint(alts
, 0)->bEndpointAddress
;
1537 err
= snd_usb_ctl_msg(chip
->dev
,
1538 usb_rcvctrlpipe(chip
->dev
, 0),
1540 USB_TYPE_CLASS
| USB_RECIP_ENDPOINT
| USB_DIR_IN
,
1541 UAC_EP_CS_ATTR_SAMPLE_RATE
<< 8,
1548 rate
= data
[0] | (data
[1] << 8) | (data
[2] << 16);
1549 ucontrol
->value
.iec958
.status
[3] = (rate
== 48000) ?
1550 IEC958_AES3_CON_FS_48000
: IEC958_AES3_CON_FS_44100
;
1554 up_read(&chip
->shutdown_rwsem
);
1558 static int snd_microii_spdif_default_update(struct usb_mixer_elem_list
*list
)
1560 struct snd_usb_audio
*chip
= list
->mixer
->chip
;
1561 unsigned int pval
= list
->kctl
->private_value
;
1565 down_read(&chip
->shutdown_rwsem
);
1566 if (chip
->shutdown
) {
1571 reg
= ((pval
>> 4) & 0xf0) | (pval
& 0x0f);
1572 err
= snd_usb_ctl_msg(chip
->dev
,
1573 usb_sndctrlpipe(chip
->dev
, 0),
1575 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
1583 reg
= (pval
& IEC958_AES0_NONAUDIO
) ? 0xa0 : 0x20;
1584 reg
|= (pval
>> 12) & 0x0f;
1585 err
= snd_usb_ctl_msg(chip
->dev
,
1586 usb_sndctrlpipe(chip
->dev
, 0),
1588 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
1597 up_read(&chip
->shutdown_rwsem
);
1601 static int snd_microii_spdif_default_put(struct snd_kcontrol
*kcontrol
,
1602 struct snd_ctl_elem_value
*ucontrol
)
1604 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
1605 unsigned int pval
, pval_old
;
1608 pval
= pval_old
= kcontrol
->private_value
;
1610 pval
|= (ucontrol
->value
.iec958
.status
[1] & 0x0f) << 8;
1611 pval
|= (ucontrol
->value
.iec958
.status
[0] & 0x0f);
1614 pval
|= (ucontrol
->value
.iec958
.status
[1] & 0xf0) << 8;
1616 /* The frequency bits in AES3 cannot be set via register access. */
1618 /* Silently ignore any bits from the request that cannot be set. */
1620 if (pval
== pval_old
)
1623 kcontrol
->private_value
= pval
;
1624 err
= snd_microii_spdif_default_update(list
);
1625 return err
< 0 ? err
: 1;
1628 static int snd_microii_spdif_mask_get(struct snd_kcontrol
*kcontrol
,
1629 struct snd_ctl_elem_value
*ucontrol
)
1631 ucontrol
->value
.iec958
.status
[0] = 0x0f;
1632 ucontrol
->value
.iec958
.status
[1] = 0xff;
1633 ucontrol
->value
.iec958
.status
[2] = 0x00;
1634 ucontrol
->value
.iec958
.status
[3] = 0x00;
1639 static int snd_microii_spdif_switch_get(struct snd_kcontrol
*kcontrol
,
1640 struct snd_ctl_elem_value
*ucontrol
)
1642 ucontrol
->value
.integer
.value
[0] = !(kcontrol
->private_value
& 0x02);
1647 static int snd_microii_spdif_switch_update(struct usb_mixer_elem_list
*list
)
1649 struct snd_usb_audio
*chip
= list
->mixer
->chip
;
1650 u8 reg
= list
->kctl
->private_value
;
1653 down_read(&chip
->shutdown_rwsem
);
1654 if (chip
->shutdown
) {
1659 err
= snd_usb_ctl_msg(chip
->dev
,
1660 usb_sndctrlpipe(chip
->dev
, 0),
1662 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
1669 up_read(&chip
->shutdown_rwsem
);
1673 static int snd_microii_spdif_switch_put(struct snd_kcontrol
*kcontrol
,
1674 struct snd_ctl_elem_value
*ucontrol
)
1676 struct usb_mixer_elem_list
*list
= snd_kcontrol_chip(kcontrol
);
1680 reg
= ucontrol
->value
.integer
.value
[0] ? 0x28 : 0x2a;
1681 if (reg
!= list
->kctl
->private_value
)
1684 kcontrol
->private_value
= reg
;
1685 err
= snd_microii_spdif_switch_update(list
);
1686 return err
< 0 ? err
: 1;
1689 static struct snd_kcontrol_new snd_microii_mixer_spdif
[] = {
1691 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1692 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, DEFAULT
),
1693 .info
= snd_microii_spdif_info
,
1694 .get
= snd_microii_spdif_default_get
,
1695 .put
= snd_microii_spdif_default_put
,
1696 .private_value
= 0x00000100UL
,/* reset value */
1699 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1700 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1701 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, MASK
),
1702 .info
= snd_microii_spdif_info
,
1703 .get
= snd_microii_spdif_mask_get
,
1706 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1707 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, SWITCH
),
1708 .info
= snd_ctl_boolean_mono_info
,
1709 .get
= snd_microii_spdif_switch_get
,
1710 .put
= snd_microii_spdif_switch_put
,
1711 .private_value
= 0x00000028UL
,/* reset value */
1715 static int snd_microii_controls_create(struct usb_mixer_interface
*mixer
)
1718 static usb_mixer_elem_resume_func_t resume_funcs
[] = {
1719 snd_microii_spdif_default_update
,
1721 snd_microii_spdif_switch_update
1724 for (i
= 0; i
< ARRAY_SIZE(snd_microii_mixer_spdif
); ++i
) {
1725 err
= add_single_ctl_with_resume(mixer
, 0,
1727 &snd_microii_mixer_spdif
[i
],
1736 int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface
*mixer
)
1739 struct snd_info_entry
*entry
;
1741 if ((err
= snd_usb_soundblaster_remote_init(mixer
)) < 0)
1744 switch (mixer
->chip
->usb_id
) {
1745 case USB_ID(0x041e, 0x3020):
1746 case USB_ID(0x041e, 0x3040):
1747 case USB_ID(0x041e, 0x3042):
1748 case USB_ID(0x041e, 0x30df):
1749 case USB_ID(0x041e, 0x3048):
1750 err
= snd_audigy2nx_controls_create(mixer
);
1753 if (!snd_card_proc_new(mixer
->chip
->card
, "audigy2nx", &entry
))
1754 snd_info_set_text_ops(entry
, mixer
,
1755 snd_audigy2nx_proc_read
);
1759 case USB_ID(0x041e, 0x3f19):
1760 err
= snd_emu0204_controls_create(mixer
);
1765 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
1766 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C400 */
1767 err
= snd_c400_create_mixer(mixer
);
1770 case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
1771 case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
1772 err
= snd_ftu_create_mixer(mixer
);
1775 case USB_ID(0x0b05, 0x1739): /* ASUS Xonar U1 */
1776 case USB_ID(0x0b05, 0x1743): /* ASUS Xonar U1 (2) */
1777 case USB_ID(0x0b05, 0x17a0): /* ASUS Xonar U3 */
1778 err
= snd_xonar_u1_controls_create(mixer
);
1781 case USB_ID(0x0d8c, 0x0103): /* Audio Advantage Micro II */
1782 err
= snd_microii_controls_create(mixer
);
1785 case USB_ID(0x0dba, 0x1000): /* Digidesign Mbox 1 */
1786 err
= snd_mbox1_create_sync_switch(mixer
);
1789 case USB_ID(0x17cc, 0x1011): /* Traktor Audio 6 */
1790 err
= snd_nativeinstruments_create_mixer(mixer
,
1791 snd_nativeinstruments_ta6_mixers
,
1792 ARRAY_SIZE(snd_nativeinstruments_ta6_mixers
));
1795 case USB_ID(0x17cc, 0x1021): /* Traktor Audio 10 */
1796 err
= snd_nativeinstruments_create_mixer(mixer
,
1797 snd_nativeinstruments_ta10_mixers
,
1798 ARRAY_SIZE(snd_nativeinstruments_ta10_mixers
));
1801 case USB_ID(0x200c, 0x1018): /* Electrix Ebox-44 */
1802 /* detection is disabled in mixer_maps.c */
1803 err
= snd_create_std_mono_table(mixer
, ebox44_table
);
1806 case USB_ID(0x1235, 0x8012): /* Focusrite Scarlett 6i6 */
1807 case USB_ID(0x1235, 0x8002): /* Focusrite Scarlett 8i6 */
1808 case USB_ID(0x1235, 0x8004): /* Focusrite Scarlett 18i6 */
1809 case USB_ID(0x1235, 0x8014): /* Focusrite Scarlett 18i8 */
1810 case USB_ID(0x1235, 0x800c): /* Focusrite Scarlett 18i20 */
1811 err
= snd_scarlett_controls_create(mixer
);
1818 void snd_usb_mixer_rc_memory_change(struct usb_mixer_interface
*mixer
,
1823 /* unit ids specific to Extigy/Audigy 2 NX: */
1825 case 0: /* remote control */
1826 mixer
->rc_urb
->dev
= mixer
->chip
->dev
;
1827 usb_submit_urb(mixer
->rc_urb
, GFP_ATOMIC
);
1829 case 4: /* digital in jack */
1830 case 7: /* line in jacks */
1831 case 19: /* speaker out jacks */
1832 case 20: /* headphones out jack */
1834 /* live24ext: 4 = line-in jack */
1835 case 3: /* hp-out jack (may actuate Mute) */
1836 if (mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3040) ||
1837 mixer
->chip
->usb_id
== USB_ID(0x041e, 0x3048))
1838 snd_usb_mixer_notify_id(mixer
, mixer
->rc_cfg
->mute_mixer_id
);
1841 usb_audio_dbg(mixer
->chip
, "memory change in unknown unit %d\n", unitid
);