mixer.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. /*
  2. * (Tentative) USB Audio Driver for ALSA
  3. *
  4. * Mixer control part
  5. *
  6. * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
  7. *
  8. * Many codes borrowed from audio.c by
  9. * Alan Cox (alan@lxorguk.ukuu.org.uk)
  10. * Thomas Sailer (sailer@ife.ee.ethz.ch)
  11. *
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26. *
  27. */
  28. /*
  29. * TODOs, for both the mixer and the streaming interfaces:
  30. *
  31. * - support for UAC2 effect units
  32. * - support for graphical equalizers
  33. * - RANGE and MEM set commands (UAC2)
  34. * - RANGE and MEM interrupt dispatchers (UAC2)
  35. * - audio channel clustering (UAC2)
  36. * - audio sample rate converter units (UAC2)
  37. * - proper handling of clock multipliers (UAC2)
  38. * - dispatch clock change notifications (UAC2)
  39. * - stop PCM streams which use a clock that became invalid
  40. * - stop PCM streams which use a clock selector that has changed
  41. * - parse available sample rates again when clock sources changed
  42. */
  43. #include <linux/bitops.h>
  44. #include <linux/init.h>
  45. #include <linux/list.h>
  46. #include <linux/slab.h>
  47. #include <linux/string.h>
  48. #include <linux/usb.h>
  49. #include <linux/usb/audio.h>
  50. #include <linux/usb/audio-v2.h>
  51. #include <sound/core.h>
  52. #include <sound/control.h>
  53. #include <sound/hwdep.h>
  54. #include <sound/info.h>
  55. #include <sound/tlv.h>
  56. #include "usbaudio.h"
  57. #include "mixer.h"
  58. #include "helper.h"
  59. #include "mixer_quirks.h"
  60. #include "power.h"
  61. #define MAX_ID_ELEMS 256
  62. struct usb_audio_term {
  63. int id;
  64. int type;
  65. int channels;
  66. unsigned int chconfig;
  67. int name;
  68. };
  69. struct usbmix_name_map;
  70. struct mixer_build {
  71. struct snd_usb_audio *chip;
  72. struct usb_mixer_interface *mixer;
  73. unsigned char *buffer;
  74. unsigned int buflen;
  75. DECLARE_BITMAP(unitbitmap, MAX_ID_ELEMS);
  76. struct usb_audio_term oterm;
  77. const struct usbmix_name_map *map;
  78. const struct usbmix_selector_map *selector_map;
  79. };
  80. /*E-mu 0202/0404/0204 eXtension Unit(XU) control*/
  81. enum {
  82. USB_XU_CLOCK_RATE = 0xe301,
  83. USB_XU_CLOCK_SOURCE = 0xe302,
  84. USB_XU_DIGITAL_IO_STATUS = 0xe303,
  85. USB_XU_DEVICE_OPTIONS = 0xe304,
  86. USB_XU_DIRECT_MONITORING = 0xe305,
  87. USB_XU_METERING = 0xe306
  88. };
  89. enum {
  90. USB_XU_CLOCK_SOURCE_SELECTOR = 0x02, /* clock source*/
  91. USB_XU_CLOCK_RATE_SELECTOR = 0x03, /* clock rate */
  92. USB_XU_DIGITAL_FORMAT_SELECTOR = 0x01, /* the spdif format */
  93. USB_XU_SOFT_LIMIT_SELECTOR = 0x03 /* soft limiter */
  94. };
  95. /*
  96. * manual mapping of mixer names
  97. * if the mixer topology is too complicated and the parsed names are
  98. * ambiguous, add the entries in usbmixer_maps.c.
  99. */
  100. #include "mixer_maps.c"
  101. static const struct usbmix_name_map *
  102. find_map(struct mixer_build *state, int unitid, int control)
  103. {
  104. const struct usbmix_name_map *p = state->map;
  105. if (!p)
  106. return NULL;
  107. for (p = state->map; p->id; p++) {
  108. if (p->id == unitid &&
  109. (!control || !p->control || control == p->control))
  110. return p;
  111. }
  112. return NULL;
  113. }
  114. /* get the mapped name if the unit matches */
  115. static int
  116. check_mapped_name(const struct usbmix_name_map *p, char *buf, int buflen)
  117. {
  118. if (!p || !p->name)
  119. return 0;
  120. buflen--;
  121. return strlcpy(buf, p->name, buflen);
  122. }
  123. /* check whether the control should be ignored */
  124. static inline int
  125. check_ignored_ctl(const struct usbmix_name_map *p)
  126. {
  127. if (!p || p->name || p->dB)
  128. return 0;
  129. return 1;
  130. }
  131. /* dB mapping */
  132. static inline void check_mapped_dB(const struct usbmix_name_map *p,
  133. struct usb_mixer_elem_info *cval)
  134. {
  135. if (p && p->dB) {
  136. cval->dBmin = p->dB->min;
  137. cval->dBmax = p->dB->max;
  138. cval->initialized = 1;
  139. }
  140. }
  141. /* get the mapped selector source name */
  142. static int check_mapped_selector_name(struct mixer_build *state, int unitid,
  143. int index, char *buf, int buflen)
  144. {
  145. const struct usbmix_selector_map *p;
  146. if (! state->selector_map)
  147. return 0;
  148. for (p = state->selector_map; p->id; p++) {
  149. if (p->id == unitid && index < p->count)
  150. return strlcpy(buf, p->names[index], buflen);
  151. }
  152. return 0;
  153. }
  154. /*
  155. * find an audio control unit with the given unit id
  156. */
  157. static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit)
  158. {
  159. /* we just parse the header */
  160. struct uac_feature_unit_descriptor *hdr = NULL;
  161. while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr,
  162. USB_DT_CS_INTERFACE)) != NULL) {
  163. if (hdr->bLength >= 4 &&
  164. hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL &&
  165. hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER &&
  166. hdr->bUnitID == unit)
  167. return hdr;
  168. }
  169. return NULL;
  170. }
  171. /*
  172. * copy a string with the given id
  173. */
  174. static int snd_usb_copy_string_desc(struct mixer_build *state, int index, char *buf, int maxlen)
  175. {
  176. int len = usb_string(state->chip->dev, index, buf, maxlen - 1);
  177. buf[len] = 0;
  178. return len;
  179. }
  180. /*
  181. * convert from the byte/word on usb descriptor to the zero-based integer
  182. */
  183. static int convert_signed_value(struct usb_mixer_elem_info *cval, int val)
  184. {
  185. switch (cval->val_type) {
  186. case USB_MIXER_BOOLEAN:
  187. return !!val;
  188. case USB_MIXER_INV_BOOLEAN:
  189. return !val;
  190. case USB_MIXER_U8:
  191. val &= 0xff;
  192. break;
  193. case USB_MIXER_S8:
  194. val &= 0xff;
  195. if (val >= 0x80)
  196. val -= 0x100;
  197. break;
  198. case USB_MIXER_U16:
  199. val &= 0xffff;
  200. break;
  201. case USB_MIXER_S16:
  202. val &= 0xffff;
  203. if (val >= 0x8000)
  204. val -= 0x10000;
  205. break;
  206. }
  207. return val;
  208. }
  209. /*
  210. * convert from the zero-based int to the byte/word for usb descriptor
  211. */
  212. static int convert_bytes_value(struct usb_mixer_elem_info *cval, int val)
  213. {
  214. switch (cval->val_type) {
  215. case USB_MIXER_BOOLEAN:
  216. return !!val;
  217. case USB_MIXER_INV_BOOLEAN:
  218. return !val;
  219. case USB_MIXER_S8:
  220. case USB_MIXER_U8:
  221. return val & 0xff;
  222. case USB_MIXER_S16:
  223. case USB_MIXER_U16:
  224. return val & 0xffff;
  225. }
  226. return 0; /* not reached */
  227. }
  228. static int get_relative_value(struct usb_mixer_elem_info *cval, int val)
  229. {
  230. if (! cval->res)
  231. cval->res = 1;
  232. if (val < cval->min)
  233. return 0;
  234. else if (val >= cval->max)
  235. return (cval->max - cval->min + cval->res - 1) / cval->res;
  236. else
  237. return (val - cval->min) / cval->res;
  238. }
  239. static int get_abs_value(struct usb_mixer_elem_info *cval, int val)
  240. {
  241. if (val < 0)
  242. return cval->min;
  243. if (! cval->res)
  244. cval->res = 1;
  245. val *= cval->res;
  246. val += cval->min;
  247. if (val > cval->max)
  248. return cval->max;
  249. return val;
  250. }
  251. /*
  252. * retrieve a mixer value
  253. */
  254. static int get_ctl_value_v1(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
  255. {
  256. struct snd_usb_audio *chip = cval->mixer->chip;
  257. unsigned char buf[2];
  258. int val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
  259. int timeout = 10;
  260. int idx = 0, err;
  261. err = snd_usb_autoresume(cval->mixer->chip);
  262. if (err < 0)
  263. return -EIO;
  264. down_read(&chip->shutdown_rwsem);
  265. while (timeout-- > 0) {
  266. if (chip->shutdown)
  267. break;
  268. idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
  269. if (snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), request,
  270. USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
  271. validx, idx, buf, val_len) >= val_len) {
  272. *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(buf, val_len));
  273. err = 0;
  274. goto out;
  275. }
  276. }
  277. snd_printdd(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
  278. request, validx, idx, cval->val_type);
  279. err = -EINVAL;
  280. out:
  281. up_read(&chip->shutdown_rwsem);
  282. snd_usb_autosuspend(cval->mixer->chip);
  283. return err;
  284. }
  285. static int get_ctl_value_v2(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
  286. {
  287. struct snd_usb_audio *chip = cval->mixer->chip;
  288. unsigned char buf[2 + 3*sizeof(__u16)]; /* enough space for one range */
  289. unsigned char *val;
  290. int idx = 0, ret, size;
  291. __u8 bRequest;
  292. if (request == UAC_GET_CUR) {
  293. bRequest = UAC2_CS_CUR;
  294. size = sizeof(__u16);
  295. } else {
  296. bRequest = UAC2_CS_RANGE;
  297. size = sizeof(buf);
  298. }
  299. memset(buf, 0, sizeof(buf));
  300. ret = snd_usb_autoresume(chip) ? -EIO : 0;
  301. if (ret)
  302. goto error;
  303. down_read(&chip->shutdown_rwsem);
  304. if (chip->shutdown)
  305. ret = -ENODEV;
  306. else {
  307. idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
  308. ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0), bRequest,
  309. USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
  310. validx, idx, buf, size);
  311. }
  312. up_read(&chip->shutdown_rwsem);
  313. snd_usb_autosuspend(chip);
  314. if (ret < 0) {
  315. error:
  316. snd_printk(KERN_ERR "cannot get ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d\n",
  317. request, validx, idx, cval->val_type);
  318. return ret;
  319. }
  320. /* FIXME: how should we handle multiple triplets here? */
  321. switch (request) {
  322. case UAC_GET_CUR:
  323. val = buf;
  324. break;
  325. case UAC_GET_MIN:
  326. val = buf + sizeof(__u16);
  327. break;
  328. case UAC_GET_MAX:
  329. val = buf + sizeof(__u16) * 2;
  330. break;
  331. case UAC_GET_RES:
  332. val = buf + sizeof(__u16) * 3;
  333. break;
  334. default:
  335. return -EINVAL;
  336. }
  337. *value_ret = convert_signed_value(cval, snd_usb_combine_bytes(val, sizeof(__u16)));
  338. return 0;
  339. }
  340. static int get_ctl_value(struct usb_mixer_elem_info *cval, int request, int validx, int *value_ret)
  341. {
  342. validx += cval->idx_off;
  343. return (cval->mixer->protocol == UAC_VERSION_1) ?
  344. get_ctl_value_v1(cval, request, validx, value_ret) :
  345. get_ctl_value_v2(cval, request, validx, value_ret);
  346. }
  347. static int get_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int *value)
  348. {
  349. return get_ctl_value(cval, UAC_GET_CUR, validx, value);
  350. }
  351. /* channel = 0: master, 1 = first channel */
  352. static inline int get_cur_mix_raw(struct usb_mixer_elem_info *cval,
  353. int channel, int *value)
  354. {
  355. return get_ctl_value(cval, UAC_GET_CUR, (cval->control << 8) | channel, value);
  356. }
  357. static int get_cur_mix_value(struct usb_mixer_elem_info *cval,
  358. int channel, int index, int *value)
  359. {
  360. int err;
  361. if (cval->cached & (1 << channel)) {
  362. *value = cval->cache_val[index];
  363. return 0;
  364. }
  365. err = get_cur_mix_raw(cval, channel, value);
  366. if (err < 0) {
  367. if (!cval->mixer->ignore_ctl_error)
  368. snd_printd(KERN_ERR "cannot get current value for control %d ch %d: err = %d\n",
  369. cval->control, channel, err);
  370. return err;
  371. }
  372. cval->cached |= 1 << channel;
  373. cval->cache_val[index] = *value;
  374. return 0;
  375. }
  376. /*
  377. * set a mixer value
  378. */
  379. int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
  380. int request, int validx, int value_set)
  381. {
  382. struct snd_usb_audio *chip = cval->mixer->chip;
  383. unsigned char buf[2];
  384. int idx = 0, val_len, err, timeout = 10;
  385. validx += cval->idx_off;
  386. if (cval->mixer->protocol == UAC_VERSION_1) {
  387. val_len = cval->val_type >= USB_MIXER_S16 ? 2 : 1;
  388. } else { /* UAC_VERSION_2 */
  389. /* audio class v2 controls are always 2 bytes in size */
  390. val_len = sizeof(__u16);
  391. /* FIXME */
  392. if (request != UAC_SET_CUR) {
  393. snd_printdd(KERN_WARNING "RANGE setting not yet supported\n");
  394. return -EINVAL;
  395. }
  396. request = UAC2_CS_CUR;
  397. }
  398. value_set = convert_bytes_value(cval, value_set);
  399. buf[0] = value_set & 0xff;
  400. buf[1] = (value_set >> 8) & 0xff;
  401. err = snd_usb_autoresume(chip);
  402. if (err < 0)
  403. return -EIO;
  404. down_read(&chip->shutdown_rwsem);
  405. while (timeout-- > 0) {
  406. if (chip->shutdown)
  407. break;
  408. idx = snd_usb_ctrl_intf(chip) | (cval->id << 8);
  409. if (snd_usb_ctl_msg(chip->dev,
  410. usb_sndctrlpipe(chip->dev, 0), request,
  411. USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
  412. validx, idx, buf, val_len) >= 0) {
  413. err = 0;
  414. goto out;
  415. }
  416. }
  417. snd_printdd(KERN_ERR "cannot set ctl value: req = %#x, wValue = %#x, wIndex = %#x, type = %d, data = %#x/%#x\n",
  418. request, validx, idx, cval->val_type, buf[0], buf[1]);
  419. err = -EINVAL;
  420. out:
  421. up_read(&chip->shutdown_rwsem);
  422. snd_usb_autosuspend(chip);
  423. return err;
  424. }
  425. static int set_cur_ctl_value(struct usb_mixer_elem_info *cval, int validx, int value)
  426. {
  427. return snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, validx, value);
  428. }
  429. static int set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
  430. int index, int value)
  431. {
  432. int err;
  433. unsigned int read_only = (channel == 0) ?
  434. cval->master_readonly :
  435. cval->ch_readonly & (1 << (channel - 1));
  436. if (read_only) {
  437. snd_printdd(KERN_INFO "%s(): channel %d of control %d is read_only\n",
  438. __func__, channel, cval->control);
  439. return 0;
  440. }
  441. err = snd_usb_mixer_set_ctl_value(cval, UAC_SET_CUR, (cval->control << 8) | channel,
  442. value);
  443. if (err < 0)
  444. return err;
  445. cval->cached |= 1 << channel;
  446. cval->cache_val[index] = value;
  447. return 0;
  448. }
  449. /*
  450. * TLV callback for mixer volume controls
  451. */
  452. int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
  453. unsigned int size, unsigned int __user *_tlv)
  454. {
  455. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  456. DECLARE_TLV_DB_MINMAX(scale, 0, 0);
  457. if (size < sizeof(scale))
  458. return -ENOMEM;
  459. scale[2] = cval->dBmin;
  460. scale[3] = cval->dBmax;
  461. if (copy_to_user(_tlv, scale, sizeof(scale)))
  462. return -EFAULT;
  463. return 0;
  464. }
  465. /*
  466. * parser routines begin here...
  467. */
  468. static int parse_audio_unit(struct mixer_build *state, int unitid);
  469. /*
  470. * check if the input/output channel routing is enabled on the given bitmap.
  471. * used for mixer unit parser
  472. */
  473. static int check_matrix_bitmap(unsigned char *bmap, int ich, int och, int num_outs)
  474. {
  475. int idx = ich * num_outs + och;
  476. return bmap[idx >> 3] & (0x80 >> (idx & 7));
  477. }
  478. /*
  479. * add an alsa control element
  480. * search and increment the index until an empty slot is found.
  481. *
  482. * if failed, give up and free the control instance.
  483. */
  484. int snd_usb_mixer_add_control(struct usb_mixer_interface *mixer,
  485. struct snd_kcontrol *kctl)
  486. {
  487. struct usb_mixer_elem_info *cval = kctl->private_data;
  488. int err;
  489. while (snd_ctl_find_id(mixer->chip->card, &kctl->id))
  490. kctl->id.index++;
  491. if ((err = snd_ctl_add(mixer->chip->card, kctl)) < 0) {
  492. snd_printd(KERN_ERR "cannot add control (err = %d)\n", err);
  493. return err;
  494. }
  495. cval->elem_id = &kctl->id;
  496. cval->next_id_elem = mixer->id_elems[cval->id];
  497. mixer->id_elems[cval->id] = cval;
  498. return 0;
  499. }
  500. /*
  501. * get a terminal name string
  502. */
  503. static struct iterm_name_combo {
  504. int type;
  505. char *name;
  506. } iterm_names[] = {
  507. { 0x0300, "Output" },
  508. { 0x0301, "Speaker" },
  509. { 0x0302, "Headphone" },
  510. { 0x0303, "HMD Audio" },
  511. { 0x0304, "Desktop Speaker" },
  512. { 0x0305, "Room Speaker" },
  513. { 0x0306, "Com Speaker" },
  514. { 0x0307, "LFE" },
  515. { 0x0600, "External In" },
  516. { 0x0601, "Analog In" },
  517. { 0x0602, "Digital In" },
  518. { 0x0603, "Line" },
  519. { 0x0604, "Legacy In" },
  520. { 0x0605, "IEC958 In" },
  521. { 0x0606, "1394 DA Stream" },
  522. { 0x0607, "1394 DV Stream" },
  523. { 0x0700, "Embedded" },
  524. { 0x0701, "Noise Source" },
  525. { 0x0702, "Equalization Noise" },
  526. { 0x0703, "CD" },
  527. { 0x0704, "DAT" },
  528. { 0x0705, "DCC" },
  529. { 0x0706, "MiniDisk" },
  530. { 0x0707, "Analog Tape" },
  531. { 0x0708, "Phonograph" },
  532. { 0x0709, "VCR Audio" },
  533. { 0x070a, "Video Disk Audio" },
  534. { 0x070b, "DVD Audio" },
  535. { 0x070c, "TV Tuner Audio" },
  536. { 0x070d, "Satellite Rec Audio" },
  537. { 0x070e, "Cable Tuner Audio" },
  538. { 0x070f, "DSS Audio" },
  539. { 0x0710, "Radio Receiver" },
  540. { 0x0711, "Radio Transmitter" },
  541. { 0x0712, "Multi-Track Recorder" },
  542. { 0x0713, "Synthesizer" },
  543. { 0 },
  544. };
  545. static int get_term_name(struct mixer_build *state, struct usb_audio_term *iterm,
  546. unsigned char *name, int maxlen, int term_only)
  547. {
  548. struct iterm_name_combo *names;
  549. if (iterm->name)
  550. return snd_usb_copy_string_desc(state, iterm->name, name, maxlen);
  551. /* virtual type - not a real terminal */
  552. if (iterm->type >> 16) {
  553. if (term_only)
  554. return 0;
  555. switch (iterm->type >> 16) {
  556. case UAC_SELECTOR_UNIT:
  557. strcpy(name, "Selector"); return 8;
  558. case UAC1_PROCESSING_UNIT:
  559. strcpy(name, "Process Unit"); return 12;
  560. case UAC1_EXTENSION_UNIT:
  561. strcpy(name, "Ext Unit"); return 8;
  562. case UAC_MIXER_UNIT:
  563. strcpy(name, "Mixer"); return 5;
  564. default:
  565. return sprintf(name, "Unit %d", iterm->id);
  566. }
  567. }
  568. switch (iterm->type & 0xff00) {
  569. case 0x0100:
  570. strcpy(name, "PCM"); return 3;
  571. case 0x0200:
  572. strcpy(name, "Mic"); return 3;
  573. case 0x0400:
  574. strcpy(name, "Headset"); return 7;
  575. case 0x0500:
  576. strcpy(name, "Phone"); return 5;
  577. }
  578. for (names = iterm_names; names->type; names++)
  579. if (names->type == iterm->type) {
  580. strcpy(name, names->name);
  581. return strlen(names->name);
  582. }
  583. return 0;
  584. }
  585. /*
  586. * parse the source unit recursively until it reaches to a terminal
  587. * or a branched unit.
  588. */
  589. static int check_input_term(struct mixer_build *state, int id, struct usb_audio_term *term)
  590. {
  591. int err;
  592. void *p1;
  593. memset(term, 0, sizeof(*term));
  594. while ((p1 = find_audio_control_unit(state, id)) != NULL) {
  595. unsigned char *hdr = p1;
  596. term->id = id;
  597. switch (hdr[2]) {
  598. case UAC_INPUT_TERMINAL:
  599. if (state->mixer->protocol == UAC_VERSION_1) {
  600. struct uac_input_terminal_descriptor *d = p1;
  601. term->type = le16_to_cpu(d->wTerminalType);
  602. term->channels = d->bNrChannels;
  603. term->chconfig = le16_to_cpu(d->wChannelConfig);
  604. term->name = d->iTerminal;
  605. } else { /* UAC_VERSION_2 */
  606. struct uac2_input_terminal_descriptor *d = p1;
  607. term->type = le16_to_cpu(d->wTerminalType);
  608. term->channels = d->bNrChannels;
  609. term->chconfig = le32_to_cpu(d->bmChannelConfig);
  610. term->name = d->iTerminal;
  611. /* call recursively to get the clock selectors */
  612. err = check_input_term(state, d->bCSourceID, term);
  613. if (err < 0)
  614. return err;
  615. }
  616. return 0;
  617. case UAC_FEATURE_UNIT: {
  618. /* the header is the same for v1 and v2 */
  619. struct uac_feature_unit_descriptor *d = p1;
  620. id = d->bSourceID;
  621. break; /* continue to parse */
  622. }
  623. case UAC_MIXER_UNIT: {
  624. struct uac_mixer_unit_descriptor *d = p1;
  625. term->type = d->bDescriptorSubtype << 16; /* virtual type */
  626. term->channels = uac_mixer_unit_bNrChannels(d);
  627. term->chconfig = uac_mixer_unit_wChannelConfig(d, state->mixer->protocol);
  628. term->name = uac_mixer_unit_iMixer(d);
  629. return 0;
  630. }
  631. case UAC_SELECTOR_UNIT:
  632. case UAC2_CLOCK_SELECTOR: {
  633. struct uac_selector_unit_descriptor *d = p1;
  634. /* call recursively to retrieve the channel info */
  635. if (check_input_term(state, d->baSourceID[0], term) < 0)
  636. return -ENODEV;
  637. term->type = d->bDescriptorSubtype << 16; /* virtual type */
  638. term->id = id;
  639. term->name = uac_selector_unit_iSelector(d);
  640. return 0;
  641. }
  642. case UAC1_PROCESSING_UNIT:
  643. case UAC1_EXTENSION_UNIT:
  644. /* UAC2_PROCESSING_UNIT_V2 */
  645. /* UAC2_EFFECT_UNIT */ {
  646. struct uac_processing_unit_descriptor *d = p1;
  647. if (state->mixer->protocol == UAC_VERSION_2 &&
  648. hdr[2] == UAC2_EFFECT_UNIT) {
  649. /* UAC2/UAC1 unit IDs overlap here in an
  650. * uncompatible way. Ignore this unit for now.
  651. */
  652. return 0;
  653. }
  654. if (d->bNrInPins) {
  655. id = d->baSourceID[0];
  656. break; /* continue to parse */
  657. }
  658. term->type = d->bDescriptorSubtype << 16; /* virtual type */
  659. term->channels = uac_processing_unit_bNrChannels(d);
  660. term->chconfig = uac_processing_unit_wChannelConfig(d, state->mixer->protocol);
  661. term->name = uac_processing_unit_iProcessing(d, state->mixer->protocol);
  662. return 0;
  663. }
  664. case UAC2_CLOCK_SOURCE: {
  665. struct uac_clock_source_descriptor *d = p1;
  666. term->type = d->bDescriptorSubtype << 16; /* virtual type */
  667. term->id = id;
  668. term->name = d->iClockSource;
  669. return 0;
  670. }
  671. default:
  672. return -ENODEV;
  673. }
  674. }
  675. return -ENODEV;
  676. }
  677. /*
  678. * Feature Unit
  679. */
  680. /* feature unit control information */
  681. struct usb_feature_control_info {
  682. const char *name;
  683. unsigned int type; /* control type (mute, volume, etc.) */
  684. };
  685. static struct usb_feature_control_info audio_feature_info[] = {
  686. { "Mute", USB_MIXER_INV_BOOLEAN },
  687. { "Volume", USB_MIXER_S16 },
  688. { "Tone Control - Bass", USB_MIXER_S8 },
  689. { "Tone Control - Mid", USB_MIXER_S8 },
  690. { "Tone Control - Treble", USB_MIXER_S8 },
  691. { "Graphic Equalizer", USB_MIXER_S8 }, /* FIXME: not implemeted yet */
  692. { "Auto Gain Control", USB_MIXER_BOOLEAN },
  693. { "Delay Control", USB_MIXER_U16 },
  694. { "Bass Boost", USB_MIXER_BOOLEAN },
  695. { "Loudness", USB_MIXER_BOOLEAN },
  696. /* UAC2 specific */
  697. { "Input Gain Control", USB_MIXER_U16 },
  698. { "Input Gain Pad Control", USB_MIXER_BOOLEAN },
  699. { "Phase Inverter Control", USB_MIXER_BOOLEAN },
  700. };
  701. /* private_free callback */
  702. static void usb_mixer_elem_free(struct snd_kcontrol *kctl)
  703. {
  704. kfree(kctl->private_data);
  705. kctl->private_data = NULL;
  706. }
  707. /*
  708. * interface to ALSA control for feature/mixer units
  709. */
  710. /* volume control quirks */
  711. static void volume_control_quirks(struct usb_mixer_elem_info *cval,
  712. struct snd_kcontrol *kctl)
  713. {
  714. switch (cval->mixer->chip->usb_id) {
  715. case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
  716. if (strcmp(kctl->id.name, "Effect Duration") == 0) {
  717. cval->min = 0x0000;
  718. cval->max = 0xffff;
  719. cval->res = 0x00e6;
  720. break;
  721. }
  722. if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
  723. strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
  724. cval->min = 0x00;
  725. cval->max = 0xff;
  726. break;
  727. }
  728. if (strstr(kctl->id.name, "Effect Return") != NULL) {
  729. cval->min = 0xb706;
  730. cval->max = 0xff7b;
  731. cval->res = 0x0073;
  732. break;
  733. }
  734. if ((strstr(kctl->id.name, "Playback Volume") != NULL) ||
  735. (strstr(kctl->id.name, "Effect Send") != NULL)) {
  736. cval->min = 0xb5fb; /* -73 dB = 0xb6ff */
  737. cval->max = 0xfcfe;
  738. cval->res = 0x0073;
  739. }
  740. break;
  741. case USB_ID(0x0763, 0x2081): /* M-Audio Fast Track Ultra 8R */
  742. case USB_ID(0x0763, 0x2080): /* M-Audio Fast Track Ultra */
  743. if (strcmp(kctl->id.name, "Effect Duration") == 0) {
  744. snd_printk(KERN_INFO
  745. "usb-audio: set quirk for FTU Effect Duration\n");
  746. cval->min = 0x0000;
  747. cval->max = 0x7f00;
  748. cval->res = 0x0100;
  749. break;
  750. }
  751. if (strcmp(kctl->id.name, "Effect Volume") == 0 ||
  752. strcmp(kctl->id.name, "Effect Feedback Volume") == 0) {
  753. snd_printk(KERN_INFO
  754. "usb-audio: set quirks for FTU Effect Feedback/Volume\n");
  755. cval->min = 0x00;
  756. cval->max = 0x7f;
  757. break;
  758. }
  759. break;
  760. case USB_ID(0x0471, 0x0101):
  761. case USB_ID(0x0471, 0x0104):
  762. case USB_ID(0x0471, 0x0105):
  763. case USB_ID(0x0672, 0x1041):
  764. /* quirk for UDA1321/N101.
  765. * note that detection between firmware 2.1.1.7 (N101)
  766. * and later 2.1.1.21 is not very clear from datasheets.
  767. * I hope that the min value is -15360 for newer firmware --jk
  768. */
  769. if (!strcmp(kctl->id.name, "PCM Playback Volume") &&
  770. cval->min == -15616) {
  771. snd_printk(KERN_INFO
  772. "set volume quirk for UDA1321/N101 chip\n");
  773. cval->max = -256;
  774. }
  775. break;
  776. case USB_ID(0x046d, 0x09a4):
  777. if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
  778. snd_printk(KERN_INFO
  779. "set volume quirk for QuickCam E3500\n");
  780. cval->min = 6080;
  781. cval->max = 8768;
  782. cval->res = 192;
  783. }
  784. break;
  785. case USB_ID(0x046d, 0x0808):
  786. case USB_ID(0x046d, 0x0809):
  787. case USB_ID(0x046d, 0x081d): /* HD Webcam c510 */
  788. case USB_ID(0x046d, 0x0991):
  789. /* Most audio usb devices lie about volume resolution.
  790. * Most Logitech webcams have res = 384.
  791. * Proboly there is some logitech magic behind this number --fishor
  792. */
  793. if (!strcmp(kctl->id.name, "Mic Capture Volume")) {
  794. snd_printk(KERN_INFO
  795. "set resolution quirk: cval->res = 384\n");
  796. cval->res = 384;
  797. }
  798. break;
  799. }
  800. }
  801. /*
  802. * retrieve the minimum and maximum values for the specified control
  803. */
  804. static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
  805. int default_min, struct snd_kcontrol *kctl)
  806. {
  807. /* for failsafe */
  808. cval->min = default_min;
  809. cval->max = cval->min + 1;
  810. cval->res = 1;
  811. cval->dBmin = cval->dBmax = 0;
  812. if (cval->val_type == USB_MIXER_BOOLEAN ||
  813. cval->val_type == USB_MIXER_INV_BOOLEAN) {
  814. cval->initialized = 1;
  815. } else {
  816. int minchn = 0;
  817. if (cval->cmask) {
  818. int i;
  819. for (i = 0; i < MAX_CHANNELS; i++)
  820. if (cval->cmask & (1 << i)) {
  821. minchn = i + 1;
  822. break;
  823. }
  824. }
  825. if (get_ctl_value(cval, UAC_GET_MAX, (cval->control << 8) | minchn, &cval->max) < 0 ||
  826. get_ctl_value(cval, UAC_GET_MIN, (cval->control << 8) | minchn, &cval->min) < 0) {
  827. snd_printd(KERN_ERR "%d:%d: cannot get min/max values for control %d (id %d)\n",
  828. cval->id, snd_usb_ctrl_intf(cval->mixer->chip), cval->control, cval->id);
  829. return -EINVAL;
  830. }
  831. if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0) {
  832. cval->res = 1;
  833. } else {
  834. int last_valid_res = cval->res;
  835. while (cval->res > 1) {
  836. if (snd_usb_mixer_set_ctl_value(cval, UAC_SET_RES,
  837. (cval->control << 8) | minchn, cval->res / 2) < 0)
  838. break;
  839. cval->res /= 2;
  840. }
  841. if (get_ctl_value(cval, UAC_GET_RES, (cval->control << 8) | minchn, &cval->res) < 0)
  842. cval->res = last_valid_res;
  843. }
  844. if (cval->res == 0)
  845. cval->res = 1;
  846. /* Additional checks for the proper resolution
  847. *
  848. * Some devices report smaller resolutions than actually
  849. * reacting. They don't return errors but simply clip
  850. * to the lower aligned value.
  851. */
  852. if (cval->min + cval->res < cval->max) {
  853. int last_valid_res = cval->res;
  854. int saved, test, check;
  855. get_cur_mix_raw(cval, minchn, &saved);
  856. for (;;) {
  857. test = saved;
  858. if (test < cval->max)
  859. test += cval->res;
  860. else
  861. test -= cval->res;
  862. if (test < cval->min || test > cval->max ||
  863. set_cur_mix_value(cval, minchn, 0, test) ||
  864. get_cur_mix_raw(cval, minchn, &check)) {
  865. cval->res = last_valid_res;
  866. break;
  867. }
  868. if (test == check)
  869. break;
  870. cval->res *= 2;
  871. }
  872. set_cur_mix_value(cval, minchn, 0, saved);
  873. }
  874. cval->initialized = 1;
  875. }
  876. if (kctl)
  877. volume_control_quirks(cval, kctl);
  878. /* USB descriptions contain the dB scale in 1/256 dB unit
  879. * while ALSA TLV contains in 1/100 dB unit
  880. */
  881. cval->dBmin = (convert_signed_value(cval, cval->min) * 100) / 256;
  882. cval->dBmax = (convert_signed_value(cval, cval->max) * 100) / 256;
  883. if (cval->dBmin > cval->dBmax) {
  884. /* something is wrong; assume it's either from/to 0dB */
  885. if (cval->dBmin < 0)
  886. cval->dBmax = 0;
  887. else if (cval->dBmin > 0)
  888. cval->dBmin = 0;
  889. if (cval->dBmin > cval->dBmax) {
  890. /* totally crap, return an error */
  891. return -EINVAL;
  892. }
  893. }
  894. return 0;
  895. }
  896. #define get_min_max(cval, def) get_min_max_with_quirks(cval, def, NULL)
  897. /* get a feature/mixer unit info */
  898. static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  899. {
  900. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  901. if (cval->val_type == USB_MIXER_BOOLEAN ||
  902. cval->val_type == USB_MIXER_INV_BOOLEAN)
  903. uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  904. else
  905. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  906. uinfo->count = cval->channels;
  907. if (cval->val_type == USB_MIXER_BOOLEAN ||
  908. cval->val_type == USB_MIXER_INV_BOOLEAN) {
  909. uinfo->value.integer.min = 0;
  910. uinfo->value.integer.max = 1;
  911. } else {
  912. if (!cval->initialized) {
  913. get_min_max_with_quirks(cval, 0, kcontrol);
  914. if (cval->initialized && cval->dBmin >= cval->dBmax) {
  915. kcontrol->vd[0].access &=
  916. ~(SNDRV_CTL_ELEM_ACCESS_TLV_READ |
  917. SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK);
  918. snd_ctl_notify(cval->mixer->chip->card,
  919. SNDRV_CTL_EVENT_MASK_INFO,
  920. &kcontrol->id);
  921. }
  922. }
  923. uinfo->value.integer.min = 0;
  924. uinfo->value.integer.max =
  925. (cval->max - cval->min + cval->res - 1) / cval->res;
  926. }
  927. return 0;
  928. }
  929. /* get the current value from feature/mixer unit */
  930. static int mixer_ctl_feature_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  931. {
  932. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  933. int c, cnt, val, err;
  934. ucontrol->value.integer.value[0] = cval->min;
  935. if (cval->cmask) {
  936. cnt = 0;
  937. for (c = 0; c < MAX_CHANNELS; c++) {
  938. if (!(cval->cmask & (1 << c)))
  939. continue;
  940. err = get_cur_mix_value(cval, c + 1, cnt, &val);
  941. if (err < 0)
  942. return cval->mixer->ignore_ctl_error ? 0 : err;
  943. val = get_relative_value(cval, val);
  944. ucontrol->value.integer.value[cnt] = val;
  945. cnt++;
  946. }
  947. return 0;
  948. } else {
  949. /* master channel */
  950. err = get_cur_mix_value(cval, 0, 0, &val);
  951. if (err < 0)
  952. return cval->mixer->ignore_ctl_error ? 0 : err;
  953. val = get_relative_value(cval, val);
  954. ucontrol->value.integer.value[0] = val;
  955. }
  956. return 0;
  957. }
  958. /* put the current value to feature/mixer unit */
  959. static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  960. {
  961. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  962. int c, cnt, val, oval, err;
  963. int changed = 0;
  964. if (cval->cmask) {
  965. cnt = 0;
  966. for (c = 0; c < MAX_CHANNELS; c++) {
  967. if (!(cval->cmask & (1 << c)))
  968. continue;
  969. err = get_cur_mix_value(cval, c + 1, cnt, &oval);
  970. if (err < 0)
  971. return cval->mixer->ignore_ctl_error ? 0 : err;
  972. val = ucontrol->value.integer.value[cnt];
  973. val = get_abs_value(cval, val);
  974. if (oval != val) {
  975. set_cur_mix_value(cval, c + 1, cnt, val);
  976. changed = 1;
  977. }
  978. cnt++;
  979. }
  980. } else {
  981. /* master channel */
  982. err = get_cur_mix_value(cval, 0, 0, &oval);
  983. if (err < 0)
  984. return cval->mixer->ignore_ctl_error ? 0 : err;
  985. val = ucontrol->value.integer.value[0];
  986. val = get_abs_value(cval, val);
  987. if (val != oval) {
  988. set_cur_mix_value(cval, 0, 0, val);
  989. changed = 1;
  990. }
  991. }
  992. return changed;
  993. }
  994. static struct snd_kcontrol_new usb_feature_unit_ctl = {
  995. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  996. .name = "", /* will be filled later manually */
  997. .info = mixer_ctl_feature_info,
  998. .get = mixer_ctl_feature_get,
  999. .put = mixer_ctl_feature_put,
  1000. };
  1001. /* the read-only variant */
  1002. static struct snd_kcontrol_new usb_feature_unit_ctl_ro = {
  1003. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1004. .name = "", /* will be filled later manually */
  1005. .info = mixer_ctl_feature_info,
  1006. .get = mixer_ctl_feature_get,
  1007. .put = NULL,
  1008. };
  1009. /* This symbol is exported in order to allow the mixer quirks to
  1010. * hook up to the standard feature unit control mechanism */
  1011. struct snd_kcontrol_new *snd_usb_feature_unit_ctl = &usb_feature_unit_ctl;
  1012. /*
  1013. * build a feature control
  1014. */
  1015. static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str)
  1016. {
  1017. return strlcat(kctl->id.name, str, sizeof(kctl->id.name));
  1018. }
  1019. /* A lot of headsets/headphones have a "Speaker" mixer. Make sure we
  1020. rename it to "Headphone". We determine if something is a headphone
  1021. similar to how udev determines form factor. */
  1022. static void check_no_speaker_on_headset(struct snd_kcontrol *kctl,
  1023. struct snd_card *card)
  1024. {
  1025. const char *names_to_check[] = {
  1026. "Headset", "headset", "Headphone", "headphone", NULL};
  1027. const char **s;
  1028. bool found = 0;
  1029. if (strcmp("Speaker", kctl->id.name))
  1030. return;
  1031. for (s = names_to_check; *s; s++)
  1032. if (strstr(card->shortname, *s)) {
  1033. found = 1;
  1034. break;
  1035. }
  1036. if (!found)
  1037. return;
  1038. strlcpy(kctl->id.name, "Headphone", sizeof(kctl->id.name));
  1039. }
  1040. static void build_feature_ctl(struct mixer_build *state, void *raw_desc,
  1041. unsigned int ctl_mask, int control,
  1042. struct usb_audio_term *iterm, int unitid,
  1043. int readonly_mask)
  1044. {
  1045. struct uac_feature_unit_descriptor *desc = raw_desc;
  1046. unsigned int len = 0;
  1047. int mapped_name = 0;
  1048. int nameid = uac_feature_unit_iFeature(desc);
  1049. struct snd_kcontrol *kctl;
  1050. struct usb_mixer_elem_info *cval;
  1051. const struct usbmix_name_map *map;
  1052. unsigned int range;
  1053. control++; /* change from zero-based to 1-based value */
  1054. if (control == UAC_FU_GRAPHIC_EQUALIZER) {
  1055. /* FIXME: not supported yet */
  1056. return;
  1057. }
  1058. map = find_map(state, unitid, control);
  1059. if (check_ignored_ctl(map))
  1060. return;
  1061. cval = kzalloc(sizeof(*cval), GFP_KERNEL);
  1062. if (! cval) {
  1063. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1064. return;
  1065. }
  1066. cval->mixer = state->mixer;
  1067. cval->id = unitid;
  1068. cval->control = control;
  1069. cval->cmask = ctl_mask;
  1070. cval->val_type = audio_feature_info[control-1].type;
  1071. if (ctl_mask == 0) {
  1072. cval->channels = 1; /* master channel */
  1073. cval->master_readonly = readonly_mask;
  1074. } else {
  1075. int i, c = 0;
  1076. for (i = 0; i < 16; i++)
  1077. if (ctl_mask & (1 << i))
  1078. c++;
  1079. cval->channels = c;
  1080. cval->ch_readonly = readonly_mask;
  1081. }
  1082. /* if all channels in the mask are marked read-only, make the control
  1083. * read-only. set_cur_mix_value() will check the mask again and won't
  1084. * issue write commands to read-only channels. */
  1085. if (cval->channels == readonly_mask)
  1086. kctl = snd_ctl_new1(&usb_feature_unit_ctl_ro, cval);
  1087. else
  1088. kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
  1089. if (! kctl) {
  1090. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1091. kfree(cval);
  1092. return;
  1093. }
  1094. kctl->private_free = usb_mixer_elem_free;
  1095. len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
  1096. mapped_name = len != 0;
  1097. if (! len && nameid)
  1098. len = snd_usb_copy_string_desc(state, nameid,
  1099. kctl->id.name, sizeof(kctl->id.name));
  1100. switch (control) {
  1101. case UAC_FU_MUTE:
  1102. case UAC_FU_VOLUME:
  1103. /* determine the control name. the rule is:
  1104. * - if a name id is given in descriptor, use it.
  1105. * - if the connected input can be determined, then use the name
  1106. * of terminal type.
  1107. * - if the connected output can be determined, use it.
  1108. * - otherwise, anonymous name.
  1109. */
  1110. if (! len) {
  1111. len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 1);
  1112. if (! len)
  1113. len = get_term_name(state, &state->oterm, kctl->id.name, sizeof(kctl->id.name), 1);
  1114. if (! len)
  1115. len = snprintf(kctl->id.name, sizeof(kctl->id.name),
  1116. "Feature %d", unitid);
  1117. }
  1118. if (!mapped_name)
  1119. check_no_speaker_on_headset(kctl, state->mixer->chip->card);
  1120. /* determine the stream direction:
  1121. * if the connected output is USB stream, then it's likely a
  1122. * capture stream. otherwise it should be playback (hopefully :)
  1123. */
  1124. if (! mapped_name && ! (state->oterm.type >> 16)) {
  1125. if ((state->oterm.type & 0xff00) == 0x0100) {
  1126. len = append_ctl_name(kctl, " Capture");
  1127. } else {
  1128. len = append_ctl_name(kctl, " Playback");
  1129. }
  1130. }
  1131. append_ctl_name(kctl, control == UAC_FU_MUTE ?
  1132. " Switch" : " Volume");
  1133. break;
  1134. default:
  1135. if (! len)
  1136. strlcpy(kctl->id.name, audio_feature_info[control-1].name,
  1137. sizeof(kctl->id.name));
  1138. break;
  1139. }
  1140. /* get min/max values */
  1141. get_min_max_with_quirks(cval, 0, kctl);
  1142. if (control == UAC_FU_VOLUME) {
  1143. check_mapped_dB(map, cval);
  1144. if (cval->dBmin < cval->dBmax || !cval->initialized) {
  1145. kctl->tlv.c = snd_usb_mixer_vol_tlv;
  1146. kctl->vd[0].access |=
  1147. SNDRV_CTL_ELEM_ACCESS_TLV_READ |
  1148. SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
  1149. }
  1150. }
  1151. range = (cval->max - cval->min) / cval->res;
  1152. /* Are there devices with volume range more than 255? I use a bit more
  1153. * to be sure. 384 is a resolution magic number found on Logitech
  1154. * devices. It will definitively catch all buggy Logitech devices.
  1155. */
  1156. if (range > 384) {
  1157. snd_printk(KERN_WARNING "usb_audio: Warning! Unlikely big "
  1158. "volume range (=%u), cval->res is probably wrong.",
  1159. range);
  1160. snd_printk(KERN_WARNING "usb_audio: [%d] FU [%s] ch = %d, "
  1161. "val = %d/%d/%d", cval->id,
  1162. kctl->id.name, cval->channels,
  1163. cval->min, cval->max, cval->res);
  1164. }
  1165. snd_printdd(KERN_INFO "[%d] FU [%s] ch = %d, val = %d/%d/%d\n",
  1166. cval->id, kctl->id.name, cval->channels, cval->min, cval->max, cval->res);
  1167. snd_usb_mixer_add_control(state->mixer, kctl);
  1168. }
  1169. /*
  1170. * parse a feature unit
  1171. *
  1172. * most of controls are defined here.
  1173. */
  1174. static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void *_ftr)
  1175. {
  1176. int channels, i, j;
  1177. struct usb_audio_term iterm;
  1178. unsigned int master_bits, first_ch_bits;
  1179. int err, csize;
  1180. struct uac_feature_unit_descriptor *hdr = _ftr;
  1181. __u8 *bmaControls;
  1182. if (state->mixer->protocol == UAC_VERSION_1) {
  1183. csize = hdr->bControlSize;
  1184. if (!csize) {
  1185. snd_printdd(KERN_ERR "usbaudio: unit %u: "
  1186. "invalid bControlSize == 0\n", unitid);
  1187. return -EINVAL;
  1188. }
  1189. channels = (hdr->bLength - 7) / csize - 1;
  1190. bmaControls = hdr->bmaControls;
  1191. } else {
  1192. struct uac2_feature_unit_descriptor *ftr = _ftr;
  1193. csize = 4;
  1194. channels = (hdr->bLength - 6) / 4 - 1;
  1195. bmaControls = ftr->bmaControls;
  1196. }
  1197. if (hdr->bLength < 7 || !csize || hdr->bLength < 7 + csize) {
  1198. snd_printk(KERN_ERR "usbaudio: unit %u: invalid UAC_FEATURE_UNIT descriptor\n", unitid);
  1199. return -EINVAL;
  1200. }
  1201. /* parse the source unit */
  1202. if ((err = parse_audio_unit(state, hdr->bSourceID)) < 0)
  1203. return err;
  1204. /* determine the input source type and name */
  1205. if (check_input_term(state, hdr->bSourceID, &iterm) < 0)
  1206. return -EINVAL;
  1207. master_bits = snd_usb_combine_bytes(bmaControls, csize);
  1208. /* master configuration quirks */
  1209. switch (state->chip->usb_id) {
  1210. case USB_ID(0x08bb, 0x2702):
  1211. snd_printk(KERN_INFO
  1212. "usbmixer: master volume quirk for PCM2702 chip\n");
  1213. /* disable non-functional volume control */
  1214. master_bits &= ~UAC_CONTROL_BIT(UAC_FU_VOLUME);
  1215. break;
  1216. case USB_ID(0x1130, 0xf211):
  1217. snd_printk(KERN_INFO
  1218. "usbmixer: volume control quirk for Tenx TP6911 Audio Headset\n");
  1219. /* disable non-functional volume control */
  1220. channels = 0;
  1221. break;
  1222. }
  1223. if (channels > 0)
  1224. first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
  1225. else
  1226. first_ch_bits = 0;
  1227. if (state->mixer->protocol == UAC_VERSION_1) {
  1228. /* check all control types */
  1229. for (i = 0; i < 10; i++) {
  1230. unsigned int ch_bits = 0;
  1231. for (j = 0; j < channels; j++) {
  1232. unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
  1233. if (mask & (1 << i))
  1234. ch_bits |= (1 << j);
  1235. }
  1236. /* audio class v1 controls are never read-only */
  1237. if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
  1238. build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, 0);
  1239. if (master_bits & (1 << i))
  1240. build_feature_ctl(state, _ftr, 0, i, &iterm, unitid, 0);
  1241. }
  1242. } else { /* UAC_VERSION_2 */
  1243. for (i = 0; i < ARRAY_SIZE(audio_feature_info); i++) {
  1244. unsigned int ch_bits = 0;
  1245. unsigned int ch_read_only = 0;
  1246. for (j = 0; j < channels; j++) {
  1247. unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
  1248. if (uac2_control_is_readable(mask, i)) {
  1249. ch_bits |= (1 << j);
  1250. if (!uac2_control_is_writeable(mask, i))
  1251. ch_read_only |= (1 << j);
  1252. }
  1253. }
  1254. /* NOTE: build_feature_ctl() will mark the control read-only if all channels
  1255. * are marked read-only in the descriptors. Otherwise, the control will be
  1256. * reported as writeable, but the driver will not actually issue a write
  1257. * command for read-only channels */
  1258. if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
  1259. build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, ch_read_only);
  1260. if (uac2_control_is_readable(master_bits, i))
  1261. build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
  1262. !uac2_control_is_writeable(master_bits, i));
  1263. }
  1264. }
  1265. return 0;
  1266. }
  1267. /*
  1268. * Mixer Unit
  1269. */
  1270. /*
  1271. * build a mixer unit control
  1272. *
  1273. * the callbacks are identical with feature unit.
  1274. * input channel number (zero based) is given in control field instead.
  1275. */
  1276. static void build_mixer_unit_ctl(struct mixer_build *state,
  1277. struct uac_mixer_unit_descriptor *desc,
  1278. int in_pin, int in_ch, int unitid,
  1279. struct usb_audio_term *iterm)
  1280. {
  1281. struct usb_mixer_elem_info *cval;
  1282. unsigned int num_outs = uac_mixer_unit_bNrChannels(desc);
  1283. unsigned int i, len;
  1284. struct snd_kcontrol *kctl;
  1285. const struct usbmix_name_map *map;
  1286. map = find_map(state, unitid, 0);
  1287. if (check_ignored_ctl(map))
  1288. return;
  1289. cval = kzalloc(sizeof(*cval), GFP_KERNEL);
  1290. if (! cval)
  1291. return;
  1292. cval->mixer = state->mixer;
  1293. cval->id = unitid;
  1294. cval->control = in_ch + 1; /* based on 1 */
  1295. cval->val_type = USB_MIXER_S16;
  1296. for (i = 0; i < num_outs; i++) {
  1297. if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol), in_ch, i, num_outs)) {
  1298. cval->cmask |= (1 << i);
  1299. cval->channels++;
  1300. }
  1301. }
  1302. /* get min/max values */
  1303. get_min_max(cval, 0);
  1304. kctl = snd_ctl_new1(&usb_feature_unit_ctl, cval);
  1305. if (! kctl) {
  1306. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1307. kfree(cval);
  1308. return;
  1309. }
  1310. kctl->private_free = usb_mixer_elem_free;
  1311. len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
  1312. if (! len)
  1313. len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0);
  1314. if (! len)
  1315. len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1);
  1316. append_ctl_name(kctl, " Volume");
  1317. snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n",
  1318. cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
  1319. snd_usb_mixer_add_control(state->mixer, kctl);
  1320. }
  1321. /*
  1322. * parse a mixer unit
  1323. */
  1324. static int parse_audio_mixer_unit(struct mixer_build *state, int unitid, void *raw_desc)
  1325. {
  1326. struct uac_mixer_unit_descriptor *desc = raw_desc;
  1327. struct usb_audio_term iterm;
  1328. int input_pins, num_ins, num_outs;
  1329. int pin, ich, err;
  1330. if (desc->bLength < 11 || ! (input_pins = desc->bNrInPins) || ! (num_outs = uac_mixer_unit_bNrChannels(desc))) {
  1331. snd_printk(KERN_ERR "invalid MIXER UNIT descriptor %d\n", unitid);
  1332. return -EINVAL;
  1333. }
  1334. /* no bmControls field (e.g. Maya44) -> ignore */
  1335. if (desc->bLength <= 10 + input_pins) {
  1336. snd_printdd(KERN_INFO "MU %d has no bmControls field\n", unitid);
  1337. return 0;
  1338. }
  1339. num_ins = 0;
  1340. ich = 0;
  1341. for (pin = 0; pin < input_pins; pin++) {
  1342. err = parse_audio_unit(state, desc->baSourceID[pin]);
  1343. if (err < 0)
  1344. continue;
  1345. err = check_input_term(state, desc->baSourceID[pin], &iterm);
  1346. if (err < 0)
  1347. return err;
  1348. num_ins += iterm.channels;
  1349. for (; ich < num_ins; ++ich) {
  1350. int och, ich_has_controls = 0;
  1351. for (och = 0; och < num_outs; ++och) {
  1352. if (check_matrix_bitmap(uac_mixer_unit_bmControls(desc, state->mixer->protocol),
  1353. ich, och, num_outs)) {
  1354. ich_has_controls = 1;
  1355. break;
  1356. }
  1357. }
  1358. if (ich_has_controls)
  1359. build_mixer_unit_ctl(state, desc, pin, ich,
  1360. unitid, &iterm);
  1361. }
  1362. }
  1363. return 0;
  1364. }
  1365. /*
  1366. * Processing Unit / Extension Unit
  1367. */
  1368. /* get callback for processing/extension unit */
  1369. static int mixer_ctl_procunit_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1370. {
  1371. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  1372. int err, val;
  1373. err = get_cur_ctl_value(cval, cval->control << 8, &val);
  1374. if (err < 0 && cval->mixer->ignore_ctl_error) {
  1375. ucontrol->value.integer.value[0] = cval->min;
  1376. return 0;
  1377. }
  1378. if (err < 0)
  1379. return err;
  1380. val = get_relative_value(cval, val);
  1381. ucontrol->value.integer.value[0] = val;
  1382. return 0;
  1383. }
  1384. /* put callback for processing/extension unit */
  1385. static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1386. {
  1387. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  1388. int val, oval, err;
  1389. err = get_cur_ctl_value(cval, cval->control << 8, &oval);
  1390. if (err < 0) {
  1391. if (cval->mixer->ignore_ctl_error)
  1392. return 0;
  1393. return err;
  1394. }
  1395. val = ucontrol->value.integer.value[0];
  1396. val = get_abs_value(cval, val);
  1397. if (val != oval) {
  1398. set_cur_ctl_value(cval, cval->control << 8, val);
  1399. return 1;
  1400. }
  1401. return 0;
  1402. }
  1403. /* alsa control interface for processing/extension unit */
  1404. static struct snd_kcontrol_new mixer_procunit_ctl = {
  1405. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1406. .name = "", /* will be filled later */
  1407. .info = mixer_ctl_feature_info,
  1408. .get = mixer_ctl_procunit_get,
  1409. .put = mixer_ctl_procunit_put,
  1410. };
  1411. /*
  1412. * predefined data for processing units
  1413. */
  1414. struct procunit_value_info {
  1415. int control;
  1416. char *suffix;
  1417. int val_type;
  1418. int min_value;
  1419. };
  1420. struct procunit_info {
  1421. int type;
  1422. char *name;
  1423. struct procunit_value_info *values;
  1424. };
  1425. static struct procunit_value_info updown_proc_info[] = {
  1426. { UAC_UD_ENABLE, "Switch", USB_MIXER_BOOLEAN },
  1427. { UAC_UD_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
  1428. { 0 }
  1429. };
  1430. static struct procunit_value_info prologic_proc_info[] = {
  1431. { UAC_DP_ENABLE, "Switch", USB_MIXER_BOOLEAN },
  1432. { UAC_DP_MODE_SELECT, "Mode Select", USB_MIXER_U8, 1 },
  1433. { 0 }
  1434. };
  1435. static struct procunit_value_info threed_enh_proc_info[] = {
  1436. { UAC_3D_ENABLE, "Switch", USB_MIXER_BOOLEAN },
  1437. { UAC_3D_SPACE, "Spaciousness", USB_MIXER_U8 },
  1438. { 0 }
  1439. };
  1440. static struct procunit_value_info reverb_proc_info[] = {
  1441. { UAC_REVERB_ENABLE, "Switch", USB_MIXER_BOOLEAN },
  1442. { UAC_REVERB_LEVEL, "Level", USB_MIXER_U8 },
  1443. { UAC_REVERB_TIME, "Time", USB_MIXER_U16 },
  1444. { UAC_REVERB_FEEDBACK, "Feedback", USB_MIXER_U8 },
  1445. { 0 }
  1446. };
  1447. static struct procunit_value_info chorus_proc_info[] = {
  1448. { UAC_CHORUS_ENABLE, "Switch", USB_MIXER_BOOLEAN },
  1449. { UAC_CHORUS_LEVEL, "Level", USB_MIXER_U8 },
  1450. { UAC_CHORUS_RATE, "Rate", USB_MIXER_U16 },
  1451. { UAC_CHORUS_DEPTH, "Depth", USB_MIXER_U16 },
  1452. { 0 }
  1453. };
  1454. static struct procunit_value_info dcr_proc_info[] = {
  1455. { UAC_DCR_ENABLE, "Switch", USB_MIXER_BOOLEAN },
  1456. { UAC_DCR_RATE, "Ratio", USB_MIXER_U16 },
  1457. { UAC_DCR_MAXAMPL, "Max Amp", USB_MIXER_S16 },
  1458. { UAC_DCR_THRESHOLD, "Threshold", USB_MIXER_S16 },
  1459. { UAC_DCR_ATTACK_TIME, "Attack Time", USB_MIXER_U16 },
  1460. { UAC_DCR_RELEASE_TIME, "Release Time", USB_MIXER_U16 },
  1461. { 0 }
  1462. };
  1463. static struct procunit_info procunits[] = {
  1464. { UAC_PROCESS_UP_DOWNMIX, "Up Down", updown_proc_info },
  1465. { UAC_PROCESS_DOLBY_PROLOGIC, "Dolby Prologic", prologic_proc_info },
  1466. { UAC_PROCESS_STEREO_EXTENDER, "3D Stereo Extender", threed_enh_proc_info },
  1467. { UAC_PROCESS_REVERB, "Reverb", reverb_proc_info },
  1468. { UAC_PROCESS_CHORUS, "Chorus", chorus_proc_info },
  1469. { UAC_PROCESS_DYN_RANGE_COMP, "DCR", dcr_proc_info },
  1470. { 0 },
  1471. };
  1472. /*
  1473. * predefined data for extension units
  1474. */
  1475. static struct procunit_value_info clock_rate_xu_info[] = {
  1476. { USB_XU_CLOCK_RATE_SELECTOR, "Selector", USB_MIXER_U8, 0 },
  1477. { 0 }
  1478. };
  1479. static struct procunit_value_info clock_source_xu_info[] = {
  1480. { USB_XU_CLOCK_SOURCE_SELECTOR, "External", USB_MIXER_BOOLEAN },
  1481. { 0 }
  1482. };
  1483. static struct procunit_value_info spdif_format_xu_info[] = {
  1484. { USB_XU_DIGITAL_FORMAT_SELECTOR, "SPDIF/AC3", USB_MIXER_BOOLEAN },
  1485. { 0 }
  1486. };
  1487. static struct procunit_value_info soft_limit_xu_info[] = {
  1488. { USB_XU_SOFT_LIMIT_SELECTOR, " ", USB_MIXER_BOOLEAN },
  1489. { 0 }
  1490. };
  1491. static struct procunit_info extunits[] = {
  1492. { USB_XU_CLOCK_RATE, "Clock rate", clock_rate_xu_info },
  1493. { USB_XU_CLOCK_SOURCE, "DigitalIn CLK source", clock_source_xu_info },
  1494. { USB_XU_DIGITAL_IO_STATUS, "DigitalOut format:", spdif_format_xu_info },
  1495. { USB_XU_DEVICE_OPTIONS, "AnalogueIn Soft Limit", soft_limit_xu_info },
  1496. { 0 }
  1497. };
  1498. /*
  1499. * build a processing/extension unit
  1500. */
  1501. static int build_audio_procunit(struct mixer_build *state, int unitid, void *raw_desc, struct procunit_info *list, char *name)
  1502. {
  1503. struct uac_processing_unit_descriptor *desc = raw_desc;
  1504. int num_ins = desc->bNrInPins;
  1505. struct usb_mixer_elem_info *cval;
  1506. struct snd_kcontrol *kctl;
  1507. int i, err, nameid, type, len;
  1508. struct procunit_info *info;
  1509. struct procunit_value_info *valinfo;
  1510. const struct usbmix_name_map *map;
  1511. static struct procunit_value_info default_value_info[] = {
  1512. { 0x01, "Switch", USB_MIXER_BOOLEAN },
  1513. { 0 }
  1514. };
  1515. static struct procunit_info default_info = {
  1516. 0, NULL, default_value_info
  1517. };
  1518. if (desc->bLength < 13 || desc->bLength < 13 + num_ins ||
  1519. desc->bLength < num_ins + uac_processing_unit_bControlSize(desc, state->mixer->protocol)) {
  1520. snd_printk(KERN_ERR "invalid %s descriptor (id %d)\n", name, unitid);
  1521. return -EINVAL;
  1522. }
  1523. for (i = 0; i < num_ins; i++) {
  1524. if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
  1525. return err;
  1526. }
  1527. type = le16_to_cpu(desc->wProcessType);
  1528. for (info = list; info && info->type; info++)
  1529. if (info->type == type)
  1530. break;
  1531. if (! info || ! info->type)
  1532. info = &default_info;
  1533. for (valinfo = info->values; valinfo->control; valinfo++) {
  1534. __u8 *controls = uac_processing_unit_bmControls(desc, state->mixer->protocol);
  1535. if (! (controls[valinfo->control / 8] & (1 << ((valinfo->control % 8) - 1))))
  1536. continue;
  1537. map = find_map(state, unitid, valinfo->control);
  1538. if (check_ignored_ctl(map))
  1539. continue;
  1540. cval = kzalloc(sizeof(*cval), GFP_KERNEL);
  1541. if (! cval) {
  1542. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1543. return -ENOMEM;
  1544. }
  1545. cval->mixer = state->mixer;
  1546. cval->id = unitid;
  1547. cval->control = valinfo->control;
  1548. cval->val_type = valinfo->val_type;
  1549. cval->channels = 1;
  1550. /* get min/max values */
  1551. if (type == UAC_PROCESS_UP_DOWNMIX && cval->control == UAC_UD_MODE_SELECT) {
  1552. __u8 *control_spec = uac_processing_unit_specific(desc, state->mixer->protocol);
  1553. /* FIXME: hard-coded */
  1554. cval->min = 1;
  1555. cval->max = control_spec[0];
  1556. cval->res = 1;
  1557. cval->initialized = 1;
  1558. } else {
  1559. if (type == USB_XU_CLOCK_RATE) {
  1560. /* E-Mu USB 0404/0202/TrackerPre/0204
  1561. * samplerate control quirk
  1562. */
  1563. cval->min = 0;
  1564. cval->max = 5;
  1565. cval->res = 1;
  1566. cval->initialized = 1;
  1567. } else
  1568. get_min_max(cval, valinfo->min_value);
  1569. }
  1570. kctl = snd_ctl_new1(&mixer_procunit_ctl, cval);
  1571. if (! kctl) {
  1572. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1573. kfree(cval);
  1574. return -ENOMEM;
  1575. }
  1576. kctl->private_free = usb_mixer_elem_free;
  1577. if (check_mapped_name(map, kctl->id.name,
  1578. sizeof(kctl->id.name)))
  1579. /* nothing */ ;
  1580. else if (info->name)
  1581. strlcpy(kctl->id.name, info->name, sizeof(kctl->id.name));
  1582. else {
  1583. nameid = uac_processing_unit_iProcessing(desc, state->mixer->protocol);
  1584. len = 0;
  1585. if (nameid)
  1586. len = snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
  1587. if (! len)
  1588. strlcpy(kctl->id.name, name, sizeof(kctl->id.name));
  1589. }
  1590. append_ctl_name(kctl, " ");
  1591. append_ctl_name(kctl, valinfo->suffix);
  1592. snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n",
  1593. cval->id, kctl->id.name, cval->channels, cval->min, cval->max);
  1594. if ((err = snd_usb_mixer_add_control(state->mixer, kctl)) < 0)
  1595. return err;
  1596. }
  1597. return 0;
  1598. }
  1599. static int parse_audio_processing_unit(struct mixer_build *state, int unitid, void *raw_desc)
  1600. {
  1601. return build_audio_procunit(state, unitid, raw_desc, procunits, "Processing Unit");
  1602. }
  1603. static int parse_audio_extension_unit(struct mixer_build *state, int unitid, void *raw_desc)
  1604. {
  1605. /* Note that we parse extension units with processing unit descriptors.
  1606. * That's ok as the layout is the same */
  1607. return build_audio_procunit(state, unitid, raw_desc, extunits, "Extension Unit");
  1608. }
  1609. /*
  1610. * Selector Unit
  1611. */
  1612. /* info callback for selector unit
  1613. * use an enumerator type for routing
  1614. */
  1615. static int mixer_ctl_selector_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  1616. {
  1617. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  1618. const char **itemlist = (const char **)kcontrol->private_value;
  1619. if (snd_BUG_ON(!itemlist))
  1620. return -EINVAL;
  1621. return snd_ctl_enum_info(uinfo, 1, cval->max, itemlist);
  1622. }
  1623. /* get callback for selector unit */
  1624. static int mixer_ctl_selector_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1625. {
  1626. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  1627. int val, err;
  1628. err = get_cur_ctl_value(cval, cval->control << 8, &val);
  1629. if (err < 0) {
  1630. if (cval->mixer->ignore_ctl_error) {
  1631. ucontrol->value.enumerated.item[0] = 0;
  1632. return 0;
  1633. }
  1634. return err;
  1635. }
  1636. val = get_relative_value(cval, val);
  1637. ucontrol->value.enumerated.item[0] = val;
  1638. return 0;
  1639. }
  1640. /* put callback for selector unit */
  1641. static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1642. {
  1643. struct usb_mixer_elem_info *cval = kcontrol->private_data;
  1644. int val, oval, err;
  1645. err = get_cur_ctl_value(cval, cval->control << 8, &oval);
  1646. if (err < 0) {
  1647. if (cval->mixer->ignore_ctl_error)
  1648. return 0;
  1649. return err;
  1650. }
  1651. val = ucontrol->value.enumerated.item[0];
  1652. val = get_abs_value(cval, val);
  1653. if (val != oval) {
  1654. set_cur_ctl_value(cval, cval->control << 8, val);
  1655. return 1;
  1656. }
  1657. return 0;
  1658. }
  1659. /* alsa control interface for selector unit */
  1660. static struct snd_kcontrol_new mixer_selectunit_ctl = {
  1661. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1662. .name = "", /* will be filled later */
  1663. .info = mixer_ctl_selector_info,
  1664. .get = mixer_ctl_selector_get,
  1665. .put = mixer_ctl_selector_put,
  1666. };
  1667. /* private free callback.
  1668. * free both private_data and private_value
  1669. */
  1670. static void usb_mixer_selector_elem_free(struct snd_kcontrol *kctl)
  1671. {
  1672. int i, num_ins = 0;
  1673. if (kctl->private_data) {
  1674. struct usb_mixer_elem_info *cval = kctl->private_data;
  1675. num_ins = cval->max;
  1676. kfree(cval);
  1677. kctl->private_data = NULL;
  1678. }
  1679. if (kctl->private_value) {
  1680. char **itemlist = (char **)kctl->private_value;
  1681. for (i = 0; i < num_ins; i++)
  1682. kfree(itemlist[i]);
  1683. kfree(itemlist);
  1684. kctl->private_value = 0;
  1685. }
  1686. }
  1687. /*
  1688. * parse a selector unit
  1689. */
  1690. static int parse_audio_selector_unit(struct mixer_build *state, int unitid, void *raw_desc)
  1691. {
  1692. struct uac_selector_unit_descriptor *desc = raw_desc;
  1693. unsigned int i, nameid, len;
  1694. int err;
  1695. struct usb_mixer_elem_info *cval;
  1696. struct snd_kcontrol *kctl;
  1697. const struct usbmix_name_map *map;
  1698. char **namelist;
  1699. if (!desc->bNrInPins || desc->bLength < 5 + desc->bNrInPins) {
  1700. snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", unitid);
  1701. return -EINVAL;
  1702. }
  1703. for (i = 0; i < desc->bNrInPins; i++) {
  1704. if ((err = parse_audio_unit(state, desc->baSourceID[i])) < 0)
  1705. return err;
  1706. }
  1707. if (desc->bNrInPins == 1) /* only one ? nonsense! */
  1708. return 0;
  1709. map = find_map(state, unitid, 0);
  1710. if (check_ignored_ctl(map))
  1711. return 0;
  1712. cval = kzalloc(sizeof(*cval), GFP_KERNEL);
  1713. if (! cval) {
  1714. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1715. return -ENOMEM;
  1716. }
  1717. cval->mixer = state->mixer;
  1718. cval->id = unitid;
  1719. cval->val_type = USB_MIXER_U8;
  1720. cval->channels = 1;
  1721. cval->min = 1;
  1722. cval->max = desc->bNrInPins;
  1723. cval->res = 1;
  1724. cval->initialized = 1;
  1725. if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
  1726. cval->control = UAC2_CX_CLOCK_SELECTOR;
  1727. else
  1728. cval->control = 0;
  1729. namelist = kmalloc(sizeof(char *) * desc->bNrInPins, GFP_KERNEL);
  1730. if (! namelist) {
  1731. snd_printk(KERN_ERR "cannot malloc\n");
  1732. kfree(cval);
  1733. return -ENOMEM;
  1734. }
  1735. #define MAX_ITEM_NAME_LEN 64
  1736. for (i = 0; i < desc->bNrInPins; i++) {
  1737. struct usb_audio_term iterm;
  1738. len = 0;
  1739. namelist[i] = kmalloc(MAX_ITEM_NAME_LEN, GFP_KERNEL);
  1740. if (! namelist[i]) {
  1741. snd_printk(KERN_ERR "cannot malloc\n");
  1742. while (i--)
  1743. kfree(namelist[i]);
  1744. kfree(namelist);
  1745. kfree(cval);
  1746. return -ENOMEM;
  1747. }
  1748. len = check_mapped_selector_name(state, unitid, i, namelist[i],
  1749. MAX_ITEM_NAME_LEN);
  1750. if (! len && check_input_term(state, desc->baSourceID[i], &iterm) >= 0)
  1751. len = get_term_name(state, &iterm, namelist[i], MAX_ITEM_NAME_LEN, 0);
  1752. if (! len)
  1753. sprintf(namelist[i], "Input %d", i);
  1754. }
  1755. kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
  1756. if (! kctl) {
  1757. snd_printk(KERN_ERR "cannot malloc kcontrol\n");
  1758. kfree(namelist);
  1759. kfree(cval);
  1760. return -ENOMEM;
  1761. }
  1762. kctl->private_value = (unsigned long)namelist;
  1763. kctl->private_free = usb_mixer_selector_elem_free;
  1764. nameid = uac_selector_unit_iSelector(desc);
  1765. len = check_mapped_name(map, kctl->id.name, sizeof(kctl->id.name));
  1766. if (len)
  1767. ;
  1768. else if (nameid)
  1769. snd_usb_copy_string_desc(state, nameid, kctl->id.name, sizeof(kctl->id.name));
  1770. else {
  1771. len = get_term_name(state, &state->oterm,
  1772. kctl->id.name, sizeof(kctl->id.name), 0);
  1773. if (! len)
  1774. strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name));
  1775. if (desc->bDescriptorSubtype == UAC2_CLOCK_SELECTOR)
  1776. append_ctl_name(kctl, " Clock Source");
  1777. else if ((state->oterm.type & 0xff00) == 0x0100)
  1778. append_ctl_name(kctl, " Capture Source");
  1779. else
  1780. append_ctl_name(kctl, " Playback Source");
  1781. }
  1782. snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n",
  1783. cval->id, kctl->id.name, desc->bNrInPins);
  1784. if ((err = snd_usb_mixer_add_control(state->mixer, kctl)) < 0)
  1785. return err;
  1786. return 0;
  1787. }
  1788. /*
  1789. * parse an audio unit recursively
  1790. */
  1791. static int parse_audio_unit(struct mixer_build *state, int unitid)
  1792. {
  1793. unsigned char *p1;
  1794. if (test_and_set_bit(unitid, state->unitbitmap))
  1795. return 0; /* the unit already visited */
  1796. p1 = find_audio_control_unit(state, unitid);
  1797. if (!p1) {
  1798. snd_printk(KERN_ERR "usbaudio: unit %d not found!\n", unitid);
  1799. return -EINVAL;
  1800. }
  1801. switch (p1[2]) {
  1802. case UAC_INPUT_TERMINAL:
  1803. case UAC2_CLOCK_SOURCE:
  1804. return 0; /* NOP */
  1805. case UAC_MIXER_UNIT:
  1806. return parse_audio_mixer_unit(state, unitid, p1);
  1807. case UAC_SELECTOR_UNIT:
  1808. case UAC2_CLOCK_SELECTOR:
  1809. return parse_audio_selector_unit(state, unitid, p1);
  1810. case UAC_FEATURE_UNIT:
  1811. return parse_audio_feature_unit(state, unitid, p1);
  1812. case UAC1_PROCESSING_UNIT:
  1813. /* UAC2_EFFECT_UNIT has the same value */
  1814. if (state->mixer->protocol == UAC_VERSION_1)
  1815. return parse_audio_processing_unit(state, unitid, p1);
  1816. else
  1817. return 0; /* FIXME - effect units not implemented yet */
  1818. case UAC1_EXTENSION_UNIT:
  1819. /* UAC2_PROCESSING_UNIT_V2 has the same value */
  1820. if (state->mixer->protocol == UAC_VERSION_1)
  1821. return parse_audio_extension_unit(state, unitid, p1);
  1822. else /* UAC_VERSION_2 */
  1823. return parse_audio_processing_unit(state, unitid, p1);
  1824. default:
  1825. snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]);
  1826. return -EINVAL;
  1827. }
  1828. }
  1829. static void snd_usb_mixer_free(struct usb_mixer_interface *mixer)
  1830. {
  1831. kfree(mixer->id_elems);
  1832. if (mixer->urb) {
  1833. kfree(mixer->urb->transfer_buffer);
  1834. usb_free_urb(mixer->urb);
  1835. }
  1836. usb_free_urb(mixer->rc_urb);
  1837. kfree(mixer->rc_setup_packet);
  1838. kfree(mixer);
  1839. }
  1840. static int snd_usb_mixer_dev_free(struct snd_device *device)
  1841. {
  1842. struct usb_mixer_interface *mixer = device->device_data;
  1843. snd_usb_mixer_free(mixer);
  1844. return 0;
  1845. }
  1846. /*
  1847. * create mixer controls
  1848. *
  1849. * walk through all UAC_OUTPUT_TERMINAL descriptors to search for mixers
  1850. */
  1851. static int snd_usb_mixer_controls(struct usb_mixer_interface *mixer)
  1852. {
  1853. struct mixer_build state;
  1854. int err;
  1855. const struct usbmix_ctl_map *map;
  1856. void *p;
  1857. memset(&state, 0, sizeof(state));
  1858. state.chip = mixer->chip;
  1859. state.mixer = mixer;
  1860. state.buffer = mixer->hostif->extra;
  1861. state.buflen = mixer->hostif->extralen;
  1862. /* check the mapping table */
  1863. for (map = usbmix_ctl_maps; map->id; map++) {
  1864. if (map->id == state.chip->usb_id) {
  1865. state.map = map->map;
  1866. state.selector_map = map->selector_map;
  1867. mixer->ignore_ctl_error = map->ignore_ctl_error;
  1868. break;
  1869. }
  1870. }
  1871. p = NULL;
  1872. while ((p = snd_usb_find_csint_desc(mixer->hostif->extra, mixer->hostif->extralen,
  1873. p, UAC_OUTPUT_TERMINAL)) != NULL) {
  1874. if (mixer->protocol == UAC_VERSION_1) {
  1875. struct uac1_output_terminal_descriptor *desc = p;
  1876. if (desc->bLength < sizeof(*desc))
  1877. continue; /* invalid descriptor? */
  1878. set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
  1879. state.oterm.id = desc->bTerminalID;
  1880. state.oterm.type = le16_to_cpu(desc->wTerminalType);
  1881. state.oterm.name = desc->iTerminal;
  1882. err = parse_audio_unit(&state, desc->bSourceID);
  1883. if (err < 0)
  1884. return err;
  1885. } else { /* UAC_VERSION_2 */
  1886. struct uac2_output_terminal_descriptor *desc = p;
  1887. if (desc->bLength < sizeof(*desc))
  1888. continue; /* invalid descriptor? */
  1889. set_bit(desc->bTerminalID, state.unitbitmap); /* mark terminal ID as visited */
  1890. state.oterm.id = desc->bTerminalID;
  1891. state.oterm.type = le16_to_cpu(desc->wTerminalType);
  1892. state.oterm.name = desc->iTerminal;
  1893. err = parse_audio_unit(&state, desc->bSourceID);
  1894. if (err < 0)
  1895. return err;
  1896. /* for UAC2, use the same approach to also add the clock selectors */
  1897. err = parse_audio_unit(&state, desc->bCSourceID);
  1898. if (err < 0)
  1899. return err;
  1900. }
  1901. }
  1902. return 0;
  1903. }
  1904. void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid)
  1905. {
  1906. struct usb_mixer_elem_info *info;
  1907. for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem)
  1908. snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  1909. info->elem_id);
  1910. }
  1911. static void snd_usb_mixer_dump_cval(struct snd_info_buffer *buffer,
  1912. int unitid,
  1913. struct usb_mixer_elem_info *cval)
  1914. {
  1915. static char *val_types[] = {"BOOLEAN", "INV_BOOLEAN",
  1916. "S8", "U8", "S16", "U16"};
  1917. snd_iprintf(buffer, " Unit: %i\n", unitid);
  1918. if (cval->elem_id)
  1919. snd_iprintf(buffer, " Control: name=\"%s\", index=%i\n",
  1920. cval->elem_id->name, cval->elem_id->index);
  1921. snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, "
  1922. "channels=%i, type=\"%s\"\n", cval->id,
  1923. cval->control, cval->cmask, cval->channels,
  1924. val_types[cval->val_type]);
  1925. snd_iprintf(buffer, " Volume: min=%i, max=%i, dBmin=%i, dBmax=%i\n",
  1926. cval->min, cval->max, cval->dBmin, cval->dBmax);
  1927. }
  1928. static void snd_usb_mixer_proc_read(struct snd_info_entry *entry,
  1929. struct snd_info_buffer *buffer)
  1930. {
  1931. struct snd_usb_audio *chip = entry->private_data;
  1932. struct usb_mixer_interface *mixer;
  1933. struct usb_mixer_elem_info *cval;
  1934. int unitid;
  1935. list_for_each_entry(mixer, &chip->mixer_list, list) {
  1936. snd_iprintf(buffer,
  1937. "USB Mixer: usb_id=0x%08x, ctrlif=%i, ctlerr=%i\n",
  1938. chip->usb_id, snd_usb_ctrl_intf(chip),
  1939. mixer->ignore_ctl_error);
  1940. snd_iprintf(buffer, "Card: %s\n", chip->card->longname);
  1941. for (unitid = 0; unitid < MAX_ID_ELEMS; unitid++) {
  1942. for (cval = mixer->id_elems[unitid]; cval;
  1943. cval = cval->next_id_elem)
  1944. snd_usb_mixer_dump_cval(buffer, unitid, cval);
  1945. }
  1946. }
  1947. }
  1948. static void snd_usb_mixer_interrupt_v2(struct usb_mixer_interface *mixer,
  1949. int attribute, int value, int index)
  1950. {
  1951. struct usb_mixer_elem_info *info;
  1952. __u8 unitid = (index >> 8) & 0xff;
  1953. __u8 control = (value >> 8) & 0xff;
  1954. __u8 channel = value & 0xff;
  1955. if (channel >= MAX_CHANNELS) {
  1956. snd_printk(KERN_DEBUG "%s(): bogus channel number %d\n",
  1957. __func__, channel);
  1958. return;
  1959. }
  1960. for (info = mixer->id_elems[unitid]; info; info = info->next_id_elem) {
  1961. if (info->control != control)
  1962. continue;
  1963. switch (attribute) {
  1964. case UAC2_CS_CUR:
  1965. /* invalidate cache, so the value is read from the device */
  1966. if (channel)
  1967. info->cached &= ~(1 << channel);
  1968. else /* master channel */
  1969. info->cached = 0;
  1970. snd_ctl_notify(mixer->chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  1971. info->elem_id);
  1972. break;
  1973. case UAC2_CS_RANGE:
  1974. /* TODO */
  1975. break;
  1976. case UAC2_CS_MEM:
  1977. /* TODO */
  1978. break;
  1979. default:
  1980. snd_printk(KERN_DEBUG "unknown attribute %d in interrupt\n",
  1981. attribute);
  1982. break;
  1983. } /* switch */
  1984. }
  1985. }
  1986. static void snd_usb_mixer_interrupt(struct urb *urb)
  1987. {
  1988. struct usb_mixer_interface *mixer = urb->context;
  1989. int len = urb->actual_length;
  1990. int ustatus = urb->status;
  1991. if (ustatus != 0)
  1992. goto requeue;
  1993. if (mixer->protocol == UAC_VERSION_1) {
  1994. struct uac1_status_word *status;
  1995. for (status = urb->transfer_buffer;
  1996. len >= sizeof(*status);
  1997. len -= sizeof(*status), status++) {
  1998. snd_printd(KERN_DEBUG "status interrupt: %02x %02x\n",
  1999. status->bStatusType,
  2000. status->bOriginator);
  2001. /* ignore any notifications not from the control interface */
  2002. if ((status->bStatusType & UAC1_STATUS_TYPE_ORIG_MASK) !=
  2003. UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF)
  2004. continue;
  2005. if (status->bStatusType & UAC1_STATUS_TYPE_MEM_CHANGED)
  2006. snd_usb_mixer_rc_memory_change(mixer, status->bOriginator);
  2007. else
  2008. snd_usb_mixer_notify_id(mixer, status->bOriginator);
  2009. }
  2010. } else { /* UAC_VERSION_2 */
  2011. struct uac2_interrupt_data_msg *msg;
  2012. for (msg = urb->transfer_buffer;
  2013. len >= sizeof(*msg);
  2014. len -= sizeof(*msg), msg++) {
  2015. /* drop vendor specific and endpoint requests */
  2016. if ((msg->bInfo & UAC2_INTERRUPT_DATA_MSG_VENDOR) ||
  2017. (msg->bInfo & UAC2_INTERRUPT_DATA_MSG_EP))
  2018. continue;
  2019. snd_usb_mixer_interrupt_v2(mixer, msg->bAttribute,
  2020. le16_to_cpu(msg->wValue),
  2021. le16_to_cpu(msg->wIndex));
  2022. }
  2023. }
  2024. requeue:
  2025. if (ustatus != -ENOENT && ustatus != -ECONNRESET && ustatus != -ESHUTDOWN) {
  2026. urb->dev = mixer->chip->dev;
  2027. usb_submit_urb(urb, GFP_ATOMIC);
  2028. }
  2029. }
  2030. /* stop any bus activity of a mixer */
  2031. void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer)
  2032. {
  2033. usb_kill_urb(mixer->urb);
  2034. usb_kill_urb(mixer->rc_urb);
  2035. }
  2036. int snd_usb_mixer_activate(struct usb_mixer_interface *mixer)
  2037. {
  2038. int err;
  2039. if (mixer->urb) {
  2040. err = usb_submit_urb(mixer->urb, GFP_NOIO);
  2041. if (err < 0)
  2042. return err;
  2043. }
  2044. return 0;
  2045. }
  2046. /* create the handler for the optional status interrupt endpoint */
  2047. static int snd_usb_mixer_status_create(struct usb_mixer_interface *mixer)
  2048. {
  2049. struct usb_endpoint_descriptor *ep;
  2050. void *transfer_buffer;
  2051. int buffer_length;
  2052. unsigned int epnum;
  2053. /* we need one interrupt input endpoint */
  2054. if (get_iface_desc(mixer->hostif)->bNumEndpoints < 1)
  2055. return 0;
  2056. ep = get_endpoint(mixer->hostif, 0);
  2057. if (!usb_endpoint_dir_in(ep) || !usb_endpoint_xfer_int(ep))
  2058. return 0;
  2059. epnum = usb_endpoint_num(ep);
  2060. buffer_length = le16_to_cpu(ep->wMaxPacketSize);
  2061. transfer_buffer = kmalloc(buffer_length, GFP_KERNEL);
  2062. if (!transfer_buffer)
  2063. return -ENOMEM;
  2064. mixer->urb = usb_alloc_urb(0, GFP_KERNEL);
  2065. if (!mixer->urb) {
  2066. kfree(transfer_buffer);
  2067. return -ENOMEM;
  2068. }
  2069. usb_fill_int_urb(mixer->urb, mixer->chip->dev,
  2070. usb_rcvintpipe(mixer->chip->dev, epnum),
  2071. transfer_buffer, buffer_length,
  2072. snd_usb_mixer_interrupt, mixer, ep->bInterval);
  2073. usb_submit_urb(mixer->urb, GFP_KERNEL);
  2074. return 0;
  2075. }
  2076. int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
  2077. int ignore_error)
  2078. {
  2079. static struct snd_device_ops dev_ops = {
  2080. .dev_free = snd_usb_mixer_dev_free
  2081. };
  2082. struct usb_mixer_interface *mixer;
  2083. struct snd_info_entry *entry;
  2084. int err;
  2085. strcpy(chip->card->mixername, "USB Mixer");
  2086. mixer = kzalloc(sizeof(*mixer), GFP_KERNEL);
  2087. if (!mixer)
  2088. return -ENOMEM;
  2089. mixer->chip = chip;
  2090. mixer->ignore_ctl_error = ignore_error;
  2091. mixer->id_elems = kcalloc(MAX_ID_ELEMS, sizeof(*mixer->id_elems),
  2092. GFP_KERNEL);
  2093. if (!mixer->id_elems) {
  2094. kfree(mixer);
  2095. return -ENOMEM;
  2096. }
  2097. mixer->hostif = &usb_ifnum_to_if(chip->dev, ctrlif)->altsetting[0];
  2098. switch (get_iface_desc(mixer->hostif)->bInterfaceProtocol) {
  2099. case UAC_VERSION_1:
  2100. default:
  2101. mixer->protocol = UAC_VERSION_1;
  2102. break;
  2103. case UAC_VERSION_2:
  2104. mixer->protocol = UAC_VERSION_2;
  2105. break;
  2106. }
  2107. if ((err = snd_usb_mixer_controls(mixer)) < 0 ||
  2108. (err = snd_usb_mixer_status_create(mixer)) < 0)
  2109. goto _error;
  2110. snd_usb_mixer_apply_create_quirk(mixer);
  2111. err = snd_device_new(chip->card, SNDRV_DEV_LOWLEVEL, mixer, &dev_ops);
  2112. if (err < 0)
  2113. goto _error;
  2114. if (list_empty(&chip->mixer_list) &&
  2115. !snd_card_proc_new(chip->card, "usbmixer", &entry))
  2116. snd_info_set_text_ops(entry, chip, snd_usb_mixer_proc_read);
  2117. list_add(&mixer->list, &chip->mixer_list);
  2118. return 0;
  2119. _error:
  2120. snd_usb_mixer_free(mixer);
  2121. return err;
  2122. }
  2123. void snd_usb_mixer_disconnect(struct list_head *p)
  2124. {
  2125. struct usb_mixer_interface *mixer;
  2126. mixer = list_entry(p, struct usb_mixer_interface, list);
  2127. usb_kill_urb(mixer->urb);
  2128. usb_kill_urb(mixer->rc_urb);
  2129. }