b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | /* |
| 3 | * USB Audio Driver for ALSA |
| 4 | * |
| 5 | * Quirks and vendor-specific extensions for mixer interfaces |
| 6 | * |
| 7 | * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de> |
| 8 | * |
| 9 | * Many codes borrowed from audio.c by |
| 10 | * Alan Cox (alan@lxorguk.ukuu.org.uk) |
| 11 | * Thomas Sailer (sailer@ife.ee.ethz.ch) |
| 12 | * |
| 13 | * Audio Advantage Micro II support added by: |
| 14 | * Przemek Rudy (prudy1@o2.pl) |
| 15 | */ |
| 16 | |
| 17 | #include <linux/hid.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/math64.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/usb.h> |
| 22 | #include <linux/usb/audio.h> |
| 23 | |
| 24 | #include <sound/asoundef.h> |
| 25 | #include <sound/core.h> |
| 26 | #include <sound/control.h> |
| 27 | #include <sound/hda_verbs.h> |
| 28 | #include <sound/hwdep.h> |
| 29 | #include <sound/info.h> |
| 30 | #include <sound/tlv.h> |
| 31 | |
| 32 | #include "usbaudio.h" |
| 33 | #include "mixer.h" |
| 34 | #include "mixer_quirks.h" |
| 35 | #include "mixer_scarlett.h" |
| 36 | #include "mixer_scarlett_gen2.h" |
| 37 | #include "mixer_us16x08.h" |
| 38 | #include "helper.h" |
| 39 | |
| 40 | struct std_mono_table { |
| 41 | unsigned int unitid, control, cmask; |
| 42 | int val_type; |
| 43 | const char *name; |
| 44 | snd_kcontrol_tlv_rw_t *tlv_callback; |
| 45 | }; |
| 46 | |
| 47 | /* This function allows for the creation of standard UAC controls. |
| 48 | * See the quirks for M-Audio FTUs or Ebox-44. |
| 49 | * If you don't want to set a TLV callback pass NULL. |
| 50 | * |
| 51 | * Since there doesn't seem to be a devices that needs a multichannel |
| 52 | * version, we keep it mono for simplicity. |
| 53 | */ |
| 54 | static int snd_create_std_mono_ctl_offset(struct usb_mixer_interface *mixer, |
| 55 | unsigned int unitid, |
| 56 | unsigned int control, |
| 57 | unsigned int cmask, |
| 58 | int val_type, |
| 59 | unsigned int idx_off, |
| 60 | const char *name, |
| 61 | snd_kcontrol_tlv_rw_t *tlv_callback) |
| 62 | { |
| 63 | struct usb_mixer_elem_info *cval; |
| 64 | struct snd_kcontrol *kctl; |
| 65 | |
| 66 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
| 67 | if (!cval) |
| 68 | return -ENOMEM; |
| 69 | |
| 70 | snd_usb_mixer_elem_init_std(&cval->head, mixer, unitid); |
| 71 | cval->val_type = val_type; |
| 72 | cval->channels = 1; |
| 73 | cval->control = control; |
| 74 | cval->cmask = cmask; |
| 75 | cval->idx_off = idx_off; |
| 76 | |
| 77 | /* get_min_max() is called only for integer volumes later, |
| 78 | * so provide a short-cut for booleans */ |
| 79 | cval->min = 0; |
| 80 | cval->max = 1; |
| 81 | cval->res = 0; |
| 82 | cval->dBmin = 0; |
| 83 | cval->dBmax = 0; |
| 84 | |
| 85 | /* Create control */ |
| 86 | kctl = snd_ctl_new1(snd_usb_feature_unit_ctl, cval); |
| 87 | if (!kctl) { |
| 88 | kfree(cval); |
| 89 | return -ENOMEM; |
| 90 | } |
| 91 | |
| 92 | /* Set name */ |
| 93 | snprintf(kctl->id.name, sizeof(kctl->id.name), name); |
| 94 | kctl->private_free = snd_usb_mixer_elem_free; |
| 95 | |
| 96 | /* set TLV */ |
| 97 | if (tlv_callback) { |
| 98 | kctl->tlv.c = tlv_callback; |
| 99 | kctl->vd[0].access |= |
| 100 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 101 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK; |
| 102 | } |
| 103 | /* Add control to mixer */ |
| 104 | return snd_usb_mixer_add_control(&cval->head, kctl); |
| 105 | } |
| 106 | |
| 107 | static int snd_create_std_mono_ctl(struct usb_mixer_interface *mixer, |
| 108 | unsigned int unitid, |
| 109 | unsigned int control, |
| 110 | unsigned int cmask, |
| 111 | int val_type, |
| 112 | const char *name, |
| 113 | snd_kcontrol_tlv_rw_t *tlv_callback) |
| 114 | { |
| 115 | return snd_create_std_mono_ctl_offset(mixer, unitid, control, cmask, |
| 116 | val_type, 0 /* Offset */, name, tlv_callback); |
| 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Create a set of standard UAC controls from a table |
| 121 | */ |
| 122 | static int snd_create_std_mono_table(struct usb_mixer_interface *mixer, |
| 123 | const struct std_mono_table *t) |
| 124 | { |
| 125 | int err; |
| 126 | |
| 127 | while (t->name != NULL) { |
| 128 | err = snd_create_std_mono_ctl(mixer, t->unitid, t->control, |
| 129 | t->cmask, t->val_type, t->name, t->tlv_callback); |
| 130 | if (err < 0) |
| 131 | return err; |
| 132 | t++; |
| 133 | } |
| 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static int add_single_ctl_with_resume(struct usb_mixer_interface *mixer, |
| 139 | int id, |
| 140 | usb_mixer_elem_resume_func_t resume, |
| 141 | const struct snd_kcontrol_new *knew, |
| 142 | struct usb_mixer_elem_list **listp) |
| 143 | { |
| 144 | struct usb_mixer_elem_list *list; |
| 145 | struct snd_kcontrol *kctl; |
| 146 | |
| 147 | list = kzalloc(sizeof(*list), GFP_KERNEL); |
| 148 | if (!list) |
| 149 | return -ENOMEM; |
| 150 | if (listp) |
| 151 | *listp = list; |
| 152 | list->mixer = mixer; |
| 153 | list->id = id; |
| 154 | list->resume = resume; |
| 155 | kctl = snd_ctl_new1(knew, list); |
| 156 | if (!kctl) { |
| 157 | kfree(list); |
| 158 | return -ENOMEM; |
| 159 | } |
| 160 | kctl->private_free = snd_usb_mixer_elem_free; |
| 161 | /* don't use snd_usb_mixer_add_control() here, this is a special list element */ |
| 162 | return snd_usb_mixer_add_list(list, kctl, false); |
| 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Sound Blaster remote control configuration |
| 167 | * |
| 168 | * format of remote control data: |
| 169 | * Extigy: xx 00 |
| 170 | * Audigy 2 NX: 06 80 xx 00 00 00 |
| 171 | * Live! 24-bit: 06 80 xx yy 22 83 |
| 172 | */ |
| 173 | static const struct rc_config { |
| 174 | u32 usb_id; |
| 175 | u8 offset; |
| 176 | u8 length; |
| 177 | u8 packet_length; |
| 178 | u8 min_packet_length; /* minimum accepted length of the URB result */ |
| 179 | u8 mute_mixer_id; |
| 180 | u32 mute_code; |
| 181 | } rc_configs[] = { |
| 182 | { USB_ID(0x041e, 0x3000), 0, 1, 2, 1, 18, 0x0013 }, /* Extigy */ |
| 183 | { USB_ID(0x041e, 0x3020), 2, 1, 6, 6, 18, 0x0013 }, /* Audigy 2 NX */ |
| 184 | { USB_ID(0x041e, 0x3040), 2, 2, 6, 6, 2, 0x6e91 }, /* Live! 24-bit */ |
| 185 | { USB_ID(0x041e, 0x3042), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 */ |
| 186 | { USB_ID(0x041e, 0x30df), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 Pro */ |
| 187 | { USB_ID(0x041e, 0x3237), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 Pro */ |
| 188 | { USB_ID(0x041e, 0x3263), 0, 1, 1, 1, 1, 0x000d }, /* Usb X-Fi S51 Pro */ |
| 189 | { USB_ID(0x041e, 0x3048), 2, 2, 6, 6, 2, 0x6e91 }, /* Toshiba SB0500 */ |
| 190 | }; |
| 191 | |
| 192 | static void snd_usb_soundblaster_remote_complete(struct urb *urb) |
| 193 | { |
| 194 | struct usb_mixer_interface *mixer = urb->context; |
| 195 | const struct rc_config *rc = mixer->rc_cfg; |
| 196 | u32 code; |
| 197 | |
| 198 | if (urb->status < 0 || urb->actual_length < rc->min_packet_length) |
| 199 | return; |
| 200 | |
| 201 | code = mixer->rc_buffer[rc->offset]; |
| 202 | if (rc->length == 2) |
| 203 | code |= mixer->rc_buffer[rc->offset + 1] << 8; |
| 204 | |
| 205 | /* the Mute button actually changes the mixer control */ |
| 206 | if (code == rc->mute_code) |
| 207 | snd_usb_mixer_notify_id(mixer, rc->mute_mixer_id); |
| 208 | mixer->rc_code = code; |
| 209 | wmb(); |
| 210 | wake_up(&mixer->rc_waitq); |
| 211 | } |
| 212 | |
| 213 | static long snd_usb_sbrc_hwdep_read(struct snd_hwdep *hw, char __user *buf, |
| 214 | long count, loff_t *offset) |
| 215 | { |
| 216 | struct usb_mixer_interface *mixer = hw->private_data; |
| 217 | int err; |
| 218 | u32 rc_code; |
| 219 | |
| 220 | if (count != 1 && count != 4) |
| 221 | return -EINVAL; |
| 222 | err = wait_event_interruptible(mixer->rc_waitq, |
| 223 | (rc_code = xchg(&mixer->rc_code, 0)) != 0); |
| 224 | if (err == 0) { |
| 225 | if (count == 1) |
| 226 | err = put_user(rc_code, buf); |
| 227 | else |
| 228 | err = put_user(rc_code, (u32 __user *)buf); |
| 229 | } |
| 230 | return err < 0 ? err : count; |
| 231 | } |
| 232 | |
| 233 | static __poll_t snd_usb_sbrc_hwdep_poll(struct snd_hwdep *hw, struct file *file, |
| 234 | poll_table *wait) |
| 235 | { |
| 236 | struct usb_mixer_interface *mixer = hw->private_data; |
| 237 | |
| 238 | poll_wait(file, &mixer->rc_waitq, wait); |
| 239 | return mixer->rc_code ? EPOLLIN | EPOLLRDNORM : 0; |
| 240 | } |
| 241 | |
| 242 | static int snd_usb_soundblaster_remote_init(struct usb_mixer_interface *mixer) |
| 243 | { |
| 244 | struct snd_hwdep *hwdep; |
| 245 | int err, len, i; |
| 246 | |
| 247 | for (i = 0; i < ARRAY_SIZE(rc_configs); ++i) |
| 248 | if (rc_configs[i].usb_id == mixer->chip->usb_id) |
| 249 | break; |
| 250 | if (i >= ARRAY_SIZE(rc_configs)) |
| 251 | return 0; |
| 252 | mixer->rc_cfg = &rc_configs[i]; |
| 253 | |
| 254 | len = mixer->rc_cfg->packet_length; |
| 255 | |
| 256 | init_waitqueue_head(&mixer->rc_waitq); |
| 257 | err = snd_hwdep_new(mixer->chip->card, "SB remote control", 0, &hwdep); |
| 258 | if (err < 0) |
| 259 | return err; |
| 260 | snprintf(hwdep->name, sizeof(hwdep->name), |
| 261 | "%s remote control", mixer->chip->card->shortname); |
| 262 | hwdep->iface = SNDRV_HWDEP_IFACE_SB_RC; |
| 263 | hwdep->private_data = mixer; |
| 264 | hwdep->ops.read = snd_usb_sbrc_hwdep_read; |
| 265 | hwdep->ops.poll = snd_usb_sbrc_hwdep_poll; |
| 266 | hwdep->exclusive = 1; |
| 267 | |
| 268 | mixer->rc_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 269 | if (!mixer->rc_urb) |
| 270 | return -ENOMEM; |
| 271 | mixer->rc_setup_packet = kmalloc(sizeof(*mixer->rc_setup_packet), GFP_KERNEL); |
| 272 | if (!mixer->rc_setup_packet) { |
| 273 | usb_free_urb(mixer->rc_urb); |
| 274 | mixer->rc_urb = NULL; |
| 275 | return -ENOMEM; |
| 276 | } |
| 277 | mixer->rc_setup_packet->bRequestType = |
| 278 | USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE; |
| 279 | mixer->rc_setup_packet->bRequest = UAC_GET_MEM; |
| 280 | mixer->rc_setup_packet->wValue = cpu_to_le16(0); |
| 281 | mixer->rc_setup_packet->wIndex = cpu_to_le16(0); |
| 282 | mixer->rc_setup_packet->wLength = cpu_to_le16(len); |
| 283 | usb_fill_control_urb(mixer->rc_urb, mixer->chip->dev, |
| 284 | usb_rcvctrlpipe(mixer->chip->dev, 0), |
| 285 | (u8*)mixer->rc_setup_packet, mixer->rc_buffer, len, |
| 286 | snd_usb_soundblaster_remote_complete, mixer); |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | #define snd_audigy2nx_led_info snd_ctl_boolean_mono_info |
| 291 | |
| 292 | static int snd_audigy2nx_led_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 293 | { |
| 294 | ucontrol->value.integer.value[0] = kcontrol->private_value >> 8; |
| 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | static int snd_audigy2nx_led_update(struct usb_mixer_interface *mixer, |
| 299 | int value, int index) |
| 300 | { |
| 301 | struct snd_usb_audio *chip = mixer->chip; |
| 302 | int err; |
| 303 | |
| 304 | err = snd_usb_lock_shutdown(chip); |
| 305 | if (err < 0) |
| 306 | return err; |
| 307 | |
| 308 | if (chip->usb_id == USB_ID(0x041e, 0x3042)) |
| 309 | err = snd_usb_ctl_msg(chip->dev, |
| 310 | usb_sndctrlpipe(chip->dev, 0), 0x24, |
| 311 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 312 | !value, 0, NULL, 0); |
| 313 | /* USB X-Fi S51 Pro */ |
| 314 | if (chip->usb_id == USB_ID(0x041e, 0x30df)) |
| 315 | err = snd_usb_ctl_msg(chip->dev, |
| 316 | usb_sndctrlpipe(chip->dev, 0), 0x24, |
| 317 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 318 | !value, 0, NULL, 0); |
| 319 | else |
| 320 | err = snd_usb_ctl_msg(chip->dev, |
| 321 | usb_sndctrlpipe(chip->dev, 0), 0x24, |
| 322 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 323 | value, index + 2, NULL, 0); |
| 324 | snd_usb_unlock_shutdown(chip); |
| 325 | return err; |
| 326 | } |
| 327 | |
| 328 | static int snd_audigy2nx_led_put(struct snd_kcontrol *kcontrol, |
| 329 | struct snd_ctl_elem_value *ucontrol) |
| 330 | { |
| 331 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 332 | struct usb_mixer_interface *mixer = list->mixer; |
| 333 | int index = kcontrol->private_value & 0xff; |
| 334 | unsigned int value = ucontrol->value.integer.value[0]; |
| 335 | int old_value = kcontrol->private_value >> 8; |
| 336 | int err; |
| 337 | |
| 338 | if (value > 1) |
| 339 | return -EINVAL; |
| 340 | if (value == old_value) |
| 341 | return 0; |
| 342 | kcontrol->private_value = (value << 8) | index; |
| 343 | err = snd_audigy2nx_led_update(mixer, value, index); |
| 344 | return err < 0 ? err : 1; |
| 345 | } |
| 346 | |
| 347 | static int snd_audigy2nx_led_resume(struct usb_mixer_elem_list *list) |
| 348 | { |
| 349 | int priv_value = list->kctl->private_value; |
| 350 | |
| 351 | return snd_audigy2nx_led_update(list->mixer, priv_value >> 8, |
| 352 | priv_value & 0xff); |
| 353 | } |
| 354 | |
| 355 | /* name and private_value are set dynamically */ |
| 356 | static const struct snd_kcontrol_new snd_audigy2nx_control = { |
| 357 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 358 | .info = snd_audigy2nx_led_info, |
| 359 | .get = snd_audigy2nx_led_get, |
| 360 | .put = snd_audigy2nx_led_put, |
| 361 | }; |
| 362 | |
| 363 | static const char * const snd_audigy2nx_led_names[] = { |
| 364 | "CMSS LED Switch", |
| 365 | "Power LED Switch", |
| 366 | "Dolby Digital LED Switch", |
| 367 | }; |
| 368 | |
| 369 | static int snd_audigy2nx_controls_create(struct usb_mixer_interface *mixer) |
| 370 | { |
| 371 | int i, err; |
| 372 | |
| 373 | for (i = 0; i < ARRAY_SIZE(snd_audigy2nx_led_names); ++i) { |
| 374 | struct snd_kcontrol_new knew; |
| 375 | |
| 376 | /* USB X-Fi S51 doesn't have a CMSS LED */ |
| 377 | if ((mixer->chip->usb_id == USB_ID(0x041e, 0x3042)) && i == 0) |
| 378 | continue; |
| 379 | /* USB X-Fi S51 Pro doesn't have one either */ |
| 380 | if ((mixer->chip->usb_id == USB_ID(0x041e, 0x30df)) && i == 0) |
| 381 | continue; |
| 382 | if (i > 1 && /* Live24ext has 2 LEDs only */ |
| 383 | (mixer->chip->usb_id == USB_ID(0x041e, 0x3040) || |
| 384 | mixer->chip->usb_id == USB_ID(0x041e, 0x3042) || |
| 385 | mixer->chip->usb_id == USB_ID(0x041e, 0x30df) || |
| 386 | mixer->chip->usb_id == USB_ID(0x041e, 0x3048))) |
| 387 | break; |
| 388 | |
| 389 | knew = snd_audigy2nx_control; |
| 390 | knew.name = snd_audigy2nx_led_names[i]; |
| 391 | knew.private_value = (1 << 8) | i; /* LED on as default */ |
| 392 | err = add_single_ctl_with_resume(mixer, 0, |
| 393 | snd_audigy2nx_led_resume, |
| 394 | &knew, NULL); |
| 395 | if (err < 0) |
| 396 | return err; |
| 397 | } |
| 398 | return 0; |
| 399 | } |
| 400 | |
| 401 | static void snd_audigy2nx_proc_read(struct snd_info_entry *entry, |
| 402 | struct snd_info_buffer *buffer) |
| 403 | { |
| 404 | static const struct sb_jack { |
| 405 | int unitid; |
| 406 | const char *name; |
| 407 | } jacks_audigy2nx[] = { |
| 408 | {4, "dig in "}, |
| 409 | {7, "line in"}, |
| 410 | {19, "spk out"}, |
| 411 | {20, "hph out"}, |
| 412 | {-1, NULL} |
| 413 | }, jacks_live24ext[] = { |
| 414 | {4, "line in"}, /* &1=Line, &2=Mic*/ |
| 415 | {3, "hph out"}, /* headphones */ |
| 416 | {0, "RC "}, /* last command, 6 bytes see rc_config above */ |
| 417 | {-1, NULL} |
| 418 | }; |
| 419 | const struct sb_jack *jacks; |
| 420 | struct usb_mixer_interface *mixer = entry->private_data; |
| 421 | int i, err; |
| 422 | u8 buf[3]; |
| 423 | |
| 424 | snd_iprintf(buffer, "%s jacks\n\n", mixer->chip->card->shortname); |
| 425 | if (mixer->chip->usb_id == USB_ID(0x041e, 0x3020)) |
| 426 | jacks = jacks_audigy2nx; |
| 427 | else if (mixer->chip->usb_id == USB_ID(0x041e, 0x3040) || |
| 428 | mixer->chip->usb_id == USB_ID(0x041e, 0x3048)) |
| 429 | jacks = jacks_live24ext; |
| 430 | else |
| 431 | return; |
| 432 | |
| 433 | for (i = 0; jacks[i].name; ++i) { |
| 434 | snd_iprintf(buffer, "%s: ", jacks[i].name); |
| 435 | err = snd_usb_lock_shutdown(mixer->chip); |
| 436 | if (err < 0) |
| 437 | return; |
| 438 | err = snd_usb_ctl_msg(mixer->chip->dev, |
| 439 | usb_rcvctrlpipe(mixer->chip->dev, 0), |
| 440 | UAC_GET_MEM, USB_DIR_IN | USB_TYPE_CLASS | |
| 441 | USB_RECIP_INTERFACE, 0, |
| 442 | jacks[i].unitid << 8, buf, 3); |
| 443 | snd_usb_unlock_shutdown(mixer->chip); |
| 444 | if (err == 3 && (buf[0] == 3 || buf[0] == 6)) |
| 445 | snd_iprintf(buffer, "%02x %02x\n", buf[1], buf[2]); |
| 446 | else |
| 447 | snd_iprintf(buffer, "?\n"); |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | /* EMU0204 */ |
| 452 | static int snd_emu0204_ch_switch_info(struct snd_kcontrol *kcontrol, |
| 453 | struct snd_ctl_elem_info *uinfo) |
| 454 | { |
| 455 | static const char * const texts[2] = {"1/2", "3/4"}; |
| 456 | |
| 457 | return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(texts), texts); |
| 458 | } |
| 459 | |
| 460 | static int snd_emu0204_ch_switch_get(struct snd_kcontrol *kcontrol, |
| 461 | struct snd_ctl_elem_value *ucontrol) |
| 462 | { |
| 463 | ucontrol->value.enumerated.item[0] = kcontrol->private_value; |
| 464 | return 0; |
| 465 | } |
| 466 | |
| 467 | static int snd_emu0204_ch_switch_update(struct usb_mixer_interface *mixer, |
| 468 | int value) |
| 469 | { |
| 470 | struct snd_usb_audio *chip = mixer->chip; |
| 471 | int err; |
| 472 | unsigned char buf[2]; |
| 473 | |
| 474 | err = snd_usb_lock_shutdown(chip); |
| 475 | if (err < 0) |
| 476 | return err; |
| 477 | |
| 478 | buf[0] = 0x01; |
| 479 | buf[1] = value ? 0x02 : 0x01; |
| 480 | err = snd_usb_ctl_msg(chip->dev, |
| 481 | usb_sndctrlpipe(chip->dev, 0), UAC_SET_CUR, |
| 482 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT, |
| 483 | 0x0400, 0x0e00, buf, 2); |
| 484 | snd_usb_unlock_shutdown(chip); |
| 485 | return err; |
| 486 | } |
| 487 | |
| 488 | static int snd_emu0204_ch_switch_put(struct snd_kcontrol *kcontrol, |
| 489 | struct snd_ctl_elem_value *ucontrol) |
| 490 | { |
| 491 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 492 | struct usb_mixer_interface *mixer = list->mixer; |
| 493 | unsigned int value = ucontrol->value.enumerated.item[0]; |
| 494 | int err; |
| 495 | |
| 496 | if (value > 1) |
| 497 | return -EINVAL; |
| 498 | |
| 499 | if (value == kcontrol->private_value) |
| 500 | return 0; |
| 501 | |
| 502 | kcontrol->private_value = value; |
| 503 | err = snd_emu0204_ch_switch_update(mixer, value); |
| 504 | return err < 0 ? err : 1; |
| 505 | } |
| 506 | |
| 507 | static int snd_emu0204_ch_switch_resume(struct usb_mixer_elem_list *list) |
| 508 | { |
| 509 | return snd_emu0204_ch_switch_update(list->mixer, |
| 510 | list->kctl->private_value); |
| 511 | } |
| 512 | |
| 513 | static struct snd_kcontrol_new snd_emu0204_control = { |
| 514 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 515 | .name = "Front Jack Channels", |
| 516 | .info = snd_emu0204_ch_switch_info, |
| 517 | .get = snd_emu0204_ch_switch_get, |
| 518 | .put = snd_emu0204_ch_switch_put, |
| 519 | .private_value = 0, |
| 520 | }; |
| 521 | |
| 522 | static int snd_emu0204_controls_create(struct usb_mixer_interface *mixer) |
| 523 | { |
| 524 | return add_single_ctl_with_resume(mixer, 0, |
| 525 | snd_emu0204_ch_switch_resume, |
| 526 | &snd_emu0204_control, NULL); |
| 527 | } |
| 528 | |
| 529 | /* ASUS Xonar U1 / U3 controls */ |
| 530 | |
| 531 | static int snd_xonar_u1_switch_get(struct snd_kcontrol *kcontrol, |
| 532 | struct snd_ctl_elem_value *ucontrol) |
| 533 | { |
| 534 | ucontrol->value.integer.value[0] = !!(kcontrol->private_value & 0x02); |
| 535 | return 0; |
| 536 | } |
| 537 | |
| 538 | static int snd_xonar_u1_switch_update(struct usb_mixer_interface *mixer, |
| 539 | unsigned char status) |
| 540 | { |
| 541 | struct snd_usb_audio *chip = mixer->chip; |
| 542 | int err; |
| 543 | |
| 544 | err = snd_usb_lock_shutdown(chip); |
| 545 | if (err < 0) |
| 546 | return err; |
| 547 | err = snd_usb_ctl_msg(chip->dev, |
| 548 | usb_sndctrlpipe(chip->dev, 0), 0x08, |
| 549 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 550 | 50, 0, &status, 1); |
| 551 | snd_usb_unlock_shutdown(chip); |
| 552 | return err; |
| 553 | } |
| 554 | |
| 555 | static int snd_xonar_u1_switch_put(struct snd_kcontrol *kcontrol, |
| 556 | struct snd_ctl_elem_value *ucontrol) |
| 557 | { |
| 558 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 559 | u8 old_status, new_status; |
| 560 | int err; |
| 561 | |
| 562 | old_status = kcontrol->private_value; |
| 563 | if (ucontrol->value.integer.value[0]) |
| 564 | new_status = old_status | 0x02; |
| 565 | else |
| 566 | new_status = old_status & ~0x02; |
| 567 | if (new_status == old_status) |
| 568 | return 0; |
| 569 | |
| 570 | kcontrol->private_value = new_status; |
| 571 | err = snd_xonar_u1_switch_update(list->mixer, new_status); |
| 572 | return err < 0 ? err : 1; |
| 573 | } |
| 574 | |
| 575 | static int snd_xonar_u1_switch_resume(struct usb_mixer_elem_list *list) |
| 576 | { |
| 577 | return snd_xonar_u1_switch_update(list->mixer, |
| 578 | list->kctl->private_value); |
| 579 | } |
| 580 | |
| 581 | static struct snd_kcontrol_new snd_xonar_u1_output_switch = { |
| 582 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 583 | .name = "Digital Playback Switch", |
| 584 | .info = snd_ctl_boolean_mono_info, |
| 585 | .get = snd_xonar_u1_switch_get, |
| 586 | .put = snd_xonar_u1_switch_put, |
| 587 | .private_value = 0x05, |
| 588 | }; |
| 589 | |
| 590 | static int snd_xonar_u1_controls_create(struct usb_mixer_interface *mixer) |
| 591 | { |
| 592 | return add_single_ctl_with_resume(mixer, 0, |
| 593 | snd_xonar_u1_switch_resume, |
| 594 | &snd_xonar_u1_output_switch, NULL); |
| 595 | } |
| 596 | |
| 597 | /* Digidesign Mbox 1 clock source switch (internal/spdif) */ |
| 598 | |
| 599 | static int snd_mbox1_switch_get(struct snd_kcontrol *kctl, |
| 600 | struct snd_ctl_elem_value *ucontrol) |
| 601 | { |
| 602 | ucontrol->value.enumerated.item[0] = kctl->private_value; |
| 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | static int snd_mbox1_switch_update(struct usb_mixer_interface *mixer, int val) |
| 607 | { |
| 608 | struct snd_usb_audio *chip = mixer->chip; |
| 609 | int err; |
| 610 | unsigned char buff[3]; |
| 611 | |
| 612 | err = snd_usb_lock_shutdown(chip); |
| 613 | if (err < 0) |
| 614 | return err; |
| 615 | |
| 616 | /* Prepare for magic command to toggle clock source */ |
| 617 | err = snd_usb_ctl_msg(chip->dev, |
| 618 | usb_rcvctrlpipe(chip->dev, 0), 0x81, |
| 619 | USB_DIR_IN | |
| 620 | USB_TYPE_CLASS | |
| 621 | USB_RECIP_INTERFACE, 0x00, 0x500, buff, 1); |
| 622 | if (err < 0) |
| 623 | goto err; |
| 624 | err = snd_usb_ctl_msg(chip->dev, |
| 625 | usb_rcvctrlpipe(chip->dev, 0), 0x81, |
| 626 | USB_DIR_IN | |
| 627 | USB_TYPE_CLASS | |
| 628 | USB_RECIP_ENDPOINT, 0x100, 0x81, buff, 3); |
| 629 | if (err < 0) |
| 630 | goto err; |
| 631 | |
| 632 | /* 2 possibilities: Internal -> send sample rate |
| 633 | * S/PDIF sync -> send zeroes |
| 634 | * NB: Sample rate locked to 48kHz on purpose to |
| 635 | * prevent user from resetting the sample rate |
| 636 | * while S/PDIF sync is enabled and confusing |
| 637 | * this configuration. |
| 638 | */ |
| 639 | if (val == 0) { |
| 640 | buff[0] = 0x80; |
| 641 | buff[1] = 0xbb; |
| 642 | buff[2] = 0x00; |
| 643 | } else { |
| 644 | buff[0] = buff[1] = buff[2] = 0x00; |
| 645 | } |
| 646 | |
| 647 | /* Send the magic command to toggle the clock source */ |
| 648 | err = snd_usb_ctl_msg(chip->dev, |
| 649 | usb_sndctrlpipe(chip->dev, 0), 0x1, |
| 650 | USB_TYPE_CLASS | |
| 651 | USB_RECIP_ENDPOINT, 0x100, 0x81, buff, 3); |
| 652 | if (err < 0) |
| 653 | goto err; |
| 654 | err = snd_usb_ctl_msg(chip->dev, |
| 655 | usb_rcvctrlpipe(chip->dev, 0), 0x81, |
| 656 | USB_DIR_IN | |
| 657 | USB_TYPE_CLASS | |
| 658 | USB_RECIP_ENDPOINT, 0x100, 0x81, buff, 3); |
| 659 | if (err < 0) |
| 660 | goto err; |
| 661 | err = snd_usb_ctl_msg(chip->dev, |
| 662 | usb_rcvctrlpipe(chip->dev, 0), 0x81, |
| 663 | USB_DIR_IN | |
| 664 | USB_TYPE_CLASS | |
| 665 | USB_RECIP_ENDPOINT, 0x100, 0x2, buff, 3); |
| 666 | if (err < 0) |
| 667 | goto err; |
| 668 | |
| 669 | err: |
| 670 | snd_usb_unlock_shutdown(chip); |
| 671 | return err; |
| 672 | } |
| 673 | |
| 674 | static int snd_mbox1_switch_put(struct snd_kcontrol *kctl, |
| 675 | struct snd_ctl_elem_value *ucontrol) |
| 676 | { |
| 677 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kctl); |
| 678 | struct usb_mixer_interface *mixer = list->mixer; |
| 679 | int err; |
| 680 | bool cur_val, new_val; |
| 681 | |
| 682 | cur_val = kctl->private_value; |
| 683 | new_val = ucontrol->value.enumerated.item[0]; |
| 684 | if (cur_val == new_val) |
| 685 | return 0; |
| 686 | |
| 687 | kctl->private_value = new_val; |
| 688 | err = snd_mbox1_switch_update(mixer, new_val); |
| 689 | return err < 0 ? err : 1; |
| 690 | } |
| 691 | |
| 692 | static int snd_mbox1_switch_info(struct snd_kcontrol *kcontrol, |
| 693 | struct snd_ctl_elem_info *uinfo) |
| 694 | { |
| 695 | static const char *const texts[2] = { |
| 696 | "Internal", |
| 697 | "S/PDIF" |
| 698 | }; |
| 699 | |
| 700 | return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(texts), texts); |
| 701 | } |
| 702 | |
| 703 | static int snd_mbox1_switch_resume(struct usb_mixer_elem_list *list) |
| 704 | { |
| 705 | return snd_mbox1_switch_update(list->mixer, list->kctl->private_value); |
| 706 | } |
| 707 | |
| 708 | static struct snd_kcontrol_new snd_mbox1_switch = { |
| 709 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 710 | .name = "Clock Source", |
| 711 | .index = 0, |
| 712 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, |
| 713 | .info = snd_mbox1_switch_info, |
| 714 | .get = snd_mbox1_switch_get, |
| 715 | .put = snd_mbox1_switch_put, |
| 716 | .private_value = 0 |
| 717 | }; |
| 718 | |
| 719 | static int snd_mbox1_create_sync_switch(struct usb_mixer_interface *mixer) |
| 720 | { |
| 721 | return add_single_ctl_with_resume(mixer, 0, |
| 722 | snd_mbox1_switch_resume, |
| 723 | &snd_mbox1_switch, NULL); |
| 724 | } |
| 725 | |
| 726 | /* Native Instruments device quirks */ |
| 727 | |
| 728 | #define _MAKE_NI_CONTROL(bRequest,wIndex) ((bRequest) << 16 | (wIndex)) |
| 729 | |
| 730 | static int snd_ni_control_init_val(struct usb_mixer_interface *mixer, |
| 731 | struct snd_kcontrol *kctl) |
| 732 | { |
| 733 | struct usb_device *dev = mixer->chip->dev; |
| 734 | unsigned int pval = kctl->private_value; |
| 735 | u8 value; |
| 736 | int err; |
| 737 | |
| 738 | err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 739 | (pval >> 16) & 0xff, |
| 740 | USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, |
| 741 | 0, pval & 0xffff, &value, 1); |
| 742 | if (err < 0) { |
| 743 | dev_err(&dev->dev, |
| 744 | "unable to issue vendor read request (ret = %d)", err); |
| 745 | return err; |
| 746 | } |
| 747 | |
| 748 | kctl->private_value |= ((unsigned int)value << 24); |
| 749 | return 0; |
| 750 | } |
| 751 | |
| 752 | static int snd_nativeinstruments_control_get(struct snd_kcontrol *kcontrol, |
| 753 | struct snd_ctl_elem_value *ucontrol) |
| 754 | { |
| 755 | ucontrol->value.integer.value[0] = kcontrol->private_value >> 24; |
| 756 | return 0; |
| 757 | } |
| 758 | |
| 759 | static int snd_ni_update_cur_val(struct usb_mixer_elem_list *list) |
| 760 | { |
| 761 | struct snd_usb_audio *chip = list->mixer->chip; |
| 762 | unsigned int pval = list->kctl->private_value; |
| 763 | int err; |
| 764 | |
| 765 | err = snd_usb_lock_shutdown(chip); |
| 766 | if (err < 0) |
| 767 | return err; |
| 768 | err = usb_control_msg(chip->dev, usb_sndctrlpipe(chip->dev, 0), |
| 769 | (pval >> 16) & 0xff, |
| 770 | USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, |
| 771 | pval >> 24, pval & 0xffff, NULL, 0, 1000); |
| 772 | snd_usb_unlock_shutdown(chip); |
| 773 | return err; |
| 774 | } |
| 775 | |
| 776 | static int snd_nativeinstruments_control_put(struct snd_kcontrol *kcontrol, |
| 777 | struct snd_ctl_elem_value *ucontrol) |
| 778 | { |
| 779 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 780 | u8 oldval = (kcontrol->private_value >> 24) & 0xff; |
| 781 | u8 newval = ucontrol->value.integer.value[0]; |
| 782 | int err; |
| 783 | |
| 784 | if (oldval == newval) |
| 785 | return 0; |
| 786 | |
| 787 | kcontrol->private_value &= ~(0xff << 24); |
| 788 | kcontrol->private_value |= (unsigned int)newval << 24; |
| 789 | err = snd_ni_update_cur_val(list); |
| 790 | return err < 0 ? err : 1; |
| 791 | } |
| 792 | |
| 793 | static struct snd_kcontrol_new snd_nativeinstruments_ta6_mixers[] = { |
| 794 | { |
| 795 | .name = "Direct Thru Channel A", |
| 796 | .private_value = _MAKE_NI_CONTROL(0x01, 0x03), |
| 797 | }, |
| 798 | { |
| 799 | .name = "Direct Thru Channel B", |
| 800 | .private_value = _MAKE_NI_CONTROL(0x01, 0x05), |
| 801 | }, |
| 802 | { |
| 803 | .name = "Phono Input Channel A", |
| 804 | .private_value = _MAKE_NI_CONTROL(0x02, 0x03), |
| 805 | }, |
| 806 | { |
| 807 | .name = "Phono Input Channel B", |
| 808 | .private_value = _MAKE_NI_CONTROL(0x02, 0x05), |
| 809 | }, |
| 810 | }; |
| 811 | |
| 812 | static struct snd_kcontrol_new snd_nativeinstruments_ta10_mixers[] = { |
| 813 | { |
| 814 | .name = "Direct Thru Channel A", |
| 815 | .private_value = _MAKE_NI_CONTROL(0x01, 0x03), |
| 816 | }, |
| 817 | { |
| 818 | .name = "Direct Thru Channel B", |
| 819 | .private_value = _MAKE_NI_CONTROL(0x01, 0x05), |
| 820 | }, |
| 821 | { |
| 822 | .name = "Direct Thru Channel C", |
| 823 | .private_value = _MAKE_NI_CONTROL(0x01, 0x07), |
| 824 | }, |
| 825 | { |
| 826 | .name = "Direct Thru Channel D", |
| 827 | .private_value = _MAKE_NI_CONTROL(0x01, 0x09), |
| 828 | }, |
| 829 | { |
| 830 | .name = "Phono Input Channel A", |
| 831 | .private_value = _MAKE_NI_CONTROL(0x02, 0x03), |
| 832 | }, |
| 833 | { |
| 834 | .name = "Phono Input Channel B", |
| 835 | .private_value = _MAKE_NI_CONTROL(0x02, 0x05), |
| 836 | }, |
| 837 | { |
| 838 | .name = "Phono Input Channel C", |
| 839 | .private_value = _MAKE_NI_CONTROL(0x02, 0x07), |
| 840 | }, |
| 841 | { |
| 842 | .name = "Phono Input Channel D", |
| 843 | .private_value = _MAKE_NI_CONTROL(0x02, 0x09), |
| 844 | }, |
| 845 | }; |
| 846 | |
| 847 | static int snd_nativeinstruments_create_mixer(struct usb_mixer_interface *mixer, |
| 848 | const struct snd_kcontrol_new *kc, |
| 849 | unsigned int count) |
| 850 | { |
| 851 | int i, err = 0; |
| 852 | struct snd_kcontrol_new template = { |
| 853 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 854 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, |
| 855 | .get = snd_nativeinstruments_control_get, |
| 856 | .put = snd_nativeinstruments_control_put, |
| 857 | .info = snd_ctl_boolean_mono_info, |
| 858 | }; |
| 859 | |
| 860 | for (i = 0; i < count; i++) { |
| 861 | struct usb_mixer_elem_list *list; |
| 862 | |
| 863 | template.name = kc[i].name; |
| 864 | template.private_value = kc[i].private_value; |
| 865 | |
| 866 | err = add_single_ctl_with_resume(mixer, 0, |
| 867 | snd_ni_update_cur_val, |
| 868 | &template, &list); |
| 869 | if (err < 0) |
| 870 | break; |
| 871 | snd_ni_control_init_val(mixer, list->kctl); |
| 872 | } |
| 873 | |
| 874 | return err; |
| 875 | } |
| 876 | |
| 877 | /* M-Audio FastTrack Ultra quirks */ |
| 878 | /* FTU Effect switch (also used by C400/C600) */ |
| 879 | static int snd_ftu_eff_switch_info(struct snd_kcontrol *kcontrol, |
| 880 | struct snd_ctl_elem_info *uinfo) |
| 881 | { |
| 882 | static const char *const texts[8] = { |
| 883 | "Room 1", "Room 2", "Room 3", "Hall 1", |
| 884 | "Hall 2", "Plate", "Delay", "Echo" |
| 885 | }; |
| 886 | |
| 887 | return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(texts), texts); |
| 888 | } |
| 889 | |
| 890 | static int snd_ftu_eff_switch_init(struct usb_mixer_interface *mixer, |
| 891 | struct snd_kcontrol *kctl) |
| 892 | { |
| 893 | struct usb_device *dev = mixer->chip->dev; |
| 894 | unsigned int pval = kctl->private_value; |
| 895 | int err; |
| 896 | unsigned char value[2]; |
| 897 | |
| 898 | value[0] = 0x00; |
| 899 | value[1] = 0x00; |
| 900 | |
| 901 | err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC_GET_CUR, |
| 902 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN, |
| 903 | pval & 0xff00, |
| 904 | snd_usb_ctrl_intf(mixer->chip) | ((pval & 0xff) << 8), |
| 905 | value, 2); |
| 906 | if (err < 0) |
| 907 | return err; |
| 908 | |
| 909 | kctl->private_value |= (unsigned int)value[0] << 24; |
| 910 | return 0; |
| 911 | } |
| 912 | |
| 913 | static int snd_ftu_eff_switch_get(struct snd_kcontrol *kctl, |
| 914 | struct snd_ctl_elem_value *ucontrol) |
| 915 | { |
| 916 | ucontrol->value.enumerated.item[0] = kctl->private_value >> 24; |
| 917 | return 0; |
| 918 | } |
| 919 | |
| 920 | static int snd_ftu_eff_switch_update(struct usb_mixer_elem_list *list) |
| 921 | { |
| 922 | struct snd_usb_audio *chip = list->mixer->chip; |
| 923 | unsigned int pval = list->kctl->private_value; |
| 924 | unsigned char value[2]; |
| 925 | int err; |
| 926 | |
| 927 | value[0] = pval >> 24; |
| 928 | value[1] = 0; |
| 929 | |
| 930 | err = snd_usb_lock_shutdown(chip); |
| 931 | if (err < 0) |
| 932 | return err; |
| 933 | err = snd_usb_ctl_msg(chip->dev, |
| 934 | usb_sndctrlpipe(chip->dev, 0), |
| 935 | UAC_SET_CUR, |
| 936 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT, |
| 937 | pval & 0xff00, |
| 938 | snd_usb_ctrl_intf(chip) | ((pval & 0xff) << 8), |
| 939 | value, 2); |
| 940 | snd_usb_unlock_shutdown(chip); |
| 941 | return err; |
| 942 | } |
| 943 | |
| 944 | static int snd_ftu_eff_switch_put(struct snd_kcontrol *kctl, |
| 945 | struct snd_ctl_elem_value *ucontrol) |
| 946 | { |
| 947 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kctl); |
| 948 | unsigned int pval = list->kctl->private_value; |
| 949 | int cur_val, err, new_val; |
| 950 | |
| 951 | cur_val = pval >> 24; |
| 952 | new_val = ucontrol->value.enumerated.item[0]; |
| 953 | if (cur_val == new_val) |
| 954 | return 0; |
| 955 | |
| 956 | kctl->private_value &= ~(0xff << 24); |
| 957 | kctl->private_value |= new_val << 24; |
| 958 | err = snd_ftu_eff_switch_update(list); |
| 959 | return err < 0 ? err : 1; |
| 960 | } |
| 961 | |
| 962 | static int snd_ftu_create_effect_switch(struct usb_mixer_interface *mixer, |
| 963 | int validx, int bUnitID) |
| 964 | { |
| 965 | static struct snd_kcontrol_new template = { |
| 966 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 967 | .name = "Effect Program Switch", |
| 968 | .index = 0, |
| 969 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, |
| 970 | .info = snd_ftu_eff_switch_info, |
| 971 | .get = snd_ftu_eff_switch_get, |
| 972 | .put = snd_ftu_eff_switch_put |
| 973 | }; |
| 974 | struct usb_mixer_elem_list *list; |
| 975 | int err; |
| 976 | |
| 977 | err = add_single_ctl_with_resume(mixer, bUnitID, |
| 978 | snd_ftu_eff_switch_update, |
| 979 | &template, &list); |
| 980 | if (err < 0) |
| 981 | return err; |
| 982 | list->kctl->private_value = (validx << 8) | bUnitID; |
| 983 | snd_ftu_eff_switch_init(mixer, list->kctl); |
| 984 | return 0; |
| 985 | } |
| 986 | |
| 987 | /* Create volume controls for FTU devices*/ |
| 988 | static int snd_ftu_create_volume_ctls(struct usb_mixer_interface *mixer) |
| 989 | { |
| 990 | char name[64]; |
| 991 | unsigned int control, cmask; |
| 992 | int in, out, err; |
| 993 | |
| 994 | const unsigned int id = 5; |
| 995 | const int val_type = USB_MIXER_S16; |
| 996 | |
| 997 | for (out = 0; out < 8; out++) { |
| 998 | control = out + 1; |
| 999 | for (in = 0; in < 8; in++) { |
| 1000 | cmask = 1 << in; |
| 1001 | snprintf(name, sizeof(name), |
| 1002 | "AIn%d - Out%d Capture Volume", |
| 1003 | in + 1, out + 1); |
| 1004 | err = snd_create_std_mono_ctl(mixer, id, control, |
| 1005 | cmask, val_type, name, |
| 1006 | &snd_usb_mixer_vol_tlv); |
| 1007 | if (err < 0) |
| 1008 | return err; |
| 1009 | } |
| 1010 | for (in = 8; in < 16; in++) { |
| 1011 | cmask = 1 << in; |
| 1012 | snprintf(name, sizeof(name), |
| 1013 | "DIn%d - Out%d Playback Volume", |
| 1014 | in - 7, out + 1); |
| 1015 | err = snd_create_std_mono_ctl(mixer, id, control, |
| 1016 | cmask, val_type, name, |
| 1017 | &snd_usb_mixer_vol_tlv); |
| 1018 | if (err < 0) |
| 1019 | return err; |
| 1020 | } |
| 1021 | } |
| 1022 | |
| 1023 | return 0; |
| 1024 | } |
| 1025 | |
| 1026 | /* This control needs a volume quirk, see mixer.c */ |
| 1027 | static int snd_ftu_create_effect_volume_ctl(struct usb_mixer_interface *mixer) |
| 1028 | { |
| 1029 | static const char name[] = "Effect Volume"; |
| 1030 | const unsigned int id = 6; |
| 1031 | const int val_type = USB_MIXER_U8; |
| 1032 | const unsigned int control = 2; |
| 1033 | const unsigned int cmask = 0; |
| 1034 | |
| 1035 | return snd_create_std_mono_ctl(mixer, id, control, cmask, val_type, |
| 1036 | name, snd_usb_mixer_vol_tlv); |
| 1037 | } |
| 1038 | |
| 1039 | /* This control needs a volume quirk, see mixer.c */ |
| 1040 | static int snd_ftu_create_effect_duration_ctl(struct usb_mixer_interface *mixer) |
| 1041 | { |
| 1042 | static const char name[] = "Effect Duration"; |
| 1043 | const unsigned int id = 6; |
| 1044 | const int val_type = USB_MIXER_S16; |
| 1045 | const unsigned int control = 3; |
| 1046 | const unsigned int cmask = 0; |
| 1047 | |
| 1048 | return snd_create_std_mono_ctl(mixer, id, control, cmask, val_type, |
| 1049 | name, snd_usb_mixer_vol_tlv); |
| 1050 | } |
| 1051 | |
| 1052 | /* This control needs a volume quirk, see mixer.c */ |
| 1053 | static int snd_ftu_create_effect_feedback_ctl(struct usb_mixer_interface *mixer) |
| 1054 | { |
| 1055 | static const char name[] = "Effect Feedback Volume"; |
| 1056 | const unsigned int id = 6; |
| 1057 | const int val_type = USB_MIXER_U8; |
| 1058 | const unsigned int control = 4; |
| 1059 | const unsigned int cmask = 0; |
| 1060 | |
| 1061 | return snd_create_std_mono_ctl(mixer, id, control, cmask, val_type, |
| 1062 | name, NULL); |
| 1063 | } |
| 1064 | |
| 1065 | static int snd_ftu_create_effect_return_ctls(struct usb_mixer_interface *mixer) |
| 1066 | { |
| 1067 | unsigned int cmask; |
| 1068 | int err, ch; |
| 1069 | char name[48]; |
| 1070 | |
| 1071 | const unsigned int id = 7; |
| 1072 | const int val_type = USB_MIXER_S16; |
| 1073 | const unsigned int control = 7; |
| 1074 | |
| 1075 | for (ch = 0; ch < 4; ++ch) { |
| 1076 | cmask = 1 << ch; |
| 1077 | snprintf(name, sizeof(name), |
| 1078 | "Effect Return %d Volume", ch + 1); |
| 1079 | err = snd_create_std_mono_ctl(mixer, id, control, |
| 1080 | cmask, val_type, name, |
| 1081 | snd_usb_mixer_vol_tlv); |
| 1082 | if (err < 0) |
| 1083 | return err; |
| 1084 | } |
| 1085 | |
| 1086 | return 0; |
| 1087 | } |
| 1088 | |
| 1089 | static int snd_ftu_create_effect_send_ctls(struct usb_mixer_interface *mixer) |
| 1090 | { |
| 1091 | unsigned int cmask; |
| 1092 | int err, ch; |
| 1093 | char name[48]; |
| 1094 | |
| 1095 | const unsigned int id = 5; |
| 1096 | const int val_type = USB_MIXER_S16; |
| 1097 | const unsigned int control = 9; |
| 1098 | |
| 1099 | for (ch = 0; ch < 8; ++ch) { |
| 1100 | cmask = 1 << ch; |
| 1101 | snprintf(name, sizeof(name), |
| 1102 | "Effect Send AIn%d Volume", ch + 1); |
| 1103 | err = snd_create_std_mono_ctl(mixer, id, control, cmask, |
| 1104 | val_type, name, |
| 1105 | snd_usb_mixer_vol_tlv); |
| 1106 | if (err < 0) |
| 1107 | return err; |
| 1108 | } |
| 1109 | for (ch = 8; ch < 16; ++ch) { |
| 1110 | cmask = 1 << ch; |
| 1111 | snprintf(name, sizeof(name), |
| 1112 | "Effect Send DIn%d Volume", ch - 7); |
| 1113 | err = snd_create_std_mono_ctl(mixer, id, control, cmask, |
| 1114 | val_type, name, |
| 1115 | snd_usb_mixer_vol_tlv); |
| 1116 | if (err < 0) |
| 1117 | return err; |
| 1118 | } |
| 1119 | return 0; |
| 1120 | } |
| 1121 | |
| 1122 | static int snd_ftu_create_mixer(struct usb_mixer_interface *mixer) |
| 1123 | { |
| 1124 | int err; |
| 1125 | |
| 1126 | err = snd_ftu_create_volume_ctls(mixer); |
| 1127 | if (err < 0) |
| 1128 | return err; |
| 1129 | |
| 1130 | err = snd_ftu_create_effect_switch(mixer, 1, 6); |
| 1131 | if (err < 0) |
| 1132 | return err; |
| 1133 | |
| 1134 | err = snd_ftu_create_effect_volume_ctl(mixer); |
| 1135 | if (err < 0) |
| 1136 | return err; |
| 1137 | |
| 1138 | err = snd_ftu_create_effect_duration_ctl(mixer); |
| 1139 | if (err < 0) |
| 1140 | return err; |
| 1141 | |
| 1142 | err = snd_ftu_create_effect_feedback_ctl(mixer); |
| 1143 | if (err < 0) |
| 1144 | return err; |
| 1145 | |
| 1146 | err = snd_ftu_create_effect_return_ctls(mixer); |
| 1147 | if (err < 0) |
| 1148 | return err; |
| 1149 | |
| 1150 | err = snd_ftu_create_effect_send_ctls(mixer); |
| 1151 | if (err < 0) |
| 1152 | return err; |
| 1153 | |
| 1154 | return 0; |
| 1155 | } |
| 1156 | |
| 1157 | void snd_emuusb_set_samplerate(struct snd_usb_audio *chip, |
| 1158 | unsigned char samplerate_id) |
| 1159 | { |
| 1160 | struct usb_mixer_interface *mixer; |
| 1161 | struct usb_mixer_elem_info *cval; |
| 1162 | int unitid = 12; /* SampleRate ExtensionUnit ID */ |
| 1163 | |
| 1164 | list_for_each_entry(mixer, &chip->mixer_list, list) { |
| 1165 | if (mixer->id_elems[unitid]) { |
| 1166 | cval = mixer_elem_list_to_info(mixer->id_elems[unitid]); |
| 1167 | snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, |
| 1168 | cval->control << 8, |
| 1169 | samplerate_id); |
| 1170 | snd_usb_mixer_notify_id(mixer, unitid); |
| 1171 | break; |
| 1172 | } |
| 1173 | } |
| 1174 | } |
| 1175 | |
| 1176 | /* M-Audio Fast Track C400/C600 */ |
| 1177 | /* C400/C600 volume controls, this control needs a volume quirk, see mixer.c */ |
| 1178 | static int snd_c400_create_vol_ctls(struct usb_mixer_interface *mixer) |
| 1179 | { |
| 1180 | char name[64]; |
| 1181 | unsigned int cmask, offset; |
| 1182 | int out, chan, err; |
| 1183 | int num_outs = 0; |
| 1184 | int num_ins = 0; |
| 1185 | |
| 1186 | const unsigned int id = 0x40; |
| 1187 | const int val_type = USB_MIXER_S16; |
| 1188 | const int control = 1; |
| 1189 | |
| 1190 | switch (mixer->chip->usb_id) { |
| 1191 | case USB_ID(0x0763, 0x2030): |
| 1192 | num_outs = 6; |
| 1193 | num_ins = 4; |
| 1194 | break; |
| 1195 | case USB_ID(0x0763, 0x2031): |
| 1196 | num_outs = 8; |
| 1197 | num_ins = 6; |
| 1198 | break; |
| 1199 | } |
| 1200 | |
| 1201 | for (chan = 0; chan < num_outs + num_ins; chan++) { |
| 1202 | for (out = 0; out < num_outs; out++) { |
| 1203 | if (chan < num_outs) { |
| 1204 | snprintf(name, sizeof(name), |
| 1205 | "PCM%d-Out%d Playback Volume", |
| 1206 | chan + 1, out + 1); |
| 1207 | } else { |
| 1208 | snprintf(name, sizeof(name), |
| 1209 | "In%d-Out%d Playback Volume", |
| 1210 | chan - num_outs + 1, out + 1); |
| 1211 | } |
| 1212 | |
| 1213 | cmask = (out == 0) ? 0 : 1 << (out - 1); |
| 1214 | offset = chan * num_outs; |
| 1215 | err = snd_create_std_mono_ctl_offset(mixer, id, control, |
| 1216 | cmask, val_type, offset, name, |
| 1217 | &snd_usb_mixer_vol_tlv); |
| 1218 | if (err < 0) |
| 1219 | return err; |
| 1220 | } |
| 1221 | } |
| 1222 | |
| 1223 | return 0; |
| 1224 | } |
| 1225 | |
| 1226 | /* This control needs a volume quirk, see mixer.c */ |
| 1227 | static int snd_c400_create_effect_volume_ctl(struct usb_mixer_interface *mixer) |
| 1228 | { |
| 1229 | static const char name[] = "Effect Volume"; |
| 1230 | const unsigned int id = 0x43; |
| 1231 | const int val_type = USB_MIXER_U8; |
| 1232 | const unsigned int control = 3; |
| 1233 | const unsigned int cmask = 0; |
| 1234 | |
| 1235 | return snd_create_std_mono_ctl(mixer, id, control, cmask, val_type, |
| 1236 | name, snd_usb_mixer_vol_tlv); |
| 1237 | } |
| 1238 | |
| 1239 | /* This control needs a volume quirk, see mixer.c */ |
| 1240 | static int snd_c400_create_effect_duration_ctl(struct usb_mixer_interface *mixer) |
| 1241 | { |
| 1242 | static const char name[] = "Effect Duration"; |
| 1243 | const unsigned int id = 0x43; |
| 1244 | const int val_type = USB_MIXER_S16; |
| 1245 | const unsigned int control = 4; |
| 1246 | const unsigned int cmask = 0; |
| 1247 | |
| 1248 | return snd_create_std_mono_ctl(mixer, id, control, cmask, val_type, |
| 1249 | name, snd_usb_mixer_vol_tlv); |
| 1250 | } |
| 1251 | |
| 1252 | /* This control needs a volume quirk, see mixer.c */ |
| 1253 | static int snd_c400_create_effect_feedback_ctl(struct usb_mixer_interface *mixer) |
| 1254 | { |
| 1255 | static const char name[] = "Effect Feedback Volume"; |
| 1256 | const unsigned int id = 0x43; |
| 1257 | const int val_type = USB_MIXER_U8; |
| 1258 | const unsigned int control = 5; |
| 1259 | const unsigned int cmask = 0; |
| 1260 | |
| 1261 | return snd_create_std_mono_ctl(mixer, id, control, cmask, val_type, |
| 1262 | name, NULL); |
| 1263 | } |
| 1264 | |
| 1265 | static int snd_c400_create_effect_vol_ctls(struct usb_mixer_interface *mixer) |
| 1266 | { |
| 1267 | char name[64]; |
| 1268 | unsigned int cmask; |
| 1269 | int chan, err; |
| 1270 | int num_outs = 0; |
| 1271 | int num_ins = 0; |
| 1272 | |
| 1273 | const unsigned int id = 0x42; |
| 1274 | const int val_type = USB_MIXER_S16; |
| 1275 | const int control = 1; |
| 1276 | |
| 1277 | switch (mixer->chip->usb_id) { |
| 1278 | case USB_ID(0x0763, 0x2030): |
| 1279 | num_outs = 6; |
| 1280 | num_ins = 4; |
| 1281 | break; |
| 1282 | case USB_ID(0x0763, 0x2031): |
| 1283 | num_outs = 8; |
| 1284 | num_ins = 6; |
| 1285 | break; |
| 1286 | } |
| 1287 | |
| 1288 | for (chan = 0; chan < num_outs + num_ins; chan++) { |
| 1289 | if (chan < num_outs) { |
| 1290 | snprintf(name, sizeof(name), |
| 1291 | "Effect Send DOut%d", |
| 1292 | chan + 1); |
| 1293 | } else { |
| 1294 | snprintf(name, sizeof(name), |
| 1295 | "Effect Send AIn%d", |
| 1296 | chan - num_outs + 1); |
| 1297 | } |
| 1298 | |
| 1299 | cmask = (chan == 0) ? 0 : 1 << (chan - 1); |
| 1300 | err = snd_create_std_mono_ctl(mixer, id, control, |
| 1301 | cmask, val_type, name, |
| 1302 | &snd_usb_mixer_vol_tlv); |
| 1303 | if (err < 0) |
| 1304 | return err; |
| 1305 | } |
| 1306 | |
| 1307 | return 0; |
| 1308 | } |
| 1309 | |
| 1310 | static int snd_c400_create_effect_ret_vol_ctls(struct usb_mixer_interface *mixer) |
| 1311 | { |
| 1312 | char name[64]; |
| 1313 | unsigned int cmask; |
| 1314 | int chan, err; |
| 1315 | int num_outs = 0; |
| 1316 | int offset = 0; |
| 1317 | |
| 1318 | const unsigned int id = 0x40; |
| 1319 | const int val_type = USB_MIXER_S16; |
| 1320 | const int control = 1; |
| 1321 | |
| 1322 | switch (mixer->chip->usb_id) { |
| 1323 | case USB_ID(0x0763, 0x2030): |
| 1324 | num_outs = 6; |
| 1325 | offset = 0x3c; |
| 1326 | /* { 0x3c, 0x43, 0x3e, 0x45, 0x40, 0x47 } */ |
| 1327 | break; |
| 1328 | case USB_ID(0x0763, 0x2031): |
| 1329 | num_outs = 8; |
| 1330 | offset = 0x70; |
| 1331 | /* { 0x70, 0x79, 0x72, 0x7b, 0x74, 0x7d, 0x76, 0x7f } */ |
| 1332 | break; |
| 1333 | } |
| 1334 | |
| 1335 | for (chan = 0; chan < num_outs; chan++) { |
| 1336 | snprintf(name, sizeof(name), |
| 1337 | "Effect Return %d", |
| 1338 | chan + 1); |
| 1339 | |
| 1340 | cmask = (chan == 0) ? 0 : |
| 1341 | 1 << (chan + (chan % 2) * num_outs - 1); |
| 1342 | err = snd_create_std_mono_ctl_offset(mixer, id, control, |
| 1343 | cmask, val_type, offset, name, |
| 1344 | &snd_usb_mixer_vol_tlv); |
| 1345 | if (err < 0) |
| 1346 | return err; |
| 1347 | } |
| 1348 | |
| 1349 | return 0; |
| 1350 | } |
| 1351 | |
| 1352 | static int snd_c400_create_mixer(struct usb_mixer_interface *mixer) |
| 1353 | { |
| 1354 | int err; |
| 1355 | |
| 1356 | err = snd_c400_create_vol_ctls(mixer); |
| 1357 | if (err < 0) |
| 1358 | return err; |
| 1359 | |
| 1360 | err = snd_c400_create_effect_vol_ctls(mixer); |
| 1361 | if (err < 0) |
| 1362 | return err; |
| 1363 | |
| 1364 | err = snd_c400_create_effect_ret_vol_ctls(mixer); |
| 1365 | if (err < 0) |
| 1366 | return err; |
| 1367 | |
| 1368 | err = snd_ftu_create_effect_switch(mixer, 2, 0x43); |
| 1369 | if (err < 0) |
| 1370 | return err; |
| 1371 | |
| 1372 | err = snd_c400_create_effect_volume_ctl(mixer); |
| 1373 | if (err < 0) |
| 1374 | return err; |
| 1375 | |
| 1376 | err = snd_c400_create_effect_duration_ctl(mixer); |
| 1377 | if (err < 0) |
| 1378 | return err; |
| 1379 | |
| 1380 | err = snd_c400_create_effect_feedback_ctl(mixer); |
| 1381 | if (err < 0) |
| 1382 | return err; |
| 1383 | |
| 1384 | return 0; |
| 1385 | } |
| 1386 | |
| 1387 | /* |
| 1388 | * The mixer units for Ebox-44 are corrupt, and even where they |
| 1389 | * are valid they presents mono controls as L and R channels of |
| 1390 | * stereo. So we provide a good mixer here. |
| 1391 | */ |
| 1392 | static const struct std_mono_table ebox44_table[] = { |
| 1393 | { |
| 1394 | .unitid = 4, |
| 1395 | .control = 1, |
| 1396 | .cmask = 0x0, |
| 1397 | .val_type = USB_MIXER_INV_BOOLEAN, |
| 1398 | .name = "Headphone Playback Switch" |
| 1399 | }, |
| 1400 | { |
| 1401 | .unitid = 4, |
| 1402 | .control = 2, |
| 1403 | .cmask = 0x1, |
| 1404 | .val_type = USB_MIXER_S16, |
| 1405 | .name = "Headphone A Mix Playback Volume" |
| 1406 | }, |
| 1407 | { |
| 1408 | .unitid = 4, |
| 1409 | .control = 2, |
| 1410 | .cmask = 0x2, |
| 1411 | .val_type = USB_MIXER_S16, |
| 1412 | .name = "Headphone B Mix Playback Volume" |
| 1413 | }, |
| 1414 | |
| 1415 | { |
| 1416 | .unitid = 7, |
| 1417 | .control = 1, |
| 1418 | .cmask = 0x0, |
| 1419 | .val_type = USB_MIXER_INV_BOOLEAN, |
| 1420 | .name = "Output Playback Switch" |
| 1421 | }, |
| 1422 | { |
| 1423 | .unitid = 7, |
| 1424 | .control = 2, |
| 1425 | .cmask = 0x1, |
| 1426 | .val_type = USB_MIXER_S16, |
| 1427 | .name = "Output A Playback Volume" |
| 1428 | }, |
| 1429 | { |
| 1430 | .unitid = 7, |
| 1431 | .control = 2, |
| 1432 | .cmask = 0x2, |
| 1433 | .val_type = USB_MIXER_S16, |
| 1434 | .name = "Output B Playback Volume" |
| 1435 | }, |
| 1436 | |
| 1437 | { |
| 1438 | .unitid = 10, |
| 1439 | .control = 1, |
| 1440 | .cmask = 0x0, |
| 1441 | .val_type = USB_MIXER_INV_BOOLEAN, |
| 1442 | .name = "Input Capture Switch" |
| 1443 | }, |
| 1444 | { |
| 1445 | .unitid = 10, |
| 1446 | .control = 2, |
| 1447 | .cmask = 0x1, |
| 1448 | .val_type = USB_MIXER_S16, |
| 1449 | .name = "Input A Capture Volume" |
| 1450 | }, |
| 1451 | { |
| 1452 | .unitid = 10, |
| 1453 | .control = 2, |
| 1454 | .cmask = 0x2, |
| 1455 | .val_type = USB_MIXER_S16, |
| 1456 | .name = "Input B Capture Volume" |
| 1457 | }, |
| 1458 | |
| 1459 | {} |
| 1460 | }; |
| 1461 | |
| 1462 | /* Audio Advantage Micro II findings: |
| 1463 | * |
| 1464 | * Mapping spdif AES bits to vendor register.bit: |
| 1465 | * AES0: [0 0 0 0 2.3 2.2 2.1 2.0] - default 0x00 |
| 1466 | * AES1: [3.3 3.2.3.1.3.0 2.7 2.6 2.5 2.4] - default: 0x01 |
| 1467 | * AES2: [0 0 0 0 0 0 0 0] |
| 1468 | * AES3: [0 0 0 0 0 0 x 0] - 'x' bit is set basing on standard usb request |
| 1469 | * (UAC_EP_CS_ATTR_SAMPLE_RATE) for Audio Devices |
| 1470 | * |
| 1471 | * power on values: |
| 1472 | * r2: 0x10 |
| 1473 | * r3: 0x20 (b7 is zeroed just before playback (except IEC61937) and set |
| 1474 | * just after it to 0xa0, presumably it disables/mutes some analog |
| 1475 | * parts when there is no audio.) |
| 1476 | * r9: 0x28 |
| 1477 | * |
| 1478 | * Optical transmitter on/off: |
| 1479 | * vendor register.bit: 9.1 |
| 1480 | * 0 - on (0x28 register value) |
| 1481 | * 1 - off (0x2a register value) |
| 1482 | * |
| 1483 | */ |
| 1484 | static int snd_microii_spdif_info(struct snd_kcontrol *kcontrol, |
| 1485 | struct snd_ctl_elem_info *uinfo) |
| 1486 | { |
| 1487 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 1488 | uinfo->count = 1; |
| 1489 | return 0; |
| 1490 | } |
| 1491 | |
| 1492 | static int snd_microii_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 1493 | struct snd_ctl_elem_value *ucontrol) |
| 1494 | { |
| 1495 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 1496 | struct snd_usb_audio *chip = list->mixer->chip; |
| 1497 | int err; |
| 1498 | struct usb_interface *iface; |
| 1499 | struct usb_host_interface *alts; |
| 1500 | unsigned int ep; |
| 1501 | unsigned char data[3]; |
| 1502 | int rate; |
| 1503 | |
| 1504 | err = snd_usb_lock_shutdown(chip); |
| 1505 | if (err < 0) |
| 1506 | return err; |
| 1507 | |
| 1508 | ucontrol->value.iec958.status[0] = kcontrol->private_value & 0xff; |
| 1509 | ucontrol->value.iec958.status[1] = (kcontrol->private_value >> 8) & 0xff; |
| 1510 | ucontrol->value.iec958.status[2] = 0x00; |
| 1511 | |
| 1512 | /* use known values for that card: interface#1 altsetting#1 */ |
| 1513 | iface = usb_ifnum_to_if(chip->dev, 1); |
| 1514 | if (!iface || iface->num_altsetting < 2) { |
| 1515 | err = -EINVAL; |
| 1516 | goto end; |
| 1517 | } |
| 1518 | alts = &iface->altsetting[1]; |
| 1519 | if (get_iface_desc(alts)->bNumEndpoints < 1) { |
| 1520 | err = -EINVAL; |
| 1521 | goto end; |
| 1522 | } |
| 1523 | ep = get_endpoint(alts, 0)->bEndpointAddress; |
| 1524 | |
| 1525 | err = snd_usb_ctl_msg(chip->dev, |
| 1526 | usb_rcvctrlpipe(chip->dev, 0), |
| 1527 | UAC_GET_CUR, |
| 1528 | USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 1529 | UAC_EP_CS_ATTR_SAMPLE_RATE << 8, |
| 1530 | ep, |
| 1531 | data, |
| 1532 | sizeof(data)); |
| 1533 | if (err < 0) |
| 1534 | goto end; |
| 1535 | |
| 1536 | rate = data[0] | (data[1] << 8) | (data[2] << 16); |
| 1537 | ucontrol->value.iec958.status[3] = (rate == 48000) ? |
| 1538 | IEC958_AES3_CON_FS_48000 : IEC958_AES3_CON_FS_44100; |
| 1539 | |
| 1540 | err = 0; |
| 1541 | end: |
| 1542 | snd_usb_unlock_shutdown(chip); |
| 1543 | return err; |
| 1544 | } |
| 1545 | |
| 1546 | static int snd_microii_spdif_default_update(struct usb_mixer_elem_list *list) |
| 1547 | { |
| 1548 | struct snd_usb_audio *chip = list->mixer->chip; |
| 1549 | unsigned int pval = list->kctl->private_value; |
| 1550 | u8 reg; |
| 1551 | int err; |
| 1552 | |
| 1553 | err = snd_usb_lock_shutdown(chip); |
| 1554 | if (err < 0) |
| 1555 | return err; |
| 1556 | |
| 1557 | reg = ((pval >> 4) & 0xf0) | (pval & 0x0f); |
| 1558 | err = snd_usb_ctl_msg(chip->dev, |
| 1559 | usb_sndctrlpipe(chip->dev, 0), |
| 1560 | UAC_SET_CUR, |
| 1561 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 1562 | reg, |
| 1563 | 2, |
| 1564 | NULL, |
| 1565 | 0); |
| 1566 | if (err < 0) |
| 1567 | goto end; |
| 1568 | |
| 1569 | reg = (pval & IEC958_AES0_NONAUDIO) ? 0xa0 : 0x20; |
| 1570 | reg |= (pval >> 12) & 0x0f; |
| 1571 | err = snd_usb_ctl_msg(chip->dev, |
| 1572 | usb_sndctrlpipe(chip->dev, 0), |
| 1573 | UAC_SET_CUR, |
| 1574 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 1575 | reg, |
| 1576 | 3, |
| 1577 | NULL, |
| 1578 | 0); |
| 1579 | if (err < 0) |
| 1580 | goto end; |
| 1581 | |
| 1582 | end: |
| 1583 | snd_usb_unlock_shutdown(chip); |
| 1584 | return err; |
| 1585 | } |
| 1586 | |
| 1587 | static int snd_microii_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 1588 | struct snd_ctl_elem_value *ucontrol) |
| 1589 | { |
| 1590 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 1591 | unsigned int pval, pval_old; |
| 1592 | int err; |
| 1593 | |
| 1594 | pval = pval_old = kcontrol->private_value; |
| 1595 | pval &= 0xfffff0f0; |
| 1596 | pval |= (ucontrol->value.iec958.status[1] & 0x0f) << 8; |
| 1597 | pval |= (ucontrol->value.iec958.status[0] & 0x0f); |
| 1598 | |
| 1599 | pval &= 0xffff0fff; |
| 1600 | pval |= (ucontrol->value.iec958.status[1] & 0xf0) << 8; |
| 1601 | |
| 1602 | /* The frequency bits in AES3 cannot be set via register access. */ |
| 1603 | |
| 1604 | /* Silently ignore any bits from the request that cannot be set. */ |
| 1605 | |
| 1606 | if (pval == pval_old) |
| 1607 | return 0; |
| 1608 | |
| 1609 | kcontrol->private_value = pval; |
| 1610 | err = snd_microii_spdif_default_update(list); |
| 1611 | return err < 0 ? err : 1; |
| 1612 | } |
| 1613 | |
| 1614 | static int snd_microii_spdif_mask_get(struct snd_kcontrol *kcontrol, |
| 1615 | struct snd_ctl_elem_value *ucontrol) |
| 1616 | { |
| 1617 | ucontrol->value.iec958.status[0] = 0x0f; |
| 1618 | ucontrol->value.iec958.status[1] = 0xff; |
| 1619 | ucontrol->value.iec958.status[2] = 0x00; |
| 1620 | ucontrol->value.iec958.status[3] = 0x00; |
| 1621 | |
| 1622 | return 0; |
| 1623 | } |
| 1624 | |
| 1625 | static int snd_microii_spdif_switch_get(struct snd_kcontrol *kcontrol, |
| 1626 | struct snd_ctl_elem_value *ucontrol) |
| 1627 | { |
| 1628 | ucontrol->value.integer.value[0] = !(kcontrol->private_value & 0x02); |
| 1629 | |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
| 1633 | static int snd_microii_spdif_switch_update(struct usb_mixer_elem_list *list) |
| 1634 | { |
| 1635 | struct snd_usb_audio *chip = list->mixer->chip; |
| 1636 | u8 reg = list->kctl->private_value; |
| 1637 | int err; |
| 1638 | |
| 1639 | err = snd_usb_lock_shutdown(chip); |
| 1640 | if (err < 0) |
| 1641 | return err; |
| 1642 | |
| 1643 | err = snd_usb_ctl_msg(chip->dev, |
| 1644 | usb_sndctrlpipe(chip->dev, 0), |
| 1645 | UAC_SET_CUR, |
| 1646 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER, |
| 1647 | reg, |
| 1648 | 9, |
| 1649 | NULL, |
| 1650 | 0); |
| 1651 | |
| 1652 | snd_usb_unlock_shutdown(chip); |
| 1653 | return err; |
| 1654 | } |
| 1655 | |
| 1656 | static int snd_microii_spdif_switch_put(struct snd_kcontrol *kcontrol, |
| 1657 | struct snd_ctl_elem_value *ucontrol) |
| 1658 | { |
| 1659 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 1660 | u8 reg; |
| 1661 | int err; |
| 1662 | |
| 1663 | reg = ucontrol->value.integer.value[0] ? 0x28 : 0x2a; |
| 1664 | if (reg != list->kctl->private_value) |
| 1665 | return 0; |
| 1666 | |
| 1667 | kcontrol->private_value = reg; |
| 1668 | err = snd_microii_spdif_switch_update(list); |
| 1669 | return err < 0 ? err : 1; |
| 1670 | } |
| 1671 | |
| 1672 | static struct snd_kcontrol_new snd_microii_mixer_spdif[] = { |
| 1673 | { |
| 1674 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
| 1675 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
| 1676 | .info = snd_microii_spdif_info, |
| 1677 | .get = snd_microii_spdif_default_get, |
| 1678 | .put = snd_microii_spdif_default_put, |
| 1679 | .private_value = 0x00000100UL,/* reset value */ |
| 1680 | }, |
| 1681 | { |
| 1682 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 1683 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
| 1684 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, MASK), |
| 1685 | .info = snd_microii_spdif_info, |
| 1686 | .get = snd_microii_spdif_mask_get, |
| 1687 | }, |
| 1688 | { |
| 1689 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1690 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), |
| 1691 | .info = snd_ctl_boolean_mono_info, |
| 1692 | .get = snd_microii_spdif_switch_get, |
| 1693 | .put = snd_microii_spdif_switch_put, |
| 1694 | .private_value = 0x00000028UL,/* reset value */ |
| 1695 | } |
| 1696 | }; |
| 1697 | |
| 1698 | static int snd_microii_controls_create(struct usb_mixer_interface *mixer) |
| 1699 | { |
| 1700 | int err, i; |
| 1701 | static const usb_mixer_elem_resume_func_t resume_funcs[] = { |
| 1702 | snd_microii_spdif_default_update, |
| 1703 | NULL, |
| 1704 | snd_microii_spdif_switch_update |
| 1705 | }; |
| 1706 | |
| 1707 | for (i = 0; i < ARRAY_SIZE(snd_microii_mixer_spdif); ++i) { |
| 1708 | err = add_single_ctl_with_resume(mixer, 0, |
| 1709 | resume_funcs[i], |
| 1710 | &snd_microii_mixer_spdif[i], |
| 1711 | NULL); |
| 1712 | if (err < 0) |
| 1713 | return err; |
| 1714 | } |
| 1715 | |
| 1716 | return 0; |
| 1717 | } |
| 1718 | |
| 1719 | /* Creative Sound Blaster E1 */ |
| 1720 | |
| 1721 | static int snd_soundblaster_e1_switch_get(struct snd_kcontrol *kcontrol, |
| 1722 | struct snd_ctl_elem_value *ucontrol) |
| 1723 | { |
| 1724 | ucontrol->value.integer.value[0] = kcontrol->private_value; |
| 1725 | return 0; |
| 1726 | } |
| 1727 | |
| 1728 | static int snd_soundblaster_e1_switch_update(struct usb_mixer_interface *mixer, |
| 1729 | unsigned char state) |
| 1730 | { |
| 1731 | struct snd_usb_audio *chip = mixer->chip; |
| 1732 | int err; |
| 1733 | unsigned char buff[2]; |
| 1734 | |
| 1735 | buff[0] = 0x02; |
| 1736 | buff[1] = state ? 0x02 : 0x00; |
| 1737 | |
| 1738 | err = snd_usb_lock_shutdown(chip); |
| 1739 | if (err < 0) |
| 1740 | return err; |
| 1741 | err = snd_usb_ctl_msg(chip->dev, |
| 1742 | usb_sndctrlpipe(chip->dev, 0), HID_REQ_SET_REPORT, |
| 1743 | USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT, |
| 1744 | 0x0202, 3, buff, 2); |
| 1745 | snd_usb_unlock_shutdown(chip); |
| 1746 | return err; |
| 1747 | } |
| 1748 | |
| 1749 | static int snd_soundblaster_e1_switch_put(struct snd_kcontrol *kcontrol, |
| 1750 | struct snd_ctl_elem_value *ucontrol) |
| 1751 | { |
| 1752 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 1753 | unsigned char value = !!ucontrol->value.integer.value[0]; |
| 1754 | int err; |
| 1755 | |
| 1756 | if (kcontrol->private_value == value) |
| 1757 | return 0; |
| 1758 | kcontrol->private_value = value; |
| 1759 | err = snd_soundblaster_e1_switch_update(list->mixer, value); |
| 1760 | return err < 0 ? err : 1; |
| 1761 | } |
| 1762 | |
| 1763 | static int snd_soundblaster_e1_switch_resume(struct usb_mixer_elem_list *list) |
| 1764 | { |
| 1765 | return snd_soundblaster_e1_switch_update(list->mixer, |
| 1766 | list->kctl->private_value); |
| 1767 | } |
| 1768 | |
| 1769 | static int snd_soundblaster_e1_switch_info(struct snd_kcontrol *kcontrol, |
| 1770 | struct snd_ctl_elem_info *uinfo) |
| 1771 | { |
| 1772 | static const char *const texts[2] = { |
| 1773 | "Mic", "Aux" |
| 1774 | }; |
| 1775 | |
| 1776 | return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(texts), texts); |
| 1777 | } |
| 1778 | |
| 1779 | static struct snd_kcontrol_new snd_soundblaster_e1_input_switch = { |
| 1780 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1781 | .name = "Input Source", |
| 1782 | .info = snd_soundblaster_e1_switch_info, |
| 1783 | .get = snd_soundblaster_e1_switch_get, |
| 1784 | .put = snd_soundblaster_e1_switch_put, |
| 1785 | .private_value = 0, |
| 1786 | }; |
| 1787 | |
| 1788 | static int snd_soundblaster_e1_switch_create(struct usb_mixer_interface *mixer) |
| 1789 | { |
| 1790 | return add_single_ctl_with_resume(mixer, 0, |
| 1791 | snd_soundblaster_e1_switch_resume, |
| 1792 | &snd_soundblaster_e1_input_switch, |
| 1793 | NULL); |
| 1794 | } |
| 1795 | |
| 1796 | /* |
| 1797 | * Dell WD15 dock jack detection |
| 1798 | * |
| 1799 | * The WD15 contains an ALC4020 USB audio controller and ALC3263 audio codec |
| 1800 | * from Realtek. It is a UAC 1 device, and UAC 1 does not support jack |
| 1801 | * detection. Instead, jack detection works by sending HD Audio commands over |
| 1802 | * vendor-type USB messages. |
| 1803 | */ |
| 1804 | |
| 1805 | #define HDA_VERB_CMD(V, N, D) (((N) << 20) | ((V) << 8) | (D)) |
| 1806 | |
| 1807 | #define REALTEK_HDA_VALUE 0x0038 |
| 1808 | |
| 1809 | #define REALTEK_HDA_SET 62 |
| 1810 | #define REALTEK_HDA_GET_OUT 88 |
| 1811 | #define REALTEK_HDA_GET_IN 89 |
| 1812 | |
| 1813 | #define REALTEK_LINE1 0x1a |
| 1814 | #define REALTEK_VENDOR_REGISTERS 0x20 |
| 1815 | #define REALTEK_HP_OUT 0x21 |
| 1816 | |
| 1817 | #define REALTEK_CBJ_CTRL2 0x50 |
| 1818 | |
| 1819 | #define REALTEK_JACK_INTERRUPT_NODE 5 |
| 1820 | |
| 1821 | #define REALTEK_MIC_FLAG 0x100 |
| 1822 | |
| 1823 | static int realtek_hda_set(struct snd_usb_audio *chip, u32 cmd) |
| 1824 | { |
| 1825 | struct usb_device *dev = chip->dev; |
| 1826 | __be32 buf = cpu_to_be32(cmd); |
| 1827 | |
| 1828 | return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), REALTEK_HDA_SET, |
| 1829 | USB_RECIP_DEVICE | USB_TYPE_VENDOR | USB_DIR_OUT, |
| 1830 | REALTEK_HDA_VALUE, 0, &buf, sizeof(buf)); |
| 1831 | } |
| 1832 | |
| 1833 | static int realtek_hda_get(struct snd_usb_audio *chip, u32 cmd, u32 *value) |
| 1834 | { |
| 1835 | struct usb_device *dev = chip->dev; |
| 1836 | int err; |
| 1837 | __be32 buf = cpu_to_be32(cmd); |
| 1838 | |
| 1839 | err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), REALTEK_HDA_GET_OUT, |
| 1840 | USB_RECIP_DEVICE | USB_TYPE_VENDOR | USB_DIR_OUT, |
| 1841 | REALTEK_HDA_VALUE, 0, &buf, sizeof(buf)); |
| 1842 | if (err < 0) |
| 1843 | return err; |
| 1844 | err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), REALTEK_HDA_GET_IN, |
| 1845 | USB_RECIP_DEVICE | USB_TYPE_VENDOR | USB_DIR_IN, |
| 1846 | REALTEK_HDA_VALUE, 0, &buf, sizeof(buf)); |
| 1847 | if (err < 0) |
| 1848 | return err; |
| 1849 | |
| 1850 | *value = be32_to_cpu(buf); |
| 1851 | return 0; |
| 1852 | } |
| 1853 | |
| 1854 | static int realtek_ctl_connector_get(struct snd_kcontrol *kcontrol, |
| 1855 | struct snd_ctl_elem_value *ucontrol) |
| 1856 | { |
| 1857 | struct usb_mixer_elem_info *cval = kcontrol->private_data; |
| 1858 | struct snd_usb_audio *chip = cval->head.mixer->chip; |
| 1859 | u32 pv = kcontrol->private_value; |
| 1860 | u32 node_id = pv & 0xff; |
| 1861 | u32 sense; |
| 1862 | u32 cbj_ctrl2; |
| 1863 | bool presence; |
| 1864 | int err; |
| 1865 | |
| 1866 | err = snd_usb_lock_shutdown(chip); |
| 1867 | if (err < 0) |
| 1868 | return err; |
| 1869 | err = realtek_hda_get(chip, |
| 1870 | HDA_VERB_CMD(AC_VERB_GET_PIN_SENSE, node_id, 0), |
| 1871 | &sense); |
| 1872 | if (err < 0) |
| 1873 | goto err; |
| 1874 | if (pv & REALTEK_MIC_FLAG) { |
| 1875 | err = realtek_hda_set(chip, |
| 1876 | HDA_VERB_CMD(AC_VERB_SET_COEF_INDEX, |
| 1877 | REALTEK_VENDOR_REGISTERS, |
| 1878 | REALTEK_CBJ_CTRL2)); |
| 1879 | if (err < 0) |
| 1880 | goto err; |
| 1881 | err = realtek_hda_get(chip, |
| 1882 | HDA_VERB_CMD(AC_VERB_GET_PROC_COEF, |
| 1883 | REALTEK_VENDOR_REGISTERS, 0), |
| 1884 | &cbj_ctrl2); |
| 1885 | if (err < 0) |
| 1886 | goto err; |
| 1887 | } |
| 1888 | err: |
| 1889 | snd_usb_unlock_shutdown(chip); |
| 1890 | if (err < 0) |
| 1891 | return err; |
| 1892 | |
| 1893 | presence = sense & AC_PINSENSE_PRESENCE; |
| 1894 | if (pv & REALTEK_MIC_FLAG) |
| 1895 | presence = presence && (cbj_ctrl2 & 0x0070) == 0x0070; |
| 1896 | ucontrol->value.integer.value[0] = presence; |
| 1897 | return 0; |
| 1898 | } |
| 1899 | |
| 1900 | static const struct snd_kcontrol_new realtek_connector_ctl_ro = { |
| 1901 | .iface = SNDRV_CTL_ELEM_IFACE_CARD, |
| 1902 | .name = "", /* will be filled later manually */ |
| 1903 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 1904 | .info = snd_ctl_boolean_mono_info, |
| 1905 | .get = realtek_ctl_connector_get, |
| 1906 | }; |
| 1907 | |
| 1908 | static int realtek_resume_jack(struct usb_mixer_elem_list *list) |
| 1909 | { |
| 1910 | snd_ctl_notify(list->mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE, |
| 1911 | &list->kctl->id); |
| 1912 | return 0; |
| 1913 | } |
| 1914 | |
| 1915 | static int realtek_add_jack(struct usb_mixer_interface *mixer, |
| 1916 | char *name, u32 val) |
| 1917 | { |
| 1918 | struct usb_mixer_elem_info *cval; |
| 1919 | struct snd_kcontrol *kctl; |
| 1920 | |
| 1921 | cval = kzalloc(sizeof(*cval), GFP_KERNEL); |
| 1922 | if (!cval) |
| 1923 | return -ENOMEM; |
| 1924 | snd_usb_mixer_elem_init_std(&cval->head, mixer, |
| 1925 | REALTEK_JACK_INTERRUPT_NODE); |
| 1926 | cval->head.resume = realtek_resume_jack; |
| 1927 | cval->val_type = USB_MIXER_BOOLEAN; |
| 1928 | cval->channels = 1; |
| 1929 | cval->min = 0; |
| 1930 | cval->max = 1; |
| 1931 | kctl = snd_ctl_new1(&realtek_connector_ctl_ro, cval); |
| 1932 | if (!kctl) { |
| 1933 | kfree(cval); |
| 1934 | return -ENOMEM; |
| 1935 | } |
| 1936 | kctl->private_value = val; |
| 1937 | strscpy(kctl->id.name, name, sizeof(kctl->id.name)); |
| 1938 | kctl->private_free = snd_usb_mixer_elem_free; |
| 1939 | return snd_usb_mixer_add_control(&cval->head, kctl); |
| 1940 | } |
| 1941 | |
| 1942 | static int dell_dock_mixer_create(struct usb_mixer_interface *mixer) |
| 1943 | { |
| 1944 | int err; |
| 1945 | |
| 1946 | err = realtek_add_jack(mixer, "Line Out Jack", REALTEK_LINE1); |
| 1947 | if (err < 0) |
| 1948 | return err; |
| 1949 | err = realtek_add_jack(mixer, "Headphone Jack", REALTEK_HP_OUT); |
| 1950 | if (err < 0) |
| 1951 | return err; |
| 1952 | err = realtek_add_jack(mixer, "Headset Mic Jack", |
| 1953 | REALTEK_HP_OUT | REALTEK_MIC_FLAG); |
| 1954 | if (err < 0) |
| 1955 | return err; |
| 1956 | return 0; |
| 1957 | } |
| 1958 | |
| 1959 | static void dell_dock_init_vol(struct snd_usb_audio *chip, int ch, int id) |
| 1960 | { |
| 1961 | u16 buf = 0; |
| 1962 | |
| 1963 | snd_usb_ctl_msg(chip->dev, usb_sndctrlpipe(chip->dev, 0), UAC_SET_CUR, |
| 1964 | USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT, |
| 1965 | ch, snd_usb_ctrl_intf(chip) | (id << 8), |
| 1966 | &buf, 2); |
| 1967 | } |
| 1968 | |
| 1969 | static int dell_dock_mixer_init(struct usb_mixer_interface *mixer) |
| 1970 | { |
| 1971 | /* fix to 0dB playback volumes */ |
| 1972 | dell_dock_init_vol(mixer->chip, 1, 16); |
| 1973 | dell_dock_init_vol(mixer->chip, 2, 16); |
| 1974 | dell_dock_init_vol(mixer->chip, 1, 19); |
| 1975 | dell_dock_init_vol(mixer->chip, 2, 19); |
| 1976 | return 0; |
| 1977 | } |
| 1978 | |
| 1979 | /* RME Class Compliant device quirks */ |
| 1980 | |
| 1981 | #define SND_RME_GET_STATUS1 23 |
| 1982 | #define SND_RME_GET_CURRENT_FREQ 17 |
| 1983 | #define SND_RME_CLK_SYSTEM_SHIFT 16 |
| 1984 | #define SND_RME_CLK_SYSTEM_MASK 0x1f |
| 1985 | #define SND_RME_CLK_AES_SHIFT 8 |
| 1986 | #define SND_RME_CLK_SPDIF_SHIFT 12 |
| 1987 | #define SND_RME_CLK_AES_SPDIF_MASK 0xf |
| 1988 | #define SND_RME_CLK_SYNC_SHIFT 6 |
| 1989 | #define SND_RME_CLK_SYNC_MASK 0x3 |
| 1990 | #define SND_RME_CLK_FREQMUL_SHIFT 18 |
| 1991 | #define SND_RME_CLK_FREQMUL_MASK 0x7 |
| 1992 | #define SND_RME_CLK_SYSTEM(x) \ |
| 1993 | ((x >> SND_RME_CLK_SYSTEM_SHIFT) & SND_RME_CLK_SYSTEM_MASK) |
| 1994 | #define SND_RME_CLK_AES(x) \ |
| 1995 | ((x >> SND_RME_CLK_AES_SHIFT) & SND_RME_CLK_AES_SPDIF_MASK) |
| 1996 | #define SND_RME_CLK_SPDIF(x) \ |
| 1997 | ((x >> SND_RME_CLK_SPDIF_SHIFT) & SND_RME_CLK_AES_SPDIF_MASK) |
| 1998 | #define SND_RME_CLK_SYNC(x) \ |
| 1999 | ((x >> SND_RME_CLK_SYNC_SHIFT) & SND_RME_CLK_SYNC_MASK) |
| 2000 | #define SND_RME_CLK_FREQMUL(x) \ |
| 2001 | ((x >> SND_RME_CLK_FREQMUL_SHIFT) & SND_RME_CLK_FREQMUL_MASK) |
| 2002 | #define SND_RME_CLK_AES_LOCK 0x1 |
| 2003 | #define SND_RME_CLK_AES_SYNC 0x4 |
| 2004 | #define SND_RME_CLK_SPDIF_LOCK 0x2 |
| 2005 | #define SND_RME_CLK_SPDIF_SYNC 0x8 |
| 2006 | #define SND_RME_SPDIF_IF_SHIFT 4 |
| 2007 | #define SND_RME_SPDIF_FORMAT_SHIFT 5 |
| 2008 | #define SND_RME_BINARY_MASK 0x1 |
| 2009 | #define SND_RME_SPDIF_IF(x) \ |
| 2010 | ((x >> SND_RME_SPDIF_IF_SHIFT) & SND_RME_BINARY_MASK) |
| 2011 | #define SND_RME_SPDIF_FORMAT(x) \ |
| 2012 | ((x >> SND_RME_SPDIF_FORMAT_SHIFT) & SND_RME_BINARY_MASK) |
| 2013 | |
| 2014 | static const u32 snd_rme_rate_table[] = { |
| 2015 | 32000, 44100, 48000, 50000, |
| 2016 | 64000, 88200, 96000, 100000, |
| 2017 | 128000, 176400, 192000, 200000, |
| 2018 | 256000, 352800, 384000, 400000, |
| 2019 | 512000, 705600, 768000, 800000 |
| 2020 | }; |
| 2021 | /* maximum number of items for AES and S/PDIF rates for above table */ |
| 2022 | #define SND_RME_RATE_IDX_AES_SPDIF_NUM 12 |
| 2023 | |
| 2024 | enum snd_rme_domain { |
| 2025 | SND_RME_DOMAIN_SYSTEM, |
| 2026 | SND_RME_DOMAIN_AES, |
| 2027 | SND_RME_DOMAIN_SPDIF |
| 2028 | }; |
| 2029 | |
| 2030 | enum snd_rme_clock_status { |
| 2031 | SND_RME_CLOCK_NOLOCK, |
| 2032 | SND_RME_CLOCK_LOCK, |
| 2033 | SND_RME_CLOCK_SYNC |
| 2034 | }; |
| 2035 | |
| 2036 | static int snd_rme_read_value(struct snd_usb_audio *chip, |
| 2037 | unsigned int item, |
| 2038 | u32 *value) |
| 2039 | { |
| 2040 | struct usb_device *dev = chip->dev; |
| 2041 | int err; |
| 2042 | |
| 2043 | err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 2044 | item, |
| 2045 | USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, |
| 2046 | 0, 0, |
| 2047 | value, sizeof(*value)); |
| 2048 | if (err < 0) |
| 2049 | dev_err(&dev->dev, |
| 2050 | "unable to issue vendor read request %d (ret = %d)", |
| 2051 | item, err); |
| 2052 | return err; |
| 2053 | } |
| 2054 | |
| 2055 | static int snd_rme_get_status1(struct snd_kcontrol *kcontrol, |
| 2056 | u32 *status1) |
| 2057 | { |
| 2058 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 2059 | struct snd_usb_audio *chip = list->mixer->chip; |
| 2060 | int err; |
| 2061 | |
| 2062 | err = snd_usb_lock_shutdown(chip); |
| 2063 | if (err < 0) |
| 2064 | return err; |
| 2065 | err = snd_rme_read_value(chip, SND_RME_GET_STATUS1, status1); |
| 2066 | snd_usb_unlock_shutdown(chip); |
| 2067 | return err; |
| 2068 | } |
| 2069 | |
| 2070 | static int snd_rme_rate_get(struct snd_kcontrol *kcontrol, |
| 2071 | struct snd_ctl_elem_value *ucontrol) |
| 2072 | { |
| 2073 | u32 status1; |
| 2074 | u32 rate = 0; |
| 2075 | int idx; |
| 2076 | int err; |
| 2077 | |
| 2078 | err = snd_rme_get_status1(kcontrol, &status1); |
| 2079 | if (err < 0) |
| 2080 | return err; |
| 2081 | switch (kcontrol->private_value) { |
| 2082 | case SND_RME_DOMAIN_SYSTEM: |
| 2083 | idx = SND_RME_CLK_SYSTEM(status1); |
| 2084 | if (idx < ARRAY_SIZE(snd_rme_rate_table)) |
| 2085 | rate = snd_rme_rate_table[idx]; |
| 2086 | break; |
| 2087 | case SND_RME_DOMAIN_AES: |
| 2088 | idx = SND_RME_CLK_AES(status1); |
| 2089 | if (idx < SND_RME_RATE_IDX_AES_SPDIF_NUM) |
| 2090 | rate = snd_rme_rate_table[idx]; |
| 2091 | break; |
| 2092 | case SND_RME_DOMAIN_SPDIF: |
| 2093 | idx = SND_RME_CLK_SPDIF(status1); |
| 2094 | if (idx < SND_RME_RATE_IDX_AES_SPDIF_NUM) |
| 2095 | rate = snd_rme_rate_table[idx]; |
| 2096 | break; |
| 2097 | default: |
| 2098 | return -EINVAL; |
| 2099 | } |
| 2100 | ucontrol->value.integer.value[0] = rate; |
| 2101 | return 0; |
| 2102 | } |
| 2103 | |
| 2104 | static int snd_rme_sync_state_get(struct snd_kcontrol *kcontrol, |
| 2105 | struct snd_ctl_elem_value *ucontrol) |
| 2106 | { |
| 2107 | u32 status1; |
| 2108 | int idx = SND_RME_CLOCK_NOLOCK; |
| 2109 | int err; |
| 2110 | |
| 2111 | err = snd_rme_get_status1(kcontrol, &status1); |
| 2112 | if (err < 0) |
| 2113 | return err; |
| 2114 | switch (kcontrol->private_value) { |
| 2115 | case SND_RME_DOMAIN_AES: /* AES */ |
| 2116 | if (status1 & SND_RME_CLK_AES_SYNC) |
| 2117 | idx = SND_RME_CLOCK_SYNC; |
| 2118 | else if (status1 & SND_RME_CLK_AES_LOCK) |
| 2119 | idx = SND_RME_CLOCK_LOCK; |
| 2120 | break; |
| 2121 | case SND_RME_DOMAIN_SPDIF: /* SPDIF */ |
| 2122 | if (status1 & SND_RME_CLK_SPDIF_SYNC) |
| 2123 | idx = SND_RME_CLOCK_SYNC; |
| 2124 | else if (status1 & SND_RME_CLK_SPDIF_LOCK) |
| 2125 | idx = SND_RME_CLOCK_LOCK; |
| 2126 | break; |
| 2127 | default: |
| 2128 | return -EINVAL; |
| 2129 | } |
| 2130 | ucontrol->value.enumerated.item[0] = idx; |
| 2131 | return 0; |
| 2132 | } |
| 2133 | |
| 2134 | static int snd_rme_spdif_if_get(struct snd_kcontrol *kcontrol, |
| 2135 | struct snd_ctl_elem_value *ucontrol) |
| 2136 | { |
| 2137 | u32 status1; |
| 2138 | int err; |
| 2139 | |
| 2140 | err = snd_rme_get_status1(kcontrol, &status1); |
| 2141 | if (err < 0) |
| 2142 | return err; |
| 2143 | ucontrol->value.enumerated.item[0] = SND_RME_SPDIF_IF(status1); |
| 2144 | return 0; |
| 2145 | } |
| 2146 | |
| 2147 | static int snd_rme_spdif_format_get(struct snd_kcontrol *kcontrol, |
| 2148 | struct snd_ctl_elem_value *ucontrol) |
| 2149 | { |
| 2150 | u32 status1; |
| 2151 | int err; |
| 2152 | |
| 2153 | err = snd_rme_get_status1(kcontrol, &status1); |
| 2154 | if (err < 0) |
| 2155 | return err; |
| 2156 | ucontrol->value.enumerated.item[0] = SND_RME_SPDIF_FORMAT(status1); |
| 2157 | return 0; |
| 2158 | } |
| 2159 | |
| 2160 | static int snd_rme_sync_source_get(struct snd_kcontrol *kcontrol, |
| 2161 | struct snd_ctl_elem_value *ucontrol) |
| 2162 | { |
| 2163 | u32 status1; |
| 2164 | int err; |
| 2165 | |
| 2166 | err = snd_rme_get_status1(kcontrol, &status1); |
| 2167 | if (err < 0) |
| 2168 | return err; |
| 2169 | ucontrol->value.enumerated.item[0] = SND_RME_CLK_SYNC(status1); |
| 2170 | return 0; |
| 2171 | } |
| 2172 | |
| 2173 | static int snd_rme_current_freq_get(struct snd_kcontrol *kcontrol, |
| 2174 | struct snd_ctl_elem_value *ucontrol) |
| 2175 | { |
| 2176 | struct usb_mixer_elem_list *list = snd_kcontrol_chip(kcontrol); |
| 2177 | struct snd_usb_audio *chip = list->mixer->chip; |
| 2178 | u32 status1; |
| 2179 | const u64 num = 104857600000000ULL; |
| 2180 | u32 den; |
| 2181 | unsigned int freq; |
| 2182 | int err; |
| 2183 | |
| 2184 | err = snd_usb_lock_shutdown(chip); |
| 2185 | if (err < 0) |
| 2186 | return err; |
| 2187 | err = snd_rme_read_value(chip, SND_RME_GET_STATUS1, &status1); |
| 2188 | if (err < 0) |
| 2189 | goto end; |
| 2190 | err = snd_rme_read_value(chip, SND_RME_GET_CURRENT_FREQ, &den); |
| 2191 | if (err < 0) |
| 2192 | goto end; |
| 2193 | freq = (den == 0) ? 0 : div64_u64(num, den); |
| 2194 | freq <<= SND_RME_CLK_FREQMUL(status1); |
| 2195 | ucontrol->value.integer.value[0] = freq; |
| 2196 | |
| 2197 | end: |
| 2198 | snd_usb_unlock_shutdown(chip); |
| 2199 | return err; |
| 2200 | } |
| 2201 | |
| 2202 | static int snd_rme_rate_info(struct snd_kcontrol *kcontrol, |
| 2203 | struct snd_ctl_elem_info *uinfo) |
| 2204 | { |
| 2205 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2206 | uinfo->count = 1; |
| 2207 | switch (kcontrol->private_value) { |
| 2208 | case SND_RME_DOMAIN_SYSTEM: |
| 2209 | uinfo->value.integer.min = 32000; |
| 2210 | uinfo->value.integer.max = 800000; |
| 2211 | break; |
| 2212 | case SND_RME_DOMAIN_AES: |
| 2213 | case SND_RME_DOMAIN_SPDIF: |
| 2214 | default: |
| 2215 | uinfo->value.integer.min = 0; |
| 2216 | uinfo->value.integer.max = 200000; |
| 2217 | } |
| 2218 | uinfo->value.integer.step = 0; |
| 2219 | return 0; |
| 2220 | } |
| 2221 | |
| 2222 | static int snd_rme_sync_state_info(struct snd_kcontrol *kcontrol, |
| 2223 | struct snd_ctl_elem_info *uinfo) |
| 2224 | { |
| 2225 | static const char *const sync_states[] = { |
| 2226 | "No Lock", "Lock", "Sync" |
| 2227 | }; |
| 2228 | |
| 2229 | return snd_ctl_enum_info(uinfo, 1, |
| 2230 | ARRAY_SIZE(sync_states), sync_states); |
| 2231 | } |
| 2232 | |
| 2233 | static int snd_rme_spdif_if_info(struct snd_kcontrol *kcontrol, |
| 2234 | struct snd_ctl_elem_info *uinfo) |
| 2235 | { |
| 2236 | static const char *const spdif_if[] = { |
| 2237 | "Coaxial", "Optical" |
| 2238 | }; |
| 2239 | |
| 2240 | return snd_ctl_enum_info(uinfo, 1, |
| 2241 | ARRAY_SIZE(spdif_if), spdif_if); |
| 2242 | } |
| 2243 | |
| 2244 | static int snd_rme_spdif_format_info(struct snd_kcontrol *kcontrol, |
| 2245 | struct snd_ctl_elem_info *uinfo) |
| 2246 | { |
| 2247 | static const char *const optical_type[] = { |
| 2248 | "Consumer", "Professional" |
| 2249 | }; |
| 2250 | |
| 2251 | return snd_ctl_enum_info(uinfo, 1, |
| 2252 | ARRAY_SIZE(optical_type), optical_type); |
| 2253 | } |
| 2254 | |
| 2255 | static int snd_rme_sync_source_info(struct snd_kcontrol *kcontrol, |
| 2256 | struct snd_ctl_elem_info *uinfo) |
| 2257 | { |
| 2258 | static const char *const sync_sources[] = { |
| 2259 | "Internal", "AES", "SPDIF", "Internal" |
| 2260 | }; |
| 2261 | |
| 2262 | return snd_ctl_enum_info(uinfo, 1, |
| 2263 | ARRAY_SIZE(sync_sources), sync_sources); |
| 2264 | } |
| 2265 | |
| 2266 | static struct snd_kcontrol_new snd_rme_controls[] = { |
| 2267 | { |
| 2268 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2269 | .name = "AES Rate", |
| 2270 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2271 | .info = snd_rme_rate_info, |
| 2272 | .get = snd_rme_rate_get, |
| 2273 | .private_value = SND_RME_DOMAIN_AES |
| 2274 | }, |
| 2275 | { |
| 2276 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2277 | .name = "AES Sync", |
| 2278 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2279 | .info = snd_rme_sync_state_info, |
| 2280 | .get = snd_rme_sync_state_get, |
| 2281 | .private_value = SND_RME_DOMAIN_AES |
| 2282 | }, |
| 2283 | { |
| 2284 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2285 | .name = "SPDIF Rate", |
| 2286 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2287 | .info = snd_rme_rate_info, |
| 2288 | .get = snd_rme_rate_get, |
| 2289 | .private_value = SND_RME_DOMAIN_SPDIF |
| 2290 | }, |
| 2291 | { |
| 2292 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2293 | .name = "SPDIF Sync", |
| 2294 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2295 | .info = snd_rme_sync_state_info, |
| 2296 | .get = snd_rme_sync_state_get, |
| 2297 | .private_value = SND_RME_DOMAIN_SPDIF |
| 2298 | }, |
| 2299 | { |
| 2300 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2301 | .name = "SPDIF Interface", |
| 2302 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2303 | .info = snd_rme_spdif_if_info, |
| 2304 | .get = snd_rme_spdif_if_get, |
| 2305 | }, |
| 2306 | { |
| 2307 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2308 | .name = "SPDIF Format", |
| 2309 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2310 | .info = snd_rme_spdif_format_info, |
| 2311 | .get = snd_rme_spdif_format_get, |
| 2312 | }, |
| 2313 | { |
| 2314 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2315 | .name = "Sync Source", |
| 2316 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2317 | .info = snd_rme_sync_source_info, |
| 2318 | .get = snd_rme_sync_source_get |
| 2319 | }, |
| 2320 | { |
| 2321 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2322 | .name = "System Rate", |
| 2323 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2324 | .info = snd_rme_rate_info, |
| 2325 | .get = snd_rme_rate_get, |
| 2326 | .private_value = SND_RME_DOMAIN_SYSTEM |
| 2327 | }, |
| 2328 | { |
| 2329 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2330 | .name = "Current Frequency", |
| 2331 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
| 2332 | .info = snd_rme_rate_info, |
| 2333 | .get = snd_rme_current_freq_get |
| 2334 | } |
| 2335 | }; |
| 2336 | |
| 2337 | static int snd_rme_controls_create(struct usb_mixer_interface *mixer) |
| 2338 | { |
| 2339 | int err, i; |
| 2340 | |
| 2341 | for (i = 0; i < ARRAY_SIZE(snd_rme_controls); ++i) { |
| 2342 | err = add_single_ctl_with_resume(mixer, 0, |
| 2343 | NULL, |
| 2344 | &snd_rme_controls[i], |
| 2345 | NULL); |
| 2346 | if (err < 0) |
| 2347 | return err; |
| 2348 | } |
| 2349 | |
| 2350 | return 0; |
| 2351 | } |
| 2352 | |
| 2353 | int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer) |
| 2354 | { |
| 2355 | int err = 0; |
| 2356 | |
| 2357 | err = snd_usb_soundblaster_remote_init(mixer); |
| 2358 | if (err < 0) |
| 2359 | return err; |
| 2360 | |
| 2361 | switch (mixer->chip->usb_id) { |
| 2362 | /* Tascam US-16x08 */ |
| 2363 | case USB_ID(0x0644, 0x8047): |
| 2364 | err = snd_us16x08_controls_create(mixer); |
| 2365 | break; |
| 2366 | case USB_ID(0x041e, 0x3020): |
| 2367 | case USB_ID(0x041e, 0x3040): |
| 2368 | case USB_ID(0x041e, 0x3042): |
| 2369 | case USB_ID(0x041e, 0x30df): |
| 2370 | case USB_ID(0x041e, 0x3048): |
| 2371 | err = snd_audigy2nx_controls_create(mixer); |
| 2372 | if (err < 0) |
| 2373 | break; |
| 2374 | snd_card_ro_proc_new(mixer->chip->card, "audigy2nx", |
| 2375 | mixer, snd_audigy2nx_proc_read); |
| 2376 | break; |
| 2377 | |
| 2378 | /* EMU0204 */ |
| 2379 | case USB_ID(0x041e, 0x3f19): |
| 2380 | err = snd_emu0204_controls_create(mixer); |
| 2381 | break; |
| 2382 | |
| 2383 | case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */ |
| 2384 | case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C400 */ |
| 2385 | err = snd_c400_create_mixer(mixer); |
| 2386 | break; |
| 2387 | |
| 2388 | case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */ |
| 2389 | case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */ |
| 2390 | err = snd_ftu_create_mixer(mixer); |
| 2391 | break; |
| 2392 | |
| 2393 | case USB_ID(0x0b05, 0x1739): /* ASUS Xonar U1 */ |
| 2394 | case USB_ID(0x0b05, 0x1743): /* ASUS Xonar U1 (2) */ |
| 2395 | case USB_ID(0x0b05, 0x17a0): /* ASUS Xonar U3 */ |
| 2396 | err = snd_xonar_u1_controls_create(mixer); |
| 2397 | break; |
| 2398 | |
| 2399 | case USB_ID(0x0d8c, 0x0103): /* Audio Advantage Micro II */ |
| 2400 | err = snd_microii_controls_create(mixer); |
| 2401 | break; |
| 2402 | |
| 2403 | case USB_ID(0x0dba, 0x1000): /* Digidesign Mbox 1 */ |
| 2404 | err = snd_mbox1_create_sync_switch(mixer); |
| 2405 | break; |
| 2406 | |
| 2407 | case USB_ID(0x17cc, 0x1011): /* Traktor Audio 6 */ |
| 2408 | err = snd_nativeinstruments_create_mixer(mixer, |
| 2409 | snd_nativeinstruments_ta6_mixers, |
| 2410 | ARRAY_SIZE(snd_nativeinstruments_ta6_mixers)); |
| 2411 | break; |
| 2412 | |
| 2413 | case USB_ID(0x17cc, 0x1021): /* Traktor Audio 10 */ |
| 2414 | err = snd_nativeinstruments_create_mixer(mixer, |
| 2415 | snd_nativeinstruments_ta10_mixers, |
| 2416 | ARRAY_SIZE(snd_nativeinstruments_ta10_mixers)); |
| 2417 | break; |
| 2418 | |
| 2419 | case USB_ID(0x200c, 0x1018): /* Electrix Ebox-44 */ |
| 2420 | /* detection is disabled in mixer_maps.c */ |
| 2421 | err = snd_create_std_mono_table(mixer, ebox44_table); |
| 2422 | break; |
| 2423 | |
| 2424 | case USB_ID(0x1235, 0x8012): /* Focusrite Scarlett 6i6 */ |
| 2425 | case USB_ID(0x1235, 0x8002): /* Focusrite Scarlett 8i6 */ |
| 2426 | case USB_ID(0x1235, 0x8004): /* Focusrite Scarlett 18i6 */ |
| 2427 | case USB_ID(0x1235, 0x8014): /* Focusrite Scarlett 18i8 */ |
| 2428 | case USB_ID(0x1235, 0x800c): /* Focusrite Scarlett 18i20 */ |
| 2429 | err = snd_scarlett_controls_create(mixer); |
| 2430 | break; |
| 2431 | |
| 2432 | case USB_ID(0x1235, 0x8203): /* Focusrite Scarlett 6i6 2nd Gen */ |
| 2433 | case USB_ID(0x1235, 0x8204): /* Focusrite Scarlett 18i8 2nd Gen */ |
| 2434 | case USB_ID(0x1235, 0x8201): /* Focusrite Scarlett 18i20 2nd Gen */ |
| 2435 | err = snd_scarlett_gen2_init(mixer); |
| 2436 | break; |
| 2437 | |
| 2438 | case USB_ID(0x041e, 0x323b): /* Creative Sound Blaster E1 */ |
| 2439 | err = snd_soundblaster_e1_switch_create(mixer); |
| 2440 | break; |
| 2441 | case USB_ID(0x0bda, 0x4014): /* Dell WD15 dock */ |
| 2442 | err = dell_dock_mixer_create(mixer); |
| 2443 | if (err < 0) |
| 2444 | break; |
| 2445 | err = dell_dock_mixer_init(mixer); |
| 2446 | break; |
| 2447 | case USB_ID(0x0bda, 0x402e): /* Dell WD19 dock */ |
| 2448 | err = dell_dock_mixer_create(mixer); |
| 2449 | break; |
| 2450 | |
| 2451 | case USB_ID(0x2a39, 0x3fd2): /* RME ADI-2 Pro */ |
| 2452 | case USB_ID(0x2a39, 0x3fd3): /* RME ADI-2 DAC */ |
| 2453 | case USB_ID(0x2a39, 0x3fd4): /* RME */ |
| 2454 | err = snd_rme_controls_create(mixer); |
| 2455 | break; |
| 2456 | } |
| 2457 | |
| 2458 | return err; |
| 2459 | } |
| 2460 | |
| 2461 | #ifdef CONFIG_PM |
| 2462 | void snd_usb_mixer_resume_quirk(struct usb_mixer_interface *mixer) |
| 2463 | { |
| 2464 | switch (mixer->chip->usb_id) { |
| 2465 | case USB_ID(0x0bda, 0x4014): /* Dell WD15 dock */ |
| 2466 | dell_dock_mixer_init(mixer); |
| 2467 | break; |
| 2468 | } |
| 2469 | } |
| 2470 | #endif |
| 2471 | |
| 2472 | void snd_usb_mixer_rc_memory_change(struct usb_mixer_interface *mixer, |
| 2473 | int unitid) |
| 2474 | { |
| 2475 | if (!mixer->rc_cfg) |
| 2476 | return; |
| 2477 | /* unit ids specific to Extigy/Audigy 2 NX: */ |
| 2478 | switch (unitid) { |
| 2479 | case 0: /* remote control */ |
| 2480 | mixer->rc_urb->dev = mixer->chip->dev; |
| 2481 | usb_submit_urb(mixer->rc_urb, GFP_ATOMIC); |
| 2482 | break; |
| 2483 | case 4: /* digital in jack */ |
| 2484 | case 7: /* line in jacks */ |
| 2485 | case 19: /* speaker out jacks */ |
| 2486 | case 20: /* headphones out jack */ |
| 2487 | break; |
| 2488 | /* live24ext: 4 = line-in jack */ |
| 2489 | case 3: /* hp-out jack (may actuate Mute) */ |
| 2490 | if (mixer->chip->usb_id == USB_ID(0x041e, 0x3040) || |
| 2491 | mixer->chip->usb_id == USB_ID(0x041e, 0x3048)) |
| 2492 | snd_usb_mixer_notify_id(mixer, mixer->rc_cfg->mute_mixer_id); |
| 2493 | break; |
| 2494 | default: |
| 2495 | usb_audio_dbg(mixer->chip, "memory change in unknown unit %d\n", unitid); |
| 2496 | break; |
| 2497 | } |
| 2498 | } |
| 2499 | |
| 2500 | static void snd_dragonfly_quirk_db_scale(struct usb_mixer_interface *mixer, |
| 2501 | struct usb_mixer_elem_info *cval, |
| 2502 | struct snd_kcontrol *kctl) |
| 2503 | { |
| 2504 | /* Approximation using 10 ranges based on output measurement on hw v1.2. |
| 2505 | * This seems close to the cubic mapping e.g. alsamixer uses. */ |
| 2506 | static const DECLARE_TLV_DB_RANGE(scale, |
| 2507 | 0, 1, TLV_DB_MINMAX_ITEM(-5300, -4970), |
| 2508 | 2, 5, TLV_DB_MINMAX_ITEM(-4710, -4160), |
| 2509 | 6, 7, TLV_DB_MINMAX_ITEM(-3884, -3710), |
| 2510 | 8, 14, TLV_DB_MINMAX_ITEM(-3443, -2560), |
| 2511 | 15, 16, TLV_DB_MINMAX_ITEM(-2475, -2324), |
| 2512 | 17, 19, TLV_DB_MINMAX_ITEM(-2228, -2031), |
| 2513 | 20, 26, TLV_DB_MINMAX_ITEM(-1910, -1393), |
| 2514 | 27, 31, TLV_DB_MINMAX_ITEM(-1322, -1032), |
| 2515 | 32, 40, TLV_DB_MINMAX_ITEM(-968, -490), |
| 2516 | 41, 50, TLV_DB_MINMAX_ITEM(-441, 0), |
| 2517 | ); |
| 2518 | |
| 2519 | if (cval->min == 0 && cval->max == 50) { |
| 2520 | usb_audio_info(mixer->chip, "applying DragonFly dB scale quirk (0-50 variant)\n"); |
| 2521 | kctl->tlv.p = scale; |
| 2522 | kctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ; |
| 2523 | kctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK; |
| 2524 | |
| 2525 | } else if (cval->min == 0 && cval->max <= 1000) { |
| 2526 | /* Some other clearly broken DragonFly variant. |
| 2527 | * At least a 0..53 variant (hw v1.0) exists. |
| 2528 | */ |
| 2529 | usb_audio_info(mixer->chip, "ignoring too narrow dB range on a DragonFly device"); |
| 2530 | kctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK; |
| 2531 | } |
| 2532 | } |
| 2533 | |
| 2534 | void snd_usb_mixer_fu_apply_quirk(struct usb_mixer_interface *mixer, |
| 2535 | struct usb_mixer_elem_info *cval, int unitid, |
| 2536 | struct snd_kcontrol *kctl) |
| 2537 | { |
| 2538 | switch (mixer->chip->usb_id) { |
| 2539 | case USB_ID(0x21b4, 0x0081): /* AudioQuest DragonFly */ |
| 2540 | if (unitid == 7 && cval->control == UAC_FU_VOLUME) |
| 2541 | snd_dragonfly_quirk_db_scale(mixer, cval, kctl); |
| 2542 | break; |
| 2543 | /* lowest playback value is muted on some devices */ |
| 2544 | case USB_ID(0x0d8c, 0x000c): /* C-Media */ |
| 2545 | case USB_ID(0x0d8c, 0x0014): /* C-Media */ |
| 2546 | case USB_ID(0x19f7, 0x0003): /* RODE NT-USB */ |
| 2547 | if (strstr(kctl->id.name, "Playback")) |
| 2548 | cval->min_mute = 1; |
| 2549 | break; |
| 2550 | } |
| 2551 | } |
| 2552 | |