ac97_patch.c 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966
  1. /*
  2. * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  3. * Universal interface for Audio Codec '97
  4. *
  5. * For more details look to AC '97 component specification revision 2.2
  6. * by Intel Corporation (http://developer.intel.com) and to datasheets
  7. * for specific codecs.
  8. *
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. */
  25. #include "ac97_local.h"
  26. #include "ac97_patch.h"
  27. /*
  28. * Forward declarations
  29. */
  30. static struct snd_kcontrol *snd_ac97_find_mixer_ctl(struct snd_ac97 *ac97,
  31. const char *name);
  32. static int snd_ac97_add_vmaster(struct snd_ac97 *ac97, char *name,
  33. const unsigned int *tlv, const char **slaves);
  34. /*
  35. * Chip specific initialization
  36. */
  37. static int patch_build_controls(struct snd_ac97 * ac97, const struct snd_kcontrol_new *controls, int count)
  38. {
  39. int idx, err;
  40. for (idx = 0; idx < count; idx++)
  41. if ((err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&controls[idx], ac97))) < 0)
  42. return err;
  43. return 0;
  44. }
  45. /* replace with a new TLV */
  46. static void reset_tlv(struct snd_ac97 *ac97, const char *name,
  47. const unsigned int *tlv)
  48. {
  49. struct snd_ctl_elem_id sid;
  50. struct snd_kcontrol *kctl;
  51. memset(&sid, 0, sizeof(sid));
  52. strcpy(sid.name, name);
  53. sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  54. kctl = snd_ctl_find_id(ac97->bus->card, &sid);
  55. if (kctl && kctl->tlv.p)
  56. kctl->tlv.p = tlv;
  57. }
  58. /* set to the page, update bits and restore the page */
  59. static int ac97_update_bits_page(struct snd_ac97 *ac97, unsigned short reg, unsigned short mask, unsigned short value, unsigned short page)
  60. {
  61. unsigned short page_save;
  62. int ret;
  63. mutex_lock(&ac97->page_mutex);
  64. page_save = snd_ac97_read(ac97, AC97_INT_PAGING) & AC97_PAGE_MASK;
  65. snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, page);
  66. ret = snd_ac97_update_bits(ac97, reg, mask, value);
  67. snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, page_save);
  68. mutex_unlock(&ac97->page_mutex); /* unlock paging */
  69. return ret;
  70. }
  71. /*
  72. * shared line-in/mic controls
  73. */
  74. static int ac97_enum_text_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo,
  75. const char **texts, unsigned int nums)
  76. {
  77. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  78. uinfo->count = 1;
  79. uinfo->value.enumerated.items = nums;
  80. if (uinfo->value.enumerated.item > nums - 1)
  81. uinfo->value.enumerated.item = nums - 1;
  82. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  83. return 0;
  84. }
  85. static int ac97_surround_jack_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  86. {
  87. static const char *texts[] = { "Shared", "Independent" };
  88. return ac97_enum_text_info(kcontrol, uinfo, texts, 2);
  89. }
  90. static int ac97_surround_jack_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  91. {
  92. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  93. ucontrol->value.enumerated.item[0] = ac97->indep_surround;
  94. return 0;
  95. }
  96. static int ac97_surround_jack_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  97. {
  98. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  99. unsigned char indep = !!ucontrol->value.enumerated.item[0];
  100. if (indep != ac97->indep_surround) {
  101. ac97->indep_surround = indep;
  102. if (ac97->build_ops->update_jacks)
  103. ac97->build_ops->update_jacks(ac97);
  104. return 1;
  105. }
  106. return 0;
  107. }
  108. static int ac97_channel_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  109. {
  110. static const char *texts[] = { "2ch", "4ch", "6ch", "8ch" };
  111. return ac97_enum_text_info(kcontrol, uinfo, texts,
  112. kcontrol->private_value);
  113. }
  114. static int ac97_channel_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  115. {
  116. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  117. ucontrol->value.enumerated.item[0] = ac97->channel_mode;
  118. return 0;
  119. }
  120. static int ac97_channel_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  121. {
  122. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  123. unsigned char mode = ucontrol->value.enumerated.item[0];
  124. if (mode >= kcontrol->private_value)
  125. return -EINVAL;
  126. if (mode != ac97->channel_mode) {
  127. ac97->channel_mode = mode;
  128. if (ac97->build_ops->update_jacks)
  129. ac97->build_ops->update_jacks(ac97);
  130. return 1;
  131. }
  132. return 0;
  133. }
  134. #define AC97_SURROUND_JACK_MODE_CTL \
  135. { \
  136. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  137. .name = "Surround Jack Mode", \
  138. .info = ac97_surround_jack_mode_info, \
  139. .get = ac97_surround_jack_mode_get, \
  140. .put = ac97_surround_jack_mode_put, \
  141. }
  142. /* 6ch */
  143. #define AC97_CHANNEL_MODE_CTL \
  144. { \
  145. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  146. .name = "Channel Mode", \
  147. .info = ac97_channel_mode_info, \
  148. .get = ac97_channel_mode_get, \
  149. .put = ac97_channel_mode_put, \
  150. .private_value = 3, \
  151. }
  152. /* 4ch */
  153. #define AC97_CHANNEL_MODE_4CH_CTL \
  154. { \
  155. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  156. .name = "Channel Mode", \
  157. .info = ac97_channel_mode_info, \
  158. .get = ac97_channel_mode_get, \
  159. .put = ac97_channel_mode_put, \
  160. .private_value = 2, \
  161. }
  162. /* 8ch */
  163. #define AC97_CHANNEL_MODE_8CH_CTL \
  164. { \
  165. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  166. .name = "Channel Mode", \
  167. .info = ac97_channel_mode_info, \
  168. .get = ac97_channel_mode_get, \
  169. .put = ac97_channel_mode_put, \
  170. .private_value = 4, \
  171. }
  172. static inline int is_surround_on(struct snd_ac97 *ac97)
  173. {
  174. return ac97->channel_mode >= 1;
  175. }
  176. static inline int is_clfe_on(struct snd_ac97 *ac97)
  177. {
  178. return ac97->channel_mode >= 2;
  179. }
  180. /* system has shared jacks with surround out enabled */
  181. static inline int is_shared_surrout(struct snd_ac97 *ac97)
  182. {
  183. return !ac97->indep_surround && is_surround_on(ac97);
  184. }
  185. /* system has shared jacks with center/lfe out enabled */
  186. static inline int is_shared_clfeout(struct snd_ac97 *ac97)
  187. {
  188. return !ac97->indep_surround && is_clfe_on(ac97);
  189. }
  190. /* system has shared jacks with line in enabled */
  191. static inline int is_shared_linein(struct snd_ac97 *ac97)
  192. {
  193. return !ac97->indep_surround && !is_surround_on(ac97);
  194. }
  195. /* system has shared jacks with mic in enabled */
  196. static inline int is_shared_micin(struct snd_ac97 *ac97)
  197. {
  198. return !ac97->indep_surround && !is_clfe_on(ac97);
  199. }
  200. static inline int alc850_is_aux_back_surround(struct snd_ac97 *ac97)
  201. {
  202. return is_surround_on(ac97);
  203. }
  204. /* The following snd_ac97_ymf753_... items added by David Shust (dshust@shustring.com) */
  205. /* Modified for YMF743 by Keita Maehara <maehara@debian.org> */
  206. /* It is possible to indicate to the Yamaha YMF7x3 the type of
  207. speakers being used. */
  208. static int snd_ac97_ymf7x3_info_speaker(struct snd_kcontrol *kcontrol,
  209. struct snd_ctl_elem_info *uinfo)
  210. {
  211. static char *texts[3] = {
  212. "Standard", "Small", "Smaller"
  213. };
  214. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  215. uinfo->count = 1;
  216. uinfo->value.enumerated.items = 3;
  217. if (uinfo->value.enumerated.item > 2)
  218. uinfo->value.enumerated.item = 2;
  219. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  220. return 0;
  221. }
  222. static int snd_ac97_ymf7x3_get_speaker(struct snd_kcontrol *kcontrol,
  223. struct snd_ctl_elem_value *ucontrol)
  224. {
  225. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  226. unsigned short val;
  227. val = ac97->regs[AC97_YMF7X3_3D_MODE_SEL];
  228. val = (val >> 10) & 3;
  229. if (val > 0) /* 0 = invalid */
  230. val--;
  231. ucontrol->value.enumerated.item[0] = val;
  232. return 0;
  233. }
  234. static int snd_ac97_ymf7x3_put_speaker(struct snd_kcontrol *kcontrol,
  235. struct snd_ctl_elem_value *ucontrol)
  236. {
  237. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  238. unsigned short val;
  239. if (ucontrol->value.enumerated.item[0] > 2)
  240. return -EINVAL;
  241. val = (ucontrol->value.enumerated.item[0] + 1) << 10;
  242. return snd_ac97_update(ac97, AC97_YMF7X3_3D_MODE_SEL, val);
  243. }
  244. static const struct snd_kcontrol_new snd_ac97_ymf7x3_controls_speaker =
  245. {
  246. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  247. .name = "3D Control - Speaker",
  248. .info = snd_ac97_ymf7x3_info_speaker,
  249. .get = snd_ac97_ymf7x3_get_speaker,
  250. .put = snd_ac97_ymf7x3_put_speaker,
  251. };
  252. /* It is possible to indicate to the Yamaha YMF7x3 the source to
  253. direct to the S/PDIF output. */
  254. static int snd_ac97_ymf7x3_spdif_source_info(struct snd_kcontrol *kcontrol,
  255. struct snd_ctl_elem_info *uinfo)
  256. {
  257. static char *texts[2] = { "AC-Link", "A/D Converter" };
  258. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  259. uinfo->count = 1;
  260. uinfo->value.enumerated.items = 2;
  261. if (uinfo->value.enumerated.item > 1)
  262. uinfo->value.enumerated.item = 1;
  263. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  264. return 0;
  265. }
  266. static int snd_ac97_ymf7x3_spdif_source_get(struct snd_kcontrol *kcontrol,
  267. struct snd_ctl_elem_value *ucontrol)
  268. {
  269. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  270. unsigned short val;
  271. val = ac97->regs[AC97_YMF7X3_DIT_CTRL];
  272. ucontrol->value.enumerated.item[0] = (val >> 1) & 1;
  273. return 0;
  274. }
  275. static int snd_ac97_ymf7x3_spdif_source_put(struct snd_kcontrol *kcontrol,
  276. struct snd_ctl_elem_value *ucontrol)
  277. {
  278. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  279. unsigned short val;
  280. if (ucontrol->value.enumerated.item[0] > 1)
  281. return -EINVAL;
  282. val = ucontrol->value.enumerated.item[0] << 1;
  283. return snd_ac97_update_bits(ac97, AC97_YMF7X3_DIT_CTRL, 0x0002, val);
  284. }
  285. static int patch_yamaha_ymf7x3_3d(struct snd_ac97 *ac97)
  286. {
  287. struct snd_kcontrol *kctl;
  288. int err;
  289. kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97);
  290. err = snd_ctl_add(ac97->bus->card, kctl);
  291. if (err < 0)
  292. return err;
  293. strcpy(kctl->id.name, "3D Control - Wide");
  294. kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 9, 7, 0);
  295. snd_ac97_write_cache(ac97, AC97_3D_CONTROL, 0x0000);
  296. err = snd_ctl_add(ac97->bus->card,
  297. snd_ac97_cnew(&snd_ac97_ymf7x3_controls_speaker,
  298. ac97));
  299. if (err < 0)
  300. return err;
  301. snd_ac97_write_cache(ac97, AC97_YMF7X3_3D_MODE_SEL, 0x0c00);
  302. return 0;
  303. }
  304. static const struct snd_kcontrol_new snd_ac97_yamaha_ymf743_controls_spdif[3] =
  305. {
  306. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
  307. AC97_YMF7X3_DIT_CTRL, 0, 1, 0),
  308. {
  309. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  310. .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Source",
  311. .info = snd_ac97_ymf7x3_spdif_source_info,
  312. .get = snd_ac97_ymf7x3_spdif_source_get,
  313. .put = snd_ac97_ymf7x3_spdif_source_put,
  314. },
  315. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("", NONE, NONE) "Mute",
  316. AC97_YMF7X3_DIT_CTRL, 2, 1, 1)
  317. };
  318. static int patch_yamaha_ymf743_build_spdif(struct snd_ac97 *ac97)
  319. {
  320. int err;
  321. err = patch_build_controls(ac97, &snd_ac97_controls_spdif[0], 3);
  322. if (err < 0)
  323. return err;
  324. err = patch_build_controls(ac97,
  325. snd_ac97_yamaha_ymf743_controls_spdif, 3);
  326. if (err < 0)
  327. return err;
  328. /* set default PCM S/PDIF params */
  329. /* PCM audio,no copyright,no preemphasis,PCM coder,original */
  330. snd_ac97_write_cache(ac97, AC97_YMF7X3_DIT_CTRL, 0xa201);
  331. return 0;
  332. }
  333. static const struct snd_ac97_build_ops patch_yamaha_ymf743_ops = {
  334. .build_spdif = patch_yamaha_ymf743_build_spdif,
  335. .build_3d = patch_yamaha_ymf7x3_3d,
  336. };
  337. static int patch_yamaha_ymf743(struct snd_ac97 *ac97)
  338. {
  339. ac97->build_ops = &patch_yamaha_ymf743_ops;
  340. ac97->caps |= AC97_BC_BASS_TREBLE;
  341. ac97->caps |= 0x04 << 10; /* Yamaha 3D enhancement */
  342. ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
  343. ac97->ext_id |= AC97_EI_SPDIF; /* force the detection of spdif */
  344. return 0;
  345. }
  346. /* The AC'97 spec states that the S/PDIF signal is to be output at pin 48.
  347. The YMF753 will output the S/PDIF signal to pin 43, 47 (EAPD), or 48.
  348. By default, no output pin is selected, and the S/PDIF signal is not output.
  349. There is also a bit to mute S/PDIF output in a vendor-specific register. */
  350. static int snd_ac97_ymf753_spdif_output_pin_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  351. {
  352. static char *texts[3] = { "Disabled", "Pin 43", "Pin 48" };
  353. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  354. uinfo->count = 1;
  355. uinfo->value.enumerated.items = 3;
  356. if (uinfo->value.enumerated.item > 2)
  357. uinfo->value.enumerated.item = 2;
  358. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  359. return 0;
  360. }
  361. static int snd_ac97_ymf753_spdif_output_pin_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  362. {
  363. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  364. unsigned short val;
  365. val = ac97->regs[AC97_YMF7X3_DIT_CTRL];
  366. ucontrol->value.enumerated.item[0] = (val & 0x0008) ? 2 : (val & 0x0020) ? 1 : 0;
  367. return 0;
  368. }
  369. static int snd_ac97_ymf753_spdif_output_pin_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  370. {
  371. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  372. unsigned short val;
  373. if (ucontrol->value.enumerated.item[0] > 2)
  374. return -EINVAL;
  375. val = (ucontrol->value.enumerated.item[0] == 2) ? 0x0008 :
  376. (ucontrol->value.enumerated.item[0] == 1) ? 0x0020 : 0;
  377. return snd_ac97_update_bits(ac97, AC97_YMF7X3_DIT_CTRL, 0x0028, val);
  378. /* The following can be used to direct S/PDIF output to pin 47 (EAPD).
  379. snd_ac97_write_cache(ac97, 0x62, snd_ac97_read(ac97, 0x62) | 0x0008); */
  380. }
  381. static const struct snd_kcontrol_new snd_ac97_ymf753_controls_spdif[3] = {
  382. {
  383. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  384. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
  385. .info = snd_ac97_ymf7x3_spdif_source_info,
  386. .get = snd_ac97_ymf7x3_spdif_source_get,
  387. .put = snd_ac97_ymf7x3_spdif_source_put,
  388. },
  389. {
  390. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  391. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Output Pin",
  392. .info = snd_ac97_ymf753_spdif_output_pin_info,
  393. .get = snd_ac97_ymf753_spdif_output_pin_get,
  394. .put = snd_ac97_ymf753_spdif_output_pin_put,
  395. },
  396. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("", NONE, NONE) "Mute",
  397. AC97_YMF7X3_DIT_CTRL, 2, 1, 1)
  398. };
  399. static int patch_yamaha_ymf753_post_spdif(struct snd_ac97 * ac97)
  400. {
  401. int err;
  402. if ((err = patch_build_controls(ac97, snd_ac97_ymf753_controls_spdif, ARRAY_SIZE(snd_ac97_ymf753_controls_spdif))) < 0)
  403. return err;
  404. return 0;
  405. }
  406. static const struct snd_ac97_build_ops patch_yamaha_ymf753_ops = {
  407. .build_3d = patch_yamaha_ymf7x3_3d,
  408. .build_post_spdif = patch_yamaha_ymf753_post_spdif
  409. };
  410. static int patch_yamaha_ymf753(struct snd_ac97 * ac97)
  411. {
  412. /* Patch for Yamaha YMF753, Copyright (c) by David Shust, dshust@shustring.com.
  413. This chip has nonstandard and extended behaviour with regard to its S/PDIF output.
  414. The AC'97 spec states that the S/PDIF signal is to be output at pin 48.
  415. The YMF753 will ouput the S/PDIF signal to pin 43, 47 (EAPD), or 48.
  416. By default, no output pin is selected, and the S/PDIF signal is not output.
  417. There is also a bit to mute S/PDIF output in a vendor-specific register.
  418. */
  419. ac97->build_ops = &patch_yamaha_ymf753_ops;
  420. ac97->caps |= AC97_BC_BASS_TREBLE;
  421. ac97->caps |= 0x04 << 10; /* Yamaha 3D enhancement */
  422. return 0;
  423. }
  424. /*
  425. * May 2, 2003 Liam Girdwood <lrg@slimlogic.co.uk>
  426. * removed broken wolfson00 patch.
  427. * added support for WM9705,WM9708,WM9709,WM9710,WM9711,WM9712 and WM9717.
  428. */
  429. static const struct snd_kcontrol_new wm97xx_snd_ac97_controls[] = {
  430. AC97_DOUBLE("Front Playback Volume", AC97_WM97XX_FMIXER_VOL, 8, 0, 31, 1),
  431. AC97_SINGLE("Front Playback Switch", AC97_WM97XX_FMIXER_VOL, 15, 1, 1),
  432. };
  433. static int patch_wolfson_wm9703_specific(struct snd_ac97 * ac97)
  434. {
  435. /* This is known to work for the ViewSonic ViewPad 1000
  436. * Randolph Bentson <bentson@holmsjoen.com>
  437. * WM9703/9707/9708/9717
  438. */
  439. int err, i;
  440. for (i = 0; i < ARRAY_SIZE(wm97xx_snd_ac97_controls); i++) {
  441. if ((err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm97xx_snd_ac97_controls[i], ac97))) < 0)
  442. return err;
  443. }
  444. snd_ac97_write_cache(ac97, AC97_WM97XX_FMIXER_VOL, 0x0808);
  445. return 0;
  446. }
  447. static const struct snd_ac97_build_ops patch_wolfson_wm9703_ops = {
  448. .build_specific = patch_wolfson_wm9703_specific,
  449. };
  450. static int patch_wolfson03(struct snd_ac97 * ac97)
  451. {
  452. ac97->build_ops = &patch_wolfson_wm9703_ops;
  453. return 0;
  454. }
  455. static const struct snd_kcontrol_new wm9704_snd_ac97_controls[] = {
  456. AC97_DOUBLE("Front Playback Volume", AC97_WM97XX_FMIXER_VOL, 8, 0, 31, 1),
  457. AC97_SINGLE("Front Playback Switch", AC97_WM97XX_FMIXER_VOL, 15, 1, 1),
  458. AC97_DOUBLE("Rear Playback Volume", AC97_WM9704_RMIXER_VOL, 8, 0, 31, 1),
  459. AC97_SINGLE("Rear Playback Switch", AC97_WM9704_RMIXER_VOL, 15, 1, 1),
  460. AC97_DOUBLE("Rear DAC Volume", AC97_WM9704_RPCM_VOL, 8, 0, 31, 1),
  461. AC97_DOUBLE("Surround Volume", AC97_SURROUND_MASTER, 8, 0, 31, 1),
  462. };
  463. static int patch_wolfson_wm9704_specific(struct snd_ac97 * ac97)
  464. {
  465. int err, i;
  466. for (i = 0; i < ARRAY_SIZE(wm9704_snd_ac97_controls); i++) {
  467. if ((err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm9704_snd_ac97_controls[i], ac97))) < 0)
  468. return err;
  469. }
  470. /* patch for DVD noise */
  471. snd_ac97_write_cache(ac97, AC97_WM9704_TEST, 0x0200);
  472. return 0;
  473. }
  474. static const struct snd_ac97_build_ops patch_wolfson_wm9704_ops = {
  475. .build_specific = patch_wolfson_wm9704_specific,
  476. };
  477. static int patch_wolfson04(struct snd_ac97 * ac97)
  478. {
  479. /* WM9704M/9704Q */
  480. ac97->build_ops = &patch_wolfson_wm9704_ops;
  481. return 0;
  482. }
  483. static int patch_wolfson05(struct snd_ac97 * ac97)
  484. {
  485. /* WM9705, WM9710 */
  486. ac97->build_ops = &patch_wolfson_wm9703_ops;
  487. #ifdef CONFIG_TOUCHSCREEN_WM9705
  488. /* WM9705 touchscreen uses AUX and VIDEO for touch */
  489. ac97->flags |= AC97_HAS_NO_VIDEO | AC97_HAS_NO_AUX;
  490. #endif
  491. return 0;
  492. }
  493. static const char* wm9711_alc_select[] = {"None", "Left", "Right", "Stereo"};
  494. static const char* wm9711_alc_mix[] = {"Stereo", "Right", "Left", "None"};
  495. static const char* wm9711_out3_src[] = {"Left", "VREF", "Left + Right", "Mono"};
  496. static const char* wm9711_out3_lrsrc[] = {"Master Mix", "Headphone Mix"};
  497. static const char* wm9711_rec_adc[] = {"Stereo", "Left", "Right", "Mute"};
  498. static const char* wm9711_base[] = {"Linear Control", "Adaptive Boost"};
  499. static const char* wm9711_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
  500. static const char* wm9711_mic[] = {"Mic 1", "Differential", "Mic 2", "Stereo"};
  501. static const char* wm9711_rec_sel[] =
  502. {"Mic 1", "NC", "NC", "Master Mix", "Line", "Headphone Mix", "Phone Mix", "Phone"};
  503. static const char* wm9711_ng_type[] = {"Constant Gain", "Mute"};
  504. static const struct ac97_enum wm9711_enum[] = {
  505. AC97_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9711_alc_select),
  506. AC97_ENUM_SINGLE(AC97_VIDEO, 10, 4, wm9711_alc_mix),
  507. AC97_ENUM_SINGLE(AC97_AUX, 9, 4, wm9711_out3_src),
  508. AC97_ENUM_SINGLE(AC97_AUX, 8, 2, wm9711_out3_lrsrc),
  509. AC97_ENUM_SINGLE(AC97_REC_SEL, 12, 4, wm9711_rec_adc),
  510. AC97_ENUM_SINGLE(AC97_MASTER_TONE, 15, 2, wm9711_base),
  511. AC97_ENUM_DOUBLE(AC97_REC_GAIN, 14, 6, 2, wm9711_rec_gain),
  512. AC97_ENUM_SINGLE(AC97_MIC, 5, 4, wm9711_mic),
  513. AC97_ENUM_DOUBLE(AC97_REC_SEL, 8, 0, 8, wm9711_rec_sel),
  514. AC97_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9711_ng_type),
  515. };
  516. static const struct snd_kcontrol_new wm9711_snd_ac97_controls[] = {
  517. AC97_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
  518. AC97_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
  519. AC97_SINGLE("ALC Decay Time", AC97_CODEC_CLASS_REV, 4, 15, 0),
  520. AC97_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
  521. AC97_ENUM("ALC Function", wm9711_enum[0]),
  522. AC97_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 1),
  523. AC97_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 1),
  524. AC97_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
  525. AC97_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
  526. AC97_ENUM("ALC NG Type", wm9711_enum[9]),
  527. AC97_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 1),
  528. AC97_SINGLE("Side Tone Switch", AC97_VIDEO, 15, 1, 1),
  529. AC97_SINGLE("Side Tone Volume", AC97_VIDEO, 12, 7, 1),
  530. AC97_ENUM("ALC Headphone Mux", wm9711_enum[1]),
  531. AC97_SINGLE("ALC Headphone Volume", AC97_VIDEO, 7, 7, 1),
  532. AC97_SINGLE("Out3 Switch", AC97_AUX, 15, 1, 1),
  533. AC97_SINGLE("Out3 ZC Switch", AC97_AUX, 7, 1, 0),
  534. AC97_ENUM("Out3 Mux", wm9711_enum[2]),
  535. AC97_ENUM("Out3 LR Mux", wm9711_enum[3]),
  536. AC97_SINGLE("Out3 Volume", AC97_AUX, 0, 31, 1),
  537. AC97_SINGLE("Beep to Headphone Switch", AC97_PC_BEEP, 15, 1, 1),
  538. AC97_SINGLE("Beep to Headphone Volume", AC97_PC_BEEP, 12, 7, 1),
  539. AC97_SINGLE("Beep to Side Tone Switch", AC97_PC_BEEP, 11, 1, 1),
  540. AC97_SINGLE("Beep to Side Tone Volume", AC97_PC_BEEP, 8, 7, 1),
  541. AC97_SINGLE("Beep to Phone Switch", AC97_PC_BEEP, 7, 1, 1),
  542. AC97_SINGLE("Beep to Phone Volume", AC97_PC_BEEP, 4, 7, 1),
  543. AC97_SINGLE("Aux to Headphone Switch", AC97_CD, 15, 1, 1),
  544. AC97_SINGLE("Aux to Headphone Volume", AC97_CD, 12, 7, 1),
  545. AC97_SINGLE("Aux to Side Tone Switch", AC97_CD, 11, 1, 1),
  546. AC97_SINGLE("Aux to Side Tone Volume", AC97_CD, 8, 7, 1),
  547. AC97_SINGLE("Aux to Phone Switch", AC97_CD, 7, 1, 1),
  548. AC97_SINGLE("Aux to Phone Volume", AC97_CD, 4, 7, 1),
  549. AC97_SINGLE("Phone to Headphone Switch", AC97_PHONE, 15, 1, 1),
  550. AC97_SINGLE("Phone to Master Switch", AC97_PHONE, 14, 1, 1),
  551. AC97_SINGLE("Line to Headphone Switch", AC97_LINE, 15, 1, 1),
  552. AC97_SINGLE("Line to Master Switch", AC97_LINE, 14, 1, 1),
  553. AC97_SINGLE("Line to Phone Switch", AC97_LINE, 13, 1, 1),
  554. AC97_SINGLE("PCM Playback to Headphone Switch", AC97_PCM, 15, 1, 1),
  555. AC97_SINGLE("PCM Playback to Master Switch", AC97_PCM, 14, 1, 1),
  556. AC97_SINGLE("PCM Playback to Phone Switch", AC97_PCM, 13, 1, 1),
  557. AC97_SINGLE("Capture 20dB Boost Switch", AC97_REC_SEL, 14, 1, 0),
  558. AC97_ENUM("Capture to Phone Mux", wm9711_enum[4]),
  559. AC97_SINGLE("Capture to Phone 20dB Boost Switch", AC97_REC_SEL, 11, 1, 1),
  560. AC97_ENUM("Capture Select", wm9711_enum[8]),
  561. AC97_SINGLE("3D Upper Cut-off Switch", AC97_3D_CONTROL, 5, 1, 1),
  562. AC97_SINGLE("3D Lower Cut-off Switch", AC97_3D_CONTROL, 4, 1, 1),
  563. AC97_ENUM("Bass Control", wm9711_enum[5]),
  564. AC97_SINGLE("Bass Cut-off Switch", AC97_MASTER_TONE, 12, 1, 1),
  565. AC97_SINGLE("Tone Cut-off Switch", AC97_MASTER_TONE, 4, 1, 1),
  566. AC97_SINGLE("Playback Attenuate (-6dB) Switch", AC97_MASTER_TONE, 6, 1, 0),
  567. AC97_SINGLE("ADC Switch", AC97_REC_GAIN, 15, 1, 1),
  568. AC97_ENUM("Capture Volume Steps", wm9711_enum[6]),
  569. AC97_DOUBLE("Capture Volume", AC97_REC_GAIN, 8, 0, 63, 1),
  570. AC97_SINGLE("Capture ZC Switch", AC97_REC_GAIN, 7, 1, 0),
  571. AC97_SINGLE("Mic 1 to Phone Switch", AC97_MIC, 14, 1, 1),
  572. AC97_SINGLE("Mic 2 to Phone Switch", AC97_MIC, 13, 1, 1),
  573. AC97_ENUM("Mic Select Source", wm9711_enum[7]),
  574. AC97_SINGLE("Mic 1 Volume", AC97_MIC, 8, 31, 1),
  575. AC97_SINGLE("Mic 2 Volume", AC97_MIC, 0, 31, 1),
  576. AC97_SINGLE("Mic 20dB Boost Switch", AC97_MIC, 7, 1, 0),
  577. AC97_SINGLE("Master Left Inv Switch", AC97_MASTER, 6, 1, 0),
  578. AC97_SINGLE("Master ZC Switch", AC97_MASTER, 7, 1, 0),
  579. AC97_SINGLE("Headphone ZC Switch", AC97_HEADPHONE, 7, 1, 0),
  580. AC97_SINGLE("Mono ZC Switch", AC97_MASTER_MONO, 7, 1, 0),
  581. };
  582. static int patch_wolfson_wm9711_specific(struct snd_ac97 * ac97)
  583. {
  584. int err, i;
  585. for (i = 0; i < ARRAY_SIZE(wm9711_snd_ac97_controls); i++) {
  586. if ((err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm9711_snd_ac97_controls[i], ac97))) < 0)
  587. return err;
  588. }
  589. snd_ac97_write_cache(ac97, AC97_CODEC_CLASS_REV, 0x0808);
  590. snd_ac97_write_cache(ac97, AC97_PCI_SVID, 0x0808);
  591. snd_ac97_write_cache(ac97, AC97_VIDEO, 0x0808);
  592. snd_ac97_write_cache(ac97, AC97_AUX, 0x0808);
  593. snd_ac97_write_cache(ac97, AC97_PC_BEEP, 0x0808);
  594. snd_ac97_write_cache(ac97, AC97_CD, 0x0000);
  595. return 0;
  596. }
  597. static const struct snd_ac97_build_ops patch_wolfson_wm9711_ops = {
  598. .build_specific = patch_wolfson_wm9711_specific,
  599. };
  600. static int patch_wolfson11(struct snd_ac97 * ac97)
  601. {
  602. /* WM9711, WM9712 */
  603. ac97->build_ops = &patch_wolfson_wm9711_ops;
  604. ac97->flags |= AC97_HAS_NO_REC_GAIN | AC97_STEREO_MUTES | AC97_HAS_NO_MIC |
  605. AC97_HAS_NO_PC_BEEP | AC97_HAS_NO_VIDEO | AC97_HAS_NO_CD;
  606. return 0;
  607. }
  608. static const char* wm9713_mic_mixer[] = {"Stereo", "Mic 1", "Mic 2", "Mute"};
  609. static const char* wm9713_rec_mux[] = {"Stereo", "Left", "Right", "Mute"};
  610. static const char* wm9713_rec_src[] =
  611. {"Mic 1", "Mic 2", "Line", "Mono In", "Headphone Mix", "Master Mix",
  612. "Mono Mix", "Zh"};
  613. static const char* wm9713_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
  614. static const char* wm9713_alc_select[] = {"None", "Left", "Right", "Stereo"};
  615. static const char* wm9713_mono_pga[] = {"Vmid", "Zh", "Mono Mix", "Inv 1"};
  616. static const char* wm9713_spk_pga[] =
  617. {"Vmid", "Zh", "Headphone Mix", "Master Mix", "Inv", "NC", "NC", "NC"};
  618. static const char* wm9713_hp_pga[] = {"Vmid", "Zh", "Headphone Mix", "NC"};
  619. static const char* wm9713_out3_pga[] = {"Vmid", "Zh", "Inv 1", "NC"};
  620. static const char* wm9713_out4_pga[] = {"Vmid", "Zh", "Inv 2", "NC"};
  621. static const char* wm9713_dac_inv[] =
  622. {"Off", "Mono Mix", "Master Mix", "Headphone Mix L", "Headphone Mix R",
  623. "Headphone Mix Mono", "NC", "Vmid"};
  624. static const char* wm9713_base[] = {"Linear Control", "Adaptive Boost"};
  625. static const char* wm9713_ng_type[] = {"Constant Gain", "Mute"};
  626. static const struct ac97_enum wm9713_enum[] = {
  627. AC97_ENUM_SINGLE(AC97_LINE, 3, 4, wm9713_mic_mixer),
  628. AC97_ENUM_SINGLE(AC97_VIDEO, 14, 4, wm9713_rec_mux),
  629. AC97_ENUM_SINGLE(AC97_VIDEO, 9, 4, wm9713_rec_mux),
  630. AC97_ENUM_DOUBLE(AC97_VIDEO, 3, 0, 8, wm9713_rec_src),
  631. AC97_ENUM_DOUBLE(AC97_CD, 14, 6, 2, wm9713_rec_gain),
  632. AC97_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9713_alc_select),
  633. AC97_ENUM_SINGLE(AC97_REC_GAIN, 14, 4, wm9713_mono_pga),
  634. AC97_ENUM_DOUBLE(AC97_REC_GAIN, 11, 8, 8, wm9713_spk_pga),
  635. AC97_ENUM_DOUBLE(AC97_REC_GAIN, 6, 4, 4, wm9713_hp_pga),
  636. AC97_ENUM_SINGLE(AC97_REC_GAIN, 2, 4, wm9713_out3_pga),
  637. AC97_ENUM_SINGLE(AC97_REC_GAIN, 0, 4, wm9713_out4_pga),
  638. AC97_ENUM_DOUBLE(AC97_REC_GAIN_MIC, 13, 10, 8, wm9713_dac_inv),
  639. AC97_ENUM_SINGLE(AC97_GENERAL_PURPOSE, 15, 2, wm9713_base),
  640. AC97_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9713_ng_type),
  641. };
  642. static const struct snd_kcontrol_new wm13_snd_ac97_controls[] = {
  643. AC97_DOUBLE("Line In Volume", AC97_PC_BEEP, 8, 0, 31, 1),
  644. AC97_SINGLE("Line In to Headphone Switch", AC97_PC_BEEP, 15, 1, 1),
  645. AC97_SINGLE("Line In to Master Switch", AC97_PC_BEEP, 14, 1, 1),
  646. AC97_SINGLE("Line In to Mono Switch", AC97_PC_BEEP, 13, 1, 1),
  647. AC97_DOUBLE("PCM Playback Volume", AC97_PHONE, 8, 0, 31, 1),
  648. AC97_SINGLE("PCM Playback to Headphone Switch", AC97_PHONE, 15, 1, 1),
  649. AC97_SINGLE("PCM Playback to Master Switch", AC97_PHONE, 14, 1, 1),
  650. AC97_SINGLE("PCM Playback to Mono Switch", AC97_PHONE, 13, 1, 1),
  651. AC97_SINGLE("Mic 1 Volume", AC97_MIC, 8, 31, 1),
  652. AC97_SINGLE("Mic 2 Volume", AC97_MIC, 0, 31, 1),
  653. AC97_SINGLE("Mic 1 to Mono Switch", AC97_LINE, 7, 1, 1),
  654. AC97_SINGLE("Mic 2 to Mono Switch", AC97_LINE, 6, 1, 1),
  655. AC97_SINGLE("Mic Boost (+20dB) Switch", AC97_LINE, 5, 1, 0),
  656. AC97_ENUM("Mic to Headphone Mux", wm9713_enum[0]),
  657. AC97_SINGLE("Mic Headphone Mixer Volume", AC97_LINE, 0, 7, 1),
  658. AC97_SINGLE("Capture Switch", AC97_CD, 15, 1, 1),
  659. AC97_ENUM("Capture Volume Steps", wm9713_enum[4]),
  660. AC97_DOUBLE("Capture Volume", AC97_CD, 8, 0, 15, 0),
  661. AC97_SINGLE("Capture ZC Switch", AC97_CD, 7, 1, 0),
  662. AC97_ENUM("Capture to Headphone Mux", wm9713_enum[1]),
  663. AC97_SINGLE("Capture to Headphone Volume", AC97_VIDEO, 11, 7, 1),
  664. AC97_ENUM("Capture to Mono Mux", wm9713_enum[2]),
  665. AC97_SINGLE("Capture to Mono Boost (+20dB) Switch", AC97_VIDEO, 8, 1, 0),
  666. AC97_SINGLE("Capture ADC Boost (+20dB) Switch", AC97_VIDEO, 6, 1, 0),
  667. AC97_ENUM("Capture Select", wm9713_enum[3]),
  668. AC97_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
  669. AC97_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
  670. AC97_SINGLE("ALC Decay Time ", AC97_CODEC_CLASS_REV, 4, 15, 0),
  671. AC97_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
  672. AC97_ENUM("ALC Function", wm9713_enum[5]),
  673. AC97_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 0),
  674. AC97_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 0),
  675. AC97_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
  676. AC97_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
  677. AC97_ENUM("ALC NG Type", wm9713_enum[13]),
  678. AC97_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 0),
  679. AC97_DOUBLE("Master ZC Switch", AC97_MASTER, 14, 6, 1, 0),
  680. AC97_DOUBLE("Headphone ZC Switch", AC97_HEADPHONE, 14, 6, 1, 0),
  681. AC97_DOUBLE("Out3/4 ZC Switch", AC97_MASTER_MONO, 14, 6, 1, 0),
  682. AC97_SINGLE("Master Right Switch", AC97_MASTER, 7, 1, 1),
  683. AC97_SINGLE("Headphone Right Switch", AC97_HEADPHONE, 7, 1, 1),
  684. AC97_SINGLE("Out3/4 Right Switch", AC97_MASTER_MONO, 7, 1, 1),
  685. AC97_SINGLE("Mono In to Headphone Switch", AC97_MASTER_TONE, 15, 1, 1),
  686. AC97_SINGLE("Mono In to Master Switch", AC97_MASTER_TONE, 14, 1, 1),
  687. AC97_SINGLE("Mono In Volume", AC97_MASTER_TONE, 8, 31, 1),
  688. AC97_SINGLE("Mono Switch", AC97_MASTER_TONE, 7, 1, 1),
  689. AC97_SINGLE("Mono ZC Switch", AC97_MASTER_TONE, 6, 1, 0),
  690. AC97_SINGLE("Mono Volume", AC97_MASTER_TONE, 0, 31, 1),
  691. AC97_SINGLE("Beep to Headphone Switch", AC97_AUX, 15, 1, 1),
  692. AC97_SINGLE("Beep to Headphone Volume", AC97_AUX, 12, 7, 1),
  693. AC97_SINGLE("Beep to Master Switch", AC97_AUX, 11, 1, 1),
  694. AC97_SINGLE("Beep to Master Volume", AC97_AUX, 8, 7, 1),
  695. AC97_SINGLE("Beep to Mono Switch", AC97_AUX, 7, 1, 1),
  696. AC97_SINGLE("Beep to Mono Volume", AC97_AUX, 4, 7, 1),
  697. AC97_SINGLE("Voice to Headphone Switch", AC97_PCM, 15, 1, 1),
  698. AC97_SINGLE("Voice to Headphone Volume", AC97_PCM, 12, 7, 1),
  699. AC97_SINGLE("Voice to Master Switch", AC97_PCM, 11, 1, 1),
  700. AC97_SINGLE("Voice to Master Volume", AC97_PCM, 8, 7, 1),
  701. AC97_SINGLE("Voice to Mono Switch", AC97_PCM, 7, 1, 1),
  702. AC97_SINGLE("Voice to Mono Volume", AC97_PCM, 4, 7, 1),
  703. AC97_SINGLE("Aux to Headphone Switch", AC97_REC_SEL, 15, 1, 1),
  704. AC97_SINGLE("Aux to Headphone Volume", AC97_REC_SEL, 12, 7, 1),
  705. AC97_SINGLE("Aux to Master Switch", AC97_REC_SEL, 11, 1, 1),
  706. AC97_SINGLE("Aux to Master Volume", AC97_REC_SEL, 8, 7, 1),
  707. AC97_SINGLE("Aux to Mono Switch", AC97_REC_SEL, 7, 1, 1),
  708. AC97_SINGLE("Aux to Mono Volume", AC97_REC_SEL, 4, 7, 1),
  709. AC97_ENUM("Mono Input Mux", wm9713_enum[6]),
  710. AC97_ENUM("Master Input Mux", wm9713_enum[7]),
  711. AC97_ENUM("Headphone Input Mux", wm9713_enum[8]),
  712. AC97_ENUM("Out 3 Input Mux", wm9713_enum[9]),
  713. AC97_ENUM("Out 4 Input Mux", wm9713_enum[10]),
  714. AC97_ENUM("Bass Control", wm9713_enum[12]),
  715. AC97_SINGLE("Bass Cut-off Switch", AC97_GENERAL_PURPOSE, 12, 1, 1),
  716. AC97_SINGLE("Tone Cut-off Switch", AC97_GENERAL_PURPOSE, 4, 1, 1),
  717. AC97_SINGLE("Playback Attenuate (-6dB) Switch", AC97_GENERAL_PURPOSE, 6, 1, 0),
  718. AC97_SINGLE("Bass Volume", AC97_GENERAL_PURPOSE, 8, 15, 1),
  719. AC97_SINGLE("Tone Volume", AC97_GENERAL_PURPOSE, 0, 15, 1),
  720. };
  721. static const struct snd_kcontrol_new wm13_snd_ac97_controls_3d[] = {
  722. AC97_ENUM("Inv Input Mux", wm9713_enum[11]),
  723. AC97_SINGLE("3D Upper Cut-off Switch", AC97_REC_GAIN_MIC, 5, 1, 0),
  724. AC97_SINGLE("3D Lower Cut-off Switch", AC97_REC_GAIN_MIC, 4, 1, 0),
  725. AC97_SINGLE("3D Depth", AC97_REC_GAIN_MIC, 0, 15, 1),
  726. };
  727. static int patch_wolfson_wm9713_3d (struct snd_ac97 * ac97)
  728. {
  729. int err, i;
  730. for (i = 0; i < ARRAY_SIZE(wm13_snd_ac97_controls_3d); i++) {
  731. if ((err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm13_snd_ac97_controls_3d[i], ac97))) < 0)
  732. return err;
  733. }
  734. return 0;
  735. }
  736. static int patch_wolfson_wm9713_specific(struct snd_ac97 * ac97)
  737. {
  738. int err, i;
  739. for (i = 0; i < ARRAY_SIZE(wm13_snd_ac97_controls); i++) {
  740. if ((err = snd_ctl_add(ac97->bus->card, snd_ac97_cnew(&wm13_snd_ac97_controls[i], ac97))) < 0)
  741. return err;
  742. }
  743. snd_ac97_write_cache(ac97, AC97_PC_BEEP, 0x0808);
  744. snd_ac97_write_cache(ac97, AC97_PHONE, 0x0808);
  745. snd_ac97_write_cache(ac97, AC97_MIC, 0x0808);
  746. snd_ac97_write_cache(ac97, AC97_LINE, 0x00da);
  747. snd_ac97_write_cache(ac97, AC97_CD, 0x0808);
  748. snd_ac97_write_cache(ac97, AC97_VIDEO, 0xd612);
  749. snd_ac97_write_cache(ac97, AC97_REC_GAIN, 0x1ba0);
  750. return 0;
  751. }
  752. #ifdef CONFIG_PM
  753. static void patch_wolfson_wm9713_suspend (struct snd_ac97 * ac97)
  754. {
  755. snd_ac97_write_cache(ac97, AC97_EXTENDED_MID, 0xfeff);
  756. snd_ac97_write_cache(ac97, AC97_EXTENDED_MSTATUS, 0xffff);
  757. }
  758. static void patch_wolfson_wm9713_resume (struct snd_ac97 * ac97)
  759. {
  760. snd_ac97_write_cache(ac97, AC97_EXTENDED_MID, 0xda00);
  761. snd_ac97_write_cache(ac97, AC97_EXTENDED_MSTATUS, 0x3810);
  762. snd_ac97_write_cache(ac97, AC97_POWERDOWN, 0x0);
  763. }
  764. #endif
  765. static const struct snd_ac97_build_ops patch_wolfson_wm9713_ops = {
  766. .build_specific = patch_wolfson_wm9713_specific,
  767. .build_3d = patch_wolfson_wm9713_3d,
  768. #ifdef CONFIG_PM
  769. .suspend = patch_wolfson_wm9713_suspend,
  770. .resume = patch_wolfson_wm9713_resume
  771. #endif
  772. };
  773. static int patch_wolfson13(struct snd_ac97 * ac97)
  774. {
  775. /* WM9713, WM9714 */
  776. ac97->build_ops = &patch_wolfson_wm9713_ops;
  777. ac97->flags |= AC97_HAS_NO_REC_GAIN | AC97_STEREO_MUTES | AC97_HAS_NO_PHONE |
  778. AC97_HAS_NO_PC_BEEP | AC97_HAS_NO_VIDEO | AC97_HAS_NO_CD | AC97_HAS_NO_TONE |
  779. AC97_HAS_NO_STD_PCM;
  780. ac97->scaps &= ~AC97_SCAP_MODEM;
  781. snd_ac97_write_cache(ac97, AC97_EXTENDED_MID, 0xda00);
  782. snd_ac97_write_cache(ac97, AC97_EXTENDED_MSTATUS, 0x3810);
  783. snd_ac97_write_cache(ac97, AC97_POWERDOWN, 0x0);
  784. return 0;
  785. }
  786. /*
  787. * Tritech codec
  788. */
  789. static int patch_tritech_tr28028(struct snd_ac97 * ac97)
  790. {
  791. snd_ac97_write_cache(ac97, 0x26, 0x0300);
  792. snd_ac97_write_cache(ac97, 0x26, 0x0000);
  793. snd_ac97_write_cache(ac97, AC97_SURROUND_MASTER, 0x0000);
  794. snd_ac97_write_cache(ac97, AC97_SPDIF, 0x0000);
  795. return 0;
  796. }
  797. /*
  798. * Sigmatel STAC97xx codecs
  799. */
  800. static int patch_sigmatel_stac9700_3d(struct snd_ac97 * ac97)
  801. {
  802. struct snd_kcontrol *kctl;
  803. int err;
  804. if ((err = snd_ctl_add(ac97->bus->card, kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97))) < 0)
  805. return err;
  806. strcpy(kctl->id.name, "3D Control Sigmatel - Depth");
  807. kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 2, 3, 0);
  808. snd_ac97_write_cache(ac97, AC97_3D_CONTROL, 0x0000);
  809. return 0;
  810. }
  811. static int patch_sigmatel_stac9708_3d(struct snd_ac97 * ac97)
  812. {
  813. struct snd_kcontrol *kctl;
  814. int err;
  815. if ((err = snd_ctl_add(ac97->bus->card, kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97))) < 0)
  816. return err;
  817. strcpy(kctl->id.name, "3D Control Sigmatel - Depth");
  818. kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 0, 3, 0);
  819. if ((err = snd_ctl_add(ac97->bus->card, kctl = snd_ac97_cnew(&snd_ac97_controls_3d[0], ac97))) < 0)
  820. return err;
  821. strcpy(kctl->id.name, "3D Control Sigmatel - Rear Depth");
  822. kctl->private_value = AC97_SINGLE_VALUE(AC97_3D_CONTROL, 2, 3, 0);
  823. snd_ac97_write_cache(ac97, AC97_3D_CONTROL, 0x0000);
  824. return 0;
  825. }
  826. static const struct snd_kcontrol_new snd_ac97_sigmatel_4speaker =
  827. AC97_SINGLE("Sigmatel 4-Speaker Stereo Playback Switch",
  828. AC97_SIGMATEL_DAC2INVERT, 2, 1, 0);
  829. /* "Sigmatel " removed due to excessive name length: */
  830. static const struct snd_kcontrol_new snd_ac97_sigmatel_phaseinvert =
  831. AC97_SINGLE("Surround Phase Inversion Playback Switch",
  832. AC97_SIGMATEL_DAC2INVERT, 3, 1, 0);
  833. static const struct snd_kcontrol_new snd_ac97_sigmatel_controls[] = {
  834. AC97_SINGLE("Sigmatel DAC 6dB Attenuate", AC97_SIGMATEL_ANALOG, 1, 1, 0),
  835. AC97_SINGLE("Sigmatel ADC 6dB Attenuate", AC97_SIGMATEL_ANALOG, 0, 1, 0)
  836. };
  837. static int patch_sigmatel_stac97xx_specific(struct snd_ac97 * ac97)
  838. {
  839. int err;
  840. snd_ac97_write_cache(ac97, AC97_SIGMATEL_ANALOG, snd_ac97_read(ac97, AC97_SIGMATEL_ANALOG) & ~0x0003);
  841. if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_ANALOG, 1))
  842. if ((err = patch_build_controls(ac97, &snd_ac97_sigmatel_controls[0], 1)) < 0)
  843. return err;
  844. if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_ANALOG, 0))
  845. if ((err = patch_build_controls(ac97, &snd_ac97_sigmatel_controls[1], 1)) < 0)
  846. return err;
  847. if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_DAC2INVERT, 2))
  848. if ((err = patch_build_controls(ac97, &snd_ac97_sigmatel_4speaker, 1)) < 0)
  849. return err;
  850. if (snd_ac97_try_bit(ac97, AC97_SIGMATEL_DAC2INVERT, 3))
  851. if ((err = patch_build_controls(ac97, &snd_ac97_sigmatel_phaseinvert, 1)) < 0)
  852. return err;
  853. return 0;
  854. }
  855. static const struct snd_ac97_build_ops patch_sigmatel_stac9700_ops = {
  856. .build_3d = patch_sigmatel_stac9700_3d,
  857. .build_specific = patch_sigmatel_stac97xx_specific
  858. };
  859. static int patch_sigmatel_stac9700(struct snd_ac97 * ac97)
  860. {
  861. ac97->build_ops = &patch_sigmatel_stac9700_ops;
  862. return 0;
  863. }
  864. static int snd_ac97_stac9708_put_bias(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  865. {
  866. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  867. int err;
  868. mutex_lock(&ac97->page_mutex);
  869. snd_ac97_write(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
  870. err = snd_ac97_update_bits(ac97, AC97_SIGMATEL_BIAS2, 0x0010,
  871. (ucontrol->value.integer.value[0] & 1) << 4);
  872. snd_ac97_write(ac97, AC97_SIGMATEL_BIAS1, 0);
  873. mutex_unlock(&ac97->page_mutex);
  874. return err;
  875. }
  876. static const struct snd_kcontrol_new snd_ac97_stac9708_bias_control = {
  877. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  878. .name = "Sigmatel Output Bias Switch",
  879. .info = snd_ac97_info_volsw,
  880. .get = snd_ac97_get_volsw,
  881. .put = snd_ac97_stac9708_put_bias,
  882. .private_value = AC97_SINGLE_VALUE(AC97_SIGMATEL_BIAS2, 4, 1, 0),
  883. };
  884. static int patch_sigmatel_stac9708_specific(struct snd_ac97 *ac97)
  885. {
  886. int err;
  887. /* the register bit is writable, but the function is not implemented: */
  888. snd_ac97_remove_ctl(ac97, "PCM Out Path & Mute", NULL);
  889. snd_ac97_rename_vol_ctl(ac97, "Headphone Playback", "Sigmatel Surround Playback");
  890. if ((err = patch_build_controls(ac97, &snd_ac97_stac9708_bias_control, 1)) < 0)
  891. return err;
  892. return patch_sigmatel_stac97xx_specific(ac97);
  893. }
  894. static const struct snd_ac97_build_ops patch_sigmatel_stac9708_ops = {
  895. .build_3d = patch_sigmatel_stac9708_3d,
  896. .build_specific = patch_sigmatel_stac9708_specific
  897. };
  898. static int patch_sigmatel_stac9708(struct snd_ac97 * ac97)
  899. {
  900. unsigned int codec72, codec6c;
  901. ac97->build_ops = &patch_sigmatel_stac9708_ops;
  902. ac97->caps |= 0x10; /* HP (sigmatel surround) support */
  903. codec72 = snd_ac97_read(ac97, AC97_SIGMATEL_BIAS2) & 0x8000;
  904. codec6c = snd_ac97_read(ac97, AC97_SIGMATEL_ANALOG);
  905. if ((codec72==0) && (codec6c==0)) {
  906. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
  907. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x1000);
  908. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
  909. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0007);
  910. } else if ((codec72==0x8000) && (codec6c==0)) {
  911. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
  912. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x1001);
  913. snd_ac97_write_cache(ac97, AC97_SIGMATEL_DAC2INVERT, 0x0008);
  914. } else if ((codec72==0x8000) && (codec6c==0x0080)) {
  915. /* nothing */
  916. }
  917. snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
  918. return 0;
  919. }
  920. static int patch_sigmatel_stac9721(struct snd_ac97 * ac97)
  921. {
  922. ac97->build_ops = &patch_sigmatel_stac9700_ops;
  923. if (snd_ac97_read(ac97, AC97_SIGMATEL_ANALOG) == 0) {
  924. // patch for SigmaTel
  925. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
  926. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x4000);
  927. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
  928. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0002);
  929. }
  930. snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
  931. return 0;
  932. }
  933. static int patch_sigmatel_stac9744(struct snd_ac97 * ac97)
  934. {
  935. // patch for SigmaTel
  936. ac97->build_ops = &patch_sigmatel_stac9700_ops;
  937. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
  938. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x0000); /* is this correct? --jk */
  939. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
  940. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0002);
  941. snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
  942. return 0;
  943. }
  944. static int patch_sigmatel_stac9756(struct snd_ac97 * ac97)
  945. {
  946. // patch for SigmaTel
  947. ac97->build_ops = &patch_sigmatel_stac9700_ops;
  948. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC1, 0xabba);
  949. snd_ac97_write_cache(ac97, AC97_SIGMATEL_CIC2, 0x0000); /* is this correct? --jk */
  950. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS1, 0xabba);
  951. snd_ac97_write_cache(ac97, AC97_SIGMATEL_BIAS2, 0x0002);
  952. snd_ac97_write_cache(ac97, AC97_SIGMATEL_MULTICHN, 0x0000);
  953. return 0;
  954. }
  955. static int snd_ac97_stac9758_output_jack_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  956. {
  957. static char *texts[5] = { "Input/Disabled", "Front Output",
  958. "Rear Output", "Center/LFE Output", "Mixer Output" };
  959. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  960. uinfo->count = 1;
  961. uinfo->value.enumerated.items = 5;
  962. if (uinfo->value.enumerated.item > 4)
  963. uinfo->value.enumerated.item = 4;
  964. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  965. return 0;
  966. }
  967. static int snd_ac97_stac9758_output_jack_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  968. {
  969. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  970. int shift = kcontrol->private_value;
  971. unsigned short val;
  972. val = ac97->regs[AC97_SIGMATEL_OUTSEL] >> shift;
  973. if (!(val & 4))
  974. ucontrol->value.enumerated.item[0] = 0;
  975. else
  976. ucontrol->value.enumerated.item[0] = 1 + (val & 3);
  977. return 0;
  978. }
  979. static int snd_ac97_stac9758_output_jack_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  980. {
  981. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  982. int shift = kcontrol->private_value;
  983. unsigned short val;
  984. if (ucontrol->value.enumerated.item[0] > 4)
  985. return -EINVAL;
  986. if (ucontrol->value.enumerated.item[0] == 0)
  987. val = 0;
  988. else
  989. val = 4 | (ucontrol->value.enumerated.item[0] - 1);
  990. return ac97_update_bits_page(ac97, AC97_SIGMATEL_OUTSEL,
  991. 7 << shift, val << shift, 0);
  992. }
  993. static int snd_ac97_stac9758_input_jack_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  994. {
  995. static char *texts[7] = { "Mic2 Jack", "Mic1 Jack", "Line In Jack",
  996. "Front Jack", "Rear Jack", "Center/LFE Jack", "Mute" };
  997. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  998. uinfo->count = 1;
  999. uinfo->value.enumerated.items = 7;
  1000. if (uinfo->value.enumerated.item > 6)
  1001. uinfo->value.enumerated.item = 6;
  1002. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1003. return 0;
  1004. }
  1005. static int snd_ac97_stac9758_input_jack_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1006. {
  1007. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1008. int shift = kcontrol->private_value;
  1009. unsigned short val;
  1010. val = ac97->regs[AC97_SIGMATEL_INSEL];
  1011. ucontrol->value.enumerated.item[0] = (val >> shift) & 7;
  1012. return 0;
  1013. }
  1014. static int snd_ac97_stac9758_input_jack_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1015. {
  1016. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1017. int shift = kcontrol->private_value;
  1018. return ac97_update_bits_page(ac97, AC97_SIGMATEL_INSEL, 7 << shift,
  1019. ucontrol->value.enumerated.item[0] << shift, 0);
  1020. }
  1021. static int snd_ac97_stac9758_phonesel_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  1022. {
  1023. static char *texts[3] = { "None", "Front Jack", "Rear Jack" };
  1024. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1025. uinfo->count = 1;
  1026. uinfo->value.enumerated.items = 3;
  1027. if (uinfo->value.enumerated.item > 2)
  1028. uinfo->value.enumerated.item = 2;
  1029. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1030. return 0;
  1031. }
  1032. static int snd_ac97_stac9758_phonesel_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1033. {
  1034. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1035. ucontrol->value.enumerated.item[0] = ac97->regs[AC97_SIGMATEL_IOMISC] & 3;
  1036. return 0;
  1037. }
  1038. static int snd_ac97_stac9758_phonesel_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1039. {
  1040. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1041. return ac97_update_bits_page(ac97, AC97_SIGMATEL_IOMISC, 3,
  1042. ucontrol->value.enumerated.item[0], 0);
  1043. }
  1044. #define STAC9758_OUTPUT_JACK(xname, shift) \
  1045. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  1046. .info = snd_ac97_stac9758_output_jack_info, \
  1047. .get = snd_ac97_stac9758_output_jack_get, \
  1048. .put = snd_ac97_stac9758_output_jack_put, \
  1049. .private_value = shift }
  1050. #define STAC9758_INPUT_JACK(xname, shift) \
  1051. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  1052. .info = snd_ac97_stac9758_input_jack_info, \
  1053. .get = snd_ac97_stac9758_input_jack_get, \
  1054. .put = snd_ac97_stac9758_input_jack_put, \
  1055. .private_value = shift }
  1056. static const struct snd_kcontrol_new snd_ac97_sigmatel_stac9758_controls[] = {
  1057. STAC9758_OUTPUT_JACK("Mic1 Jack", 1),
  1058. STAC9758_OUTPUT_JACK("LineIn Jack", 4),
  1059. STAC9758_OUTPUT_JACK("Front Jack", 7),
  1060. STAC9758_OUTPUT_JACK("Rear Jack", 10),
  1061. STAC9758_OUTPUT_JACK("Center/LFE Jack", 13),
  1062. STAC9758_INPUT_JACK("Mic Input Source", 0),
  1063. STAC9758_INPUT_JACK("Line Input Source", 8),
  1064. {
  1065. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1066. .name = "Headphone Amp",
  1067. .info = snd_ac97_stac9758_phonesel_info,
  1068. .get = snd_ac97_stac9758_phonesel_get,
  1069. .put = snd_ac97_stac9758_phonesel_put
  1070. },
  1071. AC97_SINGLE("Exchange Center/LFE", AC97_SIGMATEL_IOMISC, 4, 1, 0),
  1072. AC97_SINGLE("Headphone +3dB Boost", AC97_SIGMATEL_IOMISC, 8, 1, 0)
  1073. };
  1074. static int patch_sigmatel_stac9758_specific(struct snd_ac97 *ac97)
  1075. {
  1076. int err;
  1077. err = patch_sigmatel_stac97xx_specific(ac97);
  1078. if (err < 0)
  1079. return err;
  1080. err = patch_build_controls(ac97, snd_ac97_sigmatel_stac9758_controls,
  1081. ARRAY_SIZE(snd_ac97_sigmatel_stac9758_controls));
  1082. if (err < 0)
  1083. return err;
  1084. /* DAC-A direct */
  1085. snd_ac97_rename_vol_ctl(ac97, "Headphone Playback", "Front Playback");
  1086. /* DAC-A to Mix = PCM */
  1087. /* DAC-B direct = Surround */
  1088. /* DAC-B to Mix */
  1089. snd_ac97_rename_vol_ctl(ac97, "Video Playback", "Surround Mix Playback");
  1090. /* DAC-C direct = Center/LFE */
  1091. return 0;
  1092. }
  1093. static const struct snd_ac97_build_ops patch_sigmatel_stac9758_ops = {
  1094. .build_3d = patch_sigmatel_stac9700_3d,
  1095. .build_specific = patch_sigmatel_stac9758_specific
  1096. };
  1097. static int patch_sigmatel_stac9758(struct snd_ac97 * ac97)
  1098. {
  1099. static unsigned short regs[4] = {
  1100. AC97_SIGMATEL_OUTSEL,
  1101. AC97_SIGMATEL_IOMISC,
  1102. AC97_SIGMATEL_INSEL,
  1103. AC97_SIGMATEL_VARIOUS
  1104. };
  1105. static unsigned short def_regs[4] = {
  1106. /* OUTSEL */ 0xd794, /* CL:CL, SR:SR, LO:MX, LI:DS, MI:DS */
  1107. /* IOMISC */ 0x2001,
  1108. /* INSEL */ 0x0201, /* LI:LI, MI:M1 */
  1109. /* VARIOUS */ 0x0040
  1110. };
  1111. static unsigned short m675_regs[4] = {
  1112. /* OUTSEL */ 0xfc70, /* CL:MX, SR:MX, LO:DS, LI:MX, MI:DS */
  1113. /* IOMISC */ 0x2102, /* HP amp on */
  1114. /* INSEL */ 0x0203, /* LI:LI, MI:FR */
  1115. /* VARIOUS */ 0x0041 /* stereo mic */
  1116. };
  1117. unsigned short *pregs = def_regs;
  1118. int i;
  1119. /* Gateway M675 notebook */
  1120. if (ac97->pci &&
  1121. ac97->subsystem_vendor == 0x107b &&
  1122. ac97->subsystem_device == 0x0601)
  1123. pregs = m675_regs;
  1124. // patch for SigmaTel
  1125. ac97->build_ops = &patch_sigmatel_stac9758_ops;
  1126. /* FIXME: assume only page 0 for writing cache */
  1127. snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, AC97_PAGE_VENDOR);
  1128. for (i = 0; i < 4; i++)
  1129. snd_ac97_write_cache(ac97, regs[i], pregs[i]);
  1130. ac97->flags |= AC97_STEREO_MUTES;
  1131. return 0;
  1132. }
  1133. /*
  1134. * Cirrus Logic CS42xx codecs
  1135. */
  1136. static const struct snd_kcontrol_new snd_ac97_cirrus_controls_spdif[2] = {
  1137. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), AC97_CSR_SPDIF, 15, 1, 0),
  1138. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "AC97-SPSA", AC97_CSR_ACMODE, 0, 3, 0)
  1139. };
  1140. static int patch_cirrus_build_spdif(struct snd_ac97 * ac97)
  1141. {
  1142. int err;
  1143. /* con mask, pro mask, default */
  1144. if ((err = patch_build_controls(ac97, &snd_ac97_controls_spdif[0], 3)) < 0)
  1145. return err;
  1146. /* switch, spsa */
  1147. if ((err = patch_build_controls(ac97, &snd_ac97_cirrus_controls_spdif[0], 1)) < 0)
  1148. return err;
  1149. switch (ac97->id & AC97_ID_CS_MASK) {
  1150. case AC97_ID_CS4205:
  1151. if ((err = patch_build_controls(ac97, &snd_ac97_cirrus_controls_spdif[1], 1)) < 0)
  1152. return err;
  1153. break;
  1154. }
  1155. /* set default PCM S/PDIF params */
  1156. /* consumer,PCM audio,no copyright,no preemphasis,PCM coder,original,48000Hz */
  1157. snd_ac97_write_cache(ac97, AC97_CSR_SPDIF, 0x0a20);
  1158. return 0;
  1159. }
  1160. static const struct snd_ac97_build_ops patch_cirrus_ops = {
  1161. .build_spdif = patch_cirrus_build_spdif
  1162. };
  1163. static int patch_cirrus_spdif(struct snd_ac97 * ac97)
  1164. {
  1165. /* Basically, the cs4201/cs4205/cs4297a has non-standard sp/dif registers.
  1166. WHY CAN'T ANYONE FOLLOW THE BLOODY SPEC? *sigh*
  1167. - sp/dif EA ID is not set, but sp/dif is always present.
  1168. - enable/disable is spdif register bit 15.
  1169. - sp/dif control register is 0x68. differs from AC97:
  1170. - valid is bit 14 (vs 15)
  1171. - no DRS
  1172. - only 44.1/48k [00 = 48, 01=44,1] (AC97 is 00=44.1, 10=48)
  1173. - sp/dif ssource select is in 0x5e bits 0,1.
  1174. */
  1175. ac97->build_ops = &patch_cirrus_ops;
  1176. ac97->flags |= AC97_CS_SPDIF;
  1177. ac97->rates[AC97_RATES_SPDIF] &= ~SNDRV_PCM_RATE_32000;
  1178. ac97->ext_id |= AC97_EI_SPDIF; /* force the detection of spdif */
  1179. snd_ac97_write_cache(ac97, AC97_CSR_ACMODE, 0x0080);
  1180. return 0;
  1181. }
  1182. static int patch_cirrus_cs4299(struct snd_ac97 * ac97)
  1183. {
  1184. /* force the detection of PC Beep */
  1185. ac97->flags |= AC97_HAS_PC_BEEP;
  1186. return patch_cirrus_spdif(ac97);
  1187. }
  1188. /*
  1189. * Conexant codecs
  1190. */
  1191. static const struct snd_kcontrol_new snd_ac97_conexant_controls_spdif[1] = {
  1192. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), AC97_CXR_AUDIO_MISC, 3, 1, 0),
  1193. };
  1194. static int patch_conexant_build_spdif(struct snd_ac97 * ac97)
  1195. {
  1196. int err;
  1197. /* con mask, pro mask, default */
  1198. if ((err = patch_build_controls(ac97, &snd_ac97_controls_spdif[0], 3)) < 0)
  1199. return err;
  1200. /* switch */
  1201. if ((err = patch_build_controls(ac97, &snd_ac97_conexant_controls_spdif[0], 1)) < 0)
  1202. return err;
  1203. /* set default PCM S/PDIF params */
  1204. /* consumer,PCM audio,no copyright,no preemphasis,PCM coder,original,48000Hz */
  1205. snd_ac97_write_cache(ac97, AC97_CXR_AUDIO_MISC,
  1206. snd_ac97_read(ac97, AC97_CXR_AUDIO_MISC) & ~(AC97_CXR_SPDIFEN|AC97_CXR_COPYRGT|AC97_CXR_SPDIF_MASK));
  1207. return 0;
  1208. }
  1209. static const struct snd_ac97_build_ops patch_conexant_ops = {
  1210. .build_spdif = patch_conexant_build_spdif
  1211. };
  1212. static int patch_conexant(struct snd_ac97 * ac97)
  1213. {
  1214. ac97->build_ops = &patch_conexant_ops;
  1215. ac97->flags |= AC97_CX_SPDIF;
  1216. ac97->ext_id |= AC97_EI_SPDIF; /* force the detection of spdif */
  1217. ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
  1218. return 0;
  1219. }
  1220. static int patch_cx20551(struct snd_ac97 *ac97)
  1221. {
  1222. snd_ac97_update_bits(ac97, 0x5c, 0x01, 0x01);
  1223. return 0;
  1224. }
  1225. /*
  1226. * Analog Device AD18xx, AD19xx codecs
  1227. */
  1228. #ifdef CONFIG_PM
  1229. static void ad18xx_resume(struct snd_ac97 *ac97)
  1230. {
  1231. static unsigned short setup_regs[] = {
  1232. AC97_AD_MISC, AC97_AD_SERIAL_CFG, AC97_AD_JACK_SPDIF,
  1233. };
  1234. int i, codec;
  1235. for (i = 0; i < (int)ARRAY_SIZE(setup_regs); i++) {
  1236. unsigned short reg = setup_regs[i];
  1237. if (test_bit(reg, ac97->reg_accessed)) {
  1238. snd_ac97_write(ac97, reg, ac97->regs[reg]);
  1239. snd_ac97_read(ac97, reg);
  1240. }
  1241. }
  1242. if (! (ac97->flags & AC97_AD_MULTI))
  1243. /* normal restore */
  1244. snd_ac97_restore_status(ac97);
  1245. else {
  1246. /* restore the AD18xx codec configurations */
  1247. for (codec = 0; codec < 3; codec++) {
  1248. if (! ac97->spec.ad18xx.id[codec])
  1249. continue;
  1250. /* select single codec */
  1251. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000,
  1252. ac97->spec.ad18xx.unchained[codec] | ac97->spec.ad18xx.chained[codec]);
  1253. ac97->bus->ops->write(ac97, AC97_AD_CODEC_CFG, ac97->spec.ad18xx.codec_cfg[codec]);
  1254. }
  1255. /* select all codecs */
  1256. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, 0x7000);
  1257. /* restore status */
  1258. for (i = 2; i < 0x7c ; i += 2) {
  1259. if (i == AC97_POWERDOWN || i == AC97_EXTENDED_ID)
  1260. continue;
  1261. if (test_bit(i, ac97->reg_accessed)) {
  1262. /* handle multi codecs for AD18xx */
  1263. if (i == AC97_PCM) {
  1264. for (codec = 0; codec < 3; codec++) {
  1265. if (! ac97->spec.ad18xx.id[codec])
  1266. continue;
  1267. /* select single codec */
  1268. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000,
  1269. ac97->spec.ad18xx.unchained[codec] | ac97->spec.ad18xx.chained[codec]);
  1270. /* update PCM bits */
  1271. ac97->bus->ops->write(ac97, AC97_PCM, ac97->spec.ad18xx.pcmreg[codec]);
  1272. }
  1273. /* select all codecs */
  1274. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, 0x7000);
  1275. continue;
  1276. } else if (i == AC97_AD_TEST ||
  1277. i == AC97_AD_CODEC_CFG ||
  1278. i == AC97_AD_SERIAL_CFG)
  1279. continue; /* ignore */
  1280. }
  1281. snd_ac97_write(ac97, i, ac97->regs[i]);
  1282. snd_ac97_read(ac97, i);
  1283. }
  1284. }
  1285. snd_ac97_restore_iec958(ac97);
  1286. }
  1287. static void ad1888_resume(struct snd_ac97 *ac97)
  1288. {
  1289. ad18xx_resume(ac97);
  1290. snd_ac97_write_cache(ac97, AC97_CODEC_CLASS_REV, 0x8080);
  1291. }
  1292. #endif
  1293. static const struct snd_ac97_res_table ad1819_restbl[] = {
  1294. { AC97_PHONE, 0x9f1f },
  1295. { AC97_MIC, 0x9f1f },
  1296. { AC97_LINE, 0x9f1f },
  1297. { AC97_CD, 0x9f1f },
  1298. { AC97_VIDEO, 0x9f1f },
  1299. { AC97_AUX, 0x9f1f },
  1300. { AC97_PCM, 0x9f1f },
  1301. { } /* terminator */
  1302. };
  1303. static int patch_ad1819(struct snd_ac97 * ac97)
  1304. {
  1305. unsigned short scfg;
  1306. // patch for Analog Devices
  1307. scfg = snd_ac97_read(ac97, AC97_AD_SERIAL_CFG);
  1308. snd_ac97_write_cache(ac97, AC97_AD_SERIAL_CFG, scfg | 0x7000); /* select all codecs */
  1309. ac97->res_table = ad1819_restbl;
  1310. return 0;
  1311. }
  1312. static unsigned short patch_ad1881_unchained(struct snd_ac97 * ac97, int idx, unsigned short mask)
  1313. {
  1314. unsigned short val;
  1315. // test for unchained codec
  1316. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, mask);
  1317. snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0000); /* ID0C, ID1C, SDIE = off */
  1318. val = snd_ac97_read(ac97, AC97_VENDOR_ID2);
  1319. if ((val & 0xff40) != 0x5340)
  1320. return 0;
  1321. ac97->spec.ad18xx.unchained[idx] = mask;
  1322. ac97->spec.ad18xx.id[idx] = val;
  1323. ac97->spec.ad18xx.codec_cfg[idx] = 0x0000;
  1324. return mask;
  1325. }
  1326. static int patch_ad1881_chained1(struct snd_ac97 * ac97, int idx, unsigned short codec_bits)
  1327. {
  1328. static int cfg_bits[3] = { 1<<12, 1<<14, 1<<13 };
  1329. unsigned short val;
  1330. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, cfg_bits[idx]);
  1331. snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0004); // SDIE
  1332. val = snd_ac97_read(ac97, AC97_VENDOR_ID2);
  1333. if ((val & 0xff40) != 0x5340)
  1334. return 0;
  1335. if (codec_bits)
  1336. snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, codec_bits);
  1337. ac97->spec.ad18xx.chained[idx] = cfg_bits[idx];
  1338. ac97->spec.ad18xx.id[idx] = val;
  1339. ac97->spec.ad18xx.codec_cfg[idx] = codec_bits ? codec_bits : 0x0004;
  1340. return 1;
  1341. }
  1342. static void patch_ad1881_chained(struct snd_ac97 * ac97, int unchained_idx, int cidx1, int cidx2)
  1343. {
  1344. // already detected?
  1345. if (ac97->spec.ad18xx.unchained[cidx1] || ac97->spec.ad18xx.chained[cidx1])
  1346. cidx1 = -1;
  1347. if (ac97->spec.ad18xx.unchained[cidx2] || ac97->spec.ad18xx.chained[cidx2])
  1348. cidx2 = -1;
  1349. if (cidx1 < 0 && cidx2 < 0)
  1350. return;
  1351. // test for chained codecs
  1352. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000,
  1353. ac97->spec.ad18xx.unchained[unchained_idx]);
  1354. snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0002); // ID1C
  1355. ac97->spec.ad18xx.codec_cfg[unchained_idx] = 0x0002;
  1356. if (cidx1 >= 0) {
  1357. if (cidx2 < 0)
  1358. patch_ad1881_chained1(ac97, cidx1, 0);
  1359. else if (patch_ad1881_chained1(ac97, cidx1, 0x0006)) // SDIE | ID1C
  1360. patch_ad1881_chained1(ac97, cidx2, 0);
  1361. else if (patch_ad1881_chained1(ac97, cidx2, 0x0006)) // SDIE | ID1C
  1362. patch_ad1881_chained1(ac97, cidx1, 0);
  1363. } else if (cidx2 >= 0) {
  1364. patch_ad1881_chained1(ac97, cidx2, 0);
  1365. }
  1366. }
  1367. static const struct snd_ac97_build_ops patch_ad1881_build_ops = {
  1368. #ifdef CONFIG_PM
  1369. .resume = ad18xx_resume
  1370. #endif
  1371. };
  1372. static int patch_ad1881(struct snd_ac97 * ac97)
  1373. {
  1374. static const char cfg_idxs[3][2] = {
  1375. {2, 1},
  1376. {0, 2},
  1377. {0, 1}
  1378. };
  1379. // patch for Analog Devices
  1380. unsigned short codecs[3];
  1381. unsigned short val;
  1382. int idx, num;
  1383. val = snd_ac97_read(ac97, AC97_AD_SERIAL_CFG);
  1384. snd_ac97_write_cache(ac97, AC97_AD_SERIAL_CFG, val);
  1385. codecs[0] = patch_ad1881_unchained(ac97, 0, (1<<12));
  1386. codecs[1] = patch_ad1881_unchained(ac97, 1, (1<<14));
  1387. codecs[2] = patch_ad1881_unchained(ac97, 2, (1<<13));
  1388. if (! (codecs[0] || codecs[1] || codecs[2]))
  1389. goto __end;
  1390. for (idx = 0; idx < 3; idx++)
  1391. if (ac97->spec.ad18xx.unchained[idx])
  1392. patch_ad1881_chained(ac97, idx, cfg_idxs[idx][0], cfg_idxs[idx][1]);
  1393. if (ac97->spec.ad18xx.id[1]) {
  1394. ac97->flags |= AC97_AD_MULTI;
  1395. ac97->scaps |= AC97_SCAP_SURROUND_DAC;
  1396. }
  1397. if (ac97->spec.ad18xx.id[2]) {
  1398. ac97->flags |= AC97_AD_MULTI;
  1399. ac97->scaps |= AC97_SCAP_CENTER_LFE_DAC;
  1400. }
  1401. __end:
  1402. /* select all codecs */
  1403. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x7000, 0x7000);
  1404. /* check if only one codec is present */
  1405. for (idx = num = 0; idx < 3; idx++)
  1406. if (ac97->spec.ad18xx.id[idx])
  1407. num++;
  1408. if (num == 1) {
  1409. /* ok, deselect all ID bits */
  1410. snd_ac97_write_cache(ac97, AC97_AD_CODEC_CFG, 0x0000);
  1411. ac97->spec.ad18xx.codec_cfg[0] =
  1412. ac97->spec.ad18xx.codec_cfg[1] =
  1413. ac97->spec.ad18xx.codec_cfg[2] = 0x0000;
  1414. }
  1415. /* required for AD1886/AD1885 combination */
  1416. ac97->ext_id = snd_ac97_read(ac97, AC97_EXTENDED_ID);
  1417. if (ac97->spec.ad18xx.id[0]) {
  1418. ac97->id &= 0xffff0000;
  1419. ac97->id |= ac97->spec.ad18xx.id[0];
  1420. }
  1421. ac97->build_ops = &patch_ad1881_build_ops;
  1422. return 0;
  1423. }
  1424. static const struct snd_kcontrol_new snd_ac97_controls_ad1885[] = {
  1425. AC97_SINGLE("Digital Mono Direct", AC97_AD_MISC, 11, 1, 0),
  1426. /* AC97_SINGLE("Digital Audio Mode", AC97_AD_MISC, 12, 1, 0), */ /* seems problematic */
  1427. AC97_SINGLE("Low Power Mixer", AC97_AD_MISC, 14, 1, 0),
  1428. AC97_SINGLE("Zero Fill DAC", AC97_AD_MISC, 15, 1, 0),
  1429. AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 9, 1, 1), /* inverted */
  1430. AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 8, 1, 1), /* inverted */
  1431. };
  1432. static const DECLARE_TLV_DB_SCALE(db_scale_6bit_6db_max, -8850, 150, 0);
  1433. static int patch_ad1885_specific(struct snd_ac97 * ac97)
  1434. {
  1435. int err;
  1436. if ((err = patch_build_controls(ac97, snd_ac97_controls_ad1885, ARRAY_SIZE(snd_ac97_controls_ad1885))) < 0)
  1437. return err;
  1438. reset_tlv(ac97, "Headphone Playback Volume",
  1439. db_scale_6bit_6db_max);
  1440. return 0;
  1441. }
  1442. static const struct snd_ac97_build_ops patch_ad1885_build_ops = {
  1443. .build_specific = &patch_ad1885_specific,
  1444. #ifdef CONFIG_PM
  1445. .resume = ad18xx_resume
  1446. #endif
  1447. };
  1448. static int patch_ad1885(struct snd_ac97 * ac97)
  1449. {
  1450. patch_ad1881(ac97);
  1451. /* This is required to deal with the Intel D815EEAL2 */
  1452. /* i.e. Line out is actually headphone out from codec */
  1453. /* set default */
  1454. snd_ac97_write_cache(ac97, AC97_AD_MISC, 0x0404);
  1455. ac97->build_ops = &patch_ad1885_build_ops;
  1456. return 0;
  1457. }
  1458. static int patch_ad1886_specific(struct snd_ac97 * ac97)
  1459. {
  1460. reset_tlv(ac97, "Headphone Playback Volume",
  1461. db_scale_6bit_6db_max);
  1462. return 0;
  1463. }
  1464. static const struct snd_ac97_build_ops patch_ad1886_build_ops = {
  1465. .build_specific = &patch_ad1886_specific,
  1466. #ifdef CONFIG_PM
  1467. .resume = ad18xx_resume
  1468. #endif
  1469. };
  1470. static int patch_ad1886(struct snd_ac97 * ac97)
  1471. {
  1472. patch_ad1881(ac97);
  1473. /* Presario700 workaround */
  1474. /* for Jack Sense/SPDIF Register misetting causing */
  1475. snd_ac97_write_cache(ac97, AC97_AD_JACK_SPDIF, 0x0010);
  1476. ac97->build_ops = &patch_ad1886_build_ops;
  1477. return 0;
  1478. }
  1479. /* MISC bits (AD1888/AD1980/AD1985 register 0x76) */
  1480. #define AC97_AD198X_MBC 0x0003 /* mic boost */
  1481. #define AC97_AD198X_MBC_20 0x0000 /* +20dB */
  1482. #define AC97_AD198X_MBC_10 0x0001 /* +10dB */
  1483. #define AC97_AD198X_MBC_30 0x0002 /* +30dB */
  1484. #define AC97_AD198X_VREFD 0x0004 /* VREF high-Z */
  1485. #define AC97_AD198X_VREFH 0x0008 /* 0=2.25V, 1=3.7V */
  1486. #define AC97_AD198X_VREF_0 0x000c /* 0V (AD1985 only) */
  1487. #define AC97_AD198X_VREF_MASK (AC97_AD198X_VREFH | AC97_AD198X_VREFD)
  1488. #define AC97_AD198X_VREF_SHIFT 2
  1489. #define AC97_AD198X_SRU 0x0010 /* sample rate unlock */
  1490. #define AC97_AD198X_LOSEL 0x0020 /* LINE_OUT amplifiers input select */
  1491. #define AC97_AD198X_2MIC 0x0040 /* 2-channel mic select */
  1492. #define AC97_AD198X_SPRD 0x0080 /* SPREAD enable */
  1493. #define AC97_AD198X_DMIX0 0x0100 /* downmix mode: */
  1494. /* 0 = 6-to-4, 1 = 6-to-2 downmix */
  1495. #define AC97_AD198X_DMIX1 0x0200 /* downmix mode: 1 = enabled */
  1496. #define AC97_AD198X_HPSEL 0x0400 /* headphone amplifier input select */
  1497. #define AC97_AD198X_CLDIS 0x0800 /* center/lfe disable */
  1498. #define AC97_AD198X_LODIS 0x1000 /* LINE_OUT disable */
  1499. #define AC97_AD198X_MSPLT 0x2000 /* mute split */
  1500. #define AC97_AD198X_AC97NC 0x4000 /* AC97 no compatible mode */
  1501. #define AC97_AD198X_DACZ 0x8000 /* DAC zero-fill mode */
  1502. /* MISC 1 bits (AD1986 register 0x76) */
  1503. #define AC97_AD1986_MBC 0x0003 /* mic boost */
  1504. #define AC97_AD1986_MBC_20 0x0000 /* +20dB */
  1505. #define AC97_AD1986_MBC_10 0x0001 /* +10dB */
  1506. #define AC97_AD1986_MBC_30 0x0002 /* +30dB */
  1507. #define AC97_AD1986_LISEL0 0x0004 /* LINE_IN select bit 0 */
  1508. #define AC97_AD1986_LISEL1 0x0008 /* LINE_IN select bit 1 */
  1509. #define AC97_AD1986_LISEL_MASK (AC97_AD1986_LISEL1 | AC97_AD1986_LISEL0)
  1510. #define AC97_AD1986_LISEL_LI 0x0000 /* LINE_IN pins as LINE_IN source */
  1511. #define AC97_AD1986_LISEL_SURR 0x0004 /* SURROUND pins as LINE_IN source */
  1512. #define AC97_AD1986_LISEL_MIC 0x0008 /* MIC_1/2 pins as LINE_IN source */
  1513. #define AC97_AD1986_SRU 0x0010 /* sample rate unlock */
  1514. #define AC97_AD1986_SOSEL 0x0020 /* SURROUND_OUT amplifiers input sel */
  1515. #define AC97_AD1986_2MIC 0x0040 /* 2-channel mic select */
  1516. #define AC97_AD1986_SPRD 0x0080 /* SPREAD enable */
  1517. #define AC97_AD1986_DMIX0 0x0100 /* downmix mode: */
  1518. /* 0 = 6-to-4, 1 = 6-to-2 downmix */
  1519. #define AC97_AD1986_DMIX1 0x0200 /* downmix mode: 1 = enabled */
  1520. #define AC97_AD1986_CLDIS 0x0800 /* center/lfe disable */
  1521. #define AC97_AD1986_SODIS 0x1000 /* SURROUND_OUT disable */
  1522. #define AC97_AD1986_MSPLT 0x2000 /* mute split (read only 1) */
  1523. #define AC97_AD1986_AC97NC 0x4000 /* AC97 no compatible mode (r/o 1) */
  1524. #define AC97_AD1986_DACZ 0x8000 /* DAC zero-fill mode */
  1525. /* MISC 2 bits (AD1986 register 0x70) */
  1526. #define AC97_AD_MISC2 0x70 /* Misc Control Bits 2 (AD1986) */
  1527. #define AC97_AD1986_CVREF0 0x0004 /* C/LFE VREF_OUT 2.25V */
  1528. #define AC97_AD1986_CVREF1 0x0008 /* C/LFE VREF_OUT 0V */
  1529. #define AC97_AD1986_CVREF2 0x0010 /* C/LFE VREF_OUT 3.7V */
  1530. #define AC97_AD1986_CVREF_MASK \
  1531. (AC97_AD1986_CVREF2 | AC97_AD1986_CVREF1 | AC97_AD1986_CVREF0)
  1532. #define AC97_AD1986_JSMAP 0x0020 /* Jack Sense Mapping 1 = alternate */
  1533. #define AC97_AD1986_MMDIS 0x0080 /* Mono Mute Disable */
  1534. #define AC97_AD1986_MVREF0 0x0400 /* MIC VREF_OUT 2.25V */
  1535. #define AC97_AD1986_MVREF1 0x0800 /* MIC VREF_OUT 0V */
  1536. #define AC97_AD1986_MVREF2 0x1000 /* MIC VREF_OUT 3.7V */
  1537. #define AC97_AD1986_MVREF_MASK \
  1538. (AC97_AD1986_MVREF2 | AC97_AD1986_MVREF1 | AC97_AD1986_MVREF0)
  1539. /* MISC 3 bits (AD1986 register 0x7a) */
  1540. #define AC97_AD_MISC3 0x7a /* Misc Control Bits 3 (AD1986) */
  1541. #define AC97_AD1986_MMIX 0x0004 /* Mic Mix, left/right */
  1542. #define AC97_AD1986_GPO 0x0008 /* General Purpose Out */
  1543. #define AC97_AD1986_LOHPEN 0x0010 /* LINE_OUT headphone drive */
  1544. #define AC97_AD1986_LVREF0 0x0100 /* LINE_OUT VREF_OUT 2.25V */
  1545. #define AC97_AD1986_LVREF1 0x0200 /* LINE_OUT VREF_OUT 0V */
  1546. #define AC97_AD1986_LVREF2 0x0400 /* LINE_OUT VREF_OUT 3.7V */
  1547. #define AC97_AD1986_LVREF_MASK \
  1548. (AC97_AD1986_LVREF2 | AC97_AD1986_LVREF1 | AC97_AD1986_LVREF0)
  1549. #define AC97_AD1986_JSINVA 0x0800 /* Jack Sense Invert SENSE_A */
  1550. #define AC97_AD1986_LOSEL 0x1000 /* LINE_OUT amplifiers input select */
  1551. #define AC97_AD1986_HPSEL0 0x2000 /* Headphone amplifiers */
  1552. /* input select Surround DACs */
  1553. #define AC97_AD1986_HPSEL1 0x4000 /* Headphone amplifiers input */
  1554. /* select C/LFE DACs */
  1555. #define AC97_AD1986_JSINVB 0x8000 /* Jack Sense Invert SENSE_B */
  1556. /* Serial Config bits (AD1986 register 0x74) (incomplete) */
  1557. #define AC97_AD1986_OMS0 0x0100 /* Optional Mic Selector bit 0 */
  1558. #define AC97_AD1986_OMS1 0x0200 /* Optional Mic Selector bit 1 */
  1559. #define AC97_AD1986_OMS2 0x0400 /* Optional Mic Selector bit 2 */
  1560. #define AC97_AD1986_OMS_MASK \
  1561. (AC97_AD1986_OMS2 | AC97_AD1986_OMS1 | AC97_AD1986_OMS0)
  1562. #define AC97_AD1986_OMS_M 0x0000 /* MIC_1/2 pins are MIC sources */
  1563. #define AC97_AD1986_OMS_L 0x0100 /* LINE_IN pins are MIC sources */
  1564. #define AC97_AD1986_OMS_C 0x0200 /* Center/LFE pins are MCI sources */
  1565. #define AC97_AD1986_OMS_MC 0x0400 /* Mix of MIC and C/LFE pins */
  1566. /* are MIC sources */
  1567. #define AC97_AD1986_OMS_ML 0x0500 /* MIX of MIC and LINE_IN pins */
  1568. /* are MIC sources */
  1569. #define AC97_AD1986_OMS_LC 0x0600 /* MIX of LINE_IN and C/LFE pins */
  1570. /* are MIC sources */
  1571. #define AC97_AD1986_OMS_MLC 0x0700 /* MIX of MIC, LINE_IN, C/LFE pins */
  1572. /* are MIC sources */
  1573. static int snd_ac97_ad198x_spdif_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  1574. {
  1575. static char *texts[2] = { "AC-Link", "A/D Converter" };
  1576. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1577. uinfo->count = 1;
  1578. uinfo->value.enumerated.items = 2;
  1579. if (uinfo->value.enumerated.item > 1)
  1580. uinfo->value.enumerated.item = 1;
  1581. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1582. return 0;
  1583. }
  1584. static int snd_ac97_ad198x_spdif_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1585. {
  1586. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1587. unsigned short val;
  1588. val = ac97->regs[AC97_AD_SERIAL_CFG];
  1589. ucontrol->value.enumerated.item[0] = (val >> 2) & 1;
  1590. return 0;
  1591. }
  1592. static int snd_ac97_ad198x_spdif_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1593. {
  1594. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1595. unsigned short val;
  1596. if (ucontrol->value.enumerated.item[0] > 1)
  1597. return -EINVAL;
  1598. val = ucontrol->value.enumerated.item[0] << 2;
  1599. return snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 0x0004, val);
  1600. }
  1601. static const struct snd_kcontrol_new snd_ac97_ad198x_spdif_source = {
  1602. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1603. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
  1604. .info = snd_ac97_ad198x_spdif_source_info,
  1605. .get = snd_ac97_ad198x_spdif_source_get,
  1606. .put = snd_ac97_ad198x_spdif_source_put,
  1607. };
  1608. static int patch_ad198x_post_spdif(struct snd_ac97 * ac97)
  1609. {
  1610. return patch_build_controls(ac97, &snd_ac97_ad198x_spdif_source, 1);
  1611. }
  1612. static const struct snd_kcontrol_new snd_ac97_ad1981x_jack_sense[] = {
  1613. AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 11, 1, 0),
  1614. AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0),
  1615. };
  1616. /* black list to avoid HP/Line jack-sense controls
  1617. * (SS vendor << 16 | device)
  1618. */
  1619. static unsigned int ad1981_jacks_blacklist[] = {
  1620. 0x10140523, /* Thinkpad R40 */
  1621. 0x10140534, /* Thinkpad X31 */
  1622. 0x10140537, /* Thinkpad T41p */
  1623. 0x1014053e, /* Thinkpad R40e */
  1624. 0x10140554, /* Thinkpad T42p/R50p */
  1625. 0x10140567, /* Thinkpad T43p 2668-G7U */
  1626. 0x10140581, /* Thinkpad X41-2527 */
  1627. 0x10280160, /* Dell Dimension 2400 */
  1628. 0x104380b0, /* Asus A7V8X-MX */
  1629. 0x11790241, /* Toshiba Satellite A-15 S127 */
  1630. 0x1179ff10, /* Toshiba P500 */
  1631. 0x144dc01a, /* Samsung NP-X20C004/SEG */
  1632. 0 /* end */
  1633. };
  1634. static int check_list(struct snd_ac97 *ac97, const unsigned int *list)
  1635. {
  1636. u32 subid = ((u32)ac97->subsystem_vendor << 16) | ac97->subsystem_device;
  1637. for (; *list; list++)
  1638. if (*list == subid)
  1639. return 1;
  1640. return 0;
  1641. }
  1642. static int patch_ad1981a_specific(struct snd_ac97 * ac97)
  1643. {
  1644. if (check_list(ac97, ad1981_jacks_blacklist))
  1645. return 0;
  1646. return patch_build_controls(ac97, snd_ac97_ad1981x_jack_sense,
  1647. ARRAY_SIZE(snd_ac97_ad1981x_jack_sense));
  1648. }
  1649. static const struct snd_ac97_build_ops patch_ad1981a_build_ops = {
  1650. .build_post_spdif = patch_ad198x_post_spdif,
  1651. .build_specific = patch_ad1981a_specific,
  1652. #ifdef CONFIG_PM
  1653. .resume = ad18xx_resume
  1654. #endif
  1655. };
  1656. /* white list to enable HP jack-sense bits
  1657. * (SS vendor << 16 | device)
  1658. */
  1659. static unsigned int ad1981_jacks_whitelist[] = {
  1660. 0x0e11005a, /* HP nc4000/4010 */
  1661. 0x103c0890, /* HP nc6000 */
  1662. 0x103c0938, /* HP nc4220 */
  1663. 0x103c099c, /* HP nx6110 */
  1664. 0x103c0944, /* HP nc6220 */
  1665. 0x103c0934, /* HP nc8220 */
  1666. 0x103c006d, /* HP nx9105 */
  1667. 0x103c300d, /* HP Compaq dc5100 SFF(PT003AW) */
  1668. 0x17340088, /* FSC Scenic-W */
  1669. 0 /* end */
  1670. };
  1671. static void check_ad1981_hp_jack_sense(struct snd_ac97 *ac97)
  1672. {
  1673. if (check_list(ac97, ad1981_jacks_whitelist))
  1674. /* enable headphone jack sense */
  1675. snd_ac97_update_bits(ac97, AC97_AD_JACK_SPDIF, 1<<11, 1<<11);
  1676. }
  1677. static int patch_ad1981a(struct snd_ac97 *ac97)
  1678. {
  1679. patch_ad1881(ac97);
  1680. ac97->build_ops = &patch_ad1981a_build_ops;
  1681. snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD198X_MSPLT, AC97_AD198X_MSPLT);
  1682. ac97->flags |= AC97_STEREO_MUTES;
  1683. check_ad1981_hp_jack_sense(ac97);
  1684. return 0;
  1685. }
  1686. static const struct snd_kcontrol_new snd_ac97_ad198x_2cmic =
  1687. AC97_SINGLE("Stereo Mic", AC97_AD_MISC, 6, 1, 0);
  1688. static int patch_ad1981b_specific(struct snd_ac97 *ac97)
  1689. {
  1690. int err;
  1691. if ((err = patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1)) < 0)
  1692. return err;
  1693. if (check_list(ac97, ad1981_jacks_blacklist))
  1694. return 0;
  1695. return patch_build_controls(ac97, snd_ac97_ad1981x_jack_sense,
  1696. ARRAY_SIZE(snd_ac97_ad1981x_jack_sense));
  1697. }
  1698. static const struct snd_ac97_build_ops patch_ad1981b_build_ops = {
  1699. .build_post_spdif = patch_ad198x_post_spdif,
  1700. .build_specific = patch_ad1981b_specific,
  1701. #ifdef CONFIG_PM
  1702. .resume = ad18xx_resume
  1703. #endif
  1704. };
  1705. static int patch_ad1981b(struct snd_ac97 *ac97)
  1706. {
  1707. patch_ad1881(ac97);
  1708. ac97->build_ops = &patch_ad1981b_build_ops;
  1709. snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD198X_MSPLT, AC97_AD198X_MSPLT);
  1710. ac97->flags |= AC97_STEREO_MUTES;
  1711. check_ad1981_hp_jack_sense(ac97);
  1712. return 0;
  1713. }
  1714. #define snd_ac97_ad1888_lohpsel_info snd_ctl_boolean_mono_info
  1715. static int snd_ac97_ad1888_lohpsel_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1716. {
  1717. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1718. unsigned short val;
  1719. val = ac97->regs[AC97_AD_MISC];
  1720. ucontrol->value.integer.value[0] = !(val & AC97_AD198X_LOSEL);
  1721. if (ac97->spec.ad18xx.lo_as_master)
  1722. ucontrol->value.integer.value[0] =
  1723. !ucontrol->value.integer.value[0];
  1724. return 0;
  1725. }
  1726. static int snd_ac97_ad1888_lohpsel_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1727. {
  1728. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1729. unsigned short val;
  1730. val = !ucontrol->value.integer.value[0];
  1731. if (ac97->spec.ad18xx.lo_as_master)
  1732. val = !val;
  1733. val = val ? (AC97_AD198X_LOSEL | AC97_AD198X_HPSEL) : 0;
  1734. return snd_ac97_update_bits(ac97, AC97_AD_MISC,
  1735. AC97_AD198X_LOSEL | AC97_AD198X_HPSEL, val);
  1736. }
  1737. static int snd_ac97_ad1888_downmix_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  1738. {
  1739. static char *texts[3] = {"Off", "6 -> 4", "6 -> 2"};
  1740. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1741. uinfo->count = 1;
  1742. uinfo->value.enumerated.items = 3;
  1743. if (uinfo->value.enumerated.item > 2)
  1744. uinfo->value.enumerated.item = 2;
  1745. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1746. return 0;
  1747. }
  1748. static int snd_ac97_ad1888_downmix_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1749. {
  1750. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1751. unsigned short val;
  1752. val = ac97->regs[AC97_AD_MISC];
  1753. if (!(val & AC97_AD198X_DMIX1))
  1754. ucontrol->value.enumerated.item[0] = 0;
  1755. else
  1756. ucontrol->value.enumerated.item[0] = 1 + ((val >> 8) & 1);
  1757. return 0;
  1758. }
  1759. static int snd_ac97_ad1888_downmix_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  1760. {
  1761. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1762. unsigned short val;
  1763. if (ucontrol->value.enumerated.item[0] > 2)
  1764. return -EINVAL;
  1765. if (ucontrol->value.enumerated.item[0] == 0)
  1766. val = 0;
  1767. else
  1768. val = AC97_AD198X_DMIX1 |
  1769. ((ucontrol->value.enumerated.item[0] - 1) << 8);
  1770. return snd_ac97_update_bits(ac97, AC97_AD_MISC,
  1771. AC97_AD198X_DMIX0 | AC97_AD198X_DMIX1, val);
  1772. }
  1773. static void ad1888_update_jacks(struct snd_ac97 *ac97)
  1774. {
  1775. unsigned short val = 0;
  1776. /* clear LODIS if shared jack is to be used for Surround out */
  1777. if (!ac97->spec.ad18xx.lo_as_master && is_shared_linein(ac97))
  1778. val |= (1 << 12);
  1779. /* clear CLDIS if shared jack is to be used for C/LFE out */
  1780. if (is_shared_micin(ac97))
  1781. val |= (1 << 11);
  1782. /* shared Line-In */
  1783. snd_ac97_update_bits(ac97, AC97_AD_MISC, (1 << 11) | (1 << 12), val);
  1784. }
  1785. static const struct snd_kcontrol_new snd_ac97_ad1888_controls[] = {
  1786. {
  1787. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1788. .name = "Exchange Front/Surround",
  1789. .info = snd_ac97_ad1888_lohpsel_info,
  1790. .get = snd_ac97_ad1888_lohpsel_get,
  1791. .put = snd_ac97_ad1888_lohpsel_put
  1792. },
  1793. AC97_SINGLE("V_REFOUT Enable", AC97_AD_MISC, AC97_AD_VREFD_SHIFT, 1, 1),
  1794. AC97_SINGLE("High Pass Filter Enable", AC97_AD_TEST2,
  1795. AC97_AD_HPFD_SHIFT, 1, 1),
  1796. AC97_SINGLE("Spread Front to Surround and Center/LFE", AC97_AD_MISC, 7, 1, 0),
  1797. {
  1798. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1799. .name = "Downmix",
  1800. .info = snd_ac97_ad1888_downmix_info,
  1801. .get = snd_ac97_ad1888_downmix_get,
  1802. .put = snd_ac97_ad1888_downmix_put
  1803. },
  1804. AC97_SURROUND_JACK_MODE_CTL,
  1805. AC97_CHANNEL_MODE_CTL,
  1806. AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 10, 1, 0),
  1807. AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0),
  1808. };
  1809. static int patch_ad1888_specific(struct snd_ac97 *ac97)
  1810. {
  1811. if (!ac97->spec.ad18xx.lo_as_master) {
  1812. /* rename 0x04 as "Master" and 0x02 as "Master Surround" */
  1813. snd_ac97_rename_vol_ctl(ac97, "Master Playback",
  1814. "Master Surround Playback");
  1815. snd_ac97_rename_vol_ctl(ac97, "Headphone Playback",
  1816. "Master Playback");
  1817. }
  1818. return patch_build_controls(ac97, snd_ac97_ad1888_controls, ARRAY_SIZE(snd_ac97_ad1888_controls));
  1819. }
  1820. static const struct snd_ac97_build_ops patch_ad1888_build_ops = {
  1821. .build_post_spdif = patch_ad198x_post_spdif,
  1822. .build_specific = patch_ad1888_specific,
  1823. #ifdef CONFIG_PM
  1824. .resume = ad1888_resume,
  1825. #endif
  1826. .update_jacks = ad1888_update_jacks,
  1827. };
  1828. static int patch_ad1888(struct snd_ac97 * ac97)
  1829. {
  1830. unsigned short misc;
  1831. patch_ad1881(ac97);
  1832. ac97->build_ops = &patch_ad1888_build_ops;
  1833. /*
  1834. * LO can be used as a real line-out on some devices,
  1835. * and we need to revert the front/surround mixer switches
  1836. */
  1837. if (ac97->subsystem_vendor == 0x1043 &&
  1838. ac97->subsystem_device == 0x1193) /* ASUS A9T laptop */
  1839. ac97->spec.ad18xx.lo_as_master = 1;
  1840. misc = snd_ac97_read(ac97, AC97_AD_MISC);
  1841. /* AD-compatible mode */
  1842. /* Stereo mutes enabled */
  1843. misc |= AC97_AD198X_MSPLT | AC97_AD198X_AC97NC;
  1844. if (!ac97->spec.ad18xx.lo_as_master)
  1845. /* Switch FRONT/SURROUND LINE-OUT/HP-OUT default connection */
  1846. /* it seems that most vendors connect line-out connector to
  1847. * headphone out of AC'97
  1848. */
  1849. misc |= AC97_AD198X_LOSEL | AC97_AD198X_HPSEL;
  1850. snd_ac97_write_cache(ac97, AC97_AD_MISC, misc);
  1851. ac97->flags |= AC97_STEREO_MUTES;
  1852. return 0;
  1853. }
  1854. static int patch_ad1980_specific(struct snd_ac97 *ac97)
  1855. {
  1856. int err;
  1857. if ((err = patch_ad1888_specific(ac97)) < 0)
  1858. return err;
  1859. return patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1);
  1860. }
  1861. static const struct snd_ac97_build_ops patch_ad1980_build_ops = {
  1862. .build_post_spdif = patch_ad198x_post_spdif,
  1863. .build_specific = patch_ad1980_specific,
  1864. #ifdef CONFIG_PM
  1865. .resume = ad18xx_resume,
  1866. #endif
  1867. .update_jacks = ad1888_update_jacks,
  1868. };
  1869. static int patch_ad1980(struct snd_ac97 * ac97)
  1870. {
  1871. patch_ad1888(ac97);
  1872. ac97->build_ops = &patch_ad1980_build_ops;
  1873. return 0;
  1874. }
  1875. static int snd_ac97_ad1985_vrefout_info(struct snd_kcontrol *kcontrol,
  1876. struct snd_ctl_elem_info *uinfo)
  1877. {
  1878. static char *texts[4] = {"High-Z", "3.7 V", "2.25 V", "0 V"};
  1879. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1880. uinfo->count = 1;
  1881. uinfo->value.enumerated.items = 4;
  1882. if (uinfo->value.enumerated.item > 3)
  1883. uinfo->value.enumerated.item = 3;
  1884. strcpy(uinfo->value.enumerated.name,
  1885. texts[uinfo->value.enumerated.item]);
  1886. return 0;
  1887. }
  1888. static int snd_ac97_ad1985_vrefout_get(struct snd_kcontrol *kcontrol,
  1889. struct snd_ctl_elem_value *ucontrol)
  1890. {
  1891. static const int reg2ctrl[4] = {2, 0, 1, 3};
  1892. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1893. unsigned short val;
  1894. val = (ac97->regs[AC97_AD_MISC] & AC97_AD198X_VREF_MASK)
  1895. >> AC97_AD198X_VREF_SHIFT;
  1896. ucontrol->value.enumerated.item[0] = reg2ctrl[val];
  1897. return 0;
  1898. }
  1899. static int snd_ac97_ad1985_vrefout_put(struct snd_kcontrol *kcontrol,
  1900. struct snd_ctl_elem_value *ucontrol)
  1901. {
  1902. static const int ctrl2reg[4] = {1, 2, 0, 3};
  1903. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1904. unsigned short val;
  1905. if (ucontrol->value.enumerated.item[0] > 3)
  1906. return -EINVAL;
  1907. val = ctrl2reg[ucontrol->value.enumerated.item[0]]
  1908. << AC97_AD198X_VREF_SHIFT;
  1909. return snd_ac97_update_bits(ac97, AC97_AD_MISC,
  1910. AC97_AD198X_VREF_MASK, val);
  1911. }
  1912. static const struct snd_kcontrol_new snd_ac97_ad1985_controls[] = {
  1913. AC97_SINGLE("Exchange Center/LFE", AC97_AD_SERIAL_CFG, 3, 1, 0),
  1914. {
  1915. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1916. .name = "Exchange Front/Surround",
  1917. .info = snd_ac97_ad1888_lohpsel_info,
  1918. .get = snd_ac97_ad1888_lohpsel_get,
  1919. .put = snd_ac97_ad1888_lohpsel_put
  1920. },
  1921. AC97_SINGLE("High Pass Filter Enable", AC97_AD_TEST2, 12, 1, 1),
  1922. AC97_SINGLE("Spread Front to Surround and Center/LFE",
  1923. AC97_AD_MISC, 7, 1, 0),
  1924. {
  1925. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1926. .name = "Downmix",
  1927. .info = snd_ac97_ad1888_downmix_info,
  1928. .get = snd_ac97_ad1888_downmix_get,
  1929. .put = snd_ac97_ad1888_downmix_put
  1930. },
  1931. {
  1932. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1933. .name = "V_REFOUT",
  1934. .info = snd_ac97_ad1985_vrefout_info,
  1935. .get = snd_ac97_ad1985_vrefout_get,
  1936. .put = snd_ac97_ad1985_vrefout_put
  1937. },
  1938. AC97_SURROUND_JACK_MODE_CTL,
  1939. AC97_CHANNEL_MODE_CTL,
  1940. AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 10, 1, 0),
  1941. AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0),
  1942. };
  1943. static void ad1985_update_jacks(struct snd_ac97 *ac97)
  1944. {
  1945. ad1888_update_jacks(ac97);
  1946. /* clear OMS if shared jack is to be used for C/LFE out */
  1947. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG, 1 << 9,
  1948. is_shared_micin(ac97) ? 1 << 9 : 0);
  1949. }
  1950. static int patch_ad1985_specific(struct snd_ac97 *ac97)
  1951. {
  1952. int err;
  1953. /* rename 0x04 as "Master" and 0x02 as "Master Surround" */
  1954. snd_ac97_rename_vol_ctl(ac97, "Master Playback",
  1955. "Master Surround Playback");
  1956. snd_ac97_rename_vol_ctl(ac97, "Headphone Playback", "Master Playback");
  1957. if ((err = patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1)) < 0)
  1958. return err;
  1959. return patch_build_controls(ac97, snd_ac97_ad1985_controls,
  1960. ARRAY_SIZE(snd_ac97_ad1985_controls));
  1961. }
  1962. static const struct snd_ac97_build_ops patch_ad1985_build_ops = {
  1963. .build_post_spdif = patch_ad198x_post_spdif,
  1964. .build_specific = patch_ad1985_specific,
  1965. #ifdef CONFIG_PM
  1966. .resume = ad18xx_resume,
  1967. #endif
  1968. .update_jacks = ad1985_update_jacks,
  1969. };
  1970. static int patch_ad1985(struct snd_ac97 * ac97)
  1971. {
  1972. unsigned short misc;
  1973. patch_ad1881(ac97);
  1974. ac97->build_ops = &patch_ad1985_build_ops;
  1975. misc = snd_ac97_read(ac97, AC97_AD_MISC);
  1976. /* switch front/surround line-out/hp-out */
  1977. /* AD-compatible mode */
  1978. /* Stereo mutes enabled */
  1979. snd_ac97_write_cache(ac97, AC97_AD_MISC, misc |
  1980. AC97_AD198X_LOSEL |
  1981. AC97_AD198X_HPSEL |
  1982. AC97_AD198X_MSPLT |
  1983. AC97_AD198X_AC97NC);
  1984. ac97->flags |= AC97_STEREO_MUTES;
  1985. /* update current jack configuration */
  1986. ad1985_update_jacks(ac97);
  1987. /* on AD1985 rev. 3, AC'97 revision bits are zero */
  1988. ac97->ext_id = (ac97->ext_id & ~AC97_EI_REV_MASK) | AC97_EI_REV_23;
  1989. return 0;
  1990. }
  1991. #define snd_ac97_ad1986_bool_info snd_ctl_boolean_mono_info
  1992. static int snd_ac97_ad1986_lososel_get(struct snd_kcontrol *kcontrol,
  1993. struct snd_ctl_elem_value *ucontrol)
  1994. {
  1995. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  1996. unsigned short val;
  1997. val = ac97->regs[AC97_AD_MISC3];
  1998. ucontrol->value.integer.value[0] = (val & AC97_AD1986_LOSEL) != 0;
  1999. return 0;
  2000. }
  2001. static int snd_ac97_ad1986_lososel_put(struct snd_kcontrol *kcontrol,
  2002. struct snd_ctl_elem_value *ucontrol)
  2003. {
  2004. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2005. int ret0;
  2006. int ret1;
  2007. int sprd = (ac97->regs[AC97_AD_MISC] & AC97_AD1986_SPRD) != 0;
  2008. ret0 = snd_ac97_update_bits(ac97, AC97_AD_MISC3, AC97_AD1986_LOSEL,
  2009. ucontrol->value.integer.value[0] != 0
  2010. ? AC97_AD1986_LOSEL : 0);
  2011. if (ret0 < 0)
  2012. return ret0;
  2013. /* SOSEL is set to values of "Spread" or "Exchange F/S" controls */
  2014. ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL,
  2015. (ucontrol->value.integer.value[0] != 0
  2016. || sprd)
  2017. ? AC97_AD1986_SOSEL : 0);
  2018. if (ret1 < 0)
  2019. return ret1;
  2020. return (ret0 > 0 || ret1 > 0) ? 1 : 0;
  2021. }
  2022. static int snd_ac97_ad1986_spread_get(struct snd_kcontrol *kcontrol,
  2023. struct snd_ctl_elem_value *ucontrol)
  2024. {
  2025. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2026. unsigned short val;
  2027. val = ac97->regs[AC97_AD_MISC];
  2028. ucontrol->value.integer.value[0] = (val & AC97_AD1986_SPRD) != 0;
  2029. return 0;
  2030. }
  2031. static int snd_ac97_ad1986_spread_put(struct snd_kcontrol *kcontrol,
  2032. struct snd_ctl_elem_value *ucontrol)
  2033. {
  2034. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2035. int ret0;
  2036. int ret1;
  2037. int sprd = (ac97->regs[AC97_AD_MISC3] & AC97_AD1986_LOSEL) != 0;
  2038. ret0 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SPRD,
  2039. ucontrol->value.integer.value[0] != 0
  2040. ? AC97_AD1986_SPRD : 0);
  2041. if (ret0 < 0)
  2042. return ret0;
  2043. /* SOSEL is set to values of "Spread" or "Exchange F/S" controls */
  2044. ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL,
  2045. (ucontrol->value.integer.value[0] != 0
  2046. || sprd)
  2047. ? AC97_AD1986_SOSEL : 0);
  2048. if (ret1 < 0)
  2049. return ret1;
  2050. return (ret0 > 0 || ret1 > 0) ? 1 : 0;
  2051. }
  2052. static int snd_ac97_ad1986_miclisel_get(struct snd_kcontrol *kcontrol,
  2053. struct snd_ctl_elem_value *ucontrol)
  2054. {
  2055. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2056. ucontrol->value.integer.value[0] = ac97->spec.ad18xx.swap_mic_linein;
  2057. return 0;
  2058. }
  2059. static int snd_ac97_ad1986_miclisel_put(struct snd_kcontrol *kcontrol,
  2060. struct snd_ctl_elem_value *ucontrol)
  2061. {
  2062. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2063. unsigned char swap = ucontrol->value.integer.value[0] != 0;
  2064. if (swap != ac97->spec.ad18xx.swap_mic_linein) {
  2065. ac97->spec.ad18xx.swap_mic_linein = swap;
  2066. if (ac97->build_ops->update_jacks)
  2067. ac97->build_ops->update_jacks(ac97);
  2068. return 1;
  2069. }
  2070. return 0;
  2071. }
  2072. static int snd_ac97_ad1986_vrefout_get(struct snd_kcontrol *kcontrol,
  2073. struct snd_ctl_elem_value *ucontrol)
  2074. {
  2075. /* Use MIC_1/2 V_REFOUT as the "get" value */
  2076. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2077. unsigned short val;
  2078. unsigned short reg = ac97->regs[AC97_AD_MISC2];
  2079. if ((reg & AC97_AD1986_MVREF0) != 0)
  2080. val = 2;
  2081. else if ((reg & AC97_AD1986_MVREF1) != 0)
  2082. val = 3;
  2083. else if ((reg & AC97_AD1986_MVREF2) != 0)
  2084. val = 1;
  2085. else
  2086. val = 0;
  2087. ucontrol->value.enumerated.item[0] = val;
  2088. return 0;
  2089. }
  2090. static int snd_ac97_ad1986_vrefout_put(struct snd_kcontrol *kcontrol,
  2091. struct snd_ctl_elem_value *ucontrol)
  2092. {
  2093. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2094. unsigned short cval;
  2095. unsigned short lval;
  2096. unsigned short mval;
  2097. int cret;
  2098. int lret;
  2099. int mret;
  2100. switch (ucontrol->value.enumerated.item[0])
  2101. {
  2102. case 0: /* High-Z */
  2103. cval = 0;
  2104. lval = 0;
  2105. mval = 0;
  2106. break;
  2107. case 1: /* 3.7 V */
  2108. cval = AC97_AD1986_CVREF2;
  2109. lval = AC97_AD1986_LVREF2;
  2110. mval = AC97_AD1986_MVREF2;
  2111. break;
  2112. case 2: /* 2.25 V */
  2113. cval = AC97_AD1986_CVREF0;
  2114. lval = AC97_AD1986_LVREF0;
  2115. mval = AC97_AD1986_MVREF0;
  2116. break;
  2117. case 3: /* 0 V */
  2118. cval = AC97_AD1986_CVREF1;
  2119. lval = AC97_AD1986_LVREF1;
  2120. mval = AC97_AD1986_MVREF1;
  2121. break;
  2122. default:
  2123. return -EINVAL;
  2124. }
  2125. cret = snd_ac97_update_bits(ac97, AC97_AD_MISC2,
  2126. AC97_AD1986_CVREF_MASK, cval);
  2127. if (cret < 0)
  2128. return cret;
  2129. lret = snd_ac97_update_bits(ac97, AC97_AD_MISC3,
  2130. AC97_AD1986_LVREF_MASK, lval);
  2131. if (lret < 0)
  2132. return lret;
  2133. mret = snd_ac97_update_bits(ac97, AC97_AD_MISC2,
  2134. AC97_AD1986_MVREF_MASK, mval);
  2135. if (mret < 0)
  2136. return mret;
  2137. return (cret > 0 || lret > 0 || mret > 0) ? 1 : 0;
  2138. }
  2139. static const struct snd_kcontrol_new snd_ac97_ad1986_controls[] = {
  2140. AC97_SINGLE("Exchange Center/LFE", AC97_AD_SERIAL_CFG, 3, 1, 0),
  2141. {
  2142. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2143. .name = "Exchange Front/Surround",
  2144. .info = snd_ac97_ad1986_bool_info,
  2145. .get = snd_ac97_ad1986_lososel_get,
  2146. .put = snd_ac97_ad1986_lososel_put
  2147. },
  2148. {
  2149. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2150. .name = "Exchange Mic/Line In",
  2151. .info = snd_ac97_ad1986_bool_info,
  2152. .get = snd_ac97_ad1986_miclisel_get,
  2153. .put = snd_ac97_ad1986_miclisel_put
  2154. },
  2155. {
  2156. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2157. .name = "Spread Front to Surround and Center/LFE",
  2158. .info = snd_ac97_ad1986_bool_info,
  2159. .get = snd_ac97_ad1986_spread_get,
  2160. .put = snd_ac97_ad1986_spread_put
  2161. },
  2162. {
  2163. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2164. .name = "Downmix",
  2165. .info = snd_ac97_ad1888_downmix_info,
  2166. .get = snd_ac97_ad1888_downmix_get,
  2167. .put = snd_ac97_ad1888_downmix_put
  2168. },
  2169. {
  2170. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2171. .name = "V_REFOUT",
  2172. .info = snd_ac97_ad1985_vrefout_info,
  2173. .get = snd_ac97_ad1986_vrefout_get,
  2174. .put = snd_ac97_ad1986_vrefout_put
  2175. },
  2176. AC97_SURROUND_JACK_MODE_CTL,
  2177. AC97_CHANNEL_MODE_CTL,
  2178. AC97_SINGLE("Headphone Jack Sense", AC97_AD_JACK_SPDIF, 10, 1, 0),
  2179. AC97_SINGLE("Line Jack Sense", AC97_AD_JACK_SPDIF, 12, 1, 0)
  2180. };
  2181. static void ad1986_update_jacks(struct snd_ac97 *ac97)
  2182. {
  2183. unsigned short misc_val = 0;
  2184. unsigned short ser_val;
  2185. /* disable SURROUND and CENTER/LFE if not surround mode */
  2186. if (!is_surround_on(ac97))
  2187. misc_val |= AC97_AD1986_SODIS;
  2188. if (!is_clfe_on(ac97))
  2189. misc_val |= AC97_AD1986_CLDIS;
  2190. /* select line input (default=LINE_IN, SURROUND or MIC_1/2) */
  2191. if (is_shared_linein(ac97))
  2192. misc_val |= AC97_AD1986_LISEL_SURR;
  2193. else if (ac97->spec.ad18xx.swap_mic_linein != 0)
  2194. misc_val |= AC97_AD1986_LISEL_MIC;
  2195. snd_ac97_update_bits(ac97, AC97_AD_MISC,
  2196. AC97_AD1986_SODIS | AC97_AD1986_CLDIS |
  2197. AC97_AD1986_LISEL_MASK,
  2198. misc_val);
  2199. /* select microphone input (MIC_1/2, Center/LFE or LINE_IN) */
  2200. if (is_shared_micin(ac97))
  2201. ser_val = AC97_AD1986_OMS_C;
  2202. else if (ac97->spec.ad18xx.swap_mic_linein != 0)
  2203. ser_val = AC97_AD1986_OMS_L;
  2204. else
  2205. ser_val = AC97_AD1986_OMS_M;
  2206. snd_ac97_update_bits(ac97, AC97_AD_SERIAL_CFG,
  2207. AC97_AD1986_OMS_MASK,
  2208. ser_val);
  2209. }
  2210. static int patch_ad1986_specific(struct snd_ac97 *ac97)
  2211. {
  2212. int err;
  2213. if ((err = patch_build_controls(ac97, &snd_ac97_ad198x_2cmic, 1)) < 0)
  2214. return err;
  2215. return patch_build_controls(ac97, snd_ac97_ad1986_controls,
  2216. ARRAY_SIZE(snd_ac97_ad1985_controls));
  2217. }
  2218. static const struct snd_ac97_build_ops patch_ad1986_build_ops = {
  2219. .build_post_spdif = patch_ad198x_post_spdif,
  2220. .build_specific = patch_ad1986_specific,
  2221. #ifdef CONFIG_PM
  2222. .resume = ad18xx_resume,
  2223. #endif
  2224. .update_jacks = ad1986_update_jacks,
  2225. };
  2226. static int patch_ad1986(struct snd_ac97 * ac97)
  2227. {
  2228. patch_ad1881(ac97);
  2229. ac97->build_ops = &patch_ad1986_build_ops;
  2230. ac97->flags |= AC97_STEREO_MUTES;
  2231. /* update current jack configuration */
  2232. ad1986_update_jacks(ac97);
  2233. return 0;
  2234. }
  2235. /*
  2236. * realtek ALC203: use mono-out for pin 37
  2237. */
  2238. static int patch_alc203(struct snd_ac97 *ac97)
  2239. {
  2240. snd_ac97_update_bits(ac97, 0x7a, 0x400, 0x400);
  2241. return 0;
  2242. }
  2243. /*
  2244. * realtek ALC65x/850 codecs
  2245. */
  2246. static void alc650_update_jacks(struct snd_ac97 *ac97)
  2247. {
  2248. int shared;
  2249. /* shared Line-In / Surround Out */
  2250. shared = is_shared_surrout(ac97);
  2251. snd_ac97_update_bits(ac97, AC97_ALC650_MULTICH, 1 << 9,
  2252. shared ? (1 << 9) : 0);
  2253. /* update shared Mic In / Center/LFE Out */
  2254. shared = is_shared_clfeout(ac97);
  2255. /* disable/enable vref */
  2256. snd_ac97_update_bits(ac97, AC97_ALC650_CLOCK, 1 << 12,
  2257. shared ? (1 << 12) : 0);
  2258. /* turn on/off center-on-mic */
  2259. snd_ac97_update_bits(ac97, AC97_ALC650_MULTICH, 1 << 10,
  2260. shared ? (1 << 10) : 0);
  2261. /* GPIO0 high for mic */
  2262. snd_ac97_update_bits(ac97, AC97_ALC650_GPIO_STATUS, 0x100,
  2263. shared ? 0 : 0x100);
  2264. }
  2265. static const struct snd_kcontrol_new snd_ac97_controls_alc650[] = {
  2266. AC97_SINGLE("Duplicate Front", AC97_ALC650_MULTICH, 0, 1, 0),
  2267. AC97_SINGLE("Surround Down Mix", AC97_ALC650_MULTICH, 1, 1, 0),
  2268. AC97_SINGLE("Center/LFE Down Mix", AC97_ALC650_MULTICH, 2, 1, 0),
  2269. AC97_SINGLE("Exchange Center/LFE", AC97_ALC650_MULTICH, 3, 1, 0),
  2270. /* 4: Analog Input To Surround */
  2271. /* 5: Analog Input To Center/LFE */
  2272. /* 6: Independent Master Volume Right */
  2273. /* 7: Independent Master Volume Left */
  2274. /* 8: reserved */
  2275. /* 9: Line-In/Surround share */
  2276. /* 10: Mic/CLFE share */
  2277. /* 11-13: in IEC958 controls */
  2278. AC97_SINGLE("Swap Surround Slot", AC97_ALC650_MULTICH, 14, 1, 0),
  2279. #if 0 /* always set in patch_alc650 */
  2280. AC97_SINGLE("IEC958 Input Clock Enable", AC97_ALC650_CLOCK, 0, 1, 0),
  2281. AC97_SINGLE("IEC958 Input Pin Enable", AC97_ALC650_CLOCK, 1, 1, 0),
  2282. AC97_SINGLE("Surround DAC Switch", AC97_ALC650_SURR_DAC_VOL, 15, 1, 1),
  2283. AC97_DOUBLE("Surround DAC Volume", AC97_ALC650_SURR_DAC_VOL, 8, 0, 31, 1),
  2284. AC97_SINGLE("Center/LFE DAC Switch", AC97_ALC650_LFE_DAC_VOL, 15, 1, 1),
  2285. AC97_DOUBLE("Center/LFE DAC Volume", AC97_ALC650_LFE_DAC_VOL, 8, 0, 31, 1),
  2286. #endif
  2287. AC97_SURROUND_JACK_MODE_CTL,
  2288. AC97_CHANNEL_MODE_CTL,
  2289. };
  2290. static const struct snd_kcontrol_new snd_ac97_spdif_controls_alc650[] = {
  2291. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_ALC650_MULTICH, 11, 1, 0),
  2292. AC97_SINGLE("Analog to IEC958 Output", AC97_ALC650_MULTICH, 12, 1, 0),
  2293. /* disable this controls since it doesn't work as expected */
  2294. /* AC97_SINGLE("IEC958 Input Monitor", AC97_ALC650_MULTICH, 13, 1, 0), */
  2295. };
  2296. static const DECLARE_TLV_DB_SCALE(db_scale_5bit_3db_max, -4350, 150, 0);
  2297. static int patch_alc650_specific(struct snd_ac97 * ac97)
  2298. {
  2299. int err;
  2300. if ((err = patch_build_controls(ac97, snd_ac97_controls_alc650, ARRAY_SIZE(snd_ac97_controls_alc650))) < 0)
  2301. return err;
  2302. if (ac97->ext_id & AC97_EI_SPDIF) {
  2303. if ((err = patch_build_controls(ac97, snd_ac97_spdif_controls_alc650, ARRAY_SIZE(snd_ac97_spdif_controls_alc650))) < 0)
  2304. return err;
  2305. }
  2306. if (ac97->id != AC97_ID_ALC650F)
  2307. reset_tlv(ac97, "Master Playback Volume",
  2308. db_scale_5bit_3db_max);
  2309. return 0;
  2310. }
  2311. static const struct snd_ac97_build_ops patch_alc650_ops = {
  2312. .build_specific = patch_alc650_specific,
  2313. .update_jacks = alc650_update_jacks
  2314. };
  2315. static int patch_alc650(struct snd_ac97 * ac97)
  2316. {
  2317. unsigned short val;
  2318. ac97->build_ops = &patch_alc650_ops;
  2319. /* determine the revision */
  2320. val = snd_ac97_read(ac97, AC97_ALC650_REVISION) & 0x3f;
  2321. if (val < 3)
  2322. ac97->id = 0x414c4720; /* Old version */
  2323. else if (val < 0x10)
  2324. ac97->id = 0x414c4721; /* D version */
  2325. else if (val < 0x20)
  2326. ac97->id = 0x414c4722; /* E version */
  2327. else if (val < 0x30)
  2328. ac97->id = 0x414c4723; /* F version */
  2329. /* revision E or F */
  2330. /* FIXME: what about revision D ? */
  2331. ac97->spec.dev_flags = (ac97->id == 0x414c4722 ||
  2332. ac97->id == 0x414c4723);
  2333. /* enable AC97_ALC650_GPIO_SETUP, AC97_ALC650_CLOCK for R/W */
  2334. snd_ac97_write_cache(ac97, AC97_ALC650_GPIO_STATUS,
  2335. snd_ac97_read(ac97, AC97_ALC650_GPIO_STATUS) | 0x8000);
  2336. /* Enable SPDIF-IN only on Rev.E and above */
  2337. val = snd_ac97_read(ac97, AC97_ALC650_CLOCK);
  2338. /* SPDIF IN with pin 47 */
  2339. if (ac97->spec.dev_flags &&
  2340. /* ASUS A6KM requires EAPD */
  2341. ! (ac97->subsystem_vendor == 0x1043 &&
  2342. ac97->subsystem_device == 0x1103))
  2343. val |= 0x03; /* enable */
  2344. else
  2345. val &= ~0x03; /* disable */
  2346. snd_ac97_write_cache(ac97, AC97_ALC650_CLOCK, val);
  2347. /* set default: slot 3,4,7,8,6,9
  2348. spdif-in monitor off, analog-spdif off, spdif-in off
  2349. center on mic off, surround on line-in off
  2350. downmix off, duplicate front off
  2351. */
  2352. snd_ac97_write_cache(ac97, AC97_ALC650_MULTICH, 0);
  2353. /* set GPIO0 for mic bias */
  2354. /* GPIO0 pin output, no interrupt, high */
  2355. snd_ac97_write_cache(ac97, AC97_ALC650_GPIO_SETUP,
  2356. snd_ac97_read(ac97, AC97_ALC650_GPIO_SETUP) | 0x01);
  2357. snd_ac97_write_cache(ac97, AC97_ALC650_GPIO_STATUS,
  2358. (snd_ac97_read(ac97, AC97_ALC650_GPIO_STATUS) | 0x100) & ~0x10);
  2359. /* full DAC volume */
  2360. snd_ac97_write_cache(ac97, AC97_ALC650_SURR_DAC_VOL, 0x0808);
  2361. snd_ac97_write_cache(ac97, AC97_ALC650_LFE_DAC_VOL, 0x0808);
  2362. return 0;
  2363. }
  2364. static void alc655_update_jacks(struct snd_ac97 *ac97)
  2365. {
  2366. int shared;
  2367. /* shared Line-In / Surround Out */
  2368. shared = is_shared_surrout(ac97);
  2369. ac97_update_bits_page(ac97, AC97_ALC650_MULTICH, 1 << 9,
  2370. shared ? (1 << 9) : 0, 0);
  2371. /* update shared Mic In / Center/LFE Out */
  2372. shared = is_shared_clfeout(ac97);
  2373. /* misc control; vrefout disable */
  2374. snd_ac97_update_bits(ac97, AC97_ALC650_CLOCK, 1 << 12,
  2375. shared ? (1 << 12) : 0);
  2376. ac97_update_bits_page(ac97, AC97_ALC650_MULTICH, 1 << 10,
  2377. shared ? (1 << 10) : 0, 0);
  2378. }
  2379. static const struct snd_kcontrol_new snd_ac97_controls_alc655[] = {
  2380. AC97_PAGE_SINGLE("Duplicate Front", AC97_ALC650_MULTICH, 0, 1, 0, 0),
  2381. AC97_SURROUND_JACK_MODE_CTL,
  2382. AC97_CHANNEL_MODE_CTL,
  2383. };
  2384. static int alc655_iec958_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  2385. {
  2386. static char *texts_655[3] = { "PCM", "Analog In", "IEC958 In" };
  2387. static char *texts_658[4] = { "PCM", "Analog1 In", "Analog2 In", "IEC958 In" };
  2388. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2389. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  2390. uinfo->count = 1;
  2391. uinfo->value.enumerated.items = ac97->spec.dev_flags ? 4 : 3;
  2392. if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
  2393. uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
  2394. strcpy(uinfo->value.enumerated.name,
  2395. ac97->spec.dev_flags ?
  2396. texts_658[uinfo->value.enumerated.item] :
  2397. texts_655[uinfo->value.enumerated.item]);
  2398. return 0;
  2399. }
  2400. static int alc655_iec958_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2401. {
  2402. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2403. unsigned short val;
  2404. val = ac97->regs[AC97_ALC650_MULTICH];
  2405. val = (val >> 12) & 3;
  2406. if (ac97->spec.dev_flags && val == 3)
  2407. val = 0;
  2408. ucontrol->value.enumerated.item[0] = val;
  2409. return 0;
  2410. }
  2411. static int alc655_iec958_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2412. {
  2413. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2414. return ac97_update_bits_page(ac97, AC97_ALC650_MULTICH, 3 << 12,
  2415. (unsigned short)ucontrol->value.enumerated.item[0] << 12,
  2416. 0);
  2417. }
  2418. static const struct snd_kcontrol_new snd_ac97_spdif_controls_alc655[] = {
  2419. AC97_PAGE_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_ALC650_MULTICH, 11, 1, 0, 0),
  2420. /* disable this controls since it doesn't work as expected */
  2421. /* AC97_PAGE_SINGLE("IEC958 Input Monitor", AC97_ALC650_MULTICH, 14, 1, 0, 0), */
  2422. {
  2423. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2424. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
  2425. .info = alc655_iec958_route_info,
  2426. .get = alc655_iec958_route_get,
  2427. .put = alc655_iec958_route_put,
  2428. },
  2429. };
  2430. static int patch_alc655_specific(struct snd_ac97 * ac97)
  2431. {
  2432. int err;
  2433. if ((err = patch_build_controls(ac97, snd_ac97_controls_alc655, ARRAY_SIZE(snd_ac97_controls_alc655))) < 0)
  2434. return err;
  2435. if (ac97->ext_id & AC97_EI_SPDIF) {
  2436. if ((err = patch_build_controls(ac97, snd_ac97_spdif_controls_alc655, ARRAY_SIZE(snd_ac97_spdif_controls_alc655))) < 0)
  2437. return err;
  2438. }
  2439. return 0;
  2440. }
  2441. static const struct snd_ac97_build_ops patch_alc655_ops = {
  2442. .build_specific = patch_alc655_specific,
  2443. .update_jacks = alc655_update_jacks
  2444. };
  2445. static int patch_alc655(struct snd_ac97 * ac97)
  2446. {
  2447. unsigned int val;
  2448. if (ac97->id == AC97_ID_ALC658) {
  2449. ac97->spec.dev_flags = 1; /* ALC658 */
  2450. if ((snd_ac97_read(ac97, AC97_ALC650_REVISION) & 0x3f) == 2) {
  2451. ac97->id = AC97_ID_ALC658D;
  2452. ac97->spec.dev_flags = 2;
  2453. }
  2454. }
  2455. ac97->build_ops = &patch_alc655_ops;
  2456. /* assume only page 0 for writing cache */
  2457. snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, AC97_PAGE_VENDOR);
  2458. /* adjust default values */
  2459. val = snd_ac97_read(ac97, 0x7a); /* misc control */
  2460. if (ac97->spec.dev_flags) /* ALC658 */
  2461. val &= ~(1 << 1); /* Pin 47 is spdif input pin */
  2462. else { /* ALC655 */
  2463. if (ac97->subsystem_vendor == 0x1462 &&
  2464. (ac97->subsystem_device == 0x0131 || /* MSI S270 laptop */
  2465. ac97->subsystem_device == 0x0161 || /* LG K1 Express */
  2466. ac97->subsystem_device == 0x0351 || /* MSI L725 laptop */
  2467. ac97->subsystem_device == 0x0471 || /* MSI L720 laptop */
  2468. ac97->subsystem_device == 0x0061)) /* MSI S250 laptop */
  2469. val &= ~(1 << 1); /* Pin 47 is EAPD (for internal speaker) */
  2470. else
  2471. val |= (1 << 1); /* Pin 47 is spdif input pin */
  2472. /* this seems missing on some hardwares */
  2473. ac97->ext_id |= AC97_EI_SPDIF;
  2474. }
  2475. val &= ~(1 << 12); /* vref enable */
  2476. snd_ac97_write_cache(ac97, 0x7a, val);
  2477. /* set default: spdif-in enabled,
  2478. spdif-in monitor off, spdif-in PCM off
  2479. center on mic off, surround on line-in off
  2480. duplicate front off
  2481. */
  2482. snd_ac97_write_cache(ac97, AC97_ALC650_MULTICH, 1<<15);
  2483. /* full DAC volume */
  2484. snd_ac97_write_cache(ac97, AC97_ALC650_SURR_DAC_VOL, 0x0808);
  2485. snd_ac97_write_cache(ac97, AC97_ALC650_LFE_DAC_VOL, 0x0808);
  2486. /* update undocumented bit... */
  2487. if (ac97->id == AC97_ID_ALC658D)
  2488. snd_ac97_update_bits(ac97, 0x74, 0x0800, 0x0800);
  2489. return 0;
  2490. }
  2491. #define AC97_ALC850_JACK_SELECT 0x76
  2492. #define AC97_ALC850_MISC1 0x7a
  2493. #define AC97_ALC850_MULTICH 0x6a
  2494. static void alc850_update_jacks(struct snd_ac97 *ac97)
  2495. {
  2496. int shared;
  2497. int aux_is_back_surround;
  2498. /* shared Line-In / Surround Out */
  2499. shared = is_shared_surrout(ac97);
  2500. /* SURR 1kOhm (bit4), Amp (bit5) */
  2501. snd_ac97_update_bits(ac97, AC97_ALC850_MISC1, (1<<4)|(1<<5),
  2502. shared ? (1<<5) : (1<<4));
  2503. /* LINE-IN = 0, SURROUND = 2 */
  2504. snd_ac97_update_bits(ac97, AC97_ALC850_JACK_SELECT, 7 << 12,
  2505. shared ? (2<<12) : (0<<12));
  2506. /* update shared Mic In / Center/LFE Out */
  2507. shared = is_shared_clfeout(ac97);
  2508. /* Vref disable (bit12), 1kOhm (bit13) */
  2509. snd_ac97_update_bits(ac97, AC97_ALC850_MISC1, (1<<12)|(1<<13),
  2510. shared ? (1<<12) : (1<<13));
  2511. /* MIC-IN = 1, CENTER-LFE = 5 */
  2512. snd_ac97_update_bits(ac97, AC97_ALC850_JACK_SELECT, 7 << 4,
  2513. shared ? (5<<4) : (1<<4));
  2514. aux_is_back_surround = alc850_is_aux_back_surround(ac97);
  2515. /* Aux is Back Surround */
  2516. snd_ac97_update_bits(ac97, AC97_ALC850_MULTICH, 1 << 10,
  2517. aux_is_back_surround ? (1<<10) : (0<<10));
  2518. }
  2519. static const struct snd_kcontrol_new snd_ac97_controls_alc850[] = {
  2520. AC97_PAGE_SINGLE("Duplicate Front", AC97_ALC650_MULTICH, 0, 1, 0, 0),
  2521. AC97_SINGLE("Mic Front Input Switch", AC97_ALC850_JACK_SELECT, 15, 1, 1),
  2522. AC97_SURROUND_JACK_MODE_CTL,
  2523. AC97_CHANNEL_MODE_8CH_CTL,
  2524. };
  2525. static int patch_alc850_specific(struct snd_ac97 *ac97)
  2526. {
  2527. int err;
  2528. if ((err = patch_build_controls(ac97, snd_ac97_controls_alc850, ARRAY_SIZE(snd_ac97_controls_alc850))) < 0)
  2529. return err;
  2530. if (ac97->ext_id & AC97_EI_SPDIF) {
  2531. if ((err = patch_build_controls(ac97, snd_ac97_spdif_controls_alc655, ARRAY_SIZE(snd_ac97_spdif_controls_alc655))) < 0)
  2532. return err;
  2533. }
  2534. return 0;
  2535. }
  2536. static const struct snd_ac97_build_ops patch_alc850_ops = {
  2537. .build_specific = patch_alc850_specific,
  2538. .update_jacks = alc850_update_jacks
  2539. };
  2540. static int patch_alc850(struct snd_ac97 *ac97)
  2541. {
  2542. ac97->build_ops = &patch_alc850_ops;
  2543. ac97->spec.dev_flags = 0; /* for IEC958 playback route - ALC655 compatible */
  2544. ac97->flags |= AC97_HAS_8CH;
  2545. /* assume only page 0 for writing cache */
  2546. snd_ac97_update_bits(ac97, AC97_INT_PAGING, AC97_PAGE_MASK, AC97_PAGE_VENDOR);
  2547. /* adjust default values */
  2548. /* set default: spdif-in enabled,
  2549. spdif-in monitor off, spdif-in PCM off
  2550. center on mic off, surround on line-in off
  2551. duplicate front off
  2552. NB default bit 10=0 = Aux is Capture, not Back Surround
  2553. */
  2554. snd_ac97_write_cache(ac97, AC97_ALC650_MULTICH, 1<<15);
  2555. /* SURR_OUT: on, Surr 1kOhm: on, Surr Amp: off, Front 1kOhm: off
  2556. * Front Amp: on, Vref: enable, Center 1kOhm: on, Mix: on
  2557. */
  2558. snd_ac97_write_cache(ac97, 0x7a, (1<<1)|(1<<4)|(0<<5)|(1<<6)|
  2559. (1<<7)|(0<<12)|(1<<13)|(0<<14));
  2560. /* detection UIO2,3: all path floating, UIO3: MIC, Vref2: disable,
  2561. * UIO1: FRONT, Vref3: disable, UIO3: LINE, Front-Mic: mute
  2562. */
  2563. snd_ac97_write_cache(ac97, 0x76, (0<<0)|(0<<2)|(1<<4)|(1<<7)|(2<<8)|
  2564. (1<<11)|(0<<12)|(1<<15));
  2565. /* full DAC volume */
  2566. snd_ac97_write_cache(ac97, AC97_ALC650_SURR_DAC_VOL, 0x0808);
  2567. snd_ac97_write_cache(ac97, AC97_ALC650_LFE_DAC_VOL, 0x0808);
  2568. return 0;
  2569. }
  2570. static int patch_aztech_azf3328_specific(struct snd_ac97 *ac97)
  2571. {
  2572. struct snd_kcontrol *kctl_3d_center =
  2573. snd_ac97_find_mixer_ctl(ac97, "3D Control - Center");
  2574. struct snd_kcontrol *kctl_3d_depth =
  2575. snd_ac97_find_mixer_ctl(ac97, "3D Control - Depth");
  2576. /*
  2577. * 3D register is different from AC97 standard layout
  2578. * (also do some renaming, to resemble Windows driver naming)
  2579. */
  2580. if (kctl_3d_center) {
  2581. kctl_3d_center->private_value =
  2582. AC97_SINGLE_VALUE(AC97_3D_CONTROL, 1, 0x07, 0);
  2583. snd_ac97_rename_vol_ctl(ac97,
  2584. "3D Control - Center", "3D Control - Width"
  2585. );
  2586. }
  2587. if (kctl_3d_depth)
  2588. kctl_3d_depth->private_value =
  2589. AC97_SINGLE_VALUE(AC97_3D_CONTROL, 8, 0x03, 0);
  2590. /* Aztech Windows driver calls the
  2591. equivalent control "Modem Playback", thus rename it: */
  2592. snd_ac97_rename_vol_ctl(ac97,
  2593. "Master Mono Playback", "Modem Playback"
  2594. );
  2595. snd_ac97_rename_vol_ctl(ac97,
  2596. "Headphone Playback", "FM Synth Playback"
  2597. );
  2598. return 0;
  2599. }
  2600. static const struct snd_ac97_build_ops patch_aztech_azf3328_ops = {
  2601. .build_specific = patch_aztech_azf3328_specific
  2602. };
  2603. static int patch_aztech_azf3328(struct snd_ac97 *ac97)
  2604. {
  2605. ac97->build_ops = &patch_aztech_azf3328_ops;
  2606. return 0;
  2607. }
  2608. /*
  2609. * C-Media CM97xx codecs
  2610. */
  2611. static void cm9738_update_jacks(struct snd_ac97 *ac97)
  2612. {
  2613. /* shared Line-In / Surround Out */
  2614. snd_ac97_update_bits(ac97, AC97_CM9738_VENDOR_CTRL, 1 << 10,
  2615. is_shared_surrout(ac97) ? (1 << 10) : 0);
  2616. }
  2617. static const struct snd_kcontrol_new snd_ac97_cm9738_controls[] = {
  2618. AC97_SINGLE("Duplicate Front", AC97_CM9738_VENDOR_CTRL, 13, 1, 0),
  2619. AC97_SURROUND_JACK_MODE_CTL,
  2620. AC97_CHANNEL_MODE_4CH_CTL,
  2621. };
  2622. static int patch_cm9738_specific(struct snd_ac97 * ac97)
  2623. {
  2624. return patch_build_controls(ac97, snd_ac97_cm9738_controls, ARRAY_SIZE(snd_ac97_cm9738_controls));
  2625. }
  2626. static const struct snd_ac97_build_ops patch_cm9738_ops = {
  2627. .build_specific = patch_cm9738_specific,
  2628. .update_jacks = cm9738_update_jacks
  2629. };
  2630. static int patch_cm9738(struct snd_ac97 * ac97)
  2631. {
  2632. ac97->build_ops = &patch_cm9738_ops;
  2633. /* FIXME: can anyone confirm below? */
  2634. /* CM9738 has no PCM volume although the register reacts */
  2635. ac97->flags |= AC97_HAS_NO_PCM_VOL;
  2636. snd_ac97_write_cache(ac97, AC97_PCM, 0x8000);
  2637. return 0;
  2638. }
  2639. static int snd_ac97_cmedia_spdif_playback_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  2640. {
  2641. static char *texts[] = { "Analog", "Digital" };
  2642. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  2643. uinfo->count = 1;
  2644. uinfo->value.enumerated.items = 2;
  2645. if (uinfo->value.enumerated.item > 1)
  2646. uinfo->value.enumerated.item = 1;
  2647. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  2648. return 0;
  2649. }
  2650. static int snd_ac97_cmedia_spdif_playback_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2651. {
  2652. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2653. unsigned short val;
  2654. val = ac97->regs[AC97_CM9739_SPDIF_CTRL];
  2655. ucontrol->value.enumerated.item[0] = (val >> 1) & 0x01;
  2656. return 0;
  2657. }
  2658. static int snd_ac97_cmedia_spdif_playback_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2659. {
  2660. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2661. return snd_ac97_update_bits(ac97, AC97_CM9739_SPDIF_CTRL,
  2662. 0x01 << 1,
  2663. (ucontrol->value.enumerated.item[0] & 0x01) << 1);
  2664. }
  2665. static const struct snd_kcontrol_new snd_ac97_cm9739_controls_spdif[] = {
  2666. /* BIT 0: SPDI_EN - always true */
  2667. { /* BIT 1: SPDIFS */
  2668. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2669. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
  2670. .info = snd_ac97_cmedia_spdif_playback_source_info,
  2671. .get = snd_ac97_cmedia_spdif_playback_source_get,
  2672. .put = snd_ac97_cmedia_spdif_playback_source_put,
  2673. },
  2674. /* BIT 2: IG_SPIV */
  2675. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Valid Switch", AC97_CM9739_SPDIF_CTRL, 2, 1, 0),
  2676. /* BIT 3: SPI2F */
  2677. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Monitor", AC97_CM9739_SPDIF_CTRL, 3, 1, 0),
  2678. /* BIT 4: SPI2SDI */
  2679. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_CM9739_SPDIF_CTRL, 4, 1, 0),
  2680. /* BIT 8: SPD32 - 32bit SPDIF - not supported yet */
  2681. };
  2682. static void cm9739_update_jacks(struct snd_ac97 *ac97)
  2683. {
  2684. /* shared Line-In / Surround Out */
  2685. snd_ac97_update_bits(ac97, AC97_CM9739_MULTI_CHAN, 1 << 10,
  2686. is_shared_surrout(ac97) ? (1 << 10) : 0);
  2687. /* shared Mic In / Center/LFE Out **/
  2688. snd_ac97_update_bits(ac97, AC97_CM9739_MULTI_CHAN, 0x3000,
  2689. is_shared_clfeout(ac97) ? 0x1000 : 0x2000);
  2690. }
  2691. static const struct snd_kcontrol_new snd_ac97_cm9739_controls[] = {
  2692. AC97_SURROUND_JACK_MODE_CTL,
  2693. AC97_CHANNEL_MODE_CTL,
  2694. };
  2695. static int patch_cm9739_specific(struct snd_ac97 * ac97)
  2696. {
  2697. return patch_build_controls(ac97, snd_ac97_cm9739_controls, ARRAY_SIZE(snd_ac97_cm9739_controls));
  2698. }
  2699. static int patch_cm9739_post_spdif(struct snd_ac97 * ac97)
  2700. {
  2701. return patch_build_controls(ac97, snd_ac97_cm9739_controls_spdif, ARRAY_SIZE(snd_ac97_cm9739_controls_spdif));
  2702. }
  2703. static const struct snd_ac97_build_ops patch_cm9739_ops = {
  2704. .build_specific = patch_cm9739_specific,
  2705. .build_post_spdif = patch_cm9739_post_spdif,
  2706. .update_jacks = cm9739_update_jacks
  2707. };
  2708. static int patch_cm9739(struct snd_ac97 * ac97)
  2709. {
  2710. unsigned short val;
  2711. ac97->build_ops = &patch_cm9739_ops;
  2712. /* CM9739/A has no Master and PCM volume although the register reacts */
  2713. ac97->flags |= AC97_HAS_NO_MASTER_VOL | AC97_HAS_NO_PCM_VOL;
  2714. snd_ac97_write_cache(ac97, AC97_MASTER, 0x8000);
  2715. snd_ac97_write_cache(ac97, AC97_PCM, 0x8000);
  2716. /* check spdif */
  2717. val = snd_ac97_read(ac97, AC97_EXTENDED_STATUS);
  2718. if (val & AC97_EA_SPCV) {
  2719. /* enable spdif in */
  2720. snd_ac97_write_cache(ac97, AC97_CM9739_SPDIF_CTRL,
  2721. snd_ac97_read(ac97, AC97_CM9739_SPDIF_CTRL) | 0x01);
  2722. ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
  2723. } else {
  2724. ac97->ext_id &= ~AC97_EI_SPDIF; /* disable extended-id */
  2725. ac97->rates[AC97_RATES_SPDIF] = 0;
  2726. }
  2727. /* set-up multi channel */
  2728. /* bit 14: 0 = SPDIF, 1 = EAPD */
  2729. /* bit 13: enable internal vref output for mic */
  2730. /* bit 12: disable center/lfe (swithable) */
  2731. /* bit 10: disable surround/line (switchable) */
  2732. /* bit 9: mix 2 surround off */
  2733. /* bit 4: undocumented; 0 mutes the CM9739A, which defaults to 1 */
  2734. /* bit 3: undocumented; surround? */
  2735. /* bit 0: dB */
  2736. val = snd_ac97_read(ac97, AC97_CM9739_MULTI_CHAN) & (1 << 4);
  2737. val |= (1 << 3);
  2738. val |= (1 << 13);
  2739. if (! (ac97->ext_id & AC97_EI_SPDIF))
  2740. val |= (1 << 14);
  2741. snd_ac97_write_cache(ac97, AC97_CM9739_MULTI_CHAN, val);
  2742. /* FIXME: set up GPIO */
  2743. snd_ac97_write_cache(ac97, 0x70, 0x0100);
  2744. snd_ac97_write_cache(ac97, 0x72, 0x0020);
  2745. /* Special exception for ASUS W1000/CMI9739. It does not have an SPDIF in. */
  2746. if (ac97->pci &&
  2747. ac97->subsystem_vendor == 0x1043 &&
  2748. ac97->subsystem_device == 0x1843) {
  2749. snd_ac97_write_cache(ac97, AC97_CM9739_SPDIF_CTRL,
  2750. snd_ac97_read(ac97, AC97_CM9739_SPDIF_CTRL) & ~0x01);
  2751. snd_ac97_write_cache(ac97, AC97_CM9739_MULTI_CHAN,
  2752. snd_ac97_read(ac97, AC97_CM9739_MULTI_CHAN) | (1 << 14));
  2753. }
  2754. return 0;
  2755. }
  2756. #define AC97_CM9761_MULTI_CHAN 0x64
  2757. #define AC97_CM9761_FUNC 0x66
  2758. #define AC97_CM9761_SPDIF_CTRL 0x6c
  2759. static void cm9761_update_jacks(struct snd_ac97 *ac97)
  2760. {
  2761. /* FIXME: check the bits for each model
  2762. * model 83 is confirmed to work
  2763. */
  2764. static unsigned short surr_on[3][2] = {
  2765. { 0x0008, 0x0000 }, /* 9761-78 & 82 */
  2766. { 0x0000, 0x0008 }, /* 9761-82 rev.B */
  2767. { 0x0000, 0x0008 }, /* 9761-83 */
  2768. };
  2769. static unsigned short clfe_on[3][2] = {
  2770. { 0x0000, 0x1000 }, /* 9761-78 & 82 */
  2771. { 0x1000, 0x0000 }, /* 9761-82 rev.B */
  2772. { 0x0000, 0x1000 }, /* 9761-83 */
  2773. };
  2774. static unsigned short surr_shared[3][2] = {
  2775. { 0x0000, 0x0400 }, /* 9761-78 & 82 */
  2776. { 0x0000, 0x0400 }, /* 9761-82 rev.B */
  2777. { 0x0000, 0x0400 }, /* 9761-83 */
  2778. };
  2779. static unsigned short clfe_shared[3][2] = {
  2780. { 0x2000, 0x0880 }, /* 9761-78 & 82 */
  2781. { 0x0000, 0x2880 }, /* 9761-82 rev.B */
  2782. { 0x2000, 0x0800 }, /* 9761-83 */
  2783. };
  2784. unsigned short val = 0;
  2785. val |= surr_on[ac97->spec.dev_flags][is_surround_on(ac97)];
  2786. val |= clfe_on[ac97->spec.dev_flags][is_clfe_on(ac97)];
  2787. val |= surr_shared[ac97->spec.dev_flags][is_shared_surrout(ac97)];
  2788. val |= clfe_shared[ac97->spec.dev_flags][is_shared_clfeout(ac97)];
  2789. snd_ac97_update_bits(ac97, AC97_CM9761_MULTI_CHAN, 0x3c88, val);
  2790. }
  2791. static const struct snd_kcontrol_new snd_ac97_cm9761_controls[] = {
  2792. AC97_SURROUND_JACK_MODE_CTL,
  2793. AC97_CHANNEL_MODE_CTL,
  2794. };
  2795. static int cm9761_spdif_out_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  2796. {
  2797. static char *texts[] = { "AC-Link", "ADC", "SPDIF-In" };
  2798. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  2799. uinfo->count = 1;
  2800. uinfo->value.enumerated.items = 3;
  2801. if (uinfo->value.enumerated.item > 2)
  2802. uinfo->value.enumerated.item = 2;
  2803. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  2804. return 0;
  2805. }
  2806. static int cm9761_spdif_out_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2807. {
  2808. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2809. if (ac97->regs[AC97_CM9761_FUNC] & 0x1)
  2810. ucontrol->value.enumerated.item[0] = 2; /* SPDIF-loopback */
  2811. else if (ac97->regs[AC97_CM9761_SPDIF_CTRL] & 0x2)
  2812. ucontrol->value.enumerated.item[0] = 1; /* ADC loopback */
  2813. else
  2814. ucontrol->value.enumerated.item[0] = 0; /* AC-link */
  2815. return 0;
  2816. }
  2817. static int cm9761_spdif_out_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2818. {
  2819. struct snd_ac97 *ac97 = snd_kcontrol_chip(kcontrol);
  2820. if (ucontrol->value.enumerated.item[0] == 2)
  2821. return snd_ac97_update_bits(ac97, AC97_CM9761_FUNC, 0x1, 0x1);
  2822. snd_ac97_update_bits(ac97, AC97_CM9761_FUNC, 0x1, 0);
  2823. return snd_ac97_update_bits(ac97, AC97_CM9761_SPDIF_CTRL, 0x2,
  2824. ucontrol->value.enumerated.item[0] == 1 ? 0x2 : 0);
  2825. }
  2826. static const char *cm9761_dac_clock[] = { "AC-Link", "SPDIF-In", "Both" };
  2827. static const struct ac97_enum cm9761_dac_clock_enum =
  2828. AC97_ENUM_SINGLE(AC97_CM9761_SPDIF_CTRL, 9, 3, cm9761_dac_clock);
  2829. static const struct snd_kcontrol_new snd_ac97_cm9761_controls_spdif[] = {
  2830. { /* BIT 1: SPDIFS */
  2831. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2832. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
  2833. .info = cm9761_spdif_out_source_info,
  2834. .get = cm9761_spdif_out_source_get,
  2835. .put = cm9761_spdif_out_source_put,
  2836. },
  2837. /* BIT 2: IG_SPIV */
  2838. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Valid Switch", AC97_CM9761_SPDIF_CTRL, 2, 1, 0),
  2839. /* BIT 3: SPI2F */
  2840. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,NONE) "Monitor", AC97_CM9761_SPDIF_CTRL, 3, 1, 0),
  2841. /* BIT 4: SPI2SDI */
  2842. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), AC97_CM9761_SPDIF_CTRL, 4, 1, 0),
  2843. /* BIT 9-10: DAC_CTL */
  2844. AC97_ENUM("DAC Clock Source", cm9761_dac_clock_enum),
  2845. };
  2846. static int patch_cm9761_post_spdif(struct snd_ac97 * ac97)
  2847. {
  2848. return patch_build_controls(ac97, snd_ac97_cm9761_controls_spdif, ARRAY_SIZE(snd_ac97_cm9761_controls_spdif));
  2849. }
  2850. static int patch_cm9761_specific(struct snd_ac97 * ac97)
  2851. {
  2852. return patch_build_controls(ac97, snd_ac97_cm9761_controls, ARRAY_SIZE(snd_ac97_cm9761_controls));
  2853. }
  2854. static const struct snd_ac97_build_ops patch_cm9761_ops = {
  2855. .build_specific = patch_cm9761_specific,
  2856. .build_post_spdif = patch_cm9761_post_spdif,
  2857. .update_jacks = cm9761_update_jacks
  2858. };
  2859. static int patch_cm9761(struct snd_ac97 *ac97)
  2860. {
  2861. unsigned short val;
  2862. /* CM9761 has no PCM volume although the register reacts */
  2863. /* Master volume seems to have _some_ influence on the analog
  2864. * input sounds
  2865. */
  2866. ac97->flags |= /*AC97_HAS_NO_MASTER_VOL |*/ AC97_HAS_NO_PCM_VOL;
  2867. snd_ac97_write_cache(ac97, AC97_MASTER, 0x8808);
  2868. snd_ac97_write_cache(ac97, AC97_PCM, 0x8808);
  2869. ac97->spec.dev_flags = 0; /* 1 = model 82 revision B, 2 = model 83 */
  2870. if (ac97->id == AC97_ID_CM9761_82) {
  2871. unsigned short tmp;
  2872. /* check page 1, reg 0x60 */
  2873. val = snd_ac97_read(ac97, AC97_INT_PAGING);
  2874. snd_ac97_write_cache(ac97, AC97_INT_PAGING, (val & ~0x0f) | 0x01);
  2875. tmp = snd_ac97_read(ac97, 0x60);
  2876. ac97->spec.dev_flags = tmp & 1; /* revision B? */
  2877. snd_ac97_write_cache(ac97, AC97_INT_PAGING, val);
  2878. } else if (ac97->id == AC97_ID_CM9761_83)
  2879. ac97->spec.dev_flags = 2;
  2880. ac97->build_ops = &patch_cm9761_ops;
  2881. /* enable spdif */
  2882. /* force the SPDIF bit in ext_id - codec doesn't set this bit! */
  2883. ac97->ext_id |= AC97_EI_SPDIF;
  2884. /* to be sure: we overwrite the ext status bits */
  2885. snd_ac97_write_cache(ac97, AC97_EXTENDED_STATUS, 0x05c0);
  2886. /* Don't set 0x0200 here. This results in the silent analog output */
  2887. snd_ac97_write_cache(ac97, AC97_CM9761_SPDIF_CTRL, 0x0001); /* enable spdif-in */
  2888. ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
  2889. /* set-up multi channel */
  2890. /* bit 15: pc master beep off
  2891. * bit 14: pin47 = EAPD/SPDIF
  2892. * bit 13: vref ctl [= cm9739]
  2893. * bit 12: CLFE control (reverted on rev B)
  2894. * bit 11: Mic/center share (reverted on rev B)
  2895. * bit 10: suddound/line share
  2896. * bit 9: Analog-in mix -> surround
  2897. * bit 8: Analog-in mix -> CLFE
  2898. * bit 7: Mic/LFE share (mic/center/lfe)
  2899. * bit 5: vref select (9761A)
  2900. * bit 4: front control
  2901. * bit 3: surround control (revereted with rev B)
  2902. * bit 2: front mic
  2903. * bit 1: stereo mic
  2904. * bit 0: mic boost level (0=20dB, 1=30dB)
  2905. */
  2906. #if 0
  2907. if (ac97->spec.dev_flags)
  2908. val = 0x0214;
  2909. else
  2910. val = 0x321c;
  2911. #endif
  2912. val = snd_ac97_read(ac97, AC97_CM9761_MULTI_CHAN);
  2913. val |= (1 << 4); /* front on */
  2914. snd_ac97_write_cache(ac97, AC97_CM9761_MULTI_CHAN, val);
  2915. /* FIXME: set up GPIO */
  2916. snd_ac97_write_cache(ac97, 0x70, 0x0100);
  2917. snd_ac97_write_cache(ac97, 0x72, 0x0020);
  2918. return 0;
  2919. }
  2920. #define AC97_CM9780_SIDE 0x60
  2921. #define AC97_CM9780_JACK 0x62
  2922. #define AC97_CM9780_MIXER 0x64
  2923. #define AC97_CM9780_MULTI_CHAN 0x66
  2924. #define AC97_CM9780_SPDIF 0x6c
  2925. static const char *cm9780_ch_select[] = { "Front", "Side", "Center/LFE", "Rear" };
  2926. static const struct ac97_enum cm9780_ch_select_enum =
  2927. AC97_ENUM_SINGLE(AC97_CM9780_MULTI_CHAN, 6, 4, cm9780_ch_select);
  2928. static const struct snd_kcontrol_new cm9780_controls[] = {
  2929. AC97_DOUBLE("Side Playback Switch", AC97_CM9780_SIDE, 15, 7, 1, 1),
  2930. AC97_DOUBLE("Side Playback Volume", AC97_CM9780_SIDE, 8, 0, 31, 0),
  2931. AC97_ENUM("Side Playback Route", cm9780_ch_select_enum),
  2932. };
  2933. static int patch_cm9780_specific(struct snd_ac97 *ac97)
  2934. {
  2935. return patch_build_controls(ac97, cm9780_controls, ARRAY_SIZE(cm9780_controls));
  2936. }
  2937. static const struct snd_ac97_build_ops patch_cm9780_ops = {
  2938. .build_specific = patch_cm9780_specific,
  2939. .build_post_spdif = patch_cm9761_post_spdif /* identical with CM9761 */
  2940. };
  2941. static int patch_cm9780(struct snd_ac97 *ac97)
  2942. {
  2943. unsigned short val;
  2944. ac97->build_ops = &patch_cm9780_ops;
  2945. /* enable spdif */
  2946. if (ac97->ext_id & AC97_EI_SPDIF) {
  2947. ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_48000; /* 48k only */
  2948. val = snd_ac97_read(ac97, AC97_CM9780_SPDIF);
  2949. val |= 0x1; /* SPDI_EN */
  2950. snd_ac97_write_cache(ac97, AC97_CM9780_SPDIF, val);
  2951. }
  2952. return 0;
  2953. }
  2954. /*
  2955. * VIA VT1616 codec
  2956. */
  2957. static const struct snd_kcontrol_new snd_ac97_controls_vt1616[] = {
  2958. AC97_SINGLE("DC Offset removal", 0x5a, 10, 1, 0),
  2959. AC97_SINGLE("Alternate Level to Surround Out", 0x5a, 15, 1, 0),
  2960. AC97_SINGLE("Downmix LFE and Center to Front", 0x5a, 12, 1, 0),
  2961. AC97_SINGLE("Downmix Surround to Front", 0x5a, 11, 1, 0),
  2962. };
  2963. static const char *slave_vols_vt1616[] = {
  2964. "Front Playback Volume",
  2965. "Surround Playback Volume",
  2966. "Center Playback Volume",
  2967. "LFE Playback Volume",
  2968. NULL
  2969. };
  2970. static const char *slave_sws_vt1616[] = {
  2971. "Front Playback Switch",
  2972. "Surround Playback Switch",
  2973. "Center Playback Switch",
  2974. "LFE Playback Switch",
  2975. NULL
  2976. };
  2977. /* find a mixer control element with the given name */
  2978. static struct snd_kcontrol *snd_ac97_find_mixer_ctl(struct snd_ac97 *ac97,
  2979. const char *name)
  2980. {
  2981. struct snd_ctl_elem_id id;
  2982. memset(&id, 0, sizeof(id));
  2983. id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  2984. strcpy(id.name, name);
  2985. return snd_ctl_find_id(ac97->bus->card, &id);
  2986. }
  2987. /* create a virtual master control and add slaves */
  2988. static int snd_ac97_add_vmaster(struct snd_ac97 *ac97, char *name,
  2989. const unsigned int *tlv, const char **slaves)
  2990. {
  2991. struct snd_kcontrol *kctl;
  2992. const char **s;
  2993. int err;
  2994. kctl = snd_ctl_make_virtual_master(name, tlv);
  2995. if (!kctl)
  2996. return -ENOMEM;
  2997. err = snd_ctl_add(ac97->bus->card, kctl);
  2998. if (err < 0)
  2999. return err;
  3000. for (s = slaves; *s; s++) {
  3001. struct snd_kcontrol *sctl;
  3002. sctl = snd_ac97_find_mixer_ctl(ac97, *s);
  3003. if (!sctl) {
  3004. snd_printdd("Cannot find slave %s, skipped\n", *s);
  3005. continue;
  3006. }
  3007. err = snd_ctl_add_slave(kctl, sctl);
  3008. if (err < 0)
  3009. return err;
  3010. }
  3011. return 0;
  3012. }
  3013. static int patch_vt1616_specific(struct snd_ac97 * ac97)
  3014. {
  3015. struct snd_kcontrol *kctl;
  3016. int err;
  3017. if (snd_ac97_try_bit(ac97, 0x5a, 9))
  3018. if ((err = patch_build_controls(ac97, &snd_ac97_controls_vt1616[0], 1)) < 0)
  3019. return err;
  3020. if ((err = patch_build_controls(ac97, &snd_ac97_controls_vt1616[1], ARRAY_SIZE(snd_ac97_controls_vt1616) - 1)) < 0)
  3021. return err;
  3022. /* There is already a misnamed master switch. Rename it. */
  3023. kctl = snd_ac97_find_mixer_ctl(ac97, "Master Playback Volume");
  3024. if (!kctl)
  3025. return -EINVAL;
  3026. snd_ac97_rename_vol_ctl(ac97, "Master Playback", "Front Playback");
  3027. err = snd_ac97_add_vmaster(ac97, "Master Playback Volume",
  3028. kctl->tlv.p, slave_vols_vt1616);
  3029. if (err < 0)
  3030. return err;
  3031. err = snd_ac97_add_vmaster(ac97, "Master Playback Switch",
  3032. NULL, slave_sws_vt1616);
  3033. if (err < 0)
  3034. return err;
  3035. return 0;
  3036. }
  3037. static const struct snd_ac97_build_ops patch_vt1616_ops = {
  3038. .build_specific = patch_vt1616_specific
  3039. };
  3040. static int patch_vt1616(struct snd_ac97 * ac97)
  3041. {
  3042. ac97->build_ops = &patch_vt1616_ops;
  3043. return 0;
  3044. }
  3045. /*
  3046. * VT1617A codec
  3047. */
  3048. /*
  3049. * unfortunately, the vt1617a stashes the twiddlers required for
  3050. * noodling the i/o jacks on 2 different regs. that means that we can't
  3051. * use the easy way provided by AC97_ENUM_DOUBLE() we have to write
  3052. * are own funcs.
  3053. *
  3054. * NB: this is absolutely and utterly different from the vt1618. dunno
  3055. * about the 1616.
  3056. */
  3057. /* copied from ac97_surround_jack_mode_info() */
  3058. static int snd_ac97_vt1617a_smart51_info(struct snd_kcontrol *kcontrol,
  3059. struct snd_ctl_elem_info *uinfo)
  3060. {
  3061. /* ordering in this list reflects vt1617a docs for Reg 20 and
  3062. * 7a and Table 6 that lays out the matrix NB WRT Table6: SM51
  3063. * is SM51EN *AND* it's Bit14, not Bit15 so the table is very
  3064. * counter-intuitive */
  3065. static const char* texts[] = { "LineIn Mic1", "LineIn Mic1 Mic3",
  3066. "Surr LFE/C Mic3", "LineIn LFE/C Mic3",
  3067. "LineIn Mic2", "LineIn Mic2 Mic1",
  3068. "Surr LFE Mic1", "Surr LFE Mic1 Mic2"};
  3069. return ac97_enum_text_info(kcontrol, uinfo, texts, 8);
  3070. }
  3071. static int snd_ac97_vt1617a_smart51_get(struct snd_kcontrol *kcontrol,
  3072. struct snd_ctl_elem_value *ucontrol)
  3073. {
  3074. ushort usSM51, usMS;
  3075. struct snd_ac97 *pac97;
  3076. pac97 = snd_kcontrol_chip(kcontrol); /* grab codec handle */
  3077. /* grab our desired bits, then mash them together in a manner
  3078. * consistent with Table 6 on page 17 in the 1617a docs */
  3079. usSM51 = snd_ac97_read(pac97, 0x7a) >> 14;
  3080. usMS = snd_ac97_read(pac97, 0x20) >> 8;
  3081. ucontrol->value.enumerated.item[0] = (usSM51 << 1) + usMS;
  3082. return 0;
  3083. }
  3084. static int snd_ac97_vt1617a_smart51_put(struct snd_kcontrol *kcontrol,
  3085. struct snd_ctl_elem_value *ucontrol)
  3086. {
  3087. ushort usSM51, usMS, usReg;
  3088. struct snd_ac97 *pac97;
  3089. pac97 = snd_kcontrol_chip(kcontrol); /* grab codec handle */
  3090. usSM51 = ucontrol->value.enumerated.item[0] >> 1;
  3091. usMS = ucontrol->value.enumerated.item[0] & 1;
  3092. /* push our values into the register - consider that things will be left
  3093. * in a funky state if the write fails */
  3094. usReg = snd_ac97_read(pac97, 0x7a);
  3095. snd_ac97_write_cache(pac97, 0x7a, (usReg & 0x3FFF) + (usSM51 << 14));
  3096. usReg = snd_ac97_read(pac97, 0x20);
  3097. snd_ac97_write_cache(pac97, 0x20, (usReg & 0xFEFF) + (usMS << 8));
  3098. return 0;
  3099. }
  3100. static const struct snd_kcontrol_new snd_ac97_controls_vt1617a[] = {
  3101. AC97_SINGLE("Center/LFE Exchange", 0x5a, 8, 1, 0),
  3102. /*
  3103. * These are used to enable/disable surround sound on motherboards
  3104. * that have 3 bidirectional analog jacks
  3105. */
  3106. {
  3107. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  3108. .name = "Smart 5.1 Select",
  3109. .info = snd_ac97_vt1617a_smart51_info,
  3110. .get = snd_ac97_vt1617a_smart51_get,
  3111. .put = snd_ac97_vt1617a_smart51_put,
  3112. },
  3113. };
  3114. static int patch_vt1617a(struct snd_ac97 * ac97)
  3115. {
  3116. int err = 0;
  3117. int val;
  3118. /* we choose to not fail out at this point, but we tell the
  3119. caller when we return */
  3120. err = patch_build_controls(ac97, &snd_ac97_controls_vt1617a[0],
  3121. ARRAY_SIZE(snd_ac97_controls_vt1617a));
  3122. /* bring analog power consumption to normal by turning off the
  3123. * headphone amplifier, like WinXP driver for EPIA SP
  3124. */
  3125. /* We need to check the bit before writing it.
  3126. * On some (many?) hardwares, setting bit actually clears it!
  3127. */
  3128. val = snd_ac97_read(ac97, 0x5c);
  3129. if (!(val & 0x20))
  3130. snd_ac97_write_cache(ac97, 0x5c, 0x20);
  3131. ac97->ext_id |= AC97_EI_SPDIF; /* force the detection of spdif */
  3132. ac97->rates[AC97_RATES_SPDIF] = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000;
  3133. ac97->build_ops = &patch_vt1616_ops;
  3134. return err;
  3135. }
  3136. /* VIA VT1618 8 CHANNEL AC97 CODEC
  3137. *
  3138. * VIA implements 'Smart 5.1' completely differently on the 1618 than
  3139. * it does on the 1617a. awesome! They seem to have sourced this
  3140. * particular revision of the technology from somebody else, it's
  3141. * called Universal Audio Jack and it shows up on some other folk's chips
  3142. * as well.
  3143. *
  3144. * ordering in this list reflects vt1618 docs for Reg 60h and
  3145. * the block diagram, DACs are as follows:
  3146. *
  3147. * OUT_O -> Front,
  3148. * OUT_1 -> Surround,
  3149. * OUT_2 -> C/LFE
  3150. *
  3151. * Unlike the 1617a, each OUT has a consistent set of mappings
  3152. * for all bitpatterns other than 00:
  3153. *
  3154. * 01 Unmixed Output
  3155. * 10 Line In
  3156. * 11 Mic In
  3157. *
  3158. * Special Case of 00:
  3159. *
  3160. * OUT_0 Mixed Output
  3161. * OUT_1 Reserved
  3162. * OUT_2 Reserved
  3163. *
  3164. * I have no idea what the hell Reserved does, but on an MSI
  3165. * CN700T, i have to set it to get 5.1 output - YMMV, bad
  3166. * shit may happen.
  3167. *
  3168. * If other chips use Universal Audio Jack, then this code might be applicable
  3169. * to them.
  3170. */
  3171. struct vt1618_uaj_item {
  3172. unsigned short mask;
  3173. unsigned short shift;
  3174. const char *items[4];
  3175. };
  3176. /* This list reflects the vt1618 docs for Vendor Defined Register 0x60. */
  3177. static struct vt1618_uaj_item vt1618_uaj[3] = {
  3178. {
  3179. /* speaker jack */
  3180. .mask = 0x03,
  3181. .shift = 0,
  3182. .items = {
  3183. "Speaker Out", "DAC Unmixed Out", "Line In", "Mic In"
  3184. }
  3185. },
  3186. {
  3187. /* line jack */
  3188. .mask = 0x0c,
  3189. .shift = 2,
  3190. .items = {
  3191. "Surround Out", "DAC Unmixed Out", "Line In", "Mic In"
  3192. }
  3193. },
  3194. {
  3195. /* mic jack */
  3196. .mask = 0x30,
  3197. .shift = 4,
  3198. .items = {
  3199. "Center LFE Out", "DAC Unmixed Out", "Line In", "Mic In"
  3200. },
  3201. },
  3202. };
  3203. static int snd_ac97_vt1618_UAJ_info(struct snd_kcontrol *kcontrol,
  3204. struct snd_ctl_elem_info *uinfo)
  3205. {
  3206. return ac97_enum_text_info(kcontrol, uinfo,
  3207. vt1618_uaj[kcontrol->private_value].items,
  3208. 4);
  3209. }
  3210. /* All of the vt1618 Universal Audio Jack twiddlers are on
  3211. * Vendor Defined Register 0x60, page 0. The bits, and thus
  3212. * the mask, are the only thing that changes
  3213. */
  3214. static int snd_ac97_vt1618_UAJ_get(struct snd_kcontrol *kcontrol,
  3215. struct snd_ctl_elem_value *ucontrol)
  3216. {
  3217. unsigned short datpag, uaj;
  3218. struct snd_ac97 *pac97 = snd_kcontrol_chip(kcontrol);
  3219. mutex_lock(&pac97->page_mutex);
  3220. datpag = snd_ac97_read(pac97, AC97_INT_PAGING) & AC97_PAGE_MASK;
  3221. snd_ac97_update_bits(pac97, AC97_INT_PAGING, AC97_PAGE_MASK, 0);
  3222. uaj = snd_ac97_read(pac97, 0x60) &
  3223. vt1618_uaj[kcontrol->private_value].mask;
  3224. snd_ac97_update_bits(pac97, AC97_INT_PAGING, AC97_PAGE_MASK, datpag);
  3225. mutex_unlock(&pac97->page_mutex);
  3226. ucontrol->value.enumerated.item[0] = uaj >>
  3227. vt1618_uaj[kcontrol->private_value].shift;
  3228. return 0;
  3229. }
  3230. static int snd_ac97_vt1618_UAJ_put(struct snd_kcontrol *kcontrol,
  3231. struct snd_ctl_elem_value *ucontrol)
  3232. {
  3233. return ac97_update_bits_page(snd_kcontrol_chip(kcontrol), 0x60,
  3234. vt1618_uaj[kcontrol->private_value].mask,
  3235. ucontrol->value.enumerated.item[0]<<
  3236. vt1618_uaj[kcontrol->private_value].shift,
  3237. 0);
  3238. }
  3239. /* config aux in jack - not found on 3 jack motherboards or soundcards */
  3240. static int snd_ac97_vt1618_aux_info(struct snd_kcontrol *kcontrol,
  3241. struct snd_ctl_elem_info *uinfo)
  3242. {
  3243. static const char *txt_aux[] = {"Aux In", "Back Surr Out"};
  3244. return ac97_enum_text_info(kcontrol, uinfo, txt_aux, 2);
  3245. }
  3246. static int snd_ac97_vt1618_aux_get(struct snd_kcontrol *kcontrol,
  3247. struct snd_ctl_elem_value *ucontrol)
  3248. {
  3249. ucontrol->value.enumerated.item[0] =
  3250. (snd_ac97_read(snd_kcontrol_chip(kcontrol), 0x5c) & 0x0008)>>3;
  3251. return 0;
  3252. }
  3253. static int snd_ac97_vt1618_aux_put(struct snd_kcontrol *kcontrol,
  3254. struct snd_ctl_elem_value *ucontrol)
  3255. {
  3256. /* toggle surround rear dac power */
  3257. snd_ac97_update_bits(snd_kcontrol_chip(kcontrol), 0x5c, 0x0008,
  3258. ucontrol->value.enumerated.item[0] << 3);
  3259. /* toggle aux in surround rear out jack */
  3260. return snd_ac97_update_bits(snd_kcontrol_chip(kcontrol), 0x76, 0x0008,
  3261. ucontrol->value.enumerated.item[0] << 3);
  3262. }
  3263. static const struct snd_kcontrol_new snd_ac97_controls_vt1618[] = {
  3264. AC97_SINGLE("Exchange Center/LFE", 0x5a, 8, 1, 0),
  3265. AC97_SINGLE("DC Offset", 0x5a, 10, 1, 0),
  3266. AC97_SINGLE("Soft Mute", 0x5c, 0, 1, 1),
  3267. AC97_SINGLE("Headphone Amp", 0x5c, 5, 1, 1),
  3268. AC97_DOUBLE("Back Surr Volume", 0x5e, 8, 0, 31, 1),
  3269. AC97_SINGLE("Back Surr Switch", 0x5e, 15, 1, 1),
  3270. {
  3271. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  3272. .name = "Speaker Jack Mode",
  3273. .info = snd_ac97_vt1618_UAJ_info,
  3274. .get = snd_ac97_vt1618_UAJ_get,
  3275. .put = snd_ac97_vt1618_UAJ_put,
  3276. .private_value = 0
  3277. },
  3278. {
  3279. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  3280. .name = "Line Jack Mode",
  3281. .info = snd_ac97_vt1618_UAJ_info,
  3282. .get = snd_ac97_vt1618_UAJ_get,
  3283. .put = snd_ac97_vt1618_UAJ_put,
  3284. .private_value = 1
  3285. },
  3286. {
  3287. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  3288. .name = "Mic Jack Mode",
  3289. .info = snd_ac97_vt1618_UAJ_info,
  3290. .get = snd_ac97_vt1618_UAJ_get,
  3291. .put = snd_ac97_vt1618_UAJ_put,
  3292. .private_value = 2
  3293. },
  3294. {
  3295. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  3296. .name = "Aux Jack Mode",
  3297. .info = snd_ac97_vt1618_aux_info,
  3298. .get = snd_ac97_vt1618_aux_get,
  3299. .put = snd_ac97_vt1618_aux_put,
  3300. }
  3301. };
  3302. static int patch_vt1618(struct snd_ac97 *ac97)
  3303. {
  3304. return patch_build_controls(ac97, snd_ac97_controls_vt1618,
  3305. ARRAY_SIZE(snd_ac97_controls_vt1618));
  3306. }
  3307. /*
  3308. */
  3309. static void it2646_update_jacks(struct snd_ac97 *ac97)
  3310. {
  3311. /* shared Line-In / Surround Out */
  3312. snd_ac97_update_bits(ac97, 0x76, 1 << 9,
  3313. is_shared_surrout(ac97) ? (1<<9) : 0);
  3314. /* shared Mic / Center/LFE Out */
  3315. snd_ac97_update_bits(ac97, 0x76, 1 << 10,
  3316. is_shared_clfeout(ac97) ? (1<<10) : 0);
  3317. }
  3318. static const struct snd_kcontrol_new snd_ac97_controls_it2646[] = {
  3319. AC97_SURROUND_JACK_MODE_CTL,
  3320. AC97_CHANNEL_MODE_CTL,
  3321. };
  3322. static const struct snd_kcontrol_new snd_ac97_spdif_controls_it2646[] = {
  3323. AC97_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), 0x76, 11, 1, 0),
  3324. AC97_SINGLE("Analog to IEC958 Output", 0x76, 12, 1, 0),
  3325. AC97_SINGLE("IEC958 Input Monitor", 0x76, 13, 1, 0),
  3326. };
  3327. static int patch_it2646_specific(struct snd_ac97 * ac97)
  3328. {
  3329. int err;
  3330. if ((err = patch_build_controls(ac97, snd_ac97_controls_it2646, ARRAY_SIZE(snd_ac97_controls_it2646))) < 0)
  3331. return err;
  3332. if ((err = patch_build_controls(ac97, snd_ac97_spdif_controls_it2646, ARRAY_SIZE(snd_ac97_spdif_controls_it2646))) < 0)
  3333. return err;
  3334. return 0;
  3335. }
  3336. static const struct snd_ac97_build_ops patch_it2646_ops = {
  3337. .build_specific = patch_it2646_specific,
  3338. .update_jacks = it2646_update_jacks
  3339. };
  3340. static int patch_it2646(struct snd_ac97 * ac97)
  3341. {
  3342. ac97->build_ops = &patch_it2646_ops;
  3343. /* full DAC volume */
  3344. snd_ac97_write_cache(ac97, 0x5E, 0x0808);
  3345. snd_ac97_write_cache(ac97, 0x7A, 0x0808);
  3346. return 0;
  3347. }
  3348. /*
  3349. * Si3036 codec
  3350. */
  3351. #define AC97_SI3036_CHIP_ID 0x5a
  3352. #define AC97_SI3036_LINE_CFG 0x5c
  3353. static const struct snd_kcontrol_new snd_ac97_controls_si3036[] = {
  3354. AC97_DOUBLE("Modem Speaker Volume", 0x5c, 14, 12, 3, 1)
  3355. };
  3356. static int patch_si3036_specific(struct snd_ac97 * ac97)
  3357. {
  3358. int idx, err;
  3359. for (idx = 0; idx < ARRAY_SIZE(snd_ac97_controls_si3036); idx++)
  3360. if ((err = snd_ctl_add(ac97->bus->card, snd_ctl_new1(&snd_ac97_controls_si3036[idx], ac97))) < 0)
  3361. return err;
  3362. return 0;
  3363. }
  3364. static const struct snd_ac97_build_ops patch_si3036_ops = {
  3365. .build_specific = patch_si3036_specific,
  3366. };
  3367. static int mpatch_si3036(struct snd_ac97 * ac97)
  3368. {
  3369. ac97->build_ops = &patch_si3036_ops;
  3370. snd_ac97_write_cache(ac97, 0x5c, 0xf210 );
  3371. snd_ac97_write_cache(ac97, 0x68, 0);
  3372. return 0;
  3373. }
  3374. /*
  3375. * LM 4550 Codec
  3376. *
  3377. * We use a static resolution table since LM4550 codec cannot be
  3378. * properly autoprobed to determine the resolution via
  3379. * check_volume_resolution().
  3380. */
  3381. static struct snd_ac97_res_table lm4550_restbl[] = {
  3382. { AC97_MASTER, 0x1f1f },
  3383. { AC97_HEADPHONE, 0x1f1f },
  3384. { AC97_MASTER_MONO, 0x001f },
  3385. { AC97_PC_BEEP, 0x001f }, /* LSB is ignored */
  3386. { AC97_PHONE, 0x001f },
  3387. { AC97_MIC, 0x001f },
  3388. { AC97_LINE, 0x1f1f },
  3389. { AC97_CD, 0x1f1f },
  3390. { AC97_VIDEO, 0x1f1f },
  3391. { AC97_AUX, 0x1f1f },
  3392. { AC97_PCM, 0x1f1f },
  3393. { AC97_REC_GAIN, 0x0f0f },
  3394. { } /* terminator */
  3395. };
  3396. static int patch_lm4550(struct snd_ac97 *ac97)
  3397. {
  3398. ac97->res_table = lm4550_restbl;
  3399. return 0;
  3400. }
  3401. /*
  3402. * UCB1400 codec (http://www.semiconductors.philips.com/acrobat_download/datasheets/UCB1400-02.pdf)
  3403. */
  3404. static const struct snd_kcontrol_new snd_ac97_controls_ucb1400[] = {
  3405. /* enable/disable headphone driver which allows direct connection to
  3406. stereo headphone without the use of external DC blocking
  3407. capacitors */
  3408. AC97_SINGLE("Headphone Driver", 0x6a, 6, 1, 0),
  3409. /* Filter used to compensate the DC offset is added in the ADC to remove idle
  3410. tones from the audio band. */
  3411. AC97_SINGLE("DC Filter", 0x6a, 4, 1, 0),
  3412. /* Control smart-low-power mode feature. Allows automatic power down
  3413. of unused blocks in the ADC analog front end and the PLL. */
  3414. AC97_SINGLE("Smart Low Power Mode", 0x6c, 4, 3, 0),
  3415. };
  3416. static int patch_ucb1400_specific(struct snd_ac97 * ac97)
  3417. {
  3418. int idx, err;
  3419. for (idx = 0; idx < ARRAY_SIZE(snd_ac97_controls_ucb1400); idx++)
  3420. if ((err = snd_ctl_add(ac97->bus->card, snd_ctl_new1(&snd_ac97_controls_ucb1400[idx], ac97))) < 0)
  3421. return err;
  3422. return 0;
  3423. }
  3424. static const struct snd_ac97_build_ops patch_ucb1400_ops = {
  3425. .build_specific = patch_ucb1400_specific,
  3426. };
  3427. static int patch_ucb1400(struct snd_ac97 * ac97)
  3428. {
  3429. ac97->build_ops = &patch_ucb1400_ops;
  3430. /* enable headphone driver and smart low power mode by default */
  3431. snd_ac97_write_cache(ac97, 0x6a, 0x0050);
  3432. snd_ac97_write_cache(ac97, 0x6c, 0x0030);
  3433. return 0;
  3434. }