linux/sound/usb/mixer_maps.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 *   Additional mixer mapping
   4 *
   5 *   Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
   6 */
   7
   8struct usbmix_dB_map {
   9        u32 min;
  10        u32 max;
  11};
  12
  13struct usbmix_name_map {
  14        int id;
  15        const char *name;
  16        int control;
  17        struct usbmix_dB_map *dB;
  18};
  19
  20struct usbmix_selector_map {
  21        int id;
  22        int count;
  23        const char **names;
  24};
  25
  26struct usbmix_ctl_map {
  27        u32 id;
  28        const struct usbmix_name_map *map;
  29        const struct usbmix_selector_map *selector_map;
  30        int ignore_ctl_error;
  31};
  32
  33/*
  34 * USB control mappers for SB Exitigy
  35 */
  36
  37/*
  38 * Topology of SB Extigy (see on the wide screen :)
  39
  40USB_IN[1] --->FU[2]------------------------------+->MU[16]-->PU[17]-+->FU[18]--+->EU[27]--+->EU[21]-->FU[22]--+->FU[23] > Dig_OUT[24]
  41                                                 ^                  |          |          |                   |
  42USB_IN[3] -+->SU[5]-->FU[6]--+->MU[14] ->PU[15]->+                  |          |          |                   +->FU[25] > Dig_OUT[26]
  43           ^                 ^                   |                  |          |          |
  44Dig_IN[4] -+                 |                   |                  |          |          +->FU[28]---------------------> Spk_OUT[19]
  45                             |                   |                  |          |
  46Lin-IN[7] -+-->FU[8]---------+                   |                  |          +----------------------------------------> Hph_OUT[20]
  47           |                                     |                  |
  48Mic-IN[9] --+->FU[10]----------------------------+                  |
  49           ||                                                       |
  50           ||  +----------------------------------------------------+
  51           VV  V
  52           ++--+->SU[11]-->FU[12] --------------------------------------------------------------------------------------> USB_OUT[13]
  53*/
  54
  55static struct usbmix_name_map extigy_map[] = {
  56        /* 1: IT pcm */
  57        { 2, "PCM Playback" }, /* FU */
  58        /* 3: IT pcm */
  59        /* 4: IT digital in */
  60        { 5, NULL }, /* DISABLED: this seems to be bogus on some firmware */
  61        { 6, "Digital In" }, /* FU */
  62        /* 7: IT line */
  63        { 8, "Line Playback" }, /* FU */
  64        /* 9: IT mic */
  65        { 10, "Mic Playback" }, /* FU */
  66        { 11, "Capture Source" }, /* SU */
  67        { 12, "Capture" }, /* FU */
  68        /* 13: OT pcm capture */
  69        /* 14: MU (w/o controls) */
  70        /* 15: PU (3D enh) */
  71        /* 16: MU (w/o controls) */
  72        { 17, NULL, 1 }, /* DISABLED: PU-switch (any effect?) */
  73        { 17, "Channel Routing", 2 },   /* PU: mode select */
  74        { 18, "Tone Control - Bass", UAC_FU_BASS }, /* FU */
  75        { 18, "Tone Control - Treble", UAC_FU_TREBLE }, /* FU */
  76        { 18, "Master Playback" }, /* FU; others */
  77        /* 19: OT speaker */
  78        /* 20: OT headphone */
  79        { 21, NULL }, /* DISABLED: EU (for what?) */
  80        { 22, "Digital Out Playback" }, /* FU */
  81        { 23, "Digital Out1 Playback" }, /* FU */  /* FIXME: corresponds to 24 */
  82        /* 24: OT digital out */
  83        { 25, "IEC958 Optical Playback" }, /* FU */
  84        { 26, "IEC958 Optical Playback" }, /* OT */
  85        { 27, NULL }, /* DISABLED: EU (for what?) */
  86        /* 28: FU speaker (mute) */
  87        { 29, NULL }, /* Digital Input Playback Source? */
  88        { 0 } /* terminator */
  89};
  90
  91/* Sound Blaster MP3+ controls mapping
  92 * The default mixer channels have totally misleading names,
  93 * e.g. no Master and fake PCM volume
  94 *                      Pavel Mihaylov <bin@bash.info>
  95 */
  96static struct usbmix_dB_map mp3plus_dB_1 = {.min = -4781, .max = 0};
  97                                                /* just guess */
  98static struct usbmix_dB_map mp3plus_dB_2 = {.min = -1781, .max = 618};
  99                                                /* just guess */
 100
 101static struct usbmix_name_map mp3plus_map[] = {
 102        /* 1: IT pcm */
 103        /* 2: IT mic */
 104        /* 3: IT line */
 105        /* 4: IT digital in */
 106        /* 5: OT digital out */
 107        /* 6: OT speaker */
 108        /* 7: OT pcm capture */
 109        { 8, "Capture Source" }, /* FU, default PCM Capture Source */
 110                /* (Mic, Input 1 = Line input, Input 2 = Optical input) */
 111        { 9, "Master Playback" }, /* FU, default Speaker 1 */
 112        /* { 10, "Mic Capture", 1 }, */ /* FU, Mic Capture */
 113        { 10, /* "Mic Capture", */ NULL, 2, .dB = &mp3plus_dB_2 },
 114                /* FU, Mic Capture */
 115        { 10, "Mic Boost", 7 }, /* FU, default Auto Gain Input */
 116        { 11, "Line Capture", .dB = &mp3plus_dB_2 },
 117                /* FU, default PCM Capture */
 118        { 12, "Digital In Playback" }, /* FU, default PCM 1 */
 119        { 13, /* "Mic Playback", */ .dB = &mp3plus_dB_1 },
 120                /* FU, default Mic Playback */
 121        { 14, "Line Playback", .dB = &mp3plus_dB_1 }, /* FU, default Speaker */
 122        /* 15: MU */
 123        { 0 } /* terminator */
 124};
 125
 126/* Topology of SB Audigy 2 NX
 127
 128          +----------------------------->EU[27]--+
 129          |                                      v
 130          | +----------------------------------->SU[29]---->FU[22]-->Dig_OUT[24]
 131          | |                                    ^
 132USB_IN[1]-+------------+              +->EU[17]->+->FU[11]-+
 133            |          v              |          v         |
 134Dig_IN[4]---+->FU[6]-->MU[16]->FU[18]-+->EU[21]->SU[31]----->FU[30]->Hph_OUT[20]
 135            |          ^              |                    |
 136Lin_IN[7]-+--->FU[8]---+              +->EU[23]->FU[28]------------->Spk_OUT[19]
 137          | |                                              v
 138          +--->FU[12]------------------------------------->SU[14]--->USB_OUT[15]
 139            |                                              ^
 140            +->FU[13]--------------------------------------+
 141*/
 142static struct usbmix_name_map audigy2nx_map[] = {
 143        /* 1: IT pcm playback */
 144        /* 4: IT digital in */
 145        { 6, "Digital In Playback" }, /* FU */
 146        /* 7: IT line in */
 147        { 8, "Line Playback" }, /* FU */
 148        { 11, "What-U-Hear Capture" }, /* FU */
 149        { 12, "Line Capture" }, /* FU */
 150        { 13, "Digital In Capture" }, /* FU */
 151        { 14, "Capture Source" }, /* SU */
 152        /* 15: OT pcm capture */
 153        /* 16: MU w/o controls */
 154        { 17, NULL }, /* DISABLED: EU (for what?) */
 155        { 18, "Master Playback" }, /* FU */
 156        /* 19: OT speaker */
 157        /* 20: OT headphone */
 158        { 21, NULL }, /* DISABLED: EU (for what?) */
 159        { 22, "Digital Out Playback" }, /* FU */
 160        { 23, NULL }, /* DISABLED: EU (for what?) */
 161        /* 24: OT digital out */
 162        { 27, NULL }, /* DISABLED: EU (for what?) */
 163        { 28, "Speaker Playback" }, /* FU */
 164        { 29, "Digital Out Source" }, /* SU */
 165        { 30, "Headphone Playback" }, /* FU */
 166        { 31, "Headphone Source" }, /* SU */
 167        { 0 } /* terminator */
 168};
 169
 170static struct usbmix_name_map mbox1_map[] = {
 171        { 1, "Clock" },
 172        { 0 } /* terminator */
 173};
 174
 175static struct usbmix_selector_map c400_selectors[] = {
 176        {
 177                .id = 0x80,
 178                .count = 2,
 179                .names = (const char*[]) {"Internal", "SPDIF"}
 180        },
 181        { 0 } /* terminator */
 182};
 183
 184static struct usbmix_selector_map audigy2nx_selectors[] = {
 185        {
 186                .id = 14, /* Capture Source */
 187                .count = 3,
 188                .names = (const char*[]) {"Line", "Digital In", "What-U-Hear"}
 189        },
 190        {
 191                .id = 29, /* Digital Out Source */
 192                .count = 3,
 193                .names = (const char*[]) {"Front", "PCM", "Digital In"}
 194        },
 195        {
 196                .id = 31, /* Headphone Source */
 197                .count = 2,
 198                .names = (const char*[]) {"Front", "Side"}
 199        },
 200        { 0 } /* terminator */
 201};
 202
 203/* Creative SoundBlaster Live! 24-bit External */
 204static struct usbmix_name_map live24ext_map[] = {
 205        /* 2: PCM Playback Volume */
 206        { 5, "Mic Capture" }, /* FU, default PCM Capture Volume */
 207        { 0 } /* terminator */
 208};
 209
 210/* LineX FM Transmitter entry - needed to bypass controls bug */
 211static struct usbmix_name_map linex_map[] = {
 212        /* 1: IT pcm */
 213        /* 2: OT Speaker */ 
 214        { 3, "Master" }, /* FU: master volume - left / right / mute */
 215        { 0 } /* terminator */
 216};
 217
 218static struct usbmix_name_map maya44_map[] = {
 219        /* 1: IT line */
 220        { 2, "Line Playback" }, /* FU */
 221        /* 3: IT line */
 222        { 4, "Line Playback" }, /* FU */
 223        /* 5: IT pcm playback */
 224        /* 6: MU */
 225        { 7, "Master Playback" }, /* FU */
 226        /* 8: OT speaker */
 227        /* 9: IT line */
 228        { 10, "Line Capture" }, /* FU */
 229        /* 11: MU */
 230        /* 12: OT pcm capture */
 231        { }
 232};
 233
 234/* Section "justlink_map" below added by James Courtier-Dutton <James@superbug.demon.co.uk>
 235 * sourced from Maplin Electronics (http://www.maplin.co.uk), part number A56AK
 236 * Part has 2 connectors that act as a single output. (TOSLINK Optical for digital out, and 3.5mm Jack for Analogue out.)
 237 * The USB Mixer publishes a Microphone and extra Volume controls for it, but none exist on the device,
 238 * so this map removes all unwanted sliders from alsamixer
 239 */
 240
 241static struct usbmix_name_map justlink_map[] = {
 242        /* 1: IT pcm playback */
 243        /* 2: Not present */
 244        { 3, NULL}, /* IT mic (No mic input on device) */
 245        /* 4: Not present */
 246        /* 5: OT speacker */
 247        /* 6: OT pcm capture */
 248        { 7, "Master Playback" }, /* Mute/volume for speaker */
 249        { 8, NULL }, /* Capture Switch (No capture inputs on device) */
 250        { 9, NULL }, /* Capture Mute/volume (No capture inputs on device */
 251        /* 0xa: Not present */
 252        /* 0xb: MU (w/o controls) */
 253        { 0xc, NULL }, /* Mic feedback Mute/volume (No capture inputs on device) */
 254        { 0 } /* terminator */
 255};
 256
 257/* TerraTec Aureon 5.1 MkII USB */
 258static struct usbmix_name_map aureon_51_2_map[] = {
 259        /* 1: IT USB */
 260        /* 2: IT Mic */
 261        /* 3: IT Line */
 262        /* 4: IT SPDIF */
 263        /* 5: OT SPDIF */
 264        /* 6: OT Speaker */
 265        /* 7: OT USB */
 266        { 8, "Capture Source" }, /* SU */
 267        { 9, "Master Playback" }, /* FU */
 268        { 10, "Mic Capture" }, /* FU */
 269        { 11, "Line Capture" }, /* FU */
 270        { 12, "IEC958 In Capture" }, /* FU */
 271        { 13, "Mic Playback" }, /* FU */
 272        { 14, "Line Playback" }, /* FU */
 273        /* 15: MU */
 274        {} /* terminator */
 275};
 276
 277static struct usbmix_name_map scratch_live_map[] = {
 278        /* 1: IT Line 1 (USB streaming) */
 279        /* 2: OT Line 1 (Speaker) */
 280        /* 3: IT Line 1 (Line connector) */
 281        { 4, "Line 1 In" }, /* FU */
 282        /* 5: OT Line 1 (USB streaming) */
 283        /* 6: IT Line 2 (USB streaming) */
 284        /* 7: OT Line 2 (Speaker) */
 285        /* 8: IT Line 2 (Line connector) */
 286        { 9, "Line 2 In" }, /* FU */
 287        /* 10: OT Line 2 (USB streaming) */
 288        /* 11: IT Mic (Line connector) */
 289        /* 12: OT Mic (USB streaming) */
 290        { 0 } /* terminator */
 291};
 292
 293static struct usbmix_name_map ebox44_map[] = {
 294        { 4, NULL }, /* FU */
 295        { 6, NULL }, /* MU */
 296        { 7, NULL }, /* FU */
 297        { 10, NULL }, /* FU */
 298        { 11, NULL }, /* MU */
 299        { 0 }
 300};
 301
 302/* "Gamesurround Muse Pocket LT" looks same like "Sound Blaster MP3+"
 303 *  most importand difference is SU[8], it should be set to "Capture Source"
 304 *  to make alsamixer and PA working properly.
 305 *  FIXME: or mp3plus_map should use "Capture Source" too,
 306 *  so this maps can be merget
 307 */
 308static struct usbmix_name_map hercules_usb51_map[] = {
 309        { 8, "Capture Source" },        /* SU, default "PCM Capture Source" */
 310        { 9, "Master Playback" },       /* FU, default "Speaker Playback" */
 311        { 10, "Mic Boost", 7 },         /* FU, default "Auto Gain Input" */
 312        { 11, "Line Capture" },         /* FU, default "PCM Capture" */
 313        { 13, "Mic Bypass Playback" },  /* FU, default "Mic Playback" */
 314        { 14, "Line Bypass Playback" }, /* FU, default "Line Playback" */
 315        { 0 }                           /* terminator */
 316};
 317
 318/* Plantronics Gamecom 780 has a broken volume control, better to disable it */
 319static struct usbmix_name_map gamecom780_map[] = {
 320        { 9, NULL }, /* FU, speaker out */
 321        {}
 322};
 323
 324/* some (all?) SCMS USB3318 devices are affected by a firmware lock up
 325 * when anything attempts to access FU 10 (control)
 326 */
 327static const struct usbmix_name_map scms_usb3318_map[] = {
 328        { 10, NULL },
 329        { 0 }
 330};
 331
 332/* Bose companion 5, the dB conversion factor is 16 instead of 256 */
 333static struct usbmix_dB_map bose_companion5_dB = {-5006, -6};
 334static struct usbmix_name_map bose_companion5_map[] = {
 335        { 3, NULL, .dB = &bose_companion5_dB },
 336        { 0 }   /* terminator */
 337};
 338
 339/*
 340 * Dell usb dock with ALC4020 codec had a firmware problem where it got
 341 * screwed up when zero volume is passed; just skip it as a workaround
 342 *
 343 * Also the extension unit gives an access error, so skip it as well.
 344 */
 345static const struct usbmix_name_map dell_alc4020_map[] = {
 346        { 4, NULL },    /* extension unit */
 347        { 16, NULL },
 348        { 19, NULL },
 349        { 0 }
 350};
 351
 352/*
 353 * Control map entries
 354 */
 355
 356static struct usbmix_ctl_map usbmix_ctl_maps[] = {
 357        {
 358                .id = USB_ID(0x041e, 0x3000),
 359                .map = extigy_map,
 360                .ignore_ctl_error = 1,
 361        },
 362        {
 363                .id = USB_ID(0x041e, 0x3010),
 364                .map = mp3plus_map,
 365        },
 366        {
 367                .id = USB_ID(0x041e, 0x3020),
 368                .map = audigy2nx_map,
 369                .selector_map = audigy2nx_selectors,
 370        },
 371        {
 372                .id = USB_ID(0x041e, 0x3040),
 373                .map = live24ext_map,
 374        },
 375        {
 376                .id = USB_ID(0x041e, 0x3048),
 377                .map = audigy2nx_map,
 378                .selector_map = audigy2nx_selectors,
 379        },
 380        {       /* Logitech, Inc. QuickCam Pro for Notebooks */
 381                .id = USB_ID(0x046d, 0x0991),
 382                .ignore_ctl_error = 1,
 383        },
 384        {       /* Logitech, Inc. QuickCam E 3500 */
 385                .id = USB_ID(0x046d, 0x09a4),
 386                .ignore_ctl_error = 1,
 387        },
 388        {       /* Plantronics GameCom 780 */
 389                .id = USB_ID(0x047f, 0xc010),
 390                .map = gamecom780_map,
 391        },
 392        {
 393                /* Hercules DJ Console (Windows Edition) */
 394                .id = USB_ID(0x06f8, 0xb000),
 395                .ignore_ctl_error = 1,
 396        },
 397        {
 398                /* Hercules DJ Console (Macintosh Edition) */
 399                .id = USB_ID(0x06f8, 0xd002),
 400                .ignore_ctl_error = 1,
 401        },
 402        {
 403                /* Hercules Gamesurround Muse Pocket LT
 404                 * (USB 5.1 Channel Audio Adapter)
 405                 */
 406                .id = USB_ID(0x06f8, 0xc000),
 407                .map = hercules_usb51_map,
 408        },
 409        {
 410                .id = USB_ID(0x0763, 0x2030),
 411                .selector_map = c400_selectors,
 412        },
 413        {
 414                .id = USB_ID(0x0763, 0x2031),
 415                .selector_map = c400_selectors,
 416        },
 417        {
 418                .id = USB_ID(0x08bb, 0x2702),
 419                .map = linex_map,
 420                .ignore_ctl_error = 1,
 421        },
 422        {
 423                .id = USB_ID(0x0a92, 0x0091),
 424                .map = maya44_map,
 425        },
 426        {
 427                .id = USB_ID(0x0c45, 0x1158),
 428                .map = justlink_map,
 429        },
 430        {
 431                .id = USB_ID(0x0ccd, 0x0028),
 432                .map = aureon_51_2_map,
 433        },
 434        {
 435                .id = USB_ID(0x0bda, 0x4014),
 436                .map = dell_alc4020_map,
 437        },
 438        {
 439                .id = USB_ID(0x0dba, 0x1000),
 440                .map = mbox1_map,
 441        },
 442        {
 443                .id = USB_ID(0x13e5, 0x0001),
 444                .map = scratch_live_map,
 445                .ignore_ctl_error = 1,
 446        },
 447        {
 448                .id = USB_ID(0x200c, 0x1018),
 449                .map = ebox44_map,
 450        },
 451        {
 452                /* MAYA44 USB+ */
 453                .id = USB_ID(0x2573, 0x0008),
 454                .map = maya44_map,
 455        },
 456        {
 457                /* KEF X300A */
 458                .id = USB_ID(0x27ac, 0x1000),
 459                .map = scms_usb3318_map,
 460        },
 461        {
 462                /* Arcam rPAC */
 463                .id = USB_ID(0x25c4, 0x0003),
 464                .map = scms_usb3318_map,
 465        },
 466        {
 467                /* Bose Companion 5 */
 468                .id = USB_ID(0x05a7, 0x1020),
 469                .map = bose_companion5_map,
 470        },
 471        { 0 } /* terminator */
 472};
 473
 474/*
 475 * Control map entries for UAC3 BADD profiles
 476 */
 477
 478static struct usbmix_name_map uac3_badd_generic_io_map[] = {
 479        { UAC3_BADD_FU_ID2, "Generic Out Playback" },
 480        { UAC3_BADD_FU_ID5, "Generic In Capture" },
 481        { 0 }                                   /* terminator */
 482};
 483static struct usbmix_name_map uac3_badd_headphone_map[] = {
 484        { UAC3_BADD_FU_ID2, "Headphone Playback" },
 485        { 0 }                                   /* terminator */
 486};
 487static struct usbmix_name_map uac3_badd_speaker_map[] = {
 488        { UAC3_BADD_FU_ID2, "Speaker Playback" },
 489        { 0 }                                   /* terminator */
 490};
 491static struct usbmix_name_map uac3_badd_microphone_map[] = {
 492        { UAC3_BADD_FU_ID5, "Mic Capture" },
 493        { 0 }                                   /* terminator */
 494};
 495/* Covers also 'headset adapter' profile */
 496static struct usbmix_name_map uac3_badd_headset_map[] = {
 497        { UAC3_BADD_FU_ID2, "Headset Playback" },
 498        { UAC3_BADD_FU_ID5, "Headset Capture" },
 499        { UAC3_BADD_FU_ID7, "Sidetone Mixing" },
 500        { 0 }                                   /* terminator */
 501};
 502static struct usbmix_name_map uac3_badd_speakerphone_map[] = {
 503        { UAC3_BADD_FU_ID2, "Speaker Playback" },
 504        { UAC3_BADD_FU_ID5, "Mic Capture" },
 505        { 0 }                                   /* terminator */
 506};
 507
 508static struct usbmix_ctl_map uac3_badd_usbmix_ctl_maps[] = {
 509        {
 510                .id = UAC3_FUNCTION_SUBCLASS_GENERIC_IO,
 511                .map = uac3_badd_generic_io_map,
 512        },
 513        {
 514                .id = UAC3_FUNCTION_SUBCLASS_HEADPHONE,
 515                .map = uac3_badd_headphone_map,
 516        },
 517        {
 518                .id = UAC3_FUNCTION_SUBCLASS_SPEAKER,
 519                .map = uac3_badd_speaker_map,
 520        },
 521        {
 522                .id = UAC3_FUNCTION_SUBCLASS_MICROPHONE,
 523                .map = uac3_badd_microphone_map,
 524        },
 525        {
 526                .id = UAC3_FUNCTION_SUBCLASS_HEADSET,
 527                .map = uac3_badd_headset_map,
 528        },
 529        {
 530                .id = UAC3_FUNCTION_SUBCLASS_HEADSET_ADAPTER,
 531                .map = uac3_badd_headset_map,
 532        },
 533        {
 534                .id = UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE,
 535                .map = uac3_badd_speakerphone_map,
 536        },
 537        { 0 } /* terminator */
 538};
 539