patch_sigmatel.c 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597
  1. /*
  2. * Universal Interface for Intel High Definition Audio Codec
  3. *
  4. * HD audio interface patch for SigmaTel STAC92xx
  5. *
  6. * Copyright (c) 2005 Embedded Alley Solutions, Inc.
  7. * Matt Porter <mporter@embeddedalley.com>
  8. *
  9. * Based on patch_cmedia.c and patch_realtek.c
  10. * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
  11. *
  12. * This driver is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This driver is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. */
  26. #include <linux/init.h>
  27. #include <linux/delay.h>
  28. #include <linux/slab.h>
  29. #include <linux/pci.h>
  30. #include <linux/dmi.h>
  31. #include <linux/module.h>
  32. #include <sound/core.h>
  33. #include <sound/asoundef.h>
  34. #include <sound/jack.h>
  35. #include <sound/tlv.h>
  36. #include "hda_codec.h"
  37. #include "hda_local.h"
  38. #include "hda_auto_parser.h"
  39. #include "hda_beep.h"
  40. #include "hda_jack.h"
  41. enum {
  42. STAC_VREF_EVENT = 1,
  43. STAC_INSERT_EVENT,
  44. STAC_PWR_EVENT,
  45. STAC_HP_EVENT,
  46. STAC_LO_EVENT,
  47. STAC_MIC_EVENT,
  48. };
  49. enum {
  50. STAC_AUTO,
  51. STAC_REF,
  52. STAC_9200_OQO,
  53. STAC_9200_DELL_D21,
  54. STAC_9200_DELL_D22,
  55. STAC_9200_DELL_D23,
  56. STAC_9200_DELL_M21,
  57. STAC_9200_DELL_M22,
  58. STAC_9200_DELL_M23,
  59. STAC_9200_DELL_M24,
  60. STAC_9200_DELL_M25,
  61. STAC_9200_DELL_M26,
  62. STAC_9200_DELL_M27,
  63. STAC_9200_M4,
  64. STAC_9200_M4_2,
  65. STAC_9200_PANASONIC,
  66. STAC_9200_MODELS
  67. };
  68. enum {
  69. STAC_9205_AUTO,
  70. STAC_9205_REF,
  71. STAC_9205_DELL_M42,
  72. STAC_9205_DELL_M43,
  73. STAC_9205_DELL_M44,
  74. STAC_9205_EAPD,
  75. STAC_9205_MODELS
  76. };
  77. enum {
  78. STAC_92HD73XX_AUTO,
  79. STAC_92HD73XX_NO_JD, /* no jack-detection */
  80. STAC_92HD73XX_REF,
  81. STAC_92HD73XX_INTEL,
  82. STAC_DELL_M6_AMIC,
  83. STAC_DELL_M6_DMIC,
  84. STAC_DELL_M6_BOTH,
  85. STAC_DELL_EQ,
  86. STAC_ALIENWARE_M17X,
  87. STAC_92HD73XX_MODELS
  88. };
  89. enum {
  90. STAC_92HD83XXX_AUTO,
  91. STAC_92HD83XXX_REF,
  92. STAC_92HD83XXX_PWR_REF,
  93. STAC_DELL_S14,
  94. STAC_DELL_VOSTRO_3500,
  95. STAC_92HD83XXX_HP_cNB11_INTQUAD,
  96. STAC_HP_DV7_4000,
  97. STAC_HP_ZEPHYR,
  98. STAC_92HD83XXX_HP_LED,
  99. STAC_92HD83XXX_HP_INV_LED,
  100. STAC_92HD83XXX_HP_MIC_LED,
  101. STAC_92HD83XXX_HEADSET_JACK,
  102. STAC_92HD83XXX_MODELS
  103. };
  104. enum {
  105. STAC_92HD71BXX_AUTO,
  106. STAC_92HD71BXX_REF,
  107. STAC_DELL_M4_1,
  108. STAC_DELL_M4_2,
  109. STAC_DELL_M4_3,
  110. STAC_HP_M4,
  111. STAC_HP_DV4,
  112. STAC_HP_DV5,
  113. STAC_HP_HDX,
  114. STAC_HP_DV4_1222NR,
  115. STAC_92HD71BXX_MODELS
  116. };
  117. enum {
  118. STAC_925x_AUTO,
  119. STAC_925x_REF,
  120. STAC_M1,
  121. STAC_M1_2,
  122. STAC_M2,
  123. STAC_M2_2,
  124. STAC_M3,
  125. STAC_M5,
  126. STAC_M6,
  127. STAC_925x_MODELS
  128. };
  129. enum {
  130. STAC_922X_AUTO,
  131. STAC_D945_REF,
  132. STAC_D945GTP3,
  133. STAC_D945GTP5,
  134. STAC_INTEL_MAC_V1,
  135. STAC_INTEL_MAC_V2,
  136. STAC_INTEL_MAC_V3,
  137. STAC_INTEL_MAC_V4,
  138. STAC_INTEL_MAC_V5,
  139. STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
  140. * is given, one of the above models will be
  141. * chosen according to the subsystem id. */
  142. /* for backward compatibility */
  143. STAC_MACMINI,
  144. STAC_MACBOOK,
  145. STAC_MACBOOK_PRO_V1,
  146. STAC_MACBOOK_PRO_V2,
  147. STAC_IMAC_INTEL,
  148. STAC_IMAC_INTEL_20,
  149. STAC_ECS_202,
  150. STAC_922X_DELL_D81,
  151. STAC_922X_DELL_D82,
  152. STAC_922X_DELL_M81,
  153. STAC_922X_DELL_M82,
  154. STAC_922X_MODELS
  155. };
  156. enum {
  157. STAC_927X_AUTO,
  158. STAC_D965_REF_NO_JD, /* no jack-detection */
  159. STAC_D965_REF,
  160. STAC_D965_3ST,
  161. STAC_D965_5ST,
  162. STAC_D965_5ST_NO_FP,
  163. STAC_DELL_3ST,
  164. STAC_DELL_BIOS,
  165. STAC_927X_VOLKNOB,
  166. STAC_927X_MODELS
  167. };
  168. enum {
  169. STAC_9872_AUTO,
  170. STAC_9872_VAIO,
  171. STAC_9872_MODELS
  172. };
  173. struct sigmatel_mic_route {
  174. hda_nid_t pin;
  175. signed char mux_idx;
  176. signed char dmux_idx;
  177. };
  178. #define MAX_PINS_NUM 16
  179. #define MAX_ADCS_NUM 4
  180. #define MAX_DMICS_NUM 4
  181. struct sigmatel_spec {
  182. struct snd_kcontrol_new *mixers[4];
  183. unsigned int num_mixers;
  184. int board_config;
  185. unsigned int eapd_switch: 1;
  186. unsigned int surr_switch: 1;
  187. unsigned int alt_switch: 1;
  188. unsigned int hp_detect: 1;
  189. unsigned int spdif_mute: 1;
  190. unsigned int check_volume_offset:1;
  191. unsigned int auto_mic:1;
  192. unsigned int linear_tone_beep:1;
  193. unsigned int headset_jack:1; /* 4-pin headset jack (hp + mono mic) */
  194. /* gpio lines */
  195. unsigned int eapd_mask;
  196. unsigned int gpio_mask;
  197. unsigned int gpio_dir;
  198. unsigned int gpio_data;
  199. unsigned int gpio_mute;
  200. unsigned int gpio_led;
  201. unsigned int gpio_led_polarity;
  202. unsigned int vref_mute_led_nid; /* pin NID for mute-LED vref control */
  203. unsigned int vref_led;
  204. unsigned int mic_mute_led_gpio; /* capture mute LED GPIO */
  205. bool mic_mute_led_on; /* current mic mute state */
  206. /* stream */
  207. unsigned int stream_delay;
  208. /* analog loopback */
  209. const struct snd_kcontrol_new *aloopback_ctl;
  210. unsigned char aloopback_mask;
  211. unsigned char aloopback_shift;
  212. /* power management */
  213. unsigned int power_map_bits;
  214. unsigned int num_pwrs;
  215. const hda_nid_t *pwr_nids;
  216. const hda_nid_t *dac_list;
  217. /* playback */
  218. struct hda_input_mux *mono_mux;
  219. unsigned int cur_mmux;
  220. struct hda_multi_out multiout;
  221. hda_nid_t dac_nids[5];
  222. hda_nid_t hp_dacs[5];
  223. hda_nid_t speaker_dacs[5];
  224. int volume_offset;
  225. /* capture */
  226. const hda_nid_t *adc_nids;
  227. unsigned int num_adcs;
  228. const hda_nid_t *mux_nids;
  229. unsigned int num_muxes;
  230. const hda_nid_t *dmic_nids;
  231. unsigned int num_dmics;
  232. const hda_nid_t *dmux_nids;
  233. unsigned int num_dmuxes;
  234. const hda_nid_t *smux_nids;
  235. unsigned int num_smuxes;
  236. unsigned int num_analog_muxes;
  237. const unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
  238. const unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
  239. unsigned int num_caps; /* number of capture volume/switch elements */
  240. struct sigmatel_mic_route ext_mic;
  241. struct sigmatel_mic_route int_mic;
  242. struct sigmatel_mic_route dock_mic;
  243. const char * const *spdif_labels;
  244. hda_nid_t dig_in_nid;
  245. hda_nid_t mono_nid;
  246. hda_nid_t anabeep_nid;
  247. hda_nid_t digbeep_nid;
  248. /* pin widgets */
  249. const hda_nid_t *pin_nids;
  250. unsigned int num_pins;
  251. /* codec specific stuff */
  252. const struct hda_verb *init;
  253. const struct snd_kcontrol_new *mixer;
  254. /* capture source */
  255. struct hda_input_mux *dinput_mux;
  256. unsigned int cur_dmux[2];
  257. struct hda_input_mux *input_mux;
  258. unsigned int cur_mux[3];
  259. struct hda_input_mux *sinput_mux;
  260. unsigned int cur_smux[2];
  261. unsigned int cur_amux;
  262. hda_nid_t *amp_nids;
  263. unsigned int powerdown_adcs;
  264. /* i/o switches */
  265. unsigned int io_switch[2];
  266. unsigned int clfe_swap;
  267. hda_nid_t line_switch; /* shared line-in for input and output */
  268. hda_nid_t mic_switch; /* shared mic-in for input and output */
  269. hda_nid_t hp_switch; /* NID of HP as line-out */
  270. unsigned int aloopback;
  271. struct hda_pcm pcm_rec[2]; /* PCM information */
  272. /* dynamic controls and input_mux */
  273. struct auto_pin_cfg autocfg;
  274. struct snd_array kctls;
  275. struct hda_input_mux private_dimux;
  276. struct hda_input_mux private_imux;
  277. struct hda_input_mux private_smux;
  278. struct hda_input_mux private_mono_mux;
  279. /* auto spec */
  280. unsigned auto_pin_cnt;
  281. hda_nid_t auto_pin_nids[MAX_PINS_NUM];
  282. unsigned auto_adc_cnt;
  283. hda_nid_t auto_adc_nids[MAX_ADCS_NUM];
  284. hda_nid_t auto_mux_nids[MAX_ADCS_NUM];
  285. hda_nid_t auto_dmux_nids[MAX_ADCS_NUM];
  286. unsigned long auto_capvols[MAX_ADCS_NUM];
  287. unsigned auto_dmic_cnt;
  288. hda_nid_t auto_dmic_nids[MAX_DMICS_NUM];
  289. struct hda_vmaster_mute_hook vmaster_mute;
  290. };
  291. #define AC_VERB_IDT_SET_POWER_MAP 0x7ec
  292. #define AC_VERB_IDT_GET_POWER_MAP 0xfec
  293. static const hda_nid_t stac9200_adc_nids[1] = {
  294. 0x03,
  295. };
  296. static const hda_nid_t stac9200_mux_nids[1] = {
  297. 0x0c,
  298. };
  299. static const hda_nid_t stac9200_dac_nids[1] = {
  300. 0x02,
  301. };
  302. static const hda_nid_t stac92hd73xx_pwr_nids[8] = {
  303. 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
  304. 0x0f, 0x10, 0x11
  305. };
  306. static const hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
  307. 0x26, 0,
  308. };
  309. static const hda_nid_t stac92hd73xx_adc_nids[2] = {
  310. 0x1a, 0x1b
  311. };
  312. #define STAC92HD73XX_NUM_DMICS 2
  313. static const hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
  314. 0x13, 0x14, 0
  315. };
  316. #define STAC92HD73_DAC_COUNT 5
  317. static const hda_nid_t stac92hd73xx_mux_nids[2] = {
  318. 0x20, 0x21,
  319. };
  320. static const hda_nid_t stac92hd73xx_dmux_nids[2] = {
  321. 0x20, 0x21,
  322. };
  323. static const hda_nid_t stac92hd73xx_smux_nids[2] = {
  324. 0x22, 0x23,
  325. };
  326. #define STAC92HD73XX_NUM_CAPS 2
  327. static const unsigned long stac92hd73xx_capvols[] = {
  328. HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT),
  329. HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
  330. };
  331. #define stac92hd73xx_capsws stac92hd73xx_capvols
  332. #define STAC92HD83_DAC_COUNT 3
  333. static const hda_nid_t stac92hd83xxx_pwr_nids[7] = {
  334. 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
  335. 0x0f, 0x10
  336. };
  337. static const hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
  338. 0x1e, 0,
  339. };
  340. static const hda_nid_t stac92hd83xxx_dmic_nids[] = {
  341. 0x11, 0x20,
  342. };
  343. static const hda_nid_t stac92hd71bxx_pwr_nids[3] = {
  344. 0x0a, 0x0d, 0x0f
  345. };
  346. static const hda_nid_t stac92hd71bxx_adc_nids[2] = {
  347. 0x12, 0x13,
  348. };
  349. static const hda_nid_t stac92hd71bxx_mux_nids[2] = {
  350. 0x1a, 0x1b
  351. };
  352. static const hda_nid_t stac92hd71bxx_dmux_nids[2] = {
  353. 0x1c, 0x1d,
  354. };
  355. static const hda_nid_t stac92hd71bxx_smux_nids[2] = {
  356. 0x24, 0x25,
  357. };
  358. #define STAC92HD71BXX_NUM_DMICS 2
  359. static const hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
  360. 0x18, 0x19, 0
  361. };
  362. static const hda_nid_t stac92hd71bxx_dmic_5port_nids[STAC92HD71BXX_NUM_DMICS] = {
  363. 0x18, 0
  364. };
  365. static const hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
  366. 0x22, 0
  367. };
  368. #define STAC92HD71BXX_NUM_CAPS 2
  369. static const unsigned long stac92hd71bxx_capvols[] = {
  370. HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
  371. HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
  372. };
  373. #define stac92hd71bxx_capsws stac92hd71bxx_capvols
  374. static const hda_nid_t stac925x_adc_nids[1] = {
  375. 0x03,
  376. };
  377. static const hda_nid_t stac925x_mux_nids[1] = {
  378. 0x0f,
  379. };
  380. static const hda_nid_t stac925x_dac_nids[1] = {
  381. 0x02,
  382. };
  383. #define STAC925X_NUM_DMICS 1
  384. static const hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
  385. 0x15, 0
  386. };
  387. static const hda_nid_t stac925x_dmux_nids[1] = {
  388. 0x14,
  389. };
  390. static const unsigned long stac925x_capvols[] = {
  391. HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
  392. };
  393. static const unsigned long stac925x_capsws[] = {
  394. HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
  395. };
  396. static const hda_nid_t stac922x_adc_nids[2] = {
  397. 0x06, 0x07,
  398. };
  399. static const hda_nid_t stac922x_mux_nids[2] = {
  400. 0x12, 0x13,
  401. };
  402. #define STAC922X_NUM_CAPS 2
  403. static const unsigned long stac922x_capvols[] = {
  404. HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT),
  405. HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
  406. };
  407. #define stac922x_capsws stac922x_capvols
  408. static const hda_nid_t stac927x_slave_dig_outs[2] = {
  409. 0x1f, 0,
  410. };
  411. static const hda_nid_t stac927x_adc_nids[3] = {
  412. 0x07, 0x08, 0x09
  413. };
  414. static const hda_nid_t stac927x_mux_nids[3] = {
  415. 0x15, 0x16, 0x17
  416. };
  417. static const hda_nid_t stac927x_smux_nids[1] = {
  418. 0x21,
  419. };
  420. static const hda_nid_t stac927x_dac_nids[6] = {
  421. 0x02, 0x03, 0x04, 0x05, 0x06, 0
  422. };
  423. static const hda_nid_t stac927x_dmux_nids[1] = {
  424. 0x1b,
  425. };
  426. #define STAC927X_NUM_DMICS 2
  427. static const hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
  428. 0x13, 0x14, 0
  429. };
  430. #define STAC927X_NUM_CAPS 3
  431. static const unsigned long stac927x_capvols[] = {
  432. HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
  433. HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT),
  434. HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT),
  435. };
  436. static const unsigned long stac927x_capsws[] = {
  437. HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
  438. HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
  439. HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
  440. };
  441. static const char * const stac927x_spdif_labels[5] = {
  442. "Digital Playback", "ADAT", "Analog Mux 1",
  443. "Analog Mux 2", "Analog Mux 3"
  444. };
  445. static const hda_nid_t stac9205_adc_nids[2] = {
  446. 0x12, 0x13
  447. };
  448. static const hda_nid_t stac9205_mux_nids[2] = {
  449. 0x19, 0x1a
  450. };
  451. static const hda_nid_t stac9205_dmux_nids[1] = {
  452. 0x1d,
  453. };
  454. static const hda_nid_t stac9205_smux_nids[1] = {
  455. 0x21,
  456. };
  457. #define STAC9205_NUM_DMICS 2
  458. static const hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
  459. 0x17, 0x18, 0
  460. };
  461. #define STAC9205_NUM_CAPS 2
  462. static const unsigned long stac9205_capvols[] = {
  463. HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT),
  464. HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT),
  465. };
  466. static const unsigned long stac9205_capsws[] = {
  467. HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
  468. HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT),
  469. };
  470. static const hda_nid_t stac9200_pin_nids[8] = {
  471. 0x08, 0x09, 0x0d, 0x0e,
  472. 0x0f, 0x10, 0x11, 0x12,
  473. };
  474. static const hda_nid_t stac925x_pin_nids[8] = {
  475. 0x07, 0x08, 0x0a, 0x0b,
  476. 0x0c, 0x0d, 0x10, 0x11,
  477. };
  478. static const hda_nid_t stac922x_pin_nids[10] = {
  479. 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
  480. 0x0f, 0x10, 0x11, 0x15, 0x1b,
  481. };
  482. static const hda_nid_t stac92hd73xx_pin_nids[13] = {
  483. 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
  484. 0x0f, 0x10, 0x11, 0x12, 0x13,
  485. 0x14, 0x22, 0x23
  486. };
  487. #define STAC92HD71BXX_NUM_PINS 13
  488. static const hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
  489. 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
  490. 0x00, 0x14, 0x18, 0x19, 0x1e,
  491. 0x1f, 0x20, 0x27
  492. };
  493. static const hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
  494. 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
  495. 0x0f, 0x14, 0x18, 0x19, 0x1e,
  496. 0x1f, 0x20, 0x27
  497. };
  498. static const hda_nid_t stac927x_pin_nids[14] = {
  499. 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
  500. 0x0f, 0x10, 0x11, 0x12, 0x13,
  501. 0x14, 0x21, 0x22, 0x23,
  502. };
  503. static const hda_nid_t stac9205_pin_nids[12] = {
  504. 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
  505. 0x0f, 0x14, 0x16, 0x17, 0x18,
  506. 0x21, 0x22,
  507. };
  508. static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
  509. struct snd_ctl_elem_info *uinfo)
  510. {
  511. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  512. struct sigmatel_spec *spec = codec->spec;
  513. return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
  514. }
  515. static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
  516. struct snd_ctl_elem_value *ucontrol)
  517. {
  518. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  519. struct sigmatel_spec *spec = codec->spec;
  520. unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  521. ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
  522. return 0;
  523. }
  524. static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
  525. struct snd_ctl_elem_value *ucontrol)
  526. {
  527. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  528. struct sigmatel_spec *spec = codec->spec;
  529. unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  530. return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
  531. spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
  532. }
  533. static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
  534. struct snd_ctl_elem_info *uinfo)
  535. {
  536. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  537. struct sigmatel_spec *spec = codec->spec;
  538. return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
  539. }
  540. static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
  541. struct snd_ctl_elem_value *ucontrol)
  542. {
  543. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  544. struct sigmatel_spec *spec = codec->spec;
  545. unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  546. ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
  547. return 0;
  548. }
  549. static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
  550. struct snd_ctl_elem_value *ucontrol)
  551. {
  552. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  553. struct sigmatel_spec *spec = codec->spec;
  554. struct hda_input_mux *smux = &spec->private_smux;
  555. unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  556. int err, val;
  557. hda_nid_t nid;
  558. err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
  559. spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
  560. if (err < 0)
  561. return err;
  562. if (spec->spdif_mute) {
  563. if (smux_idx == 0)
  564. nid = spec->multiout.dig_out_nid;
  565. else
  566. nid = codec->slave_dig_outs[smux_idx - 1];
  567. if (spec->cur_smux[smux_idx] == smux->num_items - 1)
  568. val = HDA_AMP_MUTE;
  569. else
  570. val = 0;
  571. /* un/mute SPDIF out */
  572. snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
  573. HDA_AMP_MUTE, val);
  574. }
  575. return 0;
  576. }
  577. static int stac_vrefout_set(struct hda_codec *codec,
  578. hda_nid_t nid, unsigned int new_vref)
  579. {
  580. int error, pinctl;
  581. snd_printdd("%s, nid %x ctl %x\n", __func__, nid, new_vref);
  582. pinctl = snd_hda_codec_read(codec, nid, 0,
  583. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  584. if (pinctl < 0)
  585. return pinctl;
  586. pinctl &= 0xff;
  587. pinctl &= ~AC_PINCTL_VREFEN;
  588. pinctl |= (new_vref & AC_PINCTL_VREFEN);
  589. error = snd_hda_set_pin_ctl_cache(codec, nid, pinctl);
  590. if (error < 0)
  591. return error;
  592. return 1;
  593. }
  594. static unsigned int stac92xx_vref_set(struct hda_codec *codec,
  595. hda_nid_t nid, unsigned int new_vref)
  596. {
  597. int error;
  598. unsigned int pincfg;
  599. pincfg = snd_hda_codec_read(codec, nid, 0,
  600. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  601. pincfg &= 0xff;
  602. pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
  603. pincfg |= new_vref;
  604. if (new_vref == AC_PINCTL_VREF_HIZ)
  605. pincfg |= AC_PINCTL_OUT_EN;
  606. else
  607. pincfg |= AC_PINCTL_IN_EN;
  608. error = snd_hda_set_pin_ctl_cache(codec, nid, pincfg);
  609. if (error < 0)
  610. return error;
  611. else
  612. return 1;
  613. }
  614. static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid)
  615. {
  616. unsigned int vref;
  617. vref = snd_hda_codec_read(codec, nid, 0,
  618. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  619. vref &= AC_PINCTL_VREFEN;
  620. return vref;
  621. }
  622. static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
  623. {
  624. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  625. struct sigmatel_spec *spec = codec->spec;
  626. return snd_hda_input_mux_info(spec->input_mux, uinfo);
  627. }
  628. static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  629. {
  630. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  631. struct sigmatel_spec *spec = codec->spec;
  632. unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  633. ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
  634. return 0;
  635. }
  636. static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  637. {
  638. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  639. struct sigmatel_spec *spec = codec->spec;
  640. unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  641. const struct hda_input_mux *imux = spec->input_mux;
  642. unsigned int idx, prev_idx, didx;
  643. idx = ucontrol->value.enumerated.item[0];
  644. if (idx >= imux->num_items)
  645. idx = imux->num_items - 1;
  646. prev_idx = spec->cur_mux[adc_idx];
  647. if (prev_idx == idx)
  648. return 0;
  649. if (idx < spec->num_analog_muxes) {
  650. snd_hda_codec_write_cache(codec, spec->mux_nids[adc_idx], 0,
  651. AC_VERB_SET_CONNECT_SEL,
  652. imux->items[idx].index);
  653. if (prev_idx >= spec->num_analog_muxes &&
  654. spec->mux_nids[adc_idx] != spec->dmux_nids[adc_idx]) {
  655. imux = spec->dinput_mux;
  656. /* 0 = analog */
  657. snd_hda_codec_write_cache(codec,
  658. spec->dmux_nids[adc_idx], 0,
  659. AC_VERB_SET_CONNECT_SEL,
  660. imux->items[0].index);
  661. }
  662. } else {
  663. imux = spec->dinput_mux;
  664. /* first dimux item is hardcoded to select analog imux,
  665. * so lets skip it
  666. */
  667. didx = idx - spec->num_analog_muxes + 1;
  668. snd_hda_codec_write_cache(codec, spec->dmux_nids[adc_idx], 0,
  669. AC_VERB_SET_CONNECT_SEL,
  670. imux->items[didx].index);
  671. }
  672. spec->cur_mux[adc_idx] = idx;
  673. return 1;
  674. }
  675. static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
  676. struct snd_ctl_elem_info *uinfo)
  677. {
  678. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  679. struct sigmatel_spec *spec = codec->spec;
  680. return snd_hda_input_mux_info(spec->mono_mux, uinfo);
  681. }
  682. static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
  683. struct snd_ctl_elem_value *ucontrol)
  684. {
  685. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  686. struct sigmatel_spec *spec = codec->spec;
  687. ucontrol->value.enumerated.item[0] = spec->cur_mmux;
  688. return 0;
  689. }
  690. static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
  691. struct snd_ctl_elem_value *ucontrol)
  692. {
  693. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  694. struct sigmatel_spec *spec = codec->spec;
  695. return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
  696. spec->mono_nid, &spec->cur_mmux);
  697. }
  698. #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
  699. static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
  700. struct snd_ctl_elem_value *ucontrol)
  701. {
  702. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  703. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  704. struct sigmatel_spec *spec = codec->spec;
  705. ucontrol->value.integer.value[0] = !!(spec->aloopback &
  706. (spec->aloopback_mask << idx));
  707. return 0;
  708. }
  709. static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
  710. struct snd_ctl_elem_value *ucontrol)
  711. {
  712. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  713. struct sigmatel_spec *spec = codec->spec;
  714. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  715. unsigned int dac_mode;
  716. unsigned int val, idx_val;
  717. idx_val = spec->aloopback_mask << idx;
  718. if (ucontrol->value.integer.value[0])
  719. val = spec->aloopback | idx_val;
  720. else
  721. val = spec->aloopback & ~idx_val;
  722. if (spec->aloopback == val)
  723. return 0;
  724. spec->aloopback = val;
  725. /* Only return the bits defined by the shift value of the
  726. * first two bytes of the mask
  727. */
  728. dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
  729. kcontrol->private_value & 0xFFFF, 0x0);
  730. dac_mode >>= spec->aloopback_shift;
  731. if (spec->aloopback & idx_val) {
  732. snd_hda_power_up(codec);
  733. dac_mode |= idx_val;
  734. } else {
  735. snd_hda_power_down(codec);
  736. dac_mode &= ~idx_val;
  737. }
  738. snd_hda_codec_write_cache(codec, codec->afg, 0,
  739. kcontrol->private_value >> 16, dac_mode);
  740. return 1;
  741. }
  742. static const struct hda_verb stac9200_core_init[] = {
  743. /* set dac0mux for dac converter */
  744. { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
  745. {}
  746. };
  747. static const struct hda_verb stac9200_eapd_init[] = {
  748. /* set dac0mux for dac converter */
  749. {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
  750. {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
  751. {}
  752. };
  753. static const struct hda_verb dell_eq_core_init[] = {
  754. /* set master volume to max value without distortion
  755. * and direct control */
  756. { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
  757. {}
  758. };
  759. static const struct hda_verb stac92hd73xx_core_init[] = {
  760. /* set master volume and direct control */
  761. { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
  762. {}
  763. };
  764. static const struct hda_verb stac92hd83xxx_core_init[] = {
  765. /* power state controls amps */
  766. { 0x01, AC_VERB_SET_EAPD, 1 << 2},
  767. {}
  768. };
  769. static const struct hda_verb stac92hd83xxx_hp_zephyr_init[] = {
  770. { 0x22, 0x785, 0x43 },
  771. { 0x22, 0x782, 0xe0 },
  772. { 0x22, 0x795, 0x00 },
  773. {}
  774. };
  775. static const struct hda_verb stac92hd71bxx_core_init[] = {
  776. /* set master volume and direct control */
  777. { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
  778. {}
  779. };
  780. static const struct hda_verb stac92hd71bxx_unmute_core_init[] = {
  781. /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
  782. { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
  783. { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
  784. { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
  785. {}
  786. };
  787. static const struct hda_verb stac925x_core_init[] = {
  788. /* set dac0mux for dac converter */
  789. { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
  790. /* mute the master volume */
  791. { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
  792. {}
  793. };
  794. static const struct hda_verb stac922x_core_init[] = {
  795. /* set master volume and direct control */
  796. { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
  797. {}
  798. };
  799. static const struct hda_verb d965_core_init[] = {
  800. /* set master volume and direct control */
  801. { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
  802. /* unmute node 0x1b */
  803. { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
  804. /* select node 0x03 as DAC */
  805. { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
  806. {}
  807. };
  808. static const struct hda_verb dell_3st_core_init[] = {
  809. /* don't set delta bit */
  810. {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
  811. /* unmute node 0x1b */
  812. {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
  813. /* select node 0x03 as DAC */
  814. {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
  815. {}
  816. };
  817. static const struct hda_verb stac927x_core_init[] = {
  818. /* set master volume and direct control */
  819. { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
  820. /* enable analog pc beep path */
  821. { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
  822. {}
  823. };
  824. static const struct hda_verb stac927x_volknob_core_init[] = {
  825. /* don't set delta bit */
  826. {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
  827. /* enable analog pc beep path */
  828. {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
  829. {}
  830. };
  831. static const struct hda_verb stac9205_core_init[] = {
  832. /* set master volume and direct control */
  833. { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
  834. /* enable analog pc beep path */
  835. { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
  836. {}
  837. };
  838. #define STAC_MONO_MUX \
  839. { \
  840. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  841. .name = "Mono Mux", \
  842. .count = 1, \
  843. .info = stac92xx_mono_mux_enum_info, \
  844. .get = stac92xx_mono_mux_enum_get, \
  845. .put = stac92xx_mono_mux_enum_put, \
  846. }
  847. #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
  848. { \
  849. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  850. .name = "Analog Loopback", \
  851. .count = cnt, \
  852. .info = stac92xx_aloopback_info, \
  853. .get = stac92xx_aloopback_get, \
  854. .put = stac92xx_aloopback_put, \
  855. .private_value = verb_read | (verb_write << 16), \
  856. }
  857. #define DC_BIAS(xname, idx, nid) \
  858. { \
  859. .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  860. .name = xname, \
  861. .index = idx, \
  862. .info = stac92xx_dc_bias_info, \
  863. .get = stac92xx_dc_bias_get, \
  864. .put = stac92xx_dc_bias_put, \
  865. .private_value = nid, \
  866. }
  867. static const struct snd_kcontrol_new stac9200_mixer[] = {
  868. HDA_CODEC_VOLUME_MIN_MUTE("PCM Playback Volume", 0xb, 0, HDA_OUTPUT),
  869. HDA_CODEC_MUTE("PCM Playback Switch", 0xb, 0, HDA_OUTPUT),
  870. HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
  871. HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
  872. { } /* end */
  873. };
  874. static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
  875. STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
  876. {}
  877. };
  878. static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
  879. STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
  880. {}
  881. };
  882. static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
  883. STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
  884. {}
  885. };
  886. static const struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
  887. STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
  888. };
  889. static const struct snd_kcontrol_new stac925x_mixer[] = {
  890. HDA_CODEC_VOLUME_MIN_MUTE("PCM Playback Volume", 0xe, 0, HDA_OUTPUT),
  891. HDA_CODEC_MUTE("PCM Playback Switch", 0x0e, 0, HDA_OUTPUT),
  892. { } /* end */
  893. };
  894. static const struct snd_kcontrol_new stac9205_loopback[] = {
  895. STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
  896. {}
  897. };
  898. static const struct snd_kcontrol_new stac927x_loopback[] = {
  899. STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
  900. {}
  901. };
  902. static struct snd_kcontrol_new stac_dmux_mixer = {
  903. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  904. .name = "Digital Input Source",
  905. /* count set later */
  906. .info = stac92xx_dmux_enum_info,
  907. .get = stac92xx_dmux_enum_get,
  908. .put = stac92xx_dmux_enum_put,
  909. };
  910. static struct snd_kcontrol_new stac_smux_mixer = {
  911. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  912. .name = "IEC958 Playback Source",
  913. /* count set later */
  914. .info = stac92xx_smux_enum_info,
  915. .get = stac92xx_smux_enum_get,
  916. .put = stac92xx_smux_enum_put,
  917. };
  918. static const char * const slave_pfxs[] = {
  919. "Front", "Surround", "Center", "LFE", "Side",
  920. "Headphone", "Speaker", "Bass Speaker", "IEC958", "PCM",
  921. NULL
  922. };
  923. static void stac92xx_update_led_status(struct hda_codec *codec, int enabled);
  924. static void stac92xx_vmaster_hook(void *private_data, int val)
  925. {
  926. stac92xx_update_led_status(private_data, val);
  927. }
  928. static void stac92xx_free_kctls(struct hda_codec *codec);
  929. static int stac92xx_build_controls(struct hda_codec *codec)
  930. {
  931. struct sigmatel_spec *spec = codec->spec;
  932. unsigned int vmaster_tlv[4];
  933. int err;
  934. int i;
  935. if (spec->mixer) {
  936. err = snd_hda_add_new_ctls(codec, spec->mixer);
  937. if (err < 0)
  938. return err;
  939. }
  940. for (i = 0; i < spec->num_mixers; i++) {
  941. err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
  942. if (err < 0)
  943. return err;
  944. }
  945. if (!spec->auto_mic && spec->num_dmuxes > 0 &&
  946. snd_hda_get_bool_hint(codec, "separate_dmux") == 1) {
  947. stac_dmux_mixer.count = spec->num_dmuxes;
  948. err = snd_hda_ctl_add(codec, 0,
  949. snd_ctl_new1(&stac_dmux_mixer, codec));
  950. if (err < 0)
  951. return err;
  952. }
  953. if (spec->num_smuxes > 0) {
  954. int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
  955. struct hda_input_mux *smux = &spec->private_smux;
  956. /* check for mute support on SPDIF out */
  957. if (wcaps & AC_WCAP_OUT_AMP) {
  958. snd_hda_add_imux_item(smux, "Off", 0, NULL);
  959. spec->spdif_mute = 1;
  960. }
  961. stac_smux_mixer.count = spec->num_smuxes;
  962. err = snd_hda_ctl_add(codec, 0,
  963. snd_ctl_new1(&stac_smux_mixer, codec));
  964. if (err < 0)
  965. return err;
  966. }
  967. if (spec->multiout.dig_out_nid) {
  968. err = snd_hda_create_dig_out_ctls(codec,
  969. spec->multiout.dig_out_nid,
  970. spec->multiout.dig_out_nid,
  971. spec->autocfg.dig_out_type[0]);
  972. if (err < 0)
  973. return err;
  974. err = snd_hda_create_spdif_share_sw(codec,
  975. &spec->multiout);
  976. if (err < 0)
  977. return err;
  978. spec->multiout.share_spdif = 1;
  979. }
  980. if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
  981. err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
  982. if (err < 0)
  983. return err;
  984. }
  985. /* if we have no master control, let's create it */
  986. snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
  987. HDA_OUTPUT, vmaster_tlv);
  988. /* correct volume offset */
  989. vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
  990. /* minimum value is actually mute */
  991. vmaster_tlv[3] |= TLV_DB_SCALE_MUTE;
  992. err = snd_hda_add_vmaster(codec, "Master Playback Volume",
  993. vmaster_tlv, slave_pfxs,
  994. "Playback Volume");
  995. if (err < 0)
  996. return err;
  997. err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
  998. NULL, slave_pfxs,
  999. "Playback Switch", true,
  1000. &spec->vmaster_mute.sw_kctl);
  1001. if (err < 0)
  1002. return err;
  1003. if (spec->gpio_led) {
  1004. spec->vmaster_mute.hook = stac92xx_vmaster_hook;
  1005. err = snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute, true);
  1006. if (err < 0)
  1007. return err;
  1008. }
  1009. if (spec->aloopback_ctl &&
  1010. snd_hda_get_bool_hint(codec, "loopback") == 1) {
  1011. err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
  1012. if (err < 0)
  1013. return err;
  1014. }
  1015. stac92xx_free_kctls(codec); /* no longer needed */
  1016. err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
  1017. if (err < 0)
  1018. return err;
  1019. return 0;
  1020. }
  1021. static const unsigned int ref9200_pin_configs[8] = {
  1022. 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
  1023. 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
  1024. };
  1025. static const unsigned int gateway9200_m4_pin_configs[8] = {
  1026. 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
  1027. 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
  1028. };
  1029. static const unsigned int gateway9200_m4_2_pin_configs[8] = {
  1030. 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
  1031. 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
  1032. };
  1033. /*
  1034. STAC 9200 pin configs for
  1035. 102801A8
  1036. 102801DE
  1037. 102801E8
  1038. */
  1039. static const unsigned int dell9200_d21_pin_configs[8] = {
  1040. 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
  1041. 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
  1042. };
  1043. /*
  1044. STAC 9200 pin configs for
  1045. 102801C0
  1046. 102801C1
  1047. */
  1048. static const unsigned int dell9200_d22_pin_configs[8] = {
  1049. 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
  1050. 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
  1051. };
  1052. /*
  1053. STAC 9200 pin configs for
  1054. 102801C4 (Dell Dimension E310)
  1055. 102801C5
  1056. 102801C7
  1057. 102801D9
  1058. 102801DA
  1059. 102801E3
  1060. */
  1061. static const unsigned int dell9200_d23_pin_configs[8] = {
  1062. 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
  1063. 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
  1064. };
  1065. /*
  1066. STAC 9200-32 pin configs for
  1067. 102801B5 (Dell Inspiron 630m)
  1068. 102801D8 (Dell Inspiron 640m)
  1069. */
  1070. static const unsigned int dell9200_m21_pin_configs[8] = {
  1071. 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
  1072. 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
  1073. };
  1074. /*
  1075. STAC 9200-32 pin configs for
  1076. 102801C2 (Dell Latitude D620)
  1077. 102801C8
  1078. 102801CC (Dell Latitude D820)
  1079. 102801D4
  1080. 102801D6
  1081. */
  1082. static const unsigned int dell9200_m22_pin_configs[8] = {
  1083. 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
  1084. 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
  1085. };
  1086. /*
  1087. STAC 9200-32 pin configs for
  1088. 102801CE (Dell XPS M1710)
  1089. 102801CF (Dell Precision M90)
  1090. */
  1091. static const unsigned int dell9200_m23_pin_configs[8] = {
  1092. 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
  1093. 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
  1094. };
  1095. /*
  1096. STAC 9200-32 pin configs for
  1097. 102801C9
  1098. 102801CA
  1099. 102801CB (Dell Latitude 120L)
  1100. 102801D3
  1101. */
  1102. static const unsigned int dell9200_m24_pin_configs[8] = {
  1103. 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
  1104. 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
  1105. };
  1106. /*
  1107. STAC 9200-32 pin configs for
  1108. 102801BD (Dell Inspiron E1505n)
  1109. 102801EE
  1110. 102801EF
  1111. */
  1112. static const unsigned int dell9200_m25_pin_configs[8] = {
  1113. 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
  1114. 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
  1115. };
  1116. /*
  1117. STAC 9200-32 pin configs for
  1118. 102801F5 (Dell Inspiron 1501)
  1119. 102801F6
  1120. */
  1121. static const unsigned int dell9200_m26_pin_configs[8] = {
  1122. 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
  1123. 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
  1124. };
  1125. /*
  1126. STAC 9200-32
  1127. 102801CD (Dell Inspiron E1705/9400)
  1128. */
  1129. static const unsigned int dell9200_m27_pin_configs[8] = {
  1130. 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
  1131. 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
  1132. };
  1133. static const unsigned int oqo9200_pin_configs[8] = {
  1134. 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
  1135. 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
  1136. };
  1137. static const unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
  1138. [STAC_REF] = ref9200_pin_configs,
  1139. [STAC_9200_OQO] = oqo9200_pin_configs,
  1140. [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
  1141. [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
  1142. [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
  1143. [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
  1144. [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
  1145. [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
  1146. [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
  1147. [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
  1148. [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
  1149. [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
  1150. [STAC_9200_M4] = gateway9200_m4_pin_configs,
  1151. [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
  1152. [STAC_9200_PANASONIC] = ref9200_pin_configs,
  1153. };
  1154. static const char * const stac9200_models[STAC_9200_MODELS] = {
  1155. [STAC_AUTO] = "auto",
  1156. [STAC_REF] = "ref",
  1157. [STAC_9200_OQO] = "oqo",
  1158. [STAC_9200_DELL_D21] = "dell-d21",
  1159. [STAC_9200_DELL_D22] = "dell-d22",
  1160. [STAC_9200_DELL_D23] = "dell-d23",
  1161. [STAC_9200_DELL_M21] = "dell-m21",
  1162. [STAC_9200_DELL_M22] = "dell-m22",
  1163. [STAC_9200_DELL_M23] = "dell-m23",
  1164. [STAC_9200_DELL_M24] = "dell-m24",
  1165. [STAC_9200_DELL_M25] = "dell-m25",
  1166. [STAC_9200_DELL_M26] = "dell-m26",
  1167. [STAC_9200_DELL_M27] = "dell-m27",
  1168. [STAC_9200_M4] = "gateway-m4",
  1169. [STAC_9200_M4_2] = "gateway-m4-2",
  1170. [STAC_9200_PANASONIC] = "panasonic",
  1171. };
  1172. static const struct snd_pci_quirk stac9200_cfg_tbl[] = {
  1173. /* SigmaTel reference board */
  1174. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  1175. "DFI LanParty", STAC_REF),
  1176. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  1177. "DFI LanParty", STAC_REF),
  1178. /* Dell laptops have BIOS problem */
  1179. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
  1180. "unknown Dell", STAC_9200_DELL_D21),
  1181. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
  1182. "Dell Inspiron 630m", STAC_9200_DELL_M21),
  1183. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
  1184. "Dell Inspiron E1505n", STAC_9200_DELL_M25),
  1185. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
  1186. "unknown Dell", STAC_9200_DELL_D22),
  1187. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
  1188. "unknown Dell", STAC_9200_DELL_D22),
  1189. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
  1190. "Dell Latitude D620", STAC_9200_DELL_M22),
  1191. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
  1192. "unknown Dell", STAC_9200_DELL_D23),
  1193. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
  1194. "unknown Dell", STAC_9200_DELL_D23),
  1195. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
  1196. "unknown Dell", STAC_9200_DELL_M22),
  1197. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
  1198. "unknown Dell", STAC_9200_DELL_M24),
  1199. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
  1200. "unknown Dell", STAC_9200_DELL_M24),
  1201. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
  1202. "Dell Latitude 120L", STAC_9200_DELL_M24),
  1203. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
  1204. "Dell Latitude D820", STAC_9200_DELL_M22),
  1205. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
  1206. "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
  1207. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
  1208. "Dell XPS M1710", STAC_9200_DELL_M23),
  1209. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
  1210. "Dell Precision M90", STAC_9200_DELL_M23),
  1211. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
  1212. "unknown Dell", STAC_9200_DELL_M22),
  1213. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
  1214. "unknown Dell", STAC_9200_DELL_M22),
  1215. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
  1216. "unknown Dell", STAC_9200_DELL_M22),
  1217. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
  1218. "Dell Inspiron 640m", STAC_9200_DELL_M21),
  1219. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
  1220. "unknown Dell", STAC_9200_DELL_D23),
  1221. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
  1222. "unknown Dell", STAC_9200_DELL_D23),
  1223. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
  1224. "unknown Dell", STAC_9200_DELL_D21),
  1225. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
  1226. "unknown Dell", STAC_9200_DELL_D23),
  1227. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
  1228. "unknown Dell", STAC_9200_DELL_D21),
  1229. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
  1230. "unknown Dell", STAC_9200_DELL_M25),
  1231. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
  1232. "unknown Dell", STAC_9200_DELL_M25),
  1233. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
  1234. "Dell Inspiron 1501", STAC_9200_DELL_M26),
  1235. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
  1236. "unknown Dell", STAC_9200_DELL_M26),
  1237. /* Panasonic */
  1238. SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
  1239. /* Gateway machines needs EAPD to be set on resume */
  1240. SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
  1241. SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
  1242. SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
  1243. /* OQO Mobile */
  1244. SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
  1245. {} /* terminator */
  1246. };
  1247. static const unsigned int ref925x_pin_configs[8] = {
  1248. 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
  1249. 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
  1250. };
  1251. static const unsigned int stac925xM1_pin_configs[8] = {
  1252. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1253. 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
  1254. };
  1255. static const unsigned int stac925xM1_2_pin_configs[8] = {
  1256. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1257. 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
  1258. };
  1259. static const unsigned int stac925xM2_pin_configs[8] = {
  1260. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1261. 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
  1262. };
  1263. static const unsigned int stac925xM2_2_pin_configs[8] = {
  1264. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1265. 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
  1266. };
  1267. static const unsigned int stac925xM3_pin_configs[8] = {
  1268. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1269. 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
  1270. };
  1271. static const unsigned int stac925xM5_pin_configs[8] = {
  1272. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1273. 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
  1274. };
  1275. static const unsigned int stac925xM6_pin_configs[8] = {
  1276. 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
  1277. 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
  1278. };
  1279. static const unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
  1280. [STAC_REF] = ref925x_pin_configs,
  1281. [STAC_M1] = stac925xM1_pin_configs,
  1282. [STAC_M1_2] = stac925xM1_2_pin_configs,
  1283. [STAC_M2] = stac925xM2_pin_configs,
  1284. [STAC_M2_2] = stac925xM2_2_pin_configs,
  1285. [STAC_M3] = stac925xM3_pin_configs,
  1286. [STAC_M5] = stac925xM5_pin_configs,
  1287. [STAC_M6] = stac925xM6_pin_configs,
  1288. };
  1289. static const char * const stac925x_models[STAC_925x_MODELS] = {
  1290. [STAC_925x_AUTO] = "auto",
  1291. [STAC_REF] = "ref",
  1292. [STAC_M1] = "m1",
  1293. [STAC_M1_2] = "m1-2",
  1294. [STAC_M2] = "m2",
  1295. [STAC_M2_2] = "m2-2",
  1296. [STAC_M3] = "m3",
  1297. [STAC_M5] = "m5",
  1298. [STAC_M6] = "m6",
  1299. };
  1300. static const struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
  1301. SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
  1302. SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
  1303. SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
  1304. SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
  1305. SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
  1306. /* Not sure about the brand name for those */
  1307. SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
  1308. SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
  1309. SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
  1310. SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
  1311. {} /* terminator */
  1312. };
  1313. static const struct snd_pci_quirk stac925x_cfg_tbl[] = {
  1314. /* SigmaTel reference board */
  1315. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
  1316. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
  1317. SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
  1318. /* Default table for unknown ID */
  1319. SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
  1320. {} /* terminator */
  1321. };
  1322. static const unsigned int ref92hd73xx_pin_configs[13] = {
  1323. 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
  1324. 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
  1325. 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
  1326. 0x01452050,
  1327. };
  1328. static const unsigned int dell_m6_pin_configs[13] = {
  1329. 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
  1330. 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
  1331. 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
  1332. 0x4f0000f0,
  1333. };
  1334. static const unsigned int alienware_m17x_pin_configs[13] = {
  1335. 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
  1336. 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
  1337. 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
  1338. 0x904601b0,
  1339. };
  1340. static const unsigned int intel_dg45id_pin_configs[13] = {
  1341. 0x02214230, 0x02A19240, 0x01013214, 0x01014210,
  1342. 0x01A19250, 0x01011212, 0x01016211
  1343. };
  1344. static const unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
  1345. [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
  1346. [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
  1347. [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
  1348. [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
  1349. [STAC_DELL_EQ] = dell_m6_pin_configs,
  1350. [STAC_ALIENWARE_M17X] = alienware_m17x_pin_configs,
  1351. [STAC_92HD73XX_INTEL] = intel_dg45id_pin_configs,
  1352. };
  1353. static const char * const stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
  1354. [STAC_92HD73XX_AUTO] = "auto",
  1355. [STAC_92HD73XX_NO_JD] = "no-jd",
  1356. [STAC_92HD73XX_REF] = "ref",
  1357. [STAC_92HD73XX_INTEL] = "intel",
  1358. [STAC_DELL_M6_AMIC] = "dell-m6-amic",
  1359. [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
  1360. [STAC_DELL_M6_BOTH] = "dell-m6",
  1361. [STAC_DELL_EQ] = "dell-eq",
  1362. [STAC_ALIENWARE_M17X] = "alienware",
  1363. };
  1364. static const struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
  1365. /* SigmaTel reference board */
  1366. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  1367. "DFI LanParty", STAC_92HD73XX_REF),
  1368. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  1369. "DFI LanParty", STAC_92HD73XX_REF),
  1370. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
  1371. "Intel DG45ID", STAC_92HD73XX_INTEL),
  1372. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
  1373. "Intel DG45FC", STAC_92HD73XX_INTEL),
  1374. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
  1375. "Dell Studio 1535", STAC_DELL_M6_DMIC),
  1376. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
  1377. "unknown Dell", STAC_DELL_M6_DMIC),
  1378. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
  1379. "unknown Dell", STAC_DELL_M6_BOTH),
  1380. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
  1381. "unknown Dell", STAC_DELL_M6_BOTH),
  1382. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
  1383. "unknown Dell", STAC_DELL_M6_AMIC),
  1384. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
  1385. "unknown Dell", STAC_DELL_M6_AMIC),
  1386. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
  1387. "unknown Dell", STAC_DELL_M6_DMIC),
  1388. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
  1389. "unknown Dell", STAC_DELL_M6_DMIC),
  1390. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
  1391. "Dell Studio 1537", STAC_DELL_M6_DMIC),
  1392. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
  1393. "Dell Studio 17", STAC_DELL_M6_DMIC),
  1394. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
  1395. "Dell Studio 1555", STAC_DELL_M6_DMIC),
  1396. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
  1397. "Dell Studio 1557", STAC_DELL_M6_DMIC),
  1398. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
  1399. "Dell Studio XPS 1645", STAC_DELL_M6_DMIC),
  1400. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
  1401. "Dell Studio 1558", STAC_DELL_M6_DMIC),
  1402. {} /* terminator */
  1403. };
  1404. static const struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = {
  1405. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
  1406. "Alienware M17x", STAC_ALIENWARE_M17X),
  1407. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x043a,
  1408. "Alienware M17x", STAC_ALIENWARE_M17X),
  1409. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490,
  1410. "Alienware M17x R3", STAC_DELL_EQ),
  1411. {} /* terminator */
  1412. };
  1413. static const unsigned int ref92hd83xxx_pin_configs[10] = {
  1414. 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
  1415. 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
  1416. 0x01451160, 0x98560170,
  1417. };
  1418. static const unsigned int dell_s14_pin_configs[10] = {
  1419. 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
  1420. 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
  1421. 0x40f000f0, 0x40f000f0,
  1422. };
  1423. static const unsigned int dell_vostro_3500_pin_configs[10] = {
  1424. 0x02a11020, 0x0221101f, 0x400000f0, 0x90170110,
  1425. 0x400000f1, 0x400000f2, 0x400000f3, 0x90a60160,
  1426. 0x400000f4, 0x400000f5,
  1427. };
  1428. static const unsigned int hp_dv7_4000_pin_configs[10] = {
  1429. 0x03a12050, 0x0321201f, 0x40f000f0, 0x90170110,
  1430. 0x40f000f0, 0x40f000f0, 0x90170110, 0xd5a30140,
  1431. 0x40f000f0, 0x40f000f0,
  1432. };
  1433. static const unsigned int hp_zephyr_pin_configs[10] = {
  1434. 0x01813050, 0x0421201f, 0x04a1205e, 0x96130310,
  1435. 0x96130310, 0x0101401f, 0x1111611f, 0xd5a30130,
  1436. 0, 0,
  1437. };
  1438. static const unsigned int hp_cNB11_intquad_pin_configs[10] = {
  1439. 0x40f000f0, 0x0221101f, 0x02a11020, 0x92170110,
  1440. 0x40f000f0, 0x92170110, 0x40f000f0, 0xd5a30130,
  1441. 0x40f000f0, 0x40f000f0,
  1442. };
  1443. static const unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
  1444. [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
  1445. [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
  1446. [STAC_DELL_S14] = dell_s14_pin_configs,
  1447. [STAC_DELL_VOSTRO_3500] = dell_vostro_3500_pin_configs,
  1448. [STAC_92HD83XXX_HP_cNB11_INTQUAD] = hp_cNB11_intquad_pin_configs,
  1449. [STAC_HP_DV7_4000] = hp_dv7_4000_pin_configs,
  1450. [STAC_HP_ZEPHYR] = hp_zephyr_pin_configs,
  1451. };
  1452. static const char * const stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
  1453. [STAC_92HD83XXX_AUTO] = "auto",
  1454. [STAC_92HD83XXX_REF] = "ref",
  1455. [STAC_92HD83XXX_PWR_REF] = "mic-ref",
  1456. [STAC_DELL_S14] = "dell-s14",
  1457. [STAC_DELL_VOSTRO_3500] = "dell-vostro-3500",
  1458. [STAC_92HD83XXX_HP_cNB11_INTQUAD] = "hp_cNB11_intquad",
  1459. [STAC_HP_DV7_4000] = "hp-dv7-4000",
  1460. [STAC_HP_ZEPHYR] = "hp-zephyr",
  1461. [STAC_92HD83XXX_HP_LED] = "hp-led",
  1462. [STAC_92HD83XXX_HP_INV_LED] = "hp-inv-led",
  1463. [STAC_92HD83XXX_HP_MIC_LED] = "hp-mic-led",
  1464. [STAC_92HD83XXX_HEADSET_JACK] = "headset-jack",
  1465. };
  1466. static const struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
  1467. /* SigmaTel reference board */
  1468. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  1469. "DFI LanParty", STAC_92HD83XXX_REF),
  1470. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  1471. "DFI LanParty", STAC_92HD83XXX_REF),
  1472. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
  1473. "unknown Dell", STAC_DELL_S14),
  1474. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0532,
  1475. "Dell Latitude E6230", STAC_92HD83XXX_HEADSET_JACK),
  1476. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0533,
  1477. "Dell Latitude E6330", STAC_92HD83XXX_HEADSET_JACK),
  1478. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0534,
  1479. "Dell Latitude E6430", STAC_92HD83XXX_HEADSET_JACK),
  1480. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0535,
  1481. "Dell Latitude E6530", STAC_92HD83XXX_HEADSET_JACK),
  1482. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053c,
  1483. "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
  1484. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053d,
  1485. "Dell Latitude E5530", STAC_92HD83XXX_HEADSET_JACK),
  1486. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0549,
  1487. "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
  1488. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x057d,
  1489. "Dell Latitude E6430s", STAC_92HD83XXX_HEADSET_JACK),
  1490. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0584,
  1491. "Dell Latitude E6430U", STAC_92HD83XXX_HEADSET_JACK),
  1492. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x1028,
  1493. "Dell Vostro 3500", STAC_DELL_VOSTRO_3500),
  1494. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1656,
  1495. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1496. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1657,
  1497. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1498. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1658,
  1499. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1500. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1659,
  1501. "HP Pavilion dv7", STAC_HP_DV7_4000),
  1502. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165A,
  1503. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1504. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165B,
  1505. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1506. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x18df,
  1507. "HP Folio", STAC_92HD83XXX_HP_MIC_LED),
  1508. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3388,
  1509. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1510. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3389,
  1511. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1512. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355B,
  1513. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1514. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355C,
  1515. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1516. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355D,
  1517. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1518. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355E,
  1519. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1520. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355F,
  1521. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1522. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3560,
  1523. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1524. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358B,
  1525. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1526. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358C,
  1527. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1528. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358D,
  1529. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1530. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3591,
  1531. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1532. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3592,
  1533. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1534. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3593,
  1535. "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
  1536. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3561,
  1537. "HP", STAC_HP_ZEPHYR),
  1538. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3660,
  1539. "HP Mini", STAC_92HD83XXX_HP_LED),
  1540. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x144E,
  1541. "HP Pavilion dv5", STAC_92HD83XXX_HP_INV_LED),
  1542. {} /* terminator */
  1543. };
  1544. static const struct snd_pci_quirk stac92hd83xxx_codec_id_cfg_tbl[] = {
  1545. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3561,
  1546. "HP", STAC_HP_ZEPHYR),
  1547. {} /* terminator */
  1548. };
  1549. static const unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
  1550. 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
  1551. 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
  1552. 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
  1553. 0x00000000
  1554. };
  1555. static const unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
  1556. 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
  1557. 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
  1558. 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
  1559. 0x00000000
  1560. };
  1561. static const unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
  1562. 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
  1563. 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
  1564. 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
  1565. 0x00000000
  1566. };
  1567. static const unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
  1568. 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
  1569. 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
  1570. 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
  1571. 0x00000000
  1572. };
  1573. static const unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
  1574. [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
  1575. [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
  1576. [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
  1577. [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
  1578. [STAC_HP_M4] = NULL,
  1579. [STAC_HP_DV4] = NULL,
  1580. [STAC_HP_DV5] = NULL,
  1581. [STAC_HP_HDX] = NULL,
  1582. [STAC_HP_DV4_1222NR] = NULL,
  1583. };
  1584. static const char * const stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
  1585. [STAC_92HD71BXX_AUTO] = "auto",
  1586. [STAC_92HD71BXX_REF] = "ref",
  1587. [STAC_DELL_M4_1] = "dell-m4-1",
  1588. [STAC_DELL_M4_2] = "dell-m4-2",
  1589. [STAC_DELL_M4_3] = "dell-m4-3",
  1590. [STAC_HP_M4] = "hp-m4",
  1591. [STAC_HP_DV4] = "hp-dv4",
  1592. [STAC_HP_DV5] = "hp-dv5",
  1593. [STAC_HP_HDX] = "hp-hdx",
  1594. [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
  1595. };
  1596. static const struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
  1597. /* SigmaTel reference board */
  1598. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  1599. "DFI LanParty", STAC_92HD71BXX_REF),
  1600. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  1601. "DFI LanParty", STAC_92HD71BXX_REF),
  1602. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
  1603. "HP dv4-1222nr", STAC_HP_DV4_1222NR),
  1604. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
  1605. "HP", STAC_HP_DV5),
  1606. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
  1607. "HP", STAC_HP_DV5),
  1608. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
  1609. "HP dv4-7", STAC_HP_DV4),
  1610. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
  1611. "HP dv4-7", STAC_HP_DV5),
  1612. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
  1613. "HP HDX", STAC_HP_HDX), /* HDX18 */
  1614. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
  1615. "HP mini 1000", STAC_HP_M4),
  1616. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
  1617. "HP HDX", STAC_HP_HDX), /* HDX16 */
  1618. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
  1619. "HP dv6", STAC_HP_DV5),
  1620. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
  1621. "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
  1622. SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
  1623. "HP DV6", STAC_HP_DV5),
  1624. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
  1625. "HP", STAC_HP_DV5),
  1626. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
  1627. "unknown Dell", STAC_DELL_M4_1),
  1628. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
  1629. "unknown Dell", STAC_DELL_M4_1),
  1630. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
  1631. "unknown Dell", STAC_DELL_M4_1),
  1632. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
  1633. "unknown Dell", STAC_DELL_M4_1),
  1634. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
  1635. "unknown Dell", STAC_DELL_M4_1),
  1636. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
  1637. "unknown Dell", STAC_DELL_M4_1),
  1638. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
  1639. "unknown Dell", STAC_DELL_M4_1),
  1640. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
  1641. "unknown Dell", STAC_DELL_M4_2),
  1642. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
  1643. "unknown Dell", STAC_DELL_M4_2),
  1644. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
  1645. "unknown Dell", STAC_DELL_M4_2),
  1646. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
  1647. "unknown Dell", STAC_DELL_M4_2),
  1648. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
  1649. "unknown Dell", STAC_DELL_M4_3),
  1650. {} /* terminator */
  1651. };
  1652. static const unsigned int ref922x_pin_configs[10] = {
  1653. 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
  1654. 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
  1655. 0x40000100, 0x40000100,
  1656. };
  1657. /*
  1658. STAC 922X pin configs for
  1659. 102801A7
  1660. 102801AB
  1661. 102801A9
  1662. 102801D1
  1663. 102801D2
  1664. */
  1665. static const unsigned int dell_922x_d81_pin_configs[10] = {
  1666. 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
  1667. 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
  1668. 0x01813122, 0x400001f2,
  1669. };
  1670. /*
  1671. STAC 922X pin configs for
  1672. 102801AC
  1673. 102801D0
  1674. */
  1675. static const unsigned int dell_922x_d82_pin_configs[10] = {
  1676. 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
  1677. 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
  1678. 0x01813122, 0x400001f1,
  1679. };
  1680. /*
  1681. STAC 922X pin configs for
  1682. 102801BF
  1683. */
  1684. static const unsigned int dell_922x_m81_pin_configs[10] = {
  1685. 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
  1686. 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
  1687. 0x40C003f1, 0x405003f0,
  1688. };
  1689. /*
  1690. STAC 9221 A1 pin configs for
  1691. 102801D7 (Dell XPS M1210)
  1692. */
  1693. static const unsigned int dell_922x_m82_pin_configs[10] = {
  1694. 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
  1695. 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
  1696. 0x508003f3, 0x405003f4,
  1697. };
  1698. static const unsigned int d945gtp3_pin_configs[10] = {
  1699. 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
  1700. 0x40000100, 0x40000100, 0x40000100, 0x40000100,
  1701. 0x02a19120, 0x40000100,
  1702. };
  1703. static const unsigned int d945gtp5_pin_configs[10] = {
  1704. 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
  1705. 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
  1706. 0x02a19320, 0x40000100,
  1707. };
  1708. static const unsigned int intel_mac_v1_pin_configs[10] = {
  1709. 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
  1710. 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
  1711. 0x400000fc, 0x400000fb,
  1712. };
  1713. static const unsigned int intel_mac_v2_pin_configs[10] = {
  1714. 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
  1715. 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
  1716. 0x400000fc, 0x400000fb,
  1717. };
  1718. static const unsigned int intel_mac_v3_pin_configs[10] = {
  1719. 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
  1720. 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
  1721. 0x400000fc, 0x400000fb,
  1722. };
  1723. static const unsigned int intel_mac_v4_pin_configs[10] = {
  1724. 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
  1725. 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
  1726. 0x400000fc, 0x400000fb,
  1727. };
  1728. static const unsigned int intel_mac_v5_pin_configs[10] = {
  1729. 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
  1730. 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
  1731. 0x400000fc, 0x400000fb,
  1732. };
  1733. static const unsigned int ecs202_pin_configs[10] = {
  1734. 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
  1735. 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
  1736. 0x9037012e, 0x40e000f2,
  1737. };
  1738. static const unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
  1739. [STAC_D945_REF] = ref922x_pin_configs,
  1740. [STAC_D945GTP3] = d945gtp3_pin_configs,
  1741. [STAC_D945GTP5] = d945gtp5_pin_configs,
  1742. [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
  1743. [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
  1744. [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
  1745. [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
  1746. [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
  1747. [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
  1748. /* for backward compatibility */
  1749. [STAC_MACMINI] = intel_mac_v3_pin_configs,
  1750. [STAC_MACBOOK] = intel_mac_v5_pin_configs,
  1751. [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
  1752. [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
  1753. [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
  1754. [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
  1755. [STAC_ECS_202] = ecs202_pin_configs,
  1756. [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
  1757. [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
  1758. [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
  1759. [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
  1760. };
  1761. static const char * const stac922x_models[STAC_922X_MODELS] = {
  1762. [STAC_922X_AUTO] = "auto",
  1763. [STAC_D945_REF] = "ref",
  1764. [STAC_D945GTP5] = "5stack",
  1765. [STAC_D945GTP3] = "3stack",
  1766. [STAC_INTEL_MAC_V1] = "intel-mac-v1",
  1767. [STAC_INTEL_MAC_V2] = "intel-mac-v2",
  1768. [STAC_INTEL_MAC_V3] = "intel-mac-v3",
  1769. [STAC_INTEL_MAC_V4] = "intel-mac-v4",
  1770. [STAC_INTEL_MAC_V5] = "intel-mac-v5",
  1771. [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
  1772. /* for backward compatibility */
  1773. [STAC_MACMINI] = "macmini",
  1774. [STAC_MACBOOK] = "macbook",
  1775. [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
  1776. [STAC_MACBOOK_PRO_V2] = "macbook-pro",
  1777. [STAC_IMAC_INTEL] = "imac-intel",
  1778. [STAC_IMAC_INTEL_20] = "imac-intel-20",
  1779. [STAC_ECS_202] = "ecs202",
  1780. [STAC_922X_DELL_D81] = "dell-d81",
  1781. [STAC_922X_DELL_D82] = "dell-d82",
  1782. [STAC_922X_DELL_M81] = "dell-m81",
  1783. [STAC_922X_DELL_M82] = "dell-m82",
  1784. };
  1785. static const struct snd_pci_quirk stac922x_cfg_tbl[] = {
  1786. /* SigmaTel reference board */
  1787. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  1788. "DFI LanParty", STAC_D945_REF),
  1789. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  1790. "DFI LanParty", STAC_D945_REF),
  1791. /* Intel 945G based systems */
  1792. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
  1793. "Intel D945G", STAC_D945GTP3),
  1794. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
  1795. "Intel D945G", STAC_D945GTP3),
  1796. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
  1797. "Intel D945G", STAC_D945GTP3),
  1798. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
  1799. "Intel D945G", STAC_D945GTP3),
  1800. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
  1801. "Intel D945G", STAC_D945GTP3),
  1802. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
  1803. "Intel D945G", STAC_D945GTP3),
  1804. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
  1805. "Intel D945G", STAC_D945GTP3),
  1806. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
  1807. "Intel D945G", STAC_D945GTP3),
  1808. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
  1809. "Intel D945G", STAC_D945GTP3),
  1810. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
  1811. "Intel D945G", STAC_D945GTP3),
  1812. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
  1813. "Intel D945G", STAC_D945GTP3),
  1814. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
  1815. "Intel D945G", STAC_D945GTP3),
  1816. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
  1817. "Intel D945G", STAC_D945GTP3),
  1818. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
  1819. "Intel D945G", STAC_D945GTP3),
  1820. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
  1821. "Intel D945G", STAC_D945GTP3),
  1822. /* Intel D945G 5-stack systems */
  1823. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
  1824. "Intel D945G", STAC_D945GTP5),
  1825. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
  1826. "Intel D945G", STAC_D945GTP5),
  1827. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
  1828. "Intel D945G", STAC_D945GTP5),
  1829. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
  1830. "Intel D945G", STAC_D945GTP5),
  1831. /* Intel 945P based systems */
  1832. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
  1833. "Intel D945P", STAC_D945GTP3),
  1834. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
  1835. "Intel D945P", STAC_D945GTP3),
  1836. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
  1837. "Intel D945P", STAC_D945GTP3),
  1838. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
  1839. "Intel D945P", STAC_D945GTP3),
  1840. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
  1841. "Intel D945P", STAC_D945GTP3),
  1842. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
  1843. "Intel D945P", STAC_D945GTP5),
  1844. /* other intel */
  1845. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
  1846. "Intel D945", STAC_D945_REF),
  1847. /* other systems */
  1848. /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
  1849. SND_PCI_QUIRK(0x8384, 0x7680,
  1850. "Mac", STAC_INTEL_MAC_AUTO),
  1851. /* Dell systems */
  1852. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
  1853. "unknown Dell", STAC_922X_DELL_D81),
  1854. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
  1855. "unknown Dell", STAC_922X_DELL_D81),
  1856. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
  1857. "unknown Dell", STAC_922X_DELL_D81),
  1858. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
  1859. "unknown Dell", STAC_922X_DELL_D82),
  1860. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
  1861. "unknown Dell", STAC_922X_DELL_M81),
  1862. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
  1863. "unknown Dell", STAC_922X_DELL_D82),
  1864. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
  1865. "unknown Dell", STAC_922X_DELL_D81),
  1866. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
  1867. "unknown Dell", STAC_922X_DELL_D81),
  1868. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
  1869. "Dell XPS M1210", STAC_922X_DELL_M82),
  1870. /* ECS/PC Chips boards */
  1871. SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
  1872. "ECS/PC chips", STAC_ECS_202),
  1873. {} /* terminator */
  1874. };
  1875. static const unsigned int ref927x_pin_configs[14] = {
  1876. 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
  1877. 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
  1878. 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
  1879. 0x01c42190, 0x40000100,
  1880. };
  1881. static const unsigned int d965_3st_pin_configs[14] = {
  1882. 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
  1883. 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
  1884. 0x40000100, 0x40000100, 0x40000100, 0x40000100,
  1885. 0x40000100, 0x40000100
  1886. };
  1887. static const unsigned int d965_5st_pin_configs[14] = {
  1888. 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
  1889. 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
  1890. 0x40000100, 0x40000100, 0x40000100, 0x01442070,
  1891. 0x40000100, 0x40000100
  1892. };
  1893. static const unsigned int d965_5st_no_fp_pin_configs[14] = {
  1894. 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
  1895. 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
  1896. 0x40000100, 0x40000100, 0x40000100, 0x01442070,
  1897. 0x40000100, 0x40000100
  1898. };
  1899. static const unsigned int dell_3st_pin_configs[14] = {
  1900. 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
  1901. 0x01111212, 0x01116211, 0x01813050, 0x01112214,
  1902. 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
  1903. 0x40c003fc, 0x40000100
  1904. };
  1905. static const unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
  1906. [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
  1907. [STAC_D965_REF] = ref927x_pin_configs,
  1908. [STAC_D965_3ST] = d965_3st_pin_configs,
  1909. [STAC_D965_5ST] = d965_5st_pin_configs,
  1910. [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
  1911. [STAC_DELL_3ST] = dell_3st_pin_configs,
  1912. [STAC_DELL_BIOS] = NULL,
  1913. [STAC_927X_VOLKNOB] = NULL,
  1914. };
  1915. static const char * const stac927x_models[STAC_927X_MODELS] = {
  1916. [STAC_927X_AUTO] = "auto",
  1917. [STAC_D965_REF_NO_JD] = "ref-no-jd",
  1918. [STAC_D965_REF] = "ref",
  1919. [STAC_D965_3ST] = "3stack",
  1920. [STAC_D965_5ST] = "5stack",
  1921. [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
  1922. [STAC_DELL_3ST] = "dell-3stack",
  1923. [STAC_DELL_BIOS] = "dell-bios",
  1924. [STAC_927X_VOLKNOB] = "volknob",
  1925. };
  1926. static const struct snd_pci_quirk stac927x_cfg_tbl[] = {
  1927. /* SigmaTel reference board */
  1928. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  1929. "DFI LanParty", STAC_D965_REF),
  1930. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  1931. "DFI LanParty", STAC_D965_REF),
  1932. /* Intel 946 based systems */
  1933. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
  1934. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
  1935. /* 965 based 3 stack systems */
  1936. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
  1937. "Intel D965", STAC_D965_3ST),
  1938. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
  1939. "Intel D965", STAC_D965_3ST),
  1940. /* Dell 3 stack systems */
  1941. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
  1942. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
  1943. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
  1944. /* Dell 3 stack systems with verb table in BIOS */
  1945. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
  1946. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
  1947. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
  1948. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
  1949. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
  1950. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
  1951. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
  1952. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
  1953. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
  1954. /* 965 based 5 stack systems */
  1955. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
  1956. "Intel D965", STAC_D965_5ST),
  1957. SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
  1958. "Intel D965", STAC_D965_5ST),
  1959. /* volume-knob fixes */
  1960. SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
  1961. {} /* terminator */
  1962. };
  1963. static const unsigned int ref9205_pin_configs[12] = {
  1964. 0x40000100, 0x40000100, 0x01016011, 0x01014010,
  1965. 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
  1966. 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
  1967. };
  1968. /*
  1969. STAC 9205 pin configs for
  1970. 102801F1
  1971. 102801F2
  1972. 102801FC
  1973. 102801FD
  1974. 10280204
  1975. 1028021F
  1976. 10280228 (Dell Vostro 1500)
  1977. 10280229 (Dell Vostro 1700)
  1978. */
  1979. static const unsigned int dell_9205_m42_pin_configs[12] = {
  1980. 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
  1981. 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
  1982. 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
  1983. };
  1984. /*
  1985. STAC 9205 pin configs for
  1986. 102801F9
  1987. 102801FA
  1988. 102801FE
  1989. 102801FF (Dell Precision M4300)
  1990. 10280206
  1991. 10280200
  1992. 10280201
  1993. */
  1994. static const unsigned int dell_9205_m43_pin_configs[12] = {
  1995. 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
  1996. 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
  1997. 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
  1998. };
  1999. static const unsigned int dell_9205_m44_pin_configs[12] = {
  2000. 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
  2001. 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
  2002. 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
  2003. };
  2004. static const unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
  2005. [STAC_9205_REF] = ref9205_pin_configs,
  2006. [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
  2007. [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
  2008. [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
  2009. [STAC_9205_EAPD] = NULL,
  2010. };
  2011. static const char * const stac9205_models[STAC_9205_MODELS] = {
  2012. [STAC_9205_AUTO] = "auto",
  2013. [STAC_9205_REF] = "ref",
  2014. [STAC_9205_DELL_M42] = "dell-m42",
  2015. [STAC_9205_DELL_M43] = "dell-m43",
  2016. [STAC_9205_DELL_M44] = "dell-m44",
  2017. [STAC_9205_EAPD] = "eapd",
  2018. };
  2019. static const struct snd_pci_quirk stac9205_cfg_tbl[] = {
  2020. /* SigmaTel reference board */
  2021. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
  2022. "DFI LanParty", STAC_9205_REF),
  2023. SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
  2024. "SigmaTel", STAC_9205_REF),
  2025. SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
  2026. "DFI LanParty", STAC_9205_REF),
  2027. /* Dell */
  2028. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
  2029. "unknown Dell", STAC_9205_DELL_M42),
  2030. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
  2031. "unknown Dell", STAC_9205_DELL_M42),
  2032. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
  2033. "Dell Precision", STAC_9205_DELL_M43),
  2034. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
  2035. "Dell Precision", STAC_9205_DELL_M43),
  2036. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
  2037. "Dell Precision", STAC_9205_DELL_M43),
  2038. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
  2039. "unknown Dell", STAC_9205_DELL_M42),
  2040. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
  2041. "unknown Dell", STAC_9205_DELL_M42),
  2042. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
  2043. "Dell Precision", STAC_9205_DELL_M43),
  2044. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
  2045. "Dell Precision M4300", STAC_9205_DELL_M43),
  2046. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
  2047. "unknown Dell", STAC_9205_DELL_M42),
  2048. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
  2049. "Dell Precision", STAC_9205_DELL_M43),
  2050. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
  2051. "Dell Precision", STAC_9205_DELL_M43),
  2052. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
  2053. "Dell Precision", STAC_9205_DELL_M43),
  2054. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
  2055. "Dell Inspiron", STAC_9205_DELL_M44),
  2056. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
  2057. "Dell Vostro 1500", STAC_9205_DELL_M42),
  2058. SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
  2059. "Dell Vostro 1700", STAC_9205_DELL_M42),
  2060. /* Gateway */
  2061. SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
  2062. SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
  2063. {} /* terminator */
  2064. };
  2065. static void stac92xx_set_config_regs(struct hda_codec *codec,
  2066. const unsigned int *pincfgs)
  2067. {
  2068. int i;
  2069. struct sigmatel_spec *spec = codec->spec;
  2070. if (!pincfgs)
  2071. return;
  2072. for (i = 0; i < spec->num_pins; i++)
  2073. if (spec->pin_nids[i] && pincfgs[i])
  2074. snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
  2075. pincfgs[i]);
  2076. }
  2077. /*
  2078. * Analog playback callbacks
  2079. */
  2080. static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
  2081. struct hda_codec *codec,
  2082. struct snd_pcm_substream *substream)
  2083. {
  2084. struct sigmatel_spec *spec = codec->spec;
  2085. if (spec->stream_delay)
  2086. msleep(spec->stream_delay);
  2087. return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
  2088. hinfo);
  2089. }
  2090. static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
  2091. struct hda_codec *codec,
  2092. unsigned int stream_tag,
  2093. unsigned int format,
  2094. struct snd_pcm_substream *substream)
  2095. {
  2096. struct sigmatel_spec *spec = codec->spec;
  2097. return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
  2098. }
  2099. static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
  2100. struct hda_codec *codec,
  2101. struct snd_pcm_substream *substream)
  2102. {
  2103. struct sigmatel_spec *spec = codec->spec;
  2104. return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
  2105. }
  2106. /*
  2107. * Digital playback callbacks
  2108. */
  2109. static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
  2110. struct hda_codec *codec,
  2111. struct snd_pcm_substream *substream)
  2112. {
  2113. struct sigmatel_spec *spec = codec->spec;
  2114. return snd_hda_multi_out_dig_open(codec, &spec->multiout);
  2115. }
  2116. static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
  2117. struct hda_codec *codec,
  2118. struct snd_pcm_substream *substream)
  2119. {
  2120. struct sigmatel_spec *spec = codec->spec;
  2121. return snd_hda_multi_out_dig_close(codec, &spec->multiout);
  2122. }
  2123. static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
  2124. struct hda_codec *codec,
  2125. unsigned int stream_tag,
  2126. unsigned int format,
  2127. struct snd_pcm_substream *substream)
  2128. {
  2129. struct sigmatel_spec *spec = codec->spec;
  2130. return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
  2131. stream_tag, format, substream);
  2132. }
  2133. static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
  2134. struct hda_codec *codec,
  2135. struct snd_pcm_substream *substream)
  2136. {
  2137. struct sigmatel_spec *spec = codec->spec;
  2138. return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
  2139. }
  2140. /*
  2141. * Analog capture callbacks
  2142. */
  2143. static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
  2144. struct hda_codec *codec,
  2145. unsigned int stream_tag,
  2146. unsigned int format,
  2147. struct snd_pcm_substream *substream)
  2148. {
  2149. struct sigmatel_spec *spec = codec->spec;
  2150. hda_nid_t nid = spec->adc_nids[substream->number];
  2151. if (spec->powerdown_adcs) {
  2152. msleep(40);
  2153. snd_hda_codec_write(codec, nid, 0,
  2154. AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
  2155. }
  2156. snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
  2157. return 0;
  2158. }
  2159. static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
  2160. struct hda_codec *codec,
  2161. struct snd_pcm_substream *substream)
  2162. {
  2163. struct sigmatel_spec *spec = codec->spec;
  2164. hda_nid_t nid = spec->adc_nids[substream->number];
  2165. snd_hda_codec_cleanup_stream(codec, nid);
  2166. if (spec->powerdown_adcs)
  2167. snd_hda_codec_write(codec, nid, 0,
  2168. AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
  2169. return 0;
  2170. }
  2171. static const struct hda_pcm_stream stac92xx_pcm_digital_playback = {
  2172. .substreams = 1,
  2173. .channels_min = 2,
  2174. .channels_max = 2,
  2175. /* NID is set in stac92xx_build_pcms */
  2176. .ops = {
  2177. .open = stac92xx_dig_playback_pcm_open,
  2178. .close = stac92xx_dig_playback_pcm_close,
  2179. .prepare = stac92xx_dig_playback_pcm_prepare,
  2180. .cleanup = stac92xx_dig_playback_pcm_cleanup
  2181. },
  2182. };
  2183. static const struct hda_pcm_stream stac92xx_pcm_digital_capture = {
  2184. .substreams = 1,
  2185. .channels_min = 2,
  2186. .channels_max = 2,
  2187. /* NID is set in stac92xx_build_pcms */
  2188. };
  2189. static const struct hda_pcm_stream stac92xx_pcm_analog_playback = {
  2190. .substreams = 1,
  2191. .channels_min = 2,
  2192. .channels_max = 8,
  2193. .nid = 0x02, /* NID to query formats and rates */
  2194. .ops = {
  2195. .open = stac92xx_playback_pcm_open,
  2196. .prepare = stac92xx_playback_pcm_prepare,
  2197. .cleanup = stac92xx_playback_pcm_cleanup
  2198. },
  2199. };
  2200. static const struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
  2201. .substreams = 1,
  2202. .channels_min = 2,
  2203. .channels_max = 2,
  2204. .nid = 0x06, /* NID to query formats and rates */
  2205. .ops = {
  2206. .open = stac92xx_playback_pcm_open,
  2207. .prepare = stac92xx_playback_pcm_prepare,
  2208. .cleanup = stac92xx_playback_pcm_cleanup
  2209. },
  2210. };
  2211. static const struct hda_pcm_stream stac92xx_pcm_analog_capture = {
  2212. .channels_min = 2,
  2213. .channels_max = 2,
  2214. /* NID + .substreams is set in stac92xx_build_pcms */
  2215. .ops = {
  2216. .prepare = stac92xx_capture_pcm_prepare,
  2217. .cleanup = stac92xx_capture_pcm_cleanup
  2218. },
  2219. };
  2220. static int stac92xx_build_pcms(struct hda_codec *codec)
  2221. {
  2222. struct sigmatel_spec *spec = codec->spec;
  2223. struct hda_pcm *info = spec->pcm_rec;
  2224. codec->num_pcms = 1;
  2225. codec->pcm_info = info;
  2226. info->name = "STAC92xx Analog";
  2227. info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
  2228. info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
  2229. spec->multiout.dac_nids[0];
  2230. if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
  2231. spec->autocfg.line_outs == 2)
  2232. info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap =
  2233. snd_pcm_2_1_chmaps;
  2234. info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
  2235. info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
  2236. info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
  2237. if (spec->alt_switch) {
  2238. codec->num_pcms++;
  2239. info++;
  2240. info->name = "STAC92xx Analog Alt";
  2241. info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
  2242. }
  2243. if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
  2244. codec->num_pcms++;
  2245. info++;
  2246. info->name = "STAC92xx Digital";
  2247. info->pcm_type = spec->autocfg.dig_out_type[0];
  2248. if (spec->multiout.dig_out_nid) {
  2249. info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
  2250. info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
  2251. }
  2252. if (spec->dig_in_nid) {
  2253. info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
  2254. info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
  2255. }
  2256. }
  2257. return 0;
  2258. }
  2259. static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
  2260. {
  2261. snd_hda_set_pin_ctl_cache(codec, nid, pin_type);
  2262. }
  2263. #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
  2264. static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
  2265. struct snd_ctl_elem_value *ucontrol)
  2266. {
  2267. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2268. struct sigmatel_spec *spec = codec->spec;
  2269. ucontrol->value.integer.value[0] = !!spec->hp_switch;
  2270. return 0;
  2271. }
  2272. static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
  2273. static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
  2274. struct snd_ctl_elem_value *ucontrol)
  2275. {
  2276. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2277. struct sigmatel_spec *spec = codec->spec;
  2278. int nid = kcontrol->private_value;
  2279. spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
  2280. /* check to be sure that the ports are up to date with
  2281. * switch changes
  2282. */
  2283. stac_issue_unsol_event(codec, nid);
  2284. return 1;
  2285. }
  2286. static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
  2287. struct snd_ctl_elem_info *uinfo)
  2288. {
  2289. int i;
  2290. static const char * const texts[] = {
  2291. "Mic In", "Line In", "Line Out"
  2292. };
  2293. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2294. struct sigmatel_spec *spec = codec->spec;
  2295. hda_nid_t nid = kcontrol->private_value;
  2296. if (nid == spec->mic_switch || nid == spec->line_switch)
  2297. i = 3;
  2298. else
  2299. i = 2;
  2300. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  2301. uinfo->value.enumerated.items = i;
  2302. uinfo->count = 1;
  2303. if (uinfo->value.enumerated.item >= i)
  2304. uinfo->value.enumerated.item = i-1;
  2305. strcpy(uinfo->value.enumerated.name,
  2306. texts[uinfo->value.enumerated.item]);
  2307. return 0;
  2308. }
  2309. static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
  2310. struct snd_ctl_elem_value *ucontrol)
  2311. {
  2312. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2313. hda_nid_t nid = kcontrol->private_value;
  2314. unsigned int vref = stac92xx_vref_get(codec, nid);
  2315. if (vref == snd_hda_get_default_vref(codec, nid))
  2316. ucontrol->value.enumerated.item[0] = 0;
  2317. else if (vref == AC_PINCTL_VREF_GRD)
  2318. ucontrol->value.enumerated.item[0] = 1;
  2319. else if (vref == AC_PINCTL_VREF_HIZ)
  2320. ucontrol->value.enumerated.item[0] = 2;
  2321. return 0;
  2322. }
  2323. static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
  2324. struct snd_ctl_elem_value *ucontrol)
  2325. {
  2326. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2327. unsigned int new_vref = 0;
  2328. int error;
  2329. hda_nid_t nid = kcontrol->private_value;
  2330. if (ucontrol->value.enumerated.item[0] == 0)
  2331. new_vref = snd_hda_get_default_vref(codec, nid);
  2332. else if (ucontrol->value.enumerated.item[0] == 1)
  2333. new_vref = AC_PINCTL_VREF_GRD;
  2334. else if (ucontrol->value.enumerated.item[0] == 2)
  2335. new_vref = AC_PINCTL_VREF_HIZ;
  2336. else
  2337. return 0;
  2338. if (new_vref != stac92xx_vref_get(codec, nid)) {
  2339. error = stac92xx_vref_set(codec, nid, new_vref);
  2340. return error;
  2341. }
  2342. return 0;
  2343. }
  2344. static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
  2345. struct snd_ctl_elem_info *uinfo)
  2346. {
  2347. char *texts[2];
  2348. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2349. struct sigmatel_spec *spec = codec->spec;
  2350. if (kcontrol->private_value == spec->line_switch)
  2351. texts[0] = "Line In";
  2352. else
  2353. texts[0] = "Mic In";
  2354. texts[1] = "Line Out";
  2355. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  2356. uinfo->value.enumerated.items = 2;
  2357. uinfo->count = 1;
  2358. if (uinfo->value.enumerated.item >= 2)
  2359. uinfo->value.enumerated.item = 1;
  2360. strcpy(uinfo->value.enumerated.name,
  2361. texts[uinfo->value.enumerated.item]);
  2362. return 0;
  2363. }
  2364. static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2365. {
  2366. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2367. struct sigmatel_spec *spec = codec->spec;
  2368. hda_nid_t nid = kcontrol->private_value;
  2369. int io_idx = (nid == spec->mic_switch) ? 1 : 0;
  2370. ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
  2371. return 0;
  2372. }
  2373. static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
  2374. {
  2375. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2376. struct sigmatel_spec *spec = codec->spec;
  2377. hda_nid_t nid = kcontrol->private_value;
  2378. int io_idx = (nid == spec->mic_switch) ? 1 : 0;
  2379. unsigned short val = !!ucontrol->value.enumerated.item[0];
  2380. spec->io_switch[io_idx] = val;
  2381. if (val)
  2382. stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
  2383. else {
  2384. unsigned int pinctl = AC_PINCTL_IN_EN;
  2385. if (io_idx) /* set VREF for mic */
  2386. pinctl |= snd_hda_get_default_vref(codec, nid);
  2387. stac92xx_auto_set_pinctl(codec, nid, pinctl);
  2388. }
  2389. /* check the auto-mute again: we need to mute/unmute the speaker
  2390. * appropriately according to the pin direction
  2391. */
  2392. if (spec->hp_detect)
  2393. stac_issue_unsol_event(codec, nid);
  2394. return 1;
  2395. }
  2396. #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
  2397. static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
  2398. struct snd_ctl_elem_value *ucontrol)
  2399. {
  2400. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2401. struct sigmatel_spec *spec = codec->spec;
  2402. ucontrol->value.integer.value[0] = spec->clfe_swap;
  2403. return 0;
  2404. }
  2405. static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
  2406. struct snd_ctl_elem_value *ucontrol)
  2407. {
  2408. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2409. struct sigmatel_spec *spec = codec->spec;
  2410. hda_nid_t nid = kcontrol->private_value & 0xff;
  2411. unsigned int val = !!ucontrol->value.integer.value[0];
  2412. if (spec->clfe_swap == val)
  2413. return 0;
  2414. spec->clfe_swap = val;
  2415. snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
  2416. spec->clfe_swap ? 0x4 : 0x0);
  2417. return 1;
  2418. }
  2419. #define STAC_CODEC_HP_SWITCH(xname) \
  2420. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  2421. .name = xname, \
  2422. .index = 0, \
  2423. .info = stac92xx_hp_switch_info, \
  2424. .get = stac92xx_hp_switch_get, \
  2425. .put = stac92xx_hp_switch_put, \
  2426. }
  2427. #define STAC_CODEC_IO_SWITCH(xname, xpval) \
  2428. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  2429. .name = xname, \
  2430. .index = 0, \
  2431. .info = stac92xx_io_switch_info, \
  2432. .get = stac92xx_io_switch_get, \
  2433. .put = stac92xx_io_switch_put, \
  2434. .private_value = xpval, \
  2435. }
  2436. #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
  2437. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  2438. .name = xname, \
  2439. .index = 0, \
  2440. .info = stac92xx_clfe_switch_info, \
  2441. .get = stac92xx_clfe_switch_get, \
  2442. .put = stac92xx_clfe_switch_put, \
  2443. .private_value = xpval, \
  2444. }
  2445. enum {
  2446. STAC_CTL_WIDGET_VOL,
  2447. STAC_CTL_WIDGET_MUTE,
  2448. STAC_CTL_WIDGET_MUTE_BEEP,
  2449. STAC_CTL_WIDGET_MONO_MUX,
  2450. STAC_CTL_WIDGET_HP_SWITCH,
  2451. STAC_CTL_WIDGET_IO_SWITCH,
  2452. STAC_CTL_WIDGET_CLFE_SWITCH,
  2453. STAC_CTL_WIDGET_DC_BIAS
  2454. };
  2455. static const struct snd_kcontrol_new stac92xx_control_templates[] = {
  2456. HDA_CODEC_VOLUME(NULL, 0, 0, 0),
  2457. HDA_CODEC_MUTE(NULL, 0, 0, 0),
  2458. HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0),
  2459. STAC_MONO_MUX,
  2460. STAC_CODEC_HP_SWITCH(NULL),
  2461. STAC_CODEC_IO_SWITCH(NULL, 0),
  2462. STAC_CODEC_CLFE_SWITCH(NULL, 0),
  2463. DC_BIAS(NULL, 0, 0),
  2464. };
  2465. /* add dynamic controls */
  2466. static struct snd_kcontrol_new *
  2467. stac_control_new(struct sigmatel_spec *spec,
  2468. const struct snd_kcontrol_new *ktemp,
  2469. const char *name,
  2470. unsigned int subdev)
  2471. {
  2472. struct snd_kcontrol_new *knew;
  2473. knew = snd_array_new(&spec->kctls);
  2474. if (!knew)
  2475. return NULL;
  2476. *knew = *ktemp;
  2477. knew->name = kstrdup(name, GFP_KERNEL);
  2478. if (!knew->name) {
  2479. /* roolback */
  2480. memset(knew, 0, sizeof(*knew));
  2481. spec->kctls.alloced--;
  2482. return NULL;
  2483. }
  2484. knew->subdevice = subdev;
  2485. return knew;
  2486. }
  2487. static struct snd_kcontrol_new *
  2488. add_control_temp(struct sigmatel_spec *spec,
  2489. const struct snd_kcontrol_new *ktemp,
  2490. int idx, const char *name,
  2491. unsigned long val)
  2492. {
  2493. struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name,
  2494. HDA_SUBDEV_AMP_FLAG);
  2495. if (!knew)
  2496. return NULL;
  2497. knew->index = idx;
  2498. knew->private_value = val;
  2499. return knew;
  2500. }
  2501. static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
  2502. const struct snd_kcontrol_new *ktemp,
  2503. int idx, const char *name,
  2504. unsigned long val)
  2505. {
  2506. return add_control_temp(spec, ktemp, idx, name, val) ? 0 : -ENOMEM;
  2507. }
  2508. static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
  2509. int type, int idx, const char *name,
  2510. unsigned long val)
  2511. {
  2512. return stac92xx_add_control_temp(spec,
  2513. &stac92xx_control_templates[type],
  2514. idx, name, val);
  2515. }
  2516. /* add dynamic controls */
  2517. static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
  2518. const char *name, unsigned long val)
  2519. {
  2520. return stac92xx_add_control_idx(spec, type, 0, name, val);
  2521. }
  2522. static const struct snd_kcontrol_new stac_input_src_temp = {
  2523. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2524. .name = "Input Source",
  2525. .info = stac92xx_mux_enum_info,
  2526. .get = stac92xx_mux_enum_get,
  2527. .put = stac92xx_mux_enum_put,
  2528. };
  2529. static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
  2530. hda_nid_t nid, int idx)
  2531. {
  2532. int def_conf = snd_hda_codec_get_pincfg(codec, nid);
  2533. int control = 0;
  2534. struct sigmatel_spec *spec = codec->spec;
  2535. char name[22];
  2536. if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
  2537. if (spec->headset_jack && snd_hda_get_input_pin_attr(def_conf)
  2538. != INPUT_PIN_ATTR_DOCK)
  2539. return 0;
  2540. if (snd_hda_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
  2541. && nid == spec->line_switch)
  2542. control = STAC_CTL_WIDGET_IO_SWITCH;
  2543. else if (snd_hda_query_pin_caps(codec, nid)
  2544. & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
  2545. control = STAC_CTL_WIDGET_DC_BIAS;
  2546. else if (nid == spec->mic_switch)
  2547. control = STAC_CTL_WIDGET_IO_SWITCH;
  2548. }
  2549. if (control) {
  2550. snd_hda_get_pin_label(codec, nid, &spec->autocfg,
  2551. name, sizeof(name), NULL);
  2552. return stac92xx_add_control(codec->spec, control,
  2553. strcat(name, " Jack Mode"), nid);
  2554. }
  2555. return 0;
  2556. }
  2557. static int stac92xx_add_input_source(struct sigmatel_spec *spec)
  2558. {
  2559. struct snd_kcontrol_new *knew;
  2560. struct hda_input_mux *imux = &spec->private_imux;
  2561. if (spec->auto_mic)
  2562. return 0; /* no need for input source */
  2563. if (!spec->num_adcs || imux->num_items <= 1)
  2564. return 0; /* no need for input source control */
  2565. knew = stac_control_new(spec, &stac_input_src_temp,
  2566. stac_input_src_temp.name, 0);
  2567. if (!knew)
  2568. return -ENOMEM;
  2569. knew->count = spec->num_adcs;
  2570. return 0;
  2571. }
  2572. /* check whether the line-input can be used as line-out */
  2573. static hda_nid_t check_line_out_switch(struct hda_codec *codec)
  2574. {
  2575. struct sigmatel_spec *spec = codec->spec;
  2576. struct auto_pin_cfg *cfg = &spec->autocfg;
  2577. hda_nid_t nid;
  2578. unsigned int pincap;
  2579. int i;
  2580. if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
  2581. return 0;
  2582. for (i = 0; i < cfg->num_inputs; i++) {
  2583. if (cfg->inputs[i].type == AUTO_PIN_LINE_IN) {
  2584. nid = cfg->inputs[i].pin;
  2585. pincap = snd_hda_query_pin_caps(codec, nid);
  2586. if (pincap & AC_PINCAP_OUT)
  2587. return nid;
  2588. }
  2589. }
  2590. return 0;
  2591. }
  2592. static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid);
  2593. /* check whether the mic-input can be used as line-out */
  2594. static hda_nid_t check_mic_out_switch(struct hda_codec *codec, hda_nid_t *dac)
  2595. {
  2596. struct sigmatel_spec *spec = codec->spec;
  2597. struct auto_pin_cfg *cfg = &spec->autocfg;
  2598. unsigned int def_conf, pincap;
  2599. int i;
  2600. *dac = 0;
  2601. if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
  2602. return 0;
  2603. for (i = 0; i < cfg->num_inputs; i++) {
  2604. hda_nid_t nid = cfg->inputs[i].pin;
  2605. if (cfg->inputs[i].type != AUTO_PIN_MIC)
  2606. continue;
  2607. def_conf = snd_hda_codec_get_pincfg(codec, nid);
  2608. /* some laptops have an internal analog microphone
  2609. * which can't be used as a output */
  2610. if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
  2611. pincap = snd_hda_query_pin_caps(codec, nid);
  2612. if (pincap & AC_PINCAP_OUT) {
  2613. *dac = get_unassigned_dac(codec, nid);
  2614. if (*dac)
  2615. return nid;
  2616. }
  2617. }
  2618. }
  2619. return 0;
  2620. }
  2621. static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
  2622. {
  2623. int i;
  2624. for (i = 0; i < spec->multiout.num_dacs; i++) {
  2625. if (spec->multiout.dac_nids[i] == nid)
  2626. return 1;
  2627. }
  2628. return 0;
  2629. }
  2630. static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
  2631. {
  2632. int i;
  2633. if (is_in_dac_nids(spec, nid))
  2634. return 1;
  2635. for (i = 0; i < spec->autocfg.hp_outs; i++)
  2636. if (spec->hp_dacs[i] == nid)
  2637. return 1;
  2638. for (i = 0; i < spec->autocfg.speaker_outs; i++)
  2639. if (spec->speaker_dacs[i] == nid)
  2640. return 1;
  2641. return 0;
  2642. }
  2643. static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
  2644. {
  2645. struct sigmatel_spec *spec = codec->spec;
  2646. struct auto_pin_cfg *cfg = &spec->autocfg;
  2647. int j, conn_len;
  2648. hda_nid_t conn[HDA_MAX_CONNECTIONS], fallback_dac;
  2649. unsigned int wcaps, wtype;
  2650. conn_len = snd_hda_get_connections(codec, nid, conn,
  2651. HDA_MAX_CONNECTIONS);
  2652. /* 92HD88: trace back up the link of nids to find the DAC */
  2653. while (conn_len == 1 && (get_wcaps_type(get_wcaps(codec, conn[0]))
  2654. != AC_WID_AUD_OUT)) {
  2655. nid = conn[0];
  2656. conn_len = snd_hda_get_connections(codec, nid, conn,
  2657. HDA_MAX_CONNECTIONS);
  2658. }
  2659. for (j = 0; j < conn_len; j++) {
  2660. wcaps = get_wcaps(codec, conn[j]);
  2661. wtype = get_wcaps_type(wcaps);
  2662. /* we check only analog outputs */
  2663. if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
  2664. continue;
  2665. /* if this route has a free DAC, assign it */
  2666. if (!check_all_dac_nids(spec, conn[j])) {
  2667. if (conn_len > 1) {
  2668. /* select this DAC in the pin's input mux */
  2669. snd_hda_codec_write_cache(codec, nid, 0,
  2670. AC_VERB_SET_CONNECT_SEL, j);
  2671. }
  2672. return conn[j];
  2673. }
  2674. }
  2675. /* if all DACs are already assigned, connect to the primary DAC,
  2676. unless we're assigning a secondary headphone */
  2677. fallback_dac = spec->multiout.dac_nids[0];
  2678. if (spec->multiout.hp_nid) {
  2679. for (j = 0; j < cfg->hp_outs; j++)
  2680. if (cfg->hp_pins[j] == nid) {
  2681. fallback_dac = spec->multiout.hp_nid;
  2682. break;
  2683. }
  2684. }
  2685. if (conn_len > 1) {
  2686. for (j = 0; j < conn_len; j++) {
  2687. if (conn[j] == fallback_dac) {
  2688. snd_hda_codec_write_cache(codec, nid, 0,
  2689. AC_VERB_SET_CONNECT_SEL, j);
  2690. break;
  2691. }
  2692. }
  2693. }
  2694. return 0;
  2695. }
  2696. static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
  2697. static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
  2698. /*
  2699. * Fill in the dac_nids table from the parsed pin configuration
  2700. * This function only works when every pin in line_out_pins[]
  2701. * contains atleast one DAC in its connection list. Some 92xx
  2702. * codecs are not connected directly to a DAC, such as the 9200
  2703. * and 9202/925x. For those, dac_nids[] must be hard-coded.
  2704. */
  2705. static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
  2706. {
  2707. struct sigmatel_spec *spec = codec->spec;
  2708. struct auto_pin_cfg *cfg = &spec->autocfg;
  2709. int i;
  2710. hda_nid_t nid, dac;
  2711. for (i = 0; i < cfg->line_outs; i++) {
  2712. nid = cfg->line_out_pins[i];
  2713. dac = get_unassigned_dac(codec, nid);
  2714. if (!dac) {
  2715. if (spec->multiout.num_dacs > 0) {
  2716. /* we have already working output pins,
  2717. * so let's drop the broken ones again
  2718. */
  2719. cfg->line_outs = spec->multiout.num_dacs;
  2720. break;
  2721. }
  2722. /* error out, no available DAC found */
  2723. snd_printk(KERN_ERR
  2724. "%s: No available DAC for pin 0x%x\n",
  2725. __func__, nid);
  2726. return -ENODEV;
  2727. }
  2728. add_spec_dacs(spec, dac);
  2729. }
  2730. for (i = 0; i < cfg->hp_outs; i++) {
  2731. nid = cfg->hp_pins[i];
  2732. dac = get_unassigned_dac(codec, nid);
  2733. if (dac) {
  2734. if (!spec->multiout.hp_nid)
  2735. spec->multiout.hp_nid = dac;
  2736. else
  2737. add_spec_extra_dacs(spec, dac);
  2738. }
  2739. spec->hp_dacs[i] = dac;
  2740. }
  2741. for (i = 0; i < cfg->speaker_outs; i++) {
  2742. nid = cfg->speaker_pins[i];
  2743. dac = get_unassigned_dac(codec, nid);
  2744. if (dac)
  2745. add_spec_extra_dacs(spec, dac);
  2746. spec->speaker_dacs[i] = dac;
  2747. }
  2748. /* add line-in as output */
  2749. nid = check_line_out_switch(codec);
  2750. if (nid) {
  2751. dac = get_unassigned_dac(codec, nid);
  2752. if (dac) {
  2753. snd_printdd("STAC: Add line-in 0x%x as output %d\n",
  2754. nid, cfg->line_outs);
  2755. cfg->line_out_pins[cfg->line_outs] = nid;
  2756. cfg->line_outs++;
  2757. spec->line_switch = nid;
  2758. add_spec_dacs(spec, dac);
  2759. }
  2760. }
  2761. /* add mic as output */
  2762. nid = check_mic_out_switch(codec, &dac);
  2763. if (nid && dac) {
  2764. snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
  2765. nid, cfg->line_outs);
  2766. cfg->line_out_pins[cfg->line_outs] = nid;
  2767. cfg->line_outs++;
  2768. spec->mic_switch = nid;
  2769. add_spec_dacs(spec, dac);
  2770. }
  2771. snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
  2772. spec->multiout.num_dacs,
  2773. spec->multiout.dac_nids[0],
  2774. spec->multiout.dac_nids[1],
  2775. spec->multiout.dac_nids[2],
  2776. spec->multiout.dac_nids[3],
  2777. spec->multiout.dac_nids[4]);
  2778. return 0;
  2779. }
  2780. /* create volume control/switch for the given prefx type */
  2781. static int create_controls_idx(struct hda_codec *codec, const char *pfx,
  2782. int idx, hda_nid_t nid, int chs)
  2783. {
  2784. struct sigmatel_spec *spec = codec->spec;
  2785. char name[32];
  2786. int err;
  2787. if (!spec->check_volume_offset) {
  2788. unsigned int caps, step, nums, db_scale;
  2789. caps = query_amp_caps(codec, nid, HDA_OUTPUT);
  2790. step = (caps & AC_AMPCAP_STEP_SIZE) >>
  2791. AC_AMPCAP_STEP_SIZE_SHIFT;
  2792. step = (step + 1) * 25; /* in .01dB unit */
  2793. nums = (caps & AC_AMPCAP_NUM_STEPS) >>
  2794. AC_AMPCAP_NUM_STEPS_SHIFT;
  2795. db_scale = nums * step;
  2796. /* if dB scale is over -64dB, and finer enough,
  2797. * let's reduce it to half
  2798. */
  2799. if (db_scale > 6400 && nums >= 0x1f)
  2800. spec->volume_offset = nums / 2;
  2801. spec->check_volume_offset = 1;
  2802. }
  2803. sprintf(name, "%s Playback Volume", pfx);
  2804. err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
  2805. HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
  2806. spec->volume_offset));
  2807. if (err < 0)
  2808. return err;
  2809. sprintf(name, "%s Playback Switch", pfx);
  2810. err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
  2811. HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
  2812. if (err < 0)
  2813. return err;
  2814. return 0;
  2815. }
  2816. #define create_controls(codec, pfx, nid, chs) \
  2817. create_controls_idx(codec, pfx, 0, nid, chs)
  2818. static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
  2819. {
  2820. if (spec->multiout.num_dacs > 4) {
  2821. printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
  2822. return 1;
  2823. } else {
  2824. snd_BUG_ON(spec->multiout.dac_nids != spec->dac_nids);
  2825. spec->dac_nids[spec->multiout.num_dacs] = nid;
  2826. spec->multiout.num_dacs++;
  2827. }
  2828. return 0;
  2829. }
  2830. static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
  2831. {
  2832. int i;
  2833. for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
  2834. if (!spec->multiout.extra_out_nid[i]) {
  2835. spec->multiout.extra_out_nid[i] = nid;
  2836. return 0;
  2837. }
  2838. }
  2839. printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
  2840. return 1;
  2841. }
  2842. /* Create output controls
  2843. * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
  2844. */
  2845. static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
  2846. const hda_nid_t *pins,
  2847. const hda_nid_t *dac_nids,
  2848. int type)
  2849. {
  2850. struct sigmatel_spec *spec = codec->spec;
  2851. static const char * const chname[4] = {
  2852. "Front", "Surround", NULL /*CLFE*/, "Side"
  2853. };
  2854. hda_nid_t nid;
  2855. int i, err;
  2856. unsigned int wid_caps;
  2857. for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
  2858. if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
  2859. if (is_jack_detectable(codec, pins[i]))
  2860. spec->hp_detect = 1;
  2861. }
  2862. nid = dac_nids[i];
  2863. if (!nid)
  2864. continue;
  2865. if (type != AUTO_PIN_HP_OUT && i == 2) {
  2866. /* Center/LFE */
  2867. err = create_controls(codec, "Center", nid, 1);
  2868. if (err < 0)
  2869. return err;
  2870. err = create_controls(codec, "LFE", nid, 2);
  2871. if (err < 0)
  2872. return err;
  2873. wid_caps = get_wcaps(codec, nid);
  2874. if (wid_caps & AC_WCAP_LR_SWAP) {
  2875. err = stac92xx_add_control(spec,
  2876. STAC_CTL_WIDGET_CLFE_SWITCH,
  2877. "Swap Center/LFE Playback Switch", nid);
  2878. if (err < 0)
  2879. return err;
  2880. }
  2881. } else {
  2882. const char *name;
  2883. int idx;
  2884. switch (type) {
  2885. case AUTO_PIN_HP_OUT:
  2886. name = "Headphone";
  2887. idx = i;
  2888. break;
  2889. case AUTO_PIN_SPEAKER_OUT:
  2890. if (num_outs <= 2) {
  2891. name = i ? "Bass Speaker" : "Speaker";
  2892. idx = 0;
  2893. break;
  2894. }
  2895. /* Fall through in case of multi speaker outs */
  2896. default:
  2897. name = chname[i];
  2898. idx = 0;
  2899. break;
  2900. }
  2901. err = create_controls_idx(codec, name, idx, nid, 3);
  2902. if (err < 0)
  2903. return err;
  2904. }
  2905. }
  2906. return 0;
  2907. }
  2908. static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
  2909. unsigned int dir_mask, unsigned int data);
  2910. /* hook for controlling mic-mute LED GPIO */
  2911. static int stac92xx_capture_sw_put_led(struct snd_kcontrol *kcontrol,
  2912. struct snd_ctl_elem_value *ucontrol)
  2913. {
  2914. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  2915. struct sigmatel_spec *spec = codec->spec;
  2916. int err;
  2917. bool mute;
  2918. err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
  2919. if (err <= 0)
  2920. return err;
  2921. mute = !(ucontrol->value.integer.value[0] &&
  2922. ucontrol->value.integer.value[1]);
  2923. if (spec->mic_mute_led_on != mute) {
  2924. spec->mic_mute_led_on = mute;
  2925. if (mute)
  2926. spec->gpio_data |= spec->mic_mute_led_gpio;
  2927. else
  2928. spec->gpio_data &= ~spec->mic_mute_led_gpio;
  2929. stac_gpio_set(codec, spec->gpio_mask,
  2930. spec->gpio_dir, spec->gpio_data);
  2931. }
  2932. return err;
  2933. }
  2934. static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
  2935. unsigned long sw, int idx)
  2936. {
  2937. struct sigmatel_spec *spec = codec->spec;
  2938. struct snd_kcontrol_new *knew;
  2939. int err;
  2940. err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
  2941. "Capture Volume", vol);
  2942. if (err < 0)
  2943. return err;
  2944. knew = add_control_temp(spec,
  2945. &stac92xx_control_templates[STAC_CTL_WIDGET_MUTE],
  2946. idx, "Capture Switch", sw);
  2947. if (!knew)
  2948. return -ENOMEM;
  2949. /* add a LED hook for some HP laptops */
  2950. if (spec->mic_mute_led_gpio)
  2951. knew->put = stac92xx_capture_sw_put_led;
  2952. return 0;
  2953. }
  2954. /* add playback controls from the parsed DAC table */
  2955. static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
  2956. const struct auto_pin_cfg *cfg)
  2957. {
  2958. struct sigmatel_spec *spec = codec->spec;
  2959. hda_nid_t nid;
  2960. int err;
  2961. int idx;
  2962. err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
  2963. spec->multiout.dac_nids,
  2964. cfg->line_out_type);
  2965. if (err < 0)
  2966. return err;
  2967. if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
  2968. err = stac92xx_add_control(spec,
  2969. STAC_CTL_WIDGET_HP_SWITCH,
  2970. "Headphone as Line Out Switch",
  2971. cfg->hp_pins[cfg->hp_outs - 1]);
  2972. if (err < 0)
  2973. return err;
  2974. }
  2975. for (idx = 0; idx < cfg->num_inputs; idx++) {
  2976. if (cfg->inputs[idx].type > AUTO_PIN_LINE_IN)
  2977. break;
  2978. nid = cfg->inputs[idx].pin;
  2979. err = stac92xx_add_jack_mode_control(codec, nid, idx);
  2980. if (err < 0)
  2981. return err;
  2982. }
  2983. return 0;
  2984. }
  2985. /* add playback controls for Speaker and HP outputs */
  2986. static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
  2987. struct auto_pin_cfg *cfg)
  2988. {
  2989. struct sigmatel_spec *spec = codec->spec;
  2990. int err;
  2991. err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
  2992. spec->hp_dacs, AUTO_PIN_HP_OUT);
  2993. if (err < 0)
  2994. return err;
  2995. err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
  2996. spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
  2997. if (err < 0)
  2998. return err;
  2999. return 0;
  3000. }
  3001. /* labels for mono mux outputs */
  3002. static const char * const stac92xx_mono_labels[4] = {
  3003. "DAC0", "DAC1", "Mixer", "DAC2"
  3004. };
  3005. /* create mono mux for mono out on capable codecs */
  3006. static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
  3007. {
  3008. struct sigmatel_spec *spec = codec->spec;
  3009. struct hda_input_mux *mono_mux = &spec->private_mono_mux;
  3010. int i, num_cons;
  3011. hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
  3012. num_cons = snd_hda_get_connections(codec,
  3013. spec->mono_nid,
  3014. con_lst,
  3015. HDA_MAX_NUM_INPUTS);
  3016. if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
  3017. return -EINVAL;
  3018. for (i = 0; i < num_cons; i++)
  3019. snd_hda_add_imux_item(mono_mux, stac92xx_mono_labels[i], i,
  3020. NULL);
  3021. return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
  3022. "Mono Mux", spec->mono_nid);
  3023. }
  3024. /* create PC beep volume controls */
  3025. static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
  3026. hda_nid_t nid)
  3027. {
  3028. struct sigmatel_spec *spec = codec->spec;
  3029. u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
  3030. int err, type = STAC_CTL_WIDGET_MUTE_BEEP;
  3031. if (spec->anabeep_nid == nid)
  3032. type = STAC_CTL_WIDGET_MUTE;
  3033. /* check for mute support for the the amp */
  3034. if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
  3035. err = stac92xx_add_control(spec, type,
  3036. "Beep Playback Switch",
  3037. HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
  3038. if (err < 0)
  3039. return err;
  3040. }
  3041. /* check to see if there is volume support for the amp */
  3042. if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
  3043. err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
  3044. "Beep Playback Volume",
  3045. HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
  3046. if (err < 0)
  3047. return err;
  3048. }
  3049. return 0;
  3050. }
  3051. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  3052. #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
  3053. static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
  3054. struct snd_ctl_elem_value *ucontrol)
  3055. {
  3056. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  3057. ucontrol->value.integer.value[0] = codec->beep->enabled;
  3058. return 0;
  3059. }
  3060. static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
  3061. struct snd_ctl_elem_value *ucontrol)
  3062. {
  3063. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  3064. return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
  3065. }
  3066. static const struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
  3067. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  3068. .info = stac92xx_dig_beep_switch_info,
  3069. .get = stac92xx_dig_beep_switch_get,
  3070. .put = stac92xx_dig_beep_switch_put,
  3071. };
  3072. static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
  3073. {
  3074. return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
  3075. 0, "Beep Playback Switch", 0);
  3076. }
  3077. #endif
  3078. static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
  3079. {
  3080. struct sigmatel_spec *spec = codec->spec;
  3081. int i, j, err = 0;
  3082. for (i = 0; i < spec->num_muxes; i++) {
  3083. hda_nid_t nid;
  3084. unsigned int wcaps;
  3085. unsigned long val;
  3086. nid = spec->mux_nids[i];
  3087. wcaps = get_wcaps(codec, nid);
  3088. if (!(wcaps & AC_WCAP_OUT_AMP))
  3089. continue;
  3090. /* check whether already the same control was created as
  3091. * normal Capture Volume.
  3092. */
  3093. val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
  3094. for (j = 0; j < spec->num_caps; j++) {
  3095. if (spec->capvols[j] == val)
  3096. break;
  3097. }
  3098. if (j < spec->num_caps)
  3099. continue;
  3100. err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, i,
  3101. "Mux Capture Volume", val);
  3102. if (err < 0)
  3103. return err;
  3104. }
  3105. return 0;
  3106. };
  3107. static const char * const stac92xx_spdif_labels[3] = {
  3108. "Digital Playback", "Analog Mux 1", "Analog Mux 2",
  3109. };
  3110. static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
  3111. {
  3112. struct sigmatel_spec *spec = codec->spec;
  3113. struct hda_input_mux *spdif_mux = &spec->private_smux;
  3114. const char * const *labels = spec->spdif_labels;
  3115. int i, num_cons;
  3116. hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
  3117. num_cons = snd_hda_get_connections(codec,
  3118. spec->smux_nids[0],
  3119. con_lst,
  3120. HDA_MAX_NUM_INPUTS);
  3121. if (num_cons <= 0)
  3122. return -EINVAL;
  3123. if (!labels)
  3124. labels = stac92xx_spdif_labels;
  3125. for (i = 0; i < num_cons; i++)
  3126. snd_hda_add_imux_item(spdif_mux, labels[i], i, NULL);
  3127. return 0;
  3128. }
  3129. /* labels for dmic mux inputs */
  3130. static const char * const stac92xx_dmic_labels[5] = {
  3131. "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
  3132. "Digital Mic 3", "Digital Mic 4"
  3133. };
  3134. static hda_nid_t get_connected_node(struct hda_codec *codec, hda_nid_t mux,
  3135. int idx)
  3136. {
  3137. hda_nid_t conn[HDA_MAX_NUM_INPUTS];
  3138. int nums;
  3139. nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
  3140. if (idx >= 0 && idx < nums)
  3141. return conn[idx];
  3142. return 0;
  3143. }
  3144. /* look for NID recursively */
  3145. #define get_connection_index(codec, mux, nid) \
  3146. snd_hda_get_conn_index(codec, mux, nid, 1)
  3147. /* create a volume assigned to the given pin (only if supported) */
  3148. /* return 1 if the volume control is created */
  3149. static int create_elem_capture_vol(struct hda_codec *codec, hda_nid_t nid,
  3150. const char *label, int idx, int direction)
  3151. {
  3152. unsigned int caps, nums;
  3153. char name[32];
  3154. int err;
  3155. if (direction == HDA_OUTPUT)
  3156. caps = AC_WCAP_OUT_AMP;
  3157. else
  3158. caps = AC_WCAP_IN_AMP;
  3159. if (!(get_wcaps(codec, nid) & caps))
  3160. return 0;
  3161. caps = query_amp_caps(codec, nid, direction);
  3162. nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
  3163. if (!nums)
  3164. return 0;
  3165. snprintf(name, sizeof(name), "%s Capture Volume", label);
  3166. err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx, name,
  3167. HDA_COMPOSE_AMP_VAL(nid, 3, 0, direction));
  3168. if (err < 0)
  3169. return err;
  3170. return 1;
  3171. }
  3172. /* create playback/capture controls for input pins on dmic capable codecs */
  3173. static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
  3174. const struct auto_pin_cfg *cfg)
  3175. {
  3176. struct sigmatel_spec *spec = codec->spec;
  3177. struct hda_input_mux *imux = &spec->private_imux;
  3178. struct hda_input_mux *dimux = &spec->private_dimux;
  3179. int err, i;
  3180. unsigned int def_conf;
  3181. snd_hda_add_imux_item(dimux, stac92xx_dmic_labels[0], 0, NULL);
  3182. for (i = 0; i < spec->num_dmics; i++) {
  3183. hda_nid_t nid;
  3184. int index, type_idx;
  3185. char label[32];
  3186. nid = spec->dmic_nids[i];
  3187. if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
  3188. continue;
  3189. def_conf = snd_hda_codec_get_pincfg(codec, nid);
  3190. if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
  3191. continue;
  3192. index = get_connection_index(codec, spec->dmux_nids[0], nid);
  3193. if (index < 0)
  3194. continue;
  3195. snd_hda_get_pin_label(codec, nid, &spec->autocfg,
  3196. label, sizeof(label), NULL);
  3197. snd_hda_add_imux_item(dimux, label, index, &type_idx);
  3198. if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1)
  3199. snd_hda_add_imux_item(imux, label, index, &type_idx);
  3200. err = create_elem_capture_vol(codec, nid, label, type_idx,
  3201. HDA_INPUT);
  3202. if (err < 0)
  3203. return err;
  3204. if (!err) {
  3205. err = create_elem_capture_vol(codec, nid, label,
  3206. type_idx, HDA_OUTPUT);
  3207. if (err < 0)
  3208. return err;
  3209. if (!err) {
  3210. nid = get_connected_node(codec,
  3211. spec->dmux_nids[0], index);
  3212. if (nid)
  3213. err = create_elem_capture_vol(codec,
  3214. nid, label,
  3215. type_idx, HDA_INPUT);
  3216. if (err < 0)
  3217. return err;
  3218. }
  3219. }
  3220. }
  3221. return 0;
  3222. }
  3223. static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid,
  3224. hda_nid_t *fixed, hda_nid_t *ext, hda_nid_t *dock)
  3225. {
  3226. unsigned int cfg;
  3227. unsigned int type;
  3228. if (!nid)
  3229. return 0;
  3230. cfg = snd_hda_codec_get_pincfg(codec, nid);
  3231. type = get_defcfg_device(cfg);
  3232. switch (snd_hda_get_input_pin_attr(cfg)) {
  3233. case INPUT_PIN_ATTR_INT:
  3234. if (*fixed)
  3235. return 1; /* already occupied */
  3236. if (type != AC_JACK_MIC_IN)
  3237. return 1; /* invalid type */
  3238. *fixed = nid;
  3239. break;
  3240. case INPUT_PIN_ATTR_UNUSED:
  3241. break;
  3242. case INPUT_PIN_ATTR_DOCK:
  3243. if (*dock)
  3244. return 1; /* already occupied */
  3245. if (type != AC_JACK_MIC_IN && type != AC_JACK_LINE_IN)
  3246. return 1; /* invalid type */
  3247. *dock = nid;
  3248. break;
  3249. default:
  3250. if (*ext)
  3251. return 1; /* already occupied */
  3252. if (type != AC_JACK_MIC_IN)
  3253. return 1; /* invalid type */
  3254. *ext = nid;
  3255. break;
  3256. }
  3257. return 0;
  3258. }
  3259. static int set_mic_route(struct hda_codec *codec,
  3260. struct sigmatel_mic_route *mic,
  3261. hda_nid_t pin)
  3262. {
  3263. struct sigmatel_spec *spec = codec->spec;
  3264. struct auto_pin_cfg *cfg = &spec->autocfg;
  3265. int i;
  3266. mic->pin = pin;
  3267. if (pin == 0)
  3268. return 0;
  3269. for (i = 0; i < cfg->num_inputs; i++) {
  3270. if (pin == cfg->inputs[i].pin)
  3271. break;
  3272. }
  3273. if (i < cfg->num_inputs && cfg->inputs[i].type == AUTO_PIN_MIC) {
  3274. /* analog pin */
  3275. i = get_connection_index(codec, spec->mux_nids[0], pin);
  3276. if (i < 0)
  3277. return -1;
  3278. mic->mux_idx = i;
  3279. mic->dmux_idx = -1;
  3280. if (spec->dmux_nids)
  3281. mic->dmux_idx = get_connection_index(codec,
  3282. spec->dmux_nids[0],
  3283. spec->mux_nids[0]);
  3284. } else if (spec->dmux_nids) {
  3285. /* digital pin */
  3286. i = get_connection_index(codec, spec->dmux_nids[0], pin);
  3287. if (i < 0)
  3288. return -1;
  3289. mic->dmux_idx = i;
  3290. mic->mux_idx = -1;
  3291. if (spec->mux_nids)
  3292. mic->mux_idx = get_connection_index(codec,
  3293. spec->mux_nids[0],
  3294. spec->dmux_nids[0]);
  3295. }
  3296. return 0;
  3297. }
  3298. /* return non-zero if the device is for automatic mic switch */
  3299. static int stac_check_auto_mic(struct hda_codec *codec)
  3300. {
  3301. struct sigmatel_spec *spec = codec->spec;
  3302. struct auto_pin_cfg *cfg = &spec->autocfg;
  3303. hda_nid_t fixed, ext, dock;
  3304. int i;
  3305. fixed = ext = dock = 0;
  3306. for (i = 0; i < cfg->num_inputs; i++)
  3307. if (check_mic_pin(codec, cfg->inputs[i].pin,
  3308. &fixed, &ext, &dock))
  3309. return 0;
  3310. for (i = 0; i < spec->num_dmics; i++)
  3311. if (check_mic_pin(codec, spec->dmic_nids[i],
  3312. &fixed, &ext, &dock))
  3313. return 0;
  3314. if (!fixed || (!ext && !dock))
  3315. return 0; /* no input to switch */
  3316. if (!is_jack_detectable(codec, ext))
  3317. return 0; /* no unsol support */
  3318. if (set_mic_route(codec, &spec->ext_mic, ext) ||
  3319. set_mic_route(codec, &spec->int_mic, fixed) ||
  3320. set_mic_route(codec, &spec->dock_mic, dock))
  3321. return 0; /* something is wrong */
  3322. return 1;
  3323. }
  3324. /* create playback/capture controls for input pins */
  3325. static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
  3326. {
  3327. struct sigmatel_spec *spec = codec->spec;
  3328. struct hda_input_mux *imux = &spec->private_imux;
  3329. int i, j;
  3330. const char *label;
  3331. for (i = 0; i < cfg->num_inputs; i++) {
  3332. hda_nid_t nid = cfg->inputs[i].pin;
  3333. int index, err, type_idx;
  3334. index = -1;
  3335. for (j = 0; j < spec->num_muxes; j++) {
  3336. index = get_connection_index(codec, spec->mux_nids[j],
  3337. nid);
  3338. if (index >= 0)
  3339. break;
  3340. }
  3341. if (index < 0)
  3342. continue;
  3343. label = hda_get_autocfg_input_label(codec, cfg, i);
  3344. snd_hda_add_imux_item(imux, label, index, &type_idx);
  3345. err = create_elem_capture_vol(codec, nid,
  3346. label, type_idx,
  3347. HDA_INPUT);
  3348. if (err < 0)
  3349. return err;
  3350. }
  3351. spec->num_analog_muxes = imux->num_items;
  3352. if (imux->num_items) {
  3353. /*
  3354. * Set the current input for the muxes.
  3355. * The STAC9221 has two input muxes with identical source
  3356. * NID lists. Hopefully this won't get confused.
  3357. */
  3358. for (i = 0; i < spec->num_muxes; i++) {
  3359. snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
  3360. AC_VERB_SET_CONNECT_SEL,
  3361. imux->items[0].index);
  3362. }
  3363. }
  3364. return 0;
  3365. }
  3366. static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
  3367. {
  3368. struct sigmatel_spec *spec = codec->spec;
  3369. int i;
  3370. for (i = 0; i < spec->autocfg.line_outs; i++) {
  3371. hda_nid_t nid = spec->autocfg.line_out_pins[i];
  3372. stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
  3373. }
  3374. }
  3375. static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
  3376. {
  3377. struct sigmatel_spec *spec = codec->spec;
  3378. int i;
  3379. for (i = 0; i < spec->autocfg.hp_outs; i++) {
  3380. hda_nid_t pin;
  3381. pin = spec->autocfg.hp_pins[i];
  3382. if (pin) /* connect to front */
  3383. stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
  3384. }
  3385. for (i = 0; i < spec->autocfg.speaker_outs; i++) {
  3386. hda_nid_t pin;
  3387. pin = spec->autocfg.speaker_pins[i];
  3388. if (pin) /* connect to front */
  3389. stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
  3390. }
  3391. }
  3392. static int is_dual_headphones(struct hda_codec *codec)
  3393. {
  3394. struct sigmatel_spec *spec = codec->spec;
  3395. int i, valid_hps;
  3396. if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT ||
  3397. spec->autocfg.hp_outs <= 1)
  3398. return 0;
  3399. valid_hps = 0;
  3400. for (i = 0; i < spec->autocfg.hp_outs; i++) {
  3401. hda_nid_t nid = spec->autocfg.hp_pins[i];
  3402. unsigned int cfg = snd_hda_codec_get_pincfg(codec, nid);
  3403. if (get_defcfg_location(cfg) & AC_JACK_LOC_SEPARATE)
  3404. continue;
  3405. valid_hps++;
  3406. }
  3407. return (valid_hps > 1);
  3408. }
  3409. static int stac92xx_parse_auto_config(struct hda_codec *codec)
  3410. {
  3411. struct sigmatel_spec *spec = codec->spec;
  3412. hda_nid_t dig_out = 0, dig_in = 0;
  3413. int hp_swap = 0;
  3414. int i, err;
  3415. if ((err = snd_hda_parse_pin_def_config(codec,
  3416. &spec->autocfg,
  3417. spec->dmic_nids)) < 0)
  3418. return err;
  3419. if (! spec->autocfg.line_outs)
  3420. return 0; /* can't find valid pin config */
  3421. /* If we have no real line-out pin and multiple hp-outs, HPs should
  3422. * be set up as multi-channel outputs.
  3423. */
  3424. if (is_dual_headphones(codec)) {
  3425. /* Copy hp_outs to line_outs, backup line_outs in
  3426. * speaker_outs so that the following routines can handle
  3427. * HP pins as primary outputs.
  3428. */
  3429. snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
  3430. memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
  3431. sizeof(spec->autocfg.line_out_pins));
  3432. spec->autocfg.speaker_outs = spec->autocfg.line_outs;
  3433. memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
  3434. sizeof(spec->autocfg.hp_pins));
  3435. spec->autocfg.line_outs = spec->autocfg.hp_outs;
  3436. spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
  3437. spec->autocfg.hp_outs = 0;
  3438. hp_swap = 1;
  3439. }
  3440. if (spec->autocfg.mono_out_pin) {
  3441. int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
  3442. (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
  3443. u32 caps = query_amp_caps(codec,
  3444. spec->autocfg.mono_out_pin, dir);
  3445. hda_nid_t conn_list[1];
  3446. /* get the mixer node and then the mono mux if it exists */
  3447. if (snd_hda_get_connections(codec,
  3448. spec->autocfg.mono_out_pin, conn_list, 1) &&
  3449. snd_hda_get_connections(codec, conn_list[0],
  3450. conn_list, 1) > 0) {
  3451. int wcaps = get_wcaps(codec, conn_list[0]);
  3452. int wid_type = get_wcaps_type(wcaps);
  3453. /* LR swap check, some stac925x have a mux that
  3454. * changes the DACs output path instead of the
  3455. * mono-mux path.
  3456. */
  3457. if (wid_type == AC_WID_AUD_SEL &&
  3458. !(wcaps & AC_WCAP_LR_SWAP))
  3459. spec->mono_nid = conn_list[0];
  3460. }
  3461. if (dir) {
  3462. hda_nid_t nid = spec->autocfg.mono_out_pin;
  3463. /* most mono outs have a least a mute/unmute switch */
  3464. dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
  3465. err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
  3466. "Mono Playback Switch",
  3467. HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
  3468. if (err < 0)
  3469. return err;
  3470. /* check for volume support for the amp */
  3471. if ((caps & AC_AMPCAP_NUM_STEPS)
  3472. >> AC_AMPCAP_NUM_STEPS_SHIFT) {
  3473. err = stac92xx_add_control(spec,
  3474. STAC_CTL_WIDGET_VOL,
  3475. "Mono Playback Volume",
  3476. HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
  3477. if (err < 0)
  3478. return err;
  3479. }
  3480. }
  3481. stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
  3482. AC_PINCTL_OUT_EN);
  3483. }
  3484. if (!spec->multiout.num_dacs) {
  3485. err = stac92xx_auto_fill_dac_nids(codec);
  3486. if (err < 0)
  3487. return err;
  3488. err = stac92xx_auto_create_multi_out_ctls(codec,
  3489. &spec->autocfg);
  3490. if (err < 0)
  3491. return err;
  3492. }
  3493. /* setup analog beep controls */
  3494. if (spec->anabeep_nid > 0) {
  3495. err = stac92xx_auto_create_beep_ctls(codec,
  3496. spec->anabeep_nid);
  3497. if (err < 0)
  3498. return err;
  3499. }
  3500. /* setup digital beep controls and input device */
  3501. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  3502. if (spec->digbeep_nid > 0) {
  3503. hda_nid_t nid = spec->digbeep_nid;
  3504. unsigned int caps;
  3505. err = stac92xx_auto_create_beep_ctls(codec, nid);
  3506. if (err < 0)
  3507. return err;
  3508. err = snd_hda_attach_beep_device(codec, nid);
  3509. if (err < 0)
  3510. return err;
  3511. if (codec->beep) {
  3512. /* IDT/STAC codecs have linear beep tone parameter */
  3513. codec->beep->linear_tone = spec->linear_tone_beep;
  3514. /* if no beep switch is available, make its own one */
  3515. caps = query_amp_caps(codec, nid, HDA_OUTPUT);
  3516. if (!(caps & AC_AMPCAP_MUTE)) {
  3517. err = stac92xx_beep_switch_ctl(codec);
  3518. if (err < 0)
  3519. return err;
  3520. }
  3521. }
  3522. }
  3523. #endif
  3524. err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
  3525. if (err < 0)
  3526. return err;
  3527. /* All output parsing done, now restore the swapped hp pins */
  3528. if (hp_swap) {
  3529. memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,
  3530. sizeof(spec->autocfg.hp_pins));
  3531. spec->autocfg.hp_outs = spec->autocfg.line_outs;
  3532. spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
  3533. spec->autocfg.line_outs = 0;
  3534. }
  3535. if (stac_check_auto_mic(codec)) {
  3536. spec->auto_mic = 1;
  3537. /* only one capture for auto-mic */
  3538. spec->num_adcs = 1;
  3539. spec->num_caps = 1;
  3540. spec->num_muxes = 1;
  3541. }
  3542. for (i = 0; i < spec->num_caps; i++) {
  3543. err = stac92xx_add_capvol_ctls(codec, spec->capvols[i],
  3544. spec->capsws[i], i);
  3545. if (err < 0)
  3546. return err;
  3547. }
  3548. err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
  3549. if (err < 0)
  3550. return err;
  3551. if (spec->mono_nid > 0) {
  3552. err = stac92xx_auto_create_mono_output_ctls(codec);
  3553. if (err < 0)
  3554. return err;
  3555. }
  3556. if (spec->num_dmics > 0 && !spec->dinput_mux)
  3557. if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
  3558. &spec->autocfg)) < 0)
  3559. return err;
  3560. if (spec->num_muxes > 0) {
  3561. err = stac92xx_auto_create_mux_input_ctls(codec);
  3562. if (err < 0)
  3563. return err;
  3564. }
  3565. if (spec->num_smuxes > 0) {
  3566. err = stac92xx_auto_create_spdif_mux_ctls(codec);
  3567. if (err < 0)
  3568. return err;
  3569. }
  3570. err = stac92xx_add_input_source(spec);
  3571. if (err < 0)
  3572. return err;
  3573. spec->multiout.max_channels = spec->multiout.num_dacs * 2;
  3574. if (spec->multiout.max_channels > 2)
  3575. spec->surr_switch = 1;
  3576. /* find digital out and in converters */
  3577. for (i = codec->start_nid; i < codec->start_nid + codec->num_nodes; i++) {
  3578. unsigned int wid_caps = get_wcaps(codec, i);
  3579. if (wid_caps & AC_WCAP_DIGITAL) {
  3580. switch (get_wcaps_type(wid_caps)) {
  3581. case AC_WID_AUD_OUT:
  3582. if (!dig_out)
  3583. dig_out = i;
  3584. break;
  3585. case AC_WID_AUD_IN:
  3586. if (!dig_in)
  3587. dig_in = i;
  3588. break;
  3589. }
  3590. }
  3591. }
  3592. if (spec->autocfg.dig_outs)
  3593. spec->multiout.dig_out_nid = dig_out;
  3594. if (dig_in && spec->autocfg.dig_in_pin)
  3595. spec->dig_in_nid = dig_in;
  3596. if (spec->kctls.list)
  3597. spec->mixers[spec->num_mixers++] = spec->kctls.list;
  3598. spec->input_mux = &spec->private_imux;
  3599. if (!spec->dinput_mux)
  3600. spec->dinput_mux = &spec->private_dimux;
  3601. spec->sinput_mux = &spec->private_smux;
  3602. spec->mono_mux = &spec->private_mono_mux;
  3603. return 1;
  3604. }
  3605. /* add playback controls for HP output */
  3606. static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
  3607. struct auto_pin_cfg *cfg)
  3608. {
  3609. struct sigmatel_spec *spec = codec->spec;
  3610. hda_nid_t pin = cfg->hp_pins[0];
  3611. if (! pin)
  3612. return 0;
  3613. if (is_jack_detectable(codec, pin))
  3614. spec->hp_detect = 1;
  3615. return 0;
  3616. }
  3617. /* add playback controls for LFE output */
  3618. static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
  3619. struct auto_pin_cfg *cfg)
  3620. {
  3621. struct sigmatel_spec *spec = codec->spec;
  3622. int err;
  3623. hda_nid_t lfe_pin = 0x0;
  3624. int i;
  3625. /*
  3626. * search speaker outs and line outs for a mono speaker pin
  3627. * with an amp. If one is found, add LFE controls
  3628. * for it.
  3629. */
  3630. for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
  3631. hda_nid_t pin = spec->autocfg.speaker_pins[i];
  3632. unsigned int wcaps = get_wcaps(codec, pin);
  3633. wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
  3634. if (wcaps == AC_WCAP_OUT_AMP)
  3635. /* found a mono speaker with an amp, must be lfe */
  3636. lfe_pin = pin;
  3637. }
  3638. /* if speaker_outs is 0, then speakers may be in line_outs */
  3639. if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
  3640. for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
  3641. hda_nid_t pin = spec->autocfg.line_out_pins[i];
  3642. unsigned int defcfg;
  3643. defcfg = snd_hda_codec_get_pincfg(codec, pin);
  3644. if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
  3645. unsigned int wcaps = get_wcaps(codec, pin);
  3646. wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
  3647. if (wcaps == AC_WCAP_OUT_AMP)
  3648. /* found a mono speaker with an amp,
  3649. must be lfe */
  3650. lfe_pin = pin;
  3651. }
  3652. }
  3653. }
  3654. if (lfe_pin) {
  3655. err = create_controls(codec, "LFE", lfe_pin, 1);
  3656. if (err < 0)
  3657. return err;
  3658. }
  3659. return 0;
  3660. }
  3661. static int stac9200_parse_auto_config(struct hda_codec *codec)
  3662. {
  3663. struct sigmatel_spec *spec = codec->spec;
  3664. int err;
  3665. if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
  3666. return err;
  3667. if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
  3668. return err;
  3669. if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
  3670. return err;
  3671. if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
  3672. return err;
  3673. if (spec->num_muxes > 0) {
  3674. err = stac92xx_auto_create_mux_input_ctls(codec);
  3675. if (err < 0)
  3676. return err;
  3677. }
  3678. err = stac92xx_add_input_source(spec);
  3679. if (err < 0)
  3680. return err;
  3681. if (spec->autocfg.dig_outs)
  3682. spec->multiout.dig_out_nid = 0x05;
  3683. if (spec->autocfg.dig_in_pin)
  3684. spec->dig_in_nid = 0x04;
  3685. if (spec->kctls.list)
  3686. spec->mixers[spec->num_mixers++] = spec->kctls.list;
  3687. spec->input_mux = &spec->private_imux;
  3688. spec->dinput_mux = &spec->private_dimux;
  3689. return 1;
  3690. }
  3691. /*
  3692. * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
  3693. * funky external mute control using GPIO pins.
  3694. */
  3695. static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
  3696. unsigned int dir_mask, unsigned int data)
  3697. {
  3698. unsigned int gpiostate, gpiomask, gpiodir;
  3699. snd_printdd("%s msk %x dir %x gpio %x\n", __func__, mask, dir_mask, data);
  3700. gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
  3701. AC_VERB_GET_GPIO_DATA, 0);
  3702. gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
  3703. gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
  3704. AC_VERB_GET_GPIO_MASK, 0);
  3705. gpiomask |= mask;
  3706. gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
  3707. AC_VERB_GET_GPIO_DIRECTION, 0);
  3708. gpiodir |= dir_mask;
  3709. /* Configure GPIOx as CMOS */
  3710. snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
  3711. snd_hda_codec_write(codec, codec->afg, 0,
  3712. AC_VERB_SET_GPIO_MASK, gpiomask);
  3713. snd_hda_codec_read(codec, codec->afg, 0,
  3714. AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
  3715. msleep(1);
  3716. snd_hda_codec_read(codec, codec->afg, 0,
  3717. AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
  3718. }
  3719. static int stac_add_event(struct hda_codec *codec, hda_nid_t nid,
  3720. unsigned char type, int data)
  3721. {
  3722. struct hda_jack_tbl *event;
  3723. event = snd_hda_jack_tbl_new(codec, nid);
  3724. if (!event)
  3725. return -ENOMEM;
  3726. event->action = type;
  3727. event->private_data = data;
  3728. return 0;
  3729. }
  3730. static void handle_unsol_event(struct hda_codec *codec,
  3731. struct hda_jack_tbl *event);
  3732. /* check if given nid is a valid pin and no other events are assigned
  3733. * to it. If OK, assign the event, set the unsol flag, and returns 1.
  3734. * Otherwise, returns zero.
  3735. */
  3736. static int enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
  3737. unsigned int type)
  3738. {
  3739. struct hda_jack_tbl *event;
  3740. if (!is_jack_detectable(codec, nid))
  3741. return 0;
  3742. event = snd_hda_jack_tbl_new(codec, nid);
  3743. if (!event)
  3744. return -ENOMEM;
  3745. if (event->action && event->action != type)
  3746. return 0;
  3747. event->action = type;
  3748. event->callback = handle_unsol_event;
  3749. snd_hda_jack_detect_enable(codec, nid, 0);
  3750. return 1;
  3751. }
  3752. static int is_nid_out_jack_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
  3753. {
  3754. int i;
  3755. for (i = 0; i < cfg->hp_outs; i++)
  3756. if (cfg->hp_pins[i] == nid)
  3757. return 1; /* nid is a HP-Out */
  3758. for (i = 0; i < cfg->line_outs; i++)
  3759. if (cfg->line_out_pins[i] == nid)
  3760. return 1; /* nid is a line-Out */
  3761. return 0; /* nid is not a HP-Out */
  3762. };
  3763. static void stac92xx_power_down(struct hda_codec *codec)
  3764. {
  3765. struct sigmatel_spec *spec = codec->spec;
  3766. /* power down inactive DACs */
  3767. const hda_nid_t *dac;
  3768. for (dac = spec->dac_list; *dac; dac++)
  3769. if (!check_all_dac_nids(spec, *dac))
  3770. snd_hda_codec_write(codec, *dac, 0,
  3771. AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
  3772. }
  3773. static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
  3774. int enable);
  3775. static inline int get_int_hint(struct hda_codec *codec, const char *key,
  3776. int *valp)
  3777. {
  3778. const char *p;
  3779. p = snd_hda_get_hint(codec, key);
  3780. if (p) {
  3781. unsigned long val;
  3782. if (!strict_strtoul(p, 0, &val)) {
  3783. *valp = val;
  3784. return 1;
  3785. }
  3786. }
  3787. return 0;
  3788. }
  3789. /* override some hints from the hwdep entry */
  3790. static void stac_store_hints(struct hda_codec *codec)
  3791. {
  3792. struct sigmatel_spec *spec = codec->spec;
  3793. int val;
  3794. val = snd_hda_get_bool_hint(codec, "hp_detect");
  3795. if (val >= 0)
  3796. spec->hp_detect = val;
  3797. if (get_int_hint(codec, "gpio_mask", &spec->gpio_mask)) {
  3798. spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
  3799. spec->gpio_mask;
  3800. }
  3801. if (get_int_hint(codec, "gpio_dir", &spec->gpio_dir))
  3802. spec->gpio_mask &= spec->gpio_mask;
  3803. if (get_int_hint(codec, "gpio_data", &spec->gpio_data))
  3804. spec->gpio_dir &= spec->gpio_mask;
  3805. if (get_int_hint(codec, "eapd_mask", &spec->eapd_mask))
  3806. spec->eapd_mask &= spec->gpio_mask;
  3807. if (get_int_hint(codec, "gpio_mute", &spec->gpio_mute))
  3808. spec->gpio_mute &= spec->gpio_mask;
  3809. val = snd_hda_get_bool_hint(codec, "eapd_switch");
  3810. if (val >= 0)
  3811. spec->eapd_switch = val;
  3812. }
  3813. static void stac_issue_unsol_events(struct hda_codec *codec, int num_pins,
  3814. const hda_nid_t *pins)
  3815. {
  3816. while (num_pins--)
  3817. stac_issue_unsol_event(codec, *pins++);
  3818. }
  3819. /* fake event to set up pins */
  3820. static void stac_fake_hp_events(struct hda_codec *codec)
  3821. {
  3822. struct sigmatel_spec *spec = codec->spec;
  3823. if (spec->autocfg.hp_outs)
  3824. stac_issue_unsol_events(codec, spec->autocfg.hp_outs,
  3825. spec->autocfg.hp_pins);
  3826. if (spec->autocfg.line_outs &&
  3827. spec->autocfg.line_out_pins[0] != spec->autocfg.hp_pins[0])
  3828. stac_issue_unsol_events(codec, spec->autocfg.line_outs,
  3829. spec->autocfg.line_out_pins);
  3830. }
  3831. static int stac92xx_init(struct hda_codec *codec)
  3832. {
  3833. struct sigmatel_spec *spec = codec->spec;
  3834. struct auto_pin_cfg *cfg = &spec->autocfg;
  3835. unsigned int gpio;
  3836. int i;
  3837. if (spec->init)
  3838. snd_hda_sequence_write(codec, spec->init);
  3839. /* power down adcs initially */
  3840. if (spec->powerdown_adcs)
  3841. for (i = 0; i < spec->num_adcs; i++)
  3842. snd_hda_codec_write(codec,
  3843. spec->adc_nids[i], 0,
  3844. AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
  3845. /* override some hints */
  3846. stac_store_hints(codec);
  3847. /* set up GPIO */
  3848. gpio = spec->gpio_data;
  3849. /* turn on EAPD statically when spec->eapd_switch isn't set.
  3850. * otherwise, unsol event will turn it on/off dynamically
  3851. */
  3852. if (!spec->eapd_switch)
  3853. gpio |= spec->eapd_mask;
  3854. stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
  3855. /* set up pins */
  3856. if (spec->hp_detect) {
  3857. /* Enable unsolicited responses on the HP widget */
  3858. for (i = 0; i < cfg->hp_outs; i++) {
  3859. hda_nid_t nid = cfg->hp_pins[i];
  3860. enable_pin_detect(codec, nid, STAC_HP_EVENT);
  3861. }
  3862. if (cfg->line_out_type == AUTO_PIN_LINE_OUT &&
  3863. cfg->speaker_outs > 0) {
  3864. /* enable pin-detect for line-outs as well */
  3865. for (i = 0; i < cfg->line_outs; i++) {
  3866. hda_nid_t nid = cfg->line_out_pins[i];
  3867. enable_pin_detect(codec, nid, STAC_LO_EVENT);
  3868. }
  3869. }
  3870. /* force to enable the first line-out; the others are set up
  3871. * in unsol_event
  3872. */
  3873. stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
  3874. AC_PINCTL_OUT_EN);
  3875. /* fake event to set up pins */
  3876. stac_fake_hp_events(codec);
  3877. } else {
  3878. stac92xx_auto_init_multi_out(codec);
  3879. stac92xx_auto_init_hp_out(codec);
  3880. for (i = 0; i < cfg->hp_outs; i++)
  3881. stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
  3882. }
  3883. if (spec->auto_mic) {
  3884. /* initialize connection to analog input */
  3885. if (spec->dmux_nids)
  3886. snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
  3887. AC_VERB_SET_CONNECT_SEL, 0);
  3888. if (enable_pin_detect(codec, spec->ext_mic.pin, STAC_MIC_EVENT))
  3889. stac_issue_unsol_event(codec, spec->ext_mic.pin);
  3890. if (enable_pin_detect(codec, spec->dock_mic.pin,
  3891. STAC_MIC_EVENT))
  3892. stac_issue_unsol_event(codec, spec->dock_mic.pin);
  3893. }
  3894. for (i = 0; i < cfg->num_inputs; i++) {
  3895. hda_nid_t nid = cfg->inputs[i].pin;
  3896. int type = cfg->inputs[i].type;
  3897. unsigned int pinctl, conf;
  3898. if (type == AUTO_PIN_MIC) {
  3899. /* for mic pins, force to initialize */
  3900. pinctl = snd_hda_get_default_vref(codec, nid);
  3901. pinctl |= AC_PINCTL_IN_EN;
  3902. stac92xx_auto_set_pinctl(codec, nid, pinctl);
  3903. } else {
  3904. pinctl = snd_hda_codec_read(codec, nid, 0,
  3905. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  3906. /* if PINCTL already set then skip */
  3907. /* Also, if both INPUT and OUTPUT are set,
  3908. * it must be a BIOS bug; need to override, too
  3909. */
  3910. if (!(pinctl & AC_PINCTL_IN_EN) ||
  3911. (pinctl & AC_PINCTL_OUT_EN)) {
  3912. pinctl &= ~AC_PINCTL_OUT_EN;
  3913. pinctl |= AC_PINCTL_IN_EN;
  3914. stac92xx_auto_set_pinctl(codec, nid, pinctl);
  3915. }
  3916. }
  3917. conf = snd_hda_codec_get_pincfg(codec, nid);
  3918. if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
  3919. if (enable_pin_detect(codec, nid, STAC_INSERT_EVENT))
  3920. stac_issue_unsol_event(codec, nid);
  3921. }
  3922. }
  3923. for (i = 0; i < spec->num_dmics; i++)
  3924. stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
  3925. AC_PINCTL_IN_EN);
  3926. if (cfg->dig_out_pins[0])
  3927. stac92xx_auto_set_pinctl(codec, cfg->dig_out_pins[0],
  3928. AC_PINCTL_OUT_EN);
  3929. if (cfg->dig_in_pin)
  3930. stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
  3931. AC_PINCTL_IN_EN);
  3932. for (i = 0; i < spec->num_pwrs; i++) {
  3933. hda_nid_t nid = spec->pwr_nids[i];
  3934. unsigned int pinctl, def_conf;
  3935. def_conf = snd_hda_codec_get_pincfg(codec, nid);
  3936. def_conf = get_defcfg_connect(def_conf);
  3937. if (def_conf == AC_JACK_PORT_NONE) {
  3938. /* power off unused ports */
  3939. stac_toggle_power_map(codec, nid, 0);
  3940. continue;
  3941. }
  3942. if (def_conf == AC_JACK_PORT_FIXED) {
  3943. /* no need for jack detection for fixed pins */
  3944. stac_toggle_power_map(codec, nid, 1);
  3945. continue;
  3946. }
  3947. /* power on when no jack detection is available */
  3948. /* or when the VREF is used for controlling LED */
  3949. if (!spec->hp_detect ||
  3950. spec->vref_mute_led_nid == nid ||
  3951. !is_jack_detectable(codec, nid)) {
  3952. stac_toggle_power_map(codec, nid, 1);
  3953. continue;
  3954. }
  3955. if (is_nid_out_jack_pin(cfg, nid))
  3956. continue; /* already has an unsol event */
  3957. pinctl = snd_hda_codec_read(codec, nid, 0,
  3958. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  3959. /* outputs are only ports capable of power management
  3960. * any attempts on powering down a input port cause the
  3961. * referenced VREF to act quirky.
  3962. */
  3963. if (pinctl & AC_PINCTL_IN_EN) {
  3964. stac_toggle_power_map(codec, nid, 1);
  3965. continue;
  3966. }
  3967. if (enable_pin_detect(codec, nid, STAC_PWR_EVENT)) {
  3968. stac_issue_unsol_event(codec, nid);
  3969. continue;
  3970. }
  3971. /* none of the above, turn the port OFF */
  3972. stac_toggle_power_map(codec, nid, 0);
  3973. }
  3974. /* sync mute LED */
  3975. if (spec->gpio_led) {
  3976. if (spec->vmaster_mute.hook)
  3977. snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
  3978. else /* the very first init call doesn't have vmaster yet */
  3979. stac92xx_update_led_status(codec, false);
  3980. }
  3981. /* sync the power-map */
  3982. if (spec->num_pwrs)
  3983. snd_hda_codec_write(codec, codec->afg, 0,
  3984. AC_VERB_IDT_SET_POWER_MAP,
  3985. spec->power_map_bits);
  3986. if (spec->dac_list)
  3987. stac92xx_power_down(codec);
  3988. return 0;
  3989. }
  3990. static void stac92xx_free_kctls(struct hda_codec *codec)
  3991. {
  3992. struct sigmatel_spec *spec = codec->spec;
  3993. if (spec->kctls.list) {
  3994. struct snd_kcontrol_new *kctl = spec->kctls.list;
  3995. int i;
  3996. for (i = 0; i < spec->kctls.used; i++)
  3997. kfree(kctl[i].name);
  3998. }
  3999. snd_array_free(&spec->kctls);
  4000. }
  4001. static void stac92xx_shutup_pins(struct hda_codec *codec)
  4002. {
  4003. unsigned int i, def_conf;
  4004. if (codec->bus->shutdown)
  4005. return;
  4006. for (i = 0; i < codec->init_pins.used; i++) {
  4007. struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
  4008. def_conf = snd_hda_codec_get_pincfg(codec, pin->nid);
  4009. if (get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)
  4010. snd_hda_set_pin_ctl(codec, pin->nid, 0);
  4011. }
  4012. }
  4013. static void stac92xx_shutup(struct hda_codec *codec)
  4014. {
  4015. struct sigmatel_spec *spec = codec->spec;
  4016. stac92xx_shutup_pins(codec);
  4017. if (spec->eapd_mask)
  4018. stac_gpio_set(codec, spec->gpio_mask,
  4019. spec->gpio_dir, spec->gpio_data &
  4020. ~spec->eapd_mask);
  4021. }
  4022. static void stac92xx_free(struct hda_codec *codec)
  4023. {
  4024. struct sigmatel_spec *spec = codec->spec;
  4025. if (! spec)
  4026. return;
  4027. kfree(spec);
  4028. snd_hda_detach_beep_device(codec);
  4029. }
  4030. static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
  4031. unsigned int flag)
  4032. {
  4033. unsigned int old_ctl, pin_ctl;
  4034. pin_ctl = snd_hda_codec_read(codec, nid,
  4035. 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
  4036. if (pin_ctl & AC_PINCTL_IN_EN) {
  4037. /*
  4038. * we need to check the current set-up direction of
  4039. * shared input pins since they can be switched via
  4040. * "xxx as Output" mixer switch
  4041. */
  4042. struct sigmatel_spec *spec = codec->spec;
  4043. if (nid == spec->line_switch || nid == spec->mic_switch)
  4044. return;
  4045. }
  4046. old_ctl = pin_ctl;
  4047. /* if setting pin direction bits, clear the current
  4048. direction bits first */
  4049. if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
  4050. pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
  4051. pin_ctl |= flag;
  4052. if (old_ctl != pin_ctl)
  4053. snd_hda_set_pin_ctl_cache(codec, nid, pin_ctl);
  4054. }
  4055. static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
  4056. unsigned int flag)
  4057. {
  4058. unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
  4059. 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
  4060. if (pin_ctl & flag)
  4061. snd_hda_set_pin_ctl_cache(codec, nid, pin_ctl & ~flag);
  4062. }
  4063. static inline int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
  4064. {
  4065. if (!nid)
  4066. return 0;
  4067. return snd_hda_jack_detect(codec, nid);
  4068. }
  4069. static void stac92xx_line_out_detect(struct hda_codec *codec,
  4070. int presence)
  4071. {
  4072. struct sigmatel_spec *spec = codec->spec;
  4073. struct auto_pin_cfg *cfg = &spec->autocfg;
  4074. int i;
  4075. if (cfg->speaker_outs == 0)
  4076. return;
  4077. for (i = 0; i < cfg->line_outs; i++) {
  4078. if (presence)
  4079. break;
  4080. presence = get_pin_presence(codec, cfg->line_out_pins[i]);
  4081. if (presence) {
  4082. unsigned int pinctl;
  4083. pinctl = snd_hda_codec_read(codec,
  4084. cfg->line_out_pins[i], 0,
  4085. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  4086. if (pinctl & AC_PINCTL_IN_EN)
  4087. presence = 0; /* mic- or line-input */
  4088. }
  4089. }
  4090. if (presence) {
  4091. /* disable speakers */
  4092. for (i = 0; i < cfg->speaker_outs; i++)
  4093. stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
  4094. AC_PINCTL_OUT_EN);
  4095. if (spec->eapd_mask && spec->eapd_switch)
  4096. stac_gpio_set(codec, spec->gpio_mask,
  4097. spec->gpio_dir, spec->gpio_data &
  4098. ~spec->eapd_mask);
  4099. } else {
  4100. /* enable speakers */
  4101. for (i = 0; i < cfg->speaker_outs; i++)
  4102. stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
  4103. AC_PINCTL_OUT_EN);
  4104. if (spec->eapd_mask && spec->eapd_switch)
  4105. stac_gpio_set(codec, spec->gpio_mask,
  4106. spec->gpio_dir, spec->gpio_data |
  4107. spec->eapd_mask);
  4108. }
  4109. }
  4110. /* return non-zero if the hp-pin of the given array index isn't
  4111. * a jack-detection target
  4112. */
  4113. static int no_hp_sensing(struct sigmatel_spec *spec, int i)
  4114. {
  4115. struct auto_pin_cfg *cfg = &spec->autocfg;
  4116. /* ignore sensing of shared line and mic jacks */
  4117. if (cfg->hp_pins[i] == spec->line_switch)
  4118. return 1;
  4119. if (cfg->hp_pins[i] == spec->mic_switch)
  4120. return 1;
  4121. /* ignore if the pin is set as line-out */
  4122. if (cfg->hp_pins[i] == spec->hp_switch)
  4123. return 1;
  4124. return 0;
  4125. }
  4126. static void stac92xx_hp_detect(struct hda_codec *codec)
  4127. {
  4128. struct sigmatel_spec *spec = codec->spec;
  4129. struct auto_pin_cfg *cfg = &spec->autocfg;
  4130. int i, presence;
  4131. presence = 0;
  4132. if (spec->gpio_mute)
  4133. presence = !(snd_hda_codec_read(codec, codec->afg, 0,
  4134. AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
  4135. for (i = 0; i < cfg->hp_outs; i++) {
  4136. if (presence)
  4137. break;
  4138. if (no_hp_sensing(spec, i))
  4139. continue;
  4140. presence = get_pin_presence(codec, cfg->hp_pins[i]);
  4141. if (presence) {
  4142. unsigned int pinctl;
  4143. pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
  4144. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  4145. if (pinctl & AC_PINCTL_IN_EN)
  4146. presence = 0; /* mic- or line-input */
  4147. }
  4148. }
  4149. if (presence) {
  4150. /* disable lineouts */
  4151. if (spec->hp_switch)
  4152. stac92xx_reset_pinctl(codec, spec->hp_switch,
  4153. AC_PINCTL_OUT_EN);
  4154. for (i = 0; i < cfg->line_outs; i++)
  4155. stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
  4156. AC_PINCTL_OUT_EN);
  4157. } else {
  4158. /* enable lineouts */
  4159. if (spec->hp_switch)
  4160. stac92xx_set_pinctl(codec, spec->hp_switch,
  4161. AC_PINCTL_OUT_EN);
  4162. for (i = 0; i < cfg->line_outs; i++)
  4163. stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
  4164. AC_PINCTL_OUT_EN);
  4165. }
  4166. stac92xx_line_out_detect(codec, presence);
  4167. /* toggle hp outs */
  4168. for (i = 0; i < cfg->hp_outs; i++) {
  4169. unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
  4170. if (no_hp_sensing(spec, i))
  4171. continue;
  4172. if (1 /*presence*/)
  4173. stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
  4174. #if 0 /* FIXME */
  4175. /* Resetting the pinctl like below may lead to (a sort of) regressions
  4176. * on some devices since they use the HP pin actually for line/speaker
  4177. * outs although the default pin config shows a different pin (that is
  4178. * wrong and useless).
  4179. *
  4180. * So, it's basically a problem of default pin configs, likely a BIOS issue.
  4181. * But, disabling the code below just works around it, and I'm too tired of
  4182. * bug reports with such devices...
  4183. */
  4184. else
  4185. stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
  4186. #endif /* FIXME */
  4187. }
  4188. }
  4189. static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
  4190. int enable)
  4191. {
  4192. struct sigmatel_spec *spec = codec->spec;
  4193. unsigned int idx, val;
  4194. for (idx = 0; idx < spec->num_pwrs; idx++) {
  4195. if (spec->pwr_nids[idx] == nid)
  4196. break;
  4197. }
  4198. if (idx >= spec->num_pwrs)
  4199. return;
  4200. idx = 1 << idx;
  4201. val = spec->power_map_bits;
  4202. if (enable)
  4203. val &= ~idx;
  4204. else
  4205. val |= idx;
  4206. /* power down unused output ports */
  4207. if (val != spec->power_map_bits) {
  4208. spec->power_map_bits = val;
  4209. snd_hda_codec_write(codec, codec->afg, 0,
  4210. AC_VERB_IDT_SET_POWER_MAP, val);
  4211. }
  4212. }
  4213. static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
  4214. {
  4215. stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
  4216. }
  4217. /* get the pin connection (fixed, none, etc) */
  4218. static unsigned int stac_get_defcfg_connect(struct hda_codec *codec, int idx)
  4219. {
  4220. struct sigmatel_spec *spec = codec->spec;
  4221. unsigned int cfg;
  4222. cfg = snd_hda_codec_get_pincfg(codec, spec->pin_nids[idx]);
  4223. return get_defcfg_connect(cfg);
  4224. }
  4225. static int stac92xx_connected_ports(struct hda_codec *codec,
  4226. const hda_nid_t *nids, int num_nids)
  4227. {
  4228. struct sigmatel_spec *spec = codec->spec;
  4229. int idx, num;
  4230. unsigned int def_conf;
  4231. for (num = 0; num < num_nids; num++) {
  4232. for (idx = 0; idx < spec->num_pins; idx++)
  4233. if (spec->pin_nids[idx] == nids[num])
  4234. break;
  4235. if (idx >= spec->num_pins)
  4236. break;
  4237. def_conf = stac_get_defcfg_connect(codec, idx);
  4238. if (def_conf == AC_JACK_PORT_NONE)
  4239. break;
  4240. }
  4241. return num;
  4242. }
  4243. static void stac92xx_mic_detect(struct hda_codec *codec)
  4244. {
  4245. struct sigmatel_spec *spec = codec->spec;
  4246. struct sigmatel_mic_route *mic;
  4247. if (get_pin_presence(codec, spec->ext_mic.pin))
  4248. mic = &spec->ext_mic;
  4249. else if (get_pin_presence(codec, spec->dock_mic.pin))
  4250. mic = &spec->dock_mic;
  4251. else
  4252. mic = &spec->int_mic;
  4253. if (mic->dmux_idx >= 0)
  4254. snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
  4255. AC_VERB_SET_CONNECT_SEL,
  4256. mic->dmux_idx);
  4257. if (mic->mux_idx >= 0)
  4258. snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0,
  4259. AC_VERB_SET_CONNECT_SEL,
  4260. mic->mux_idx);
  4261. }
  4262. static void handle_unsol_event(struct hda_codec *codec,
  4263. struct hda_jack_tbl *event)
  4264. {
  4265. struct sigmatel_spec *spec = codec->spec;
  4266. int data;
  4267. switch (event->action) {
  4268. case STAC_HP_EVENT:
  4269. case STAC_LO_EVENT:
  4270. stac92xx_hp_detect(codec);
  4271. break;
  4272. case STAC_MIC_EVENT:
  4273. stac92xx_mic_detect(codec);
  4274. break;
  4275. }
  4276. switch (event->action) {
  4277. case STAC_HP_EVENT:
  4278. case STAC_LO_EVENT:
  4279. case STAC_MIC_EVENT:
  4280. case STAC_INSERT_EVENT:
  4281. case STAC_PWR_EVENT:
  4282. if (spec->num_pwrs > 0)
  4283. stac92xx_pin_sense(codec, event->nid);
  4284. switch (codec->subsystem_id) {
  4285. case 0x103c308f:
  4286. if (event->nid == 0xb) {
  4287. int pin = AC_PINCTL_IN_EN;
  4288. if (get_pin_presence(codec, 0xa)
  4289. && get_pin_presence(codec, 0xb))
  4290. pin |= AC_PINCTL_VREF_80;
  4291. if (!get_pin_presence(codec, 0xb))
  4292. pin |= AC_PINCTL_VREF_80;
  4293. /* toggle VREF state based on mic + hp pin
  4294. * status
  4295. */
  4296. stac92xx_auto_set_pinctl(codec, 0x0a, pin);
  4297. }
  4298. }
  4299. break;
  4300. case STAC_VREF_EVENT:
  4301. data = snd_hda_codec_read(codec, codec->afg, 0,
  4302. AC_VERB_GET_GPIO_DATA, 0);
  4303. /* toggle VREF state based on GPIOx status */
  4304. snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
  4305. !!(data & (1 << event->private_data)));
  4306. break;
  4307. }
  4308. }
  4309. static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid)
  4310. {
  4311. struct hda_jack_tbl *event = snd_hda_jack_tbl_get(codec, nid);
  4312. if (!event)
  4313. return;
  4314. handle_unsol_event(codec, event);
  4315. }
  4316. static int hp_blike_system(u32 subsystem_id);
  4317. static void set_hp_led_gpio(struct hda_codec *codec)
  4318. {
  4319. struct sigmatel_spec *spec = codec->spec;
  4320. unsigned int gpio;
  4321. if (spec->gpio_led)
  4322. return;
  4323. gpio = snd_hda_param_read(codec, codec->afg, AC_PAR_GPIO_CAP);
  4324. gpio &= AC_GPIO_IO_COUNT;
  4325. if (gpio > 3)
  4326. spec->gpio_led = 0x08; /* GPIO 3 */
  4327. else
  4328. spec->gpio_led = 0x01; /* GPIO 0 */
  4329. }
  4330. /*
  4331. * This method searches for the mute LED GPIO configuration
  4332. * provided as OEM string in SMBIOS. The format of that string
  4333. * is HP_Mute_LED_P_G or HP_Mute_LED_P
  4334. * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
  4335. * that corresponds to the NOT muted state of the master volume
  4336. * and G is the index of the GPIO to use as the mute LED control (0..9)
  4337. * If _G portion is missing it is assigned based on the codec ID
  4338. *
  4339. * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
  4340. * or HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
  4341. *
  4342. *
  4343. * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
  4344. * SMBIOS - at least the ones I have seen do not have them - which include
  4345. * my own system (HP Pavilion dv6-1110ax) and my cousin's
  4346. * HP Pavilion dv9500t CTO.
  4347. * Need more information on whether it is true across the entire series.
  4348. * -- kunal
  4349. */
  4350. static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
  4351. {
  4352. struct sigmatel_spec *spec = codec->spec;
  4353. const struct dmi_device *dev = NULL;
  4354. if (get_int_hint(codec, "gpio_led", &spec->gpio_led)) {
  4355. get_int_hint(codec, "gpio_led_polarity",
  4356. &spec->gpio_led_polarity);
  4357. return 1;
  4358. }
  4359. if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) {
  4360. while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING,
  4361. NULL, dev))) {
  4362. if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
  4363. &spec->gpio_led_polarity,
  4364. &spec->gpio_led) == 2) {
  4365. unsigned int max_gpio;
  4366. max_gpio = snd_hda_param_read(codec, codec->afg,
  4367. AC_PAR_GPIO_CAP);
  4368. max_gpio &= AC_GPIO_IO_COUNT;
  4369. if (spec->gpio_led < max_gpio)
  4370. spec->gpio_led = 1 << spec->gpio_led;
  4371. else
  4372. spec->vref_mute_led_nid = spec->gpio_led;
  4373. return 1;
  4374. }
  4375. if (sscanf(dev->name, "HP_Mute_LED_%d",
  4376. &spec->gpio_led_polarity) == 1) {
  4377. set_hp_led_gpio(codec);
  4378. return 1;
  4379. }
  4380. /* BIOS bug: unfilled OEM string */
  4381. if (strstr(dev->name, "HP_Mute_LED_P_G")) {
  4382. set_hp_led_gpio(codec);
  4383. switch (codec->subsystem_id) {
  4384. case 0x103c148a:
  4385. spec->gpio_led_polarity = 0;
  4386. break;
  4387. default:
  4388. spec->gpio_led_polarity = 1;
  4389. break;
  4390. }
  4391. return 1;
  4392. }
  4393. }
  4394. /*
  4395. * Fallback case - if we don't find the DMI strings,
  4396. * we statically set the GPIO - if not a B-series system
  4397. * and default polarity is provided
  4398. */
  4399. if (!hp_blike_system(codec->subsystem_id) &&
  4400. (default_polarity == 0 || default_polarity == 1)) {
  4401. set_hp_led_gpio(codec);
  4402. spec->gpio_led_polarity = default_polarity;
  4403. return 1;
  4404. }
  4405. }
  4406. return 0;
  4407. }
  4408. static int hp_blike_system(u32 subsystem_id)
  4409. {
  4410. switch (subsystem_id) {
  4411. case 0x103c1520:
  4412. case 0x103c1521:
  4413. case 0x103c1523:
  4414. case 0x103c1524:
  4415. case 0x103c1525:
  4416. case 0x103c1722:
  4417. case 0x103c1723:
  4418. case 0x103c1724:
  4419. case 0x103c1725:
  4420. case 0x103c1726:
  4421. case 0x103c1727:
  4422. case 0x103c1728:
  4423. case 0x103c1729:
  4424. case 0x103c172a:
  4425. case 0x103c172b:
  4426. case 0x103c307e:
  4427. case 0x103c307f:
  4428. case 0x103c3080:
  4429. case 0x103c3081:
  4430. case 0x103c7007:
  4431. case 0x103c7008:
  4432. return 1;
  4433. }
  4434. return 0;
  4435. }
  4436. #ifdef CONFIG_PROC_FS
  4437. static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
  4438. struct hda_codec *codec, hda_nid_t nid)
  4439. {
  4440. if (nid == codec->afg)
  4441. snd_iprintf(buffer, "Power-Map: 0x%02x\n",
  4442. snd_hda_codec_read(codec, nid, 0,
  4443. AC_VERB_IDT_GET_POWER_MAP, 0));
  4444. }
  4445. static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
  4446. struct hda_codec *codec,
  4447. unsigned int verb)
  4448. {
  4449. snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
  4450. snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
  4451. }
  4452. /* stac92hd71bxx, stac92hd73xx */
  4453. static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
  4454. struct hda_codec *codec, hda_nid_t nid)
  4455. {
  4456. stac92hd_proc_hook(buffer, codec, nid);
  4457. if (nid == codec->afg)
  4458. analog_loop_proc_hook(buffer, codec, 0xfa0);
  4459. }
  4460. static void stac9205_proc_hook(struct snd_info_buffer *buffer,
  4461. struct hda_codec *codec, hda_nid_t nid)
  4462. {
  4463. if (nid == codec->afg)
  4464. analog_loop_proc_hook(buffer, codec, 0xfe0);
  4465. }
  4466. static void stac927x_proc_hook(struct snd_info_buffer *buffer,
  4467. struct hda_codec *codec, hda_nid_t nid)
  4468. {
  4469. if (nid == codec->afg)
  4470. analog_loop_proc_hook(buffer, codec, 0xfeb);
  4471. }
  4472. #else
  4473. #define stac92hd_proc_hook NULL
  4474. #define stac92hd7x_proc_hook NULL
  4475. #define stac9205_proc_hook NULL
  4476. #define stac927x_proc_hook NULL
  4477. #endif
  4478. #ifdef CONFIG_PM
  4479. static int stac92xx_resume(struct hda_codec *codec)
  4480. {
  4481. stac92xx_init(codec);
  4482. snd_hda_codec_resume_amp(codec);
  4483. snd_hda_codec_resume_cache(codec);
  4484. /* fake event to set up pins again to override cached values */
  4485. stac_fake_hp_events(codec);
  4486. return 0;
  4487. }
  4488. static int stac92xx_suspend(struct hda_codec *codec)
  4489. {
  4490. stac92xx_shutup(codec);
  4491. return 0;
  4492. }
  4493. static void stac92xx_set_power_state(struct hda_codec *codec, hda_nid_t fg,
  4494. unsigned int power_state)
  4495. {
  4496. unsigned int afg_power_state = power_state;
  4497. struct sigmatel_spec *spec = codec->spec;
  4498. if (power_state == AC_PWRST_D3) {
  4499. if (spec->vref_mute_led_nid) {
  4500. /* with vref-out pin used for mute led control
  4501. * codec AFG is prevented from D3 state
  4502. */
  4503. afg_power_state = AC_PWRST_D1;
  4504. }
  4505. /* this delay seems necessary to avoid click noise at power-down */
  4506. msleep(100);
  4507. }
  4508. snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
  4509. afg_power_state);
  4510. snd_hda_codec_set_power_to_all(codec, fg, power_state, true);
  4511. }
  4512. #else
  4513. #define stac92xx_suspend NULL
  4514. #define stac92xx_resume NULL
  4515. #define stac92xx_set_power_state NULL
  4516. #endif /* CONFIG_PM */
  4517. /* update mute-LED accoring to the master switch */
  4518. static void stac92xx_update_led_status(struct hda_codec *codec, int enabled)
  4519. {
  4520. struct sigmatel_spec *spec = codec->spec;
  4521. int muted = !enabled;
  4522. if (!spec->gpio_led)
  4523. return;
  4524. /* LED state is inverted on these systems */
  4525. if (spec->gpio_led_polarity)
  4526. muted = !muted;
  4527. if (!spec->vref_mute_led_nid) {
  4528. if (muted)
  4529. spec->gpio_data |= spec->gpio_led;
  4530. else
  4531. spec->gpio_data &= ~spec->gpio_led;
  4532. stac_gpio_set(codec, spec->gpio_mask,
  4533. spec->gpio_dir, spec->gpio_data);
  4534. } else {
  4535. spec->vref_led = muted ? AC_PINCTL_VREF_50 : AC_PINCTL_VREF_GRD;
  4536. stac_vrefout_set(codec, spec->vref_mute_led_nid,
  4537. spec->vref_led);
  4538. }
  4539. }
  4540. static const struct hda_codec_ops stac92xx_patch_ops = {
  4541. .build_controls = stac92xx_build_controls,
  4542. .build_pcms = stac92xx_build_pcms,
  4543. .init = stac92xx_init,
  4544. .free = stac92xx_free,
  4545. .unsol_event = snd_hda_jack_unsol_event,
  4546. #ifdef CONFIG_PM
  4547. .suspend = stac92xx_suspend,
  4548. .resume = stac92xx_resume,
  4549. #endif
  4550. .reboot_notify = stac92xx_shutup,
  4551. };
  4552. static int alloc_stac_spec(struct hda_codec *codec, int num_pins,
  4553. const hda_nid_t *pin_nids)
  4554. {
  4555. struct sigmatel_spec *spec;
  4556. spec = kzalloc(sizeof(*spec), GFP_KERNEL);
  4557. if (!spec)
  4558. return -ENOMEM;
  4559. codec->spec = spec;
  4560. codec->no_trigger_sense = 1; /* seems common with STAC/IDT codecs */
  4561. spec->num_pins = num_pins;
  4562. spec->pin_nids = pin_nids;
  4563. snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
  4564. return 0;
  4565. }
  4566. static int patch_stac9200(struct hda_codec *codec)
  4567. {
  4568. struct sigmatel_spec *spec;
  4569. int err;
  4570. err = alloc_stac_spec(codec, ARRAY_SIZE(stac9200_pin_nids),
  4571. stac9200_pin_nids);
  4572. if (err < 0)
  4573. return err;
  4574. spec = codec->spec;
  4575. spec->linear_tone_beep = 1;
  4576. spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
  4577. stac9200_models,
  4578. stac9200_cfg_tbl);
  4579. if (spec->board_config < 0)
  4580. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  4581. codec->chip_name);
  4582. else
  4583. stac92xx_set_config_regs(codec,
  4584. stac9200_brd_tbl[spec->board_config]);
  4585. spec->multiout.max_channels = 2;
  4586. spec->multiout.num_dacs = 1;
  4587. spec->multiout.dac_nids = stac9200_dac_nids;
  4588. spec->adc_nids = stac9200_adc_nids;
  4589. spec->mux_nids = stac9200_mux_nids;
  4590. spec->num_muxes = 1;
  4591. spec->num_dmics = 0;
  4592. spec->num_adcs = 1;
  4593. spec->num_pwrs = 0;
  4594. if (spec->board_config == STAC_9200_M4 ||
  4595. spec->board_config == STAC_9200_M4_2 ||
  4596. spec->board_config == STAC_9200_OQO)
  4597. spec->init = stac9200_eapd_init;
  4598. else
  4599. spec->init = stac9200_core_init;
  4600. spec->mixer = stac9200_mixer;
  4601. if (spec->board_config == STAC_9200_PANASONIC) {
  4602. spec->gpio_mask = spec->gpio_dir = 0x09;
  4603. spec->gpio_data = 0x00;
  4604. }
  4605. err = stac9200_parse_auto_config(codec);
  4606. if (err < 0) {
  4607. stac92xx_free(codec);
  4608. return err;
  4609. }
  4610. /* CF-74 has no headphone detection, and the driver should *NOT*
  4611. * do detection and HP/speaker toggle because the hardware does it.
  4612. */
  4613. if (spec->board_config == STAC_9200_PANASONIC)
  4614. spec->hp_detect = 0;
  4615. codec->patch_ops = stac92xx_patch_ops;
  4616. return 0;
  4617. }
  4618. static int patch_stac925x(struct hda_codec *codec)
  4619. {
  4620. struct sigmatel_spec *spec;
  4621. int err;
  4622. err = alloc_stac_spec(codec, ARRAY_SIZE(stac925x_pin_nids),
  4623. stac925x_pin_nids);
  4624. if (err < 0)
  4625. return err;
  4626. spec = codec->spec;
  4627. spec->linear_tone_beep = 1;
  4628. /* Check first for codec ID */
  4629. spec->board_config = snd_hda_check_board_codec_sid_config(codec,
  4630. STAC_925x_MODELS,
  4631. stac925x_models,
  4632. stac925x_codec_id_cfg_tbl);
  4633. /* Now checks for PCI ID, if codec ID is not found */
  4634. if (spec->board_config < 0)
  4635. spec->board_config = snd_hda_check_board_config(codec,
  4636. STAC_925x_MODELS,
  4637. stac925x_models,
  4638. stac925x_cfg_tbl);
  4639. again:
  4640. if (spec->board_config < 0)
  4641. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  4642. codec->chip_name);
  4643. else
  4644. stac92xx_set_config_regs(codec,
  4645. stac925x_brd_tbl[spec->board_config]);
  4646. spec->multiout.max_channels = 2;
  4647. spec->multiout.num_dacs = 1;
  4648. spec->multiout.dac_nids = stac925x_dac_nids;
  4649. spec->adc_nids = stac925x_adc_nids;
  4650. spec->mux_nids = stac925x_mux_nids;
  4651. spec->num_muxes = 1;
  4652. spec->num_adcs = 1;
  4653. spec->num_pwrs = 0;
  4654. switch (codec->vendor_id) {
  4655. case 0x83847632: /* STAC9202 */
  4656. case 0x83847633: /* STAC9202D */
  4657. case 0x83847636: /* STAC9251 */
  4658. case 0x83847637: /* STAC9251D */
  4659. spec->num_dmics = STAC925X_NUM_DMICS;
  4660. spec->dmic_nids = stac925x_dmic_nids;
  4661. spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
  4662. spec->dmux_nids = stac925x_dmux_nids;
  4663. break;
  4664. default:
  4665. spec->num_dmics = 0;
  4666. break;
  4667. }
  4668. spec->init = stac925x_core_init;
  4669. spec->mixer = stac925x_mixer;
  4670. spec->num_caps = 1;
  4671. spec->capvols = stac925x_capvols;
  4672. spec->capsws = stac925x_capsws;
  4673. err = stac92xx_parse_auto_config(codec);
  4674. if (!err) {
  4675. if (spec->board_config < 0) {
  4676. printk(KERN_WARNING "hda_codec: No auto-config is "
  4677. "available, default to model=ref\n");
  4678. spec->board_config = STAC_925x_REF;
  4679. goto again;
  4680. }
  4681. err = -EINVAL;
  4682. }
  4683. if (err < 0) {
  4684. stac92xx_free(codec);
  4685. return err;
  4686. }
  4687. codec->patch_ops = stac92xx_patch_ops;
  4688. return 0;
  4689. }
  4690. static int patch_stac92hd73xx(struct hda_codec *codec)
  4691. {
  4692. struct sigmatel_spec *spec;
  4693. hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
  4694. int err;
  4695. int num_dacs;
  4696. err = alloc_stac_spec(codec, ARRAY_SIZE(stac92hd73xx_pin_nids),
  4697. stac92hd73xx_pin_nids);
  4698. if (err < 0)
  4699. return err;
  4700. spec = codec->spec;
  4701. spec->linear_tone_beep = 0;
  4702. codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
  4703. spec->board_config = snd_hda_check_board_config(codec,
  4704. STAC_92HD73XX_MODELS,
  4705. stac92hd73xx_models,
  4706. stac92hd73xx_cfg_tbl);
  4707. /* check codec subsystem id if not found */
  4708. if (spec->board_config < 0)
  4709. spec->board_config =
  4710. snd_hda_check_board_codec_sid_config(codec,
  4711. STAC_92HD73XX_MODELS, stac92hd73xx_models,
  4712. stac92hd73xx_codec_id_cfg_tbl);
  4713. again:
  4714. if (spec->board_config < 0)
  4715. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  4716. codec->chip_name);
  4717. else
  4718. stac92xx_set_config_regs(codec,
  4719. stac92hd73xx_brd_tbl[spec->board_config]);
  4720. num_dacs = snd_hda_get_connections(codec, 0x0a,
  4721. conn, STAC92HD73_DAC_COUNT + 2) - 1;
  4722. if (num_dacs < 3 || num_dacs > 5) {
  4723. printk(KERN_WARNING "hda_codec: Could not determine "
  4724. "number of channels defaulting to DAC count\n");
  4725. num_dacs = STAC92HD73_DAC_COUNT;
  4726. }
  4727. spec->init = stac92hd73xx_core_init;
  4728. switch (num_dacs) {
  4729. case 0x3: /* 6 Channel */
  4730. spec->aloopback_ctl = stac92hd73xx_6ch_loopback;
  4731. break;
  4732. case 0x4: /* 8 Channel */
  4733. spec->aloopback_ctl = stac92hd73xx_8ch_loopback;
  4734. break;
  4735. case 0x5: /* 10 Channel */
  4736. spec->aloopback_ctl = stac92hd73xx_10ch_loopback;
  4737. break;
  4738. }
  4739. spec->multiout.dac_nids = spec->dac_nids;
  4740. spec->aloopback_mask = 0x01;
  4741. spec->aloopback_shift = 8;
  4742. spec->digbeep_nid = 0x1c;
  4743. spec->mux_nids = stac92hd73xx_mux_nids;
  4744. spec->adc_nids = stac92hd73xx_adc_nids;
  4745. spec->dmic_nids = stac92hd73xx_dmic_nids;
  4746. spec->dmux_nids = stac92hd73xx_dmux_nids;
  4747. spec->smux_nids = stac92hd73xx_smux_nids;
  4748. spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
  4749. spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
  4750. spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
  4751. spec->num_caps = STAC92HD73XX_NUM_CAPS;
  4752. spec->capvols = stac92hd73xx_capvols;
  4753. spec->capsws = stac92hd73xx_capsws;
  4754. switch (spec->board_config) {
  4755. case STAC_DELL_EQ:
  4756. spec->init = dell_eq_core_init;
  4757. /* fallthru */
  4758. case STAC_DELL_M6_AMIC:
  4759. case STAC_DELL_M6_DMIC:
  4760. case STAC_DELL_M6_BOTH:
  4761. spec->num_smuxes = 0;
  4762. spec->eapd_switch = 0;
  4763. switch (spec->board_config) {
  4764. case STAC_DELL_M6_AMIC: /* Analog Mics */
  4765. snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
  4766. spec->num_dmics = 0;
  4767. break;
  4768. case STAC_DELL_M6_DMIC: /* Digital Mics */
  4769. snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
  4770. spec->num_dmics = 1;
  4771. break;
  4772. case STAC_DELL_M6_BOTH: /* Both */
  4773. snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
  4774. snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
  4775. spec->num_dmics = 1;
  4776. break;
  4777. }
  4778. break;
  4779. case STAC_ALIENWARE_M17X:
  4780. spec->num_dmics = STAC92HD73XX_NUM_DMICS;
  4781. spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
  4782. spec->eapd_switch = 0;
  4783. break;
  4784. default:
  4785. spec->num_dmics = STAC92HD73XX_NUM_DMICS;
  4786. spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
  4787. spec->eapd_switch = 1;
  4788. break;
  4789. }
  4790. if (spec->board_config != STAC_92HD73XX_REF) {
  4791. /* GPIO0 High = Enable EAPD */
  4792. spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
  4793. spec->gpio_data = 0x01;
  4794. }
  4795. spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
  4796. spec->pwr_nids = stac92hd73xx_pwr_nids;
  4797. err = stac92xx_parse_auto_config(codec);
  4798. if (!err) {
  4799. if (spec->board_config < 0) {
  4800. printk(KERN_WARNING "hda_codec: No auto-config is "
  4801. "available, default to model=ref\n");
  4802. spec->board_config = STAC_92HD73XX_REF;
  4803. goto again;
  4804. }
  4805. err = -EINVAL;
  4806. }
  4807. if (err < 0) {
  4808. stac92xx_free(codec);
  4809. return err;
  4810. }
  4811. if (spec->board_config == STAC_92HD73XX_NO_JD)
  4812. spec->hp_detect = 0;
  4813. codec->patch_ops = stac92xx_patch_ops;
  4814. codec->proc_widget_hook = stac92hd7x_proc_hook;
  4815. return 0;
  4816. }
  4817. static int hp_bnb2011_with_dock(struct hda_codec *codec)
  4818. {
  4819. if (codec->vendor_id != 0x111d7605 &&
  4820. codec->vendor_id != 0x111d76d1)
  4821. return 0;
  4822. switch (codec->subsystem_id) {
  4823. case 0x103c1618:
  4824. case 0x103c1619:
  4825. case 0x103c161a:
  4826. case 0x103c161b:
  4827. case 0x103c161c:
  4828. case 0x103c161d:
  4829. case 0x103c161e:
  4830. case 0x103c161f:
  4831. case 0x103c162a:
  4832. case 0x103c162b:
  4833. case 0x103c1630:
  4834. case 0x103c1631:
  4835. case 0x103c1633:
  4836. case 0x103c1634:
  4837. case 0x103c1635:
  4838. case 0x103c3587:
  4839. case 0x103c3588:
  4840. case 0x103c3589:
  4841. case 0x103c358a:
  4842. case 0x103c3667:
  4843. case 0x103c3668:
  4844. case 0x103c3669:
  4845. return 1;
  4846. }
  4847. return 0;
  4848. }
  4849. static void stac92hd8x_add_pin(struct hda_codec *codec, hda_nid_t nid)
  4850. {
  4851. struct sigmatel_spec *spec = codec->spec;
  4852. unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
  4853. int i;
  4854. spec->auto_pin_nids[spec->auto_pin_cnt] = nid;
  4855. spec->auto_pin_cnt++;
  4856. if (get_defcfg_device(def_conf) == AC_JACK_MIC_IN &&
  4857. get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE) {
  4858. for (i = 0; i < ARRAY_SIZE(stac92hd83xxx_dmic_nids); i++) {
  4859. if (nid == stac92hd83xxx_dmic_nids[i]) {
  4860. spec->auto_dmic_nids[spec->auto_dmic_cnt] = nid;
  4861. spec->auto_dmic_cnt++;
  4862. }
  4863. }
  4864. }
  4865. }
  4866. static void stac92hd8x_add_adc(struct hda_codec *codec, hda_nid_t nid)
  4867. {
  4868. struct sigmatel_spec *spec = codec->spec;
  4869. spec->auto_adc_nids[spec->auto_adc_cnt] = nid;
  4870. spec->auto_adc_cnt++;
  4871. }
  4872. static void stac92hd8x_add_mux(struct hda_codec *codec, hda_nid_t nid)
  4873. {
  4874. int i, j;
  4875. struct sigmatel_spec *spec = codec->spec;
  4876. for (i = 0; i < spec->auto_adc_cnt; i++) {
  4877. if (get_connection_index(codec,
  4878. spec->auto_adc_nids[i], nid) >= 0) {
  4879. /* mux and volume for adc_nids[i] */
  4880. if (!spec->auto_mux_nids[i]) {
  4881. spec->auto_mux_nids[i] = nid;
  4882. /* 92hd codecs capture volume is in mux */
  4883. spec->auto_capvols[i] = HDA_COMPOSE_AMP_VAL(nid,
  4884. 3, 0, HDA_OUTPUT);
  4885. }
  4886. for (j = 0; j < spec->auto_dmic_cnt; j++) {
  4887. if (get_connection_index(codec, nid,
  4888. spec->auto_dmic_nids[j]) >= 0) {
  4889. /* dmux for adc_nids[i] */
  4890. if (!spec->auto_dmux_nids[i])
  4891. spec->auto_dmux_nids[i] = nid;
  4892. break;
  4893. }
  4894. }
  4895. break;
  4896. }
  4897. }
  4898. }
  4899. static void stac92hd8x_fill_auto_spec(struct hda_codec *codec)
  4900. {
  4901. hda_nid_t nid, end_nid;
  4902. unsigned int wid_caps, wid_type;
  4903. struct sigmatel_spec *spec = codec->spec;
  4904. end_nid = codec->start_nid + codec->num_nodes;
  4905. for (nid = codec->start_nid; nid < end_nid; nid++) {
  4906. wid_caps = get_wcaps(codec, nid);
  4907. wid_type = get_wcaps_type(wid_caps);
  4908. if (wid_type == AC_WID_PIN)
  4909. stac92hd8x_add_pin(codec, nid);
  4910. if (wid_type == AC_WID_AUD_IN && !(wid_caps & AC_WCAP_DIGITAL))
  4911. stac92hd8x_add_adc(codec, nid);
  4912. }
  4913. for (nid = codec->start_nid; nid < end_nid; nid++) {
  4914. wid_caps = get_wcaps(codec, nid);
  4915. wid_type = get_wcaps_type(wid_caps);
  4916. if (wid_type == AC_WID_AUD_SEL)
  4917. stac92hd8x_add_mux(codec, nid);
  4918. }
  4919. spec->pin_nids = spec->auto_pin_nids;
  4920. spec->num_pins = spec->auto_pin_cnt;
  4921. spec->adc_nids = spec->auto_adc_nids;
  4922. spec->num_adcs = spec->auto_adc_cnt;
  4923. spec->capvols = spec->auto_capvols;
  4924. spec->capsws = spec->auto_capvols;
  4925. spec->num_caps = spec->auto_adc_cnt;
  4926. spec->mux_nids = spec->auto_mux_nids;
  4927. spec->num_muxes = spec->auto_adc_cnt;
  4928. spec->dmux_nids = spec->auto_dmux_nids;
  4929. spec->num_dmuxes = spec->auto_adc_cnt;
  4930. spec->dmic_nids = spec->auto_dmic_nids;
  4931. spec->num_dmics = spec->auto_dmic_cnt;
  4932. }
  4933. static int patch_stac92hd83xxx(struct hda_codec *codec)
  4934. {
  4935. struct sigmatel_spec *spec;
  4936. int default_polarity = -1; /* no default cfg */
  4937. int err;
  4938. err = alloc_stac_spec(codec, 0, NULL); /* pins filled later */
  4939. if (err < 0)
  4940. return err;
  4941. if (hp_bnb2011_with_dock(codec)) {
  4942. snd_hda_codec_set_pincfg(codec, 0xa, 0x2101201f);
  4943. snd_hda_codec_set_pincfg(codec, 0xf, 0x2181205e);
  4944. }
  4945. codec->epss = 0; /* longer delay needed for D3 */
  4946. stac92hd8x_fill_auto_spec(codec);
  4947. spec = codec->spec;
  4948. spec->linear_tone_beep = 0;
  4949. codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
  4950. spec->digbeep_nid = 0x21;
  4951. spec->pwr_nids = stac92hd83xxx_pwr_nids;
  4952. spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
  4953. spec->multiout.dac_nids = spec->dac_nids;
  4954. spec->init = stac92hd83xxx_core_init;
  4955. spec->board_config = snd_hda_check_board_config(codec,
  4956. STAC_92HD83XXX_MODELS,
  4957. stac92hd83xxx_models,
  4958. stac92hd83xxx_cfg_tbl);
  4959. /* check codec subsystem id if not found */
  4960. if (spec->board_config < 0)
  4961. spec->board_config =
  4962. snd_hda_check_board_codec_sid_config(codec,
  4963. STAC_92HD83XXX_MODELS, stac92hd83xxx_models,
  4964. stac92hd83xxx_codec_id_cfg_tbl);
  4965. again:
  4966. if (spec->board_config < 0)
  4967. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  4968. codec->chip_name);
  4969. else
  4970. stac92xx_set_config_regs(codec,
  4971. stac92hd83xxx_brd_tbl[spec->board_config]);
  4972. codec->patch_ops = stac92xx_patch_ops;
  4973. switch (spec->board_config) {
  4974. case STAC_HP_ZEPHYR:
  4975. spec->init = stac92hd83xxx_hp_zephyr_init;
  4976. break;
  4977. case STAC_92HD83XXX_HP_LED:
  4978. default_polarity = 0;
  4979. break;
  4980. case STAC_92HD83XXX_HP_INV_LED:
  4981. default_polarity = 1;
  4982. break;
  4983. case STAC_92HD83XXX_HP_MIC_LED:
  4984. spec->mic_mute_led_gpio = 0x08; /* GPIO3 */
  4985. break;
  4986. case STAC_92HD83XXX_HEADSET_JACK:
  4987. spec->headset_jack = 1;
  4988. break;
  4989. }
  4990. if (find_mute_led_cfg(codec, default_polarity))
  4991. snd_printd("mute LED gpio %d polarity %d\n",
  4992. spec->gpio_led,
  4993. spec->gpio_led_polarity);
  4994. if (spec->gpio_led) {
  4995. if (!spec->vref_mute_led_nid) {
  4996. spec->gpio_mask |= spec->gpio_led;
  4997. spec->gpio_dir |= spec->gpio_led;
  4998. spec->gpio_data |= spec->gpio_led;
  4999. } else {
  5000. codec->patch_ops.set_power_state =
  5001. stac92xx_set_power_state;
  5002. }
  5003. }
  5004. if (spec->mic_mute_led_gpio) {
  5005. spec->gpio_mask |= spec->mic_mute_led_gpio;
  5006. spec->gpio_dir |= spec->mic_mute_led_gpio;
  5007. spec->mic_mute_led_on = true;
  5008. spec->gpio_data |= spec->mic_mute_led_gpio;
  5009. }
  5010. err = stac92xx_parse_auto_config(codec);
  5011. if (!err) {
  5012. if (spec->board_config < 0) {
  5013. printk(KERN_WARNING "hda_codec: No auto-config is "
  5014. "available, default to model=ref\n");
  5015. spec->board_config = STAC_92HD83XXX_REF;
  5016. goto again;
  5017. }
  5018. err = -EINVAL;
  5019. }
  5020. if (err < 0) {
  5021. stac92xx_free(codec);
  5022. return err;
  5023. }
  5024. codec->proc_widget_hook = stac92hd_proc_hook;
  5025. return 0;
  5026. }
  5027. static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec,
  5028. hda_nid_t dig0pin)
  5029. {
  5030. struct sigmatel_spec *spec = codec->spec;
  5031. int idx;
  5032. for (idx = 0; idx < spec->num_pins; idx++)
  5033. if (spec->pin_nids[idx] == dig0pin)
  5034. break;
  5035. if ((idx + 2) >= spec->num_pins)
  5036. return 0;
  5037. /* dig1pin case */
  5038. if (stac_get_defcfg_connect(codec, idx + 1) != AC_JACK_PORT_NONE)
  5039. return 2;
  5040. /* dig0pin + dig2pin case */
  5041. if (stac_get_defcfg_connect(codec, idx + 2) != AC_JACK_PORT_NONE)
  5042. return 2;
  5043. if (stac_get_defcfg_connect(codec, idx) != AC_JACK_PORT_NONE)
  5044. return 1;
  5045. else
  5046. return 0;
  5047. }
  5048. /* HP dv7 bass switch - GPIO5 */
  5049. #define stac_hp_bass_gpio_info snd_ctl_boolean_mono_info
  5050. static int stac_hp_bass_gpio_get(struct snd_kcontrol *kcontrol,
  5051. struct snd_ctl_elem_value *ucontrol)
  5052. {
  5053. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  5054. struct sigmatel_spec *spec = codec->spec;
  5055. ucontrol->value.integer.value[0] = !!(spec->gpio_data & 0x20);
  5056. return 0;
  5057. }
  5058. static int stac_hp_bass_gpio_put(struct snd_kcontrol *kcontrol,
  5059. struct snd_ctl_elem_value *ucontrol)
  5060. {
  5061. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  5062. struct sigmatel_spec *spec = codec->spec;
  5063. unsigned int gpio_data;
  5064. gpio_data = (spec->gpio_data & ~0x20) |
  5065. (ucontrol->value.integer.value[0] ? 0x20 : 0);
  5066. if (gpio_data == spec->gpio_data)
  5067. return 0;
  5068. spec->gpio_data = gpio_data;
  5069. stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
  5070. return 1;
  5071. }
  5072. static const struct snd_kcontrol_new stac_hp_bass_sw_ctrl = {
  5073. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  5074. .info = stac_hp_bass_gpio_info,
  5075. .get = stac_hp_bass_gpio_get,
  5076. .put = stac_hp_bass_gpio_put,
  5077. };
  5078. static int stac_add_hp_bass_switch(struct hda_codec *codec)
  5079. {
  5080. struct sigmatel_spec *spec = codec->spec;
  5081. if (!stac_control_new(spec, &stac_hp_bass_sw_ctrl,
  5082. "Bass Speaker Playback Switch", 0))
  5083. return -ENOMEM;
  5084. spec->gpio_mask |= 0x20;
  5085. spec->gpio_dir |= 0x20;
  5086. spec->gpio_data |= 0x20;
  5087. return 0;
  5088. }
  5089. static int patch_stac92hd71bxx(struct hda_codec *codec)
  5090. {
  5091. struct sigmatel_spec *spec;
  5092. const struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
  5093. unsigned int pin_cfg;
  5094. int err;
  5095. err = alloc_stac_spec(codec, STAC92HD71BXX_NUM_PINS,
  5096. stac92hd71bxx_pin_nids_4port);
  5097. if (err < 0)
  5098. return err;
  5099. spec = codec->spec;
  5100. spec->linear_tone_beep = 0;
  5101. codec->patch_ops = stac92xx_patch_ops;
  5102. switch (codec->vendor_id) {
  5103. case 0x111d76b6:
  5104. case 0x111d76b7:
  5105. break;
  5106. case 0x111d7603:
  5107. case 0x111d7608:
  5108. /* On 92HD75Bx 0x27 isn't a pin nid */
  5109. spec->num_pins--;
  5110. /* fallthrough */
  5111. default:
  5112. spec->pin_nids = stac92hd71bxx_pin_nids_6port;
  5113. }
  5114. spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
  5115. spec->board_config = snd_hda_check_board_config(codec,
  5116. STAC_92HD71BXX_MODELS,
  5117. stac92hd71bxx_models,
  5118. stac92hd71bxx_cfg_tbl);
  5119. again:
  5120. if (spec->board_config < 0)
  5121. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  5122. codec->chip_name);
  5123. else
  5124. stac92xx_set_config_regs(codec,
  5125. stac92hd71bxx_brd_tbl[spec->board_config]);
  5126. if (spec->board_config != STAC_92HD71BXX_REF) {
  5127. /* GPIO0 = EAPD */
  5128. spec->gpio_mask = 0x01;
  5129. spec->gpio_dir = 0x01;
  5130. spec->gpio_data = 0x01;
  5131. }
  5132. spec->dmic_nids = stac92hd71bxx_dmic_nids;
  5133. spec->dmux_nids = stac92hd71bxx_dmux_nids;
  5134. spec->num_caps = STAC92HD71BXX_NUM_CAPS;
  5135. spec->capvols = stac92hd71bxx_capvols;
  5136. spec->capsws = stac92hd71bxx_capsws;
  5137. switch (codec->vendor_id) {
  5138. case 0x111d76b6: /* 4 Port without Analog Mixer */
  5139. case 0x111d76b7:
  5140. unmute_init++;
  5141. /* fallthru */
  5142. case 0x111d76b4: /* 6 Port without Analog Mixer */
  5143. case 0x111d76b5:
  5144. codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
  5145. spec->num_dmics = stac92xx_connected_ports(codec,
  5146. stac92hd71bxx_dmic_nids,
  5147. STAC92HD71BXX_NUM_DMICS);
  5148. break;
  5149. case 0x111d7608: /* 5 Port with Analog Mixer */
  5150. switch (spec->board_config) {
  5151. case STAC_HP_M4:
  5152. /* Enable VREF power saving on GPIO1 detect */
  5153. err = stac_add_event(codec, codec->afg,
  5154. STAC_VREF_EVENT, 0x02);
  5155. if (err < 0)
  5156. return err;
  5157. snd_hda_codec_write_cache(codec, codec->afg, 0,
  5158. AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
  5159. snd_hda_jack_detect_enable(codec, codec->afg, 0);
  5160. spec->gpio_mask |= 0x02;
  5161. break;
  5162. }
  5163. if ((codec->revision_id & 0xf) == 0 ||
  5164. (codec->revision_id & 0xf) == 1)
  5165. spec->stream_delay = 40; /* 40 milliseconds */
  5166. /* disable VSW */
  5167. unmute_init++;
  5168. snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
  5169. snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
  5170. spec->dmic_nids = stac92hd71bxx_dmic_5port_nids;
  5171. spec->num_dmics = stac92xx_connected_ports(codec,
  5172. stac92hd71bxx_dmic_5port_nids,
  5173. STAC92HD71BXX_NUM_DMICS - 1);
  5174. break;
  5175. case 0x111d7603: /* 6 Port with Analog Mixer */
  5176. if ((codec->revision_id & 0xf) == 1)
  5177. spec->stream_delay = 40; /* 40 milliseconds */
  5178. /* fallthru */
  5179. default:
  5180. codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
  5181. spec->num_dmics = stac92xx_connected_ports(codec,
  5182. stac92hd71bxx_dmic_nids,
  5183. STAC92HD71BXX_NUM_DMICS);
  5184. break;
  5185. }
  5186. if (get_wcaps_type(get_wcaps(codec, 0x28)) == AC_WID_VOL_KNB)
  5187. spec->init = stac92hd71bxx_core_init;
  5188. if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
  5189. snd_hda_sequence_write_cache(codec, unmute_init);
  5190. spec->aloopback_ctl = stac92hd71bxx_loopback;
  5191. spec->aloopback_mask = 0x50;
  5192. spec->aloopback_shift = 0;
  5193. spec->powerdown_adcs = 1;
  5194. spec->digbeep_nid = 0x26;
  5195. spec->mux_nids = stac92hd71bxx_mux_nids;
  5196. spec->adc_nids = stac92hd71bxx_adc_nids;
  5197. spec->smux_nids = stac92hd71bxx_smux_nids;
  5198. spec->pwr_nids = stac92hd71bxx_pwr_nids;
  5199. spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
  5200. spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
  5201. spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
  5202. spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e);
  5203. snd_printdd("Found board config: %d\n", spec->board_config);
  5204. switch (spec->board_config) {
  5205. case STAC_HP_M4:
  5206. /* enable internal microphone */
  5207. snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
  5208. stac92xx_auto_set_pinctl(codec, 0x0e,
  5209. AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
  5210. /* fallthru */
  5211. case STAC_DELL_M4_2:
  5212. spec->num_dmics = 0;
  5213. spec->num_smuxes = 0;
  5214. spec->num_dmuxes = 0;
  5215. break;
  5216. case STAC_DELL_M4_1:
  5217. case STAC_DELL_M4_3:
  5218. spec->num_dmics = 1;
  5219. spec->num_smuxes = 0;
  5220. spec->num_dmuxes = 1;
  5221. break;
  5222. case STAC_HP_DV4_1222NR:
  5223. spec->num_dmics = 1;
  5224. /* I don't know if it needs 1 or 2 smuxes - will wait for
  5225. * bug reports to fix if needed
  5226. */
  5227. spec->num_smuxes = 1;
  5228. spec->num_dmuxes = 1;
  5229. /* fallthrough */
  5230. case STAC_HP_DV4:
  5231. spec->gpio_led = 0x01;
  5232. /* fallthrough */
  5233. case STAC_HP_DV5:
  5234. snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
  5235. stac92xx_auto_set_pinctl(codec, 0x0d, AC_PINCTL_OUT_EN);
  5236. /* HP dv6 gives the headphone pin as a line-out. Thus we
  5237. * need to set hp_detect flag here to force to enable HP
  5238. * detection.
  5239. */
  5240. spec->hp_detect = 1;
  5241. break;
  5242. case STAC_HP_HDX:
  5243. spec->num_dmics = 1;
  5244. spec->num_dmuxes = 1;
  5245. spec->num_smuxes = 1;
  5246. spec->gpio_led = 0x08;
  5247. break;
  5248. }
  5249. if (hp_blike_system(codec->subsystem_id)) {
  5250. pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
  5251. if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
  5252. get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER ||
  5253. get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
  5254. /* It was changed in the BIOS to just satisfy MS DTM.
  5255. * Lets turn it back into slaved HP
  5256. */
  5257. pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
  5258. | (AC_JACK_HP_OUT <<
  5259. AC_DEFCFG_DEVICE_SHIFT);
  5260. pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
  5261. | AC_DEFCFG_SEQUENCE)))
  5262. | 0x1f;
  5263. snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
  5264. }
  5265. }
  5266. if (find_mute_led_cfg(codec, 1))
  5267. snd_printd("mute LED gpio %d polarity %d\n",
  5268. spec->gpio_led,
  5269. spec->gpio_led_polarity);
  5270. if (spec->gpio_led) {
  5271. if (!spec->vref_mute_led_nid) {
  5272. spec->gpio_mask |= spec->gpio_led;
  5273. spec->gpio_dir |= spec->gpio_led;
  5274. spec->gpio_data |= spec->gpio_led;
  5275. } else {
  5276. codec->patch_ops.set_power_state =
  5277. stac92xx_set_power_state;
  5278. }
  5279. }
  5280. spec->multiout.dac_nids = spec->dac_nids;
  5281. err = stac92xx_parse_auto_config(codec);
  5282. if (!err) {
  5283. if (spec->board_config < 0) {
  5284. printk(KERN_WARNING "hda_codec: No auto-config is "
  5285. "available, default to model=ref\n");
  5286. spec->board_config = STAC_92HD71BXX_REF;
  5287. goto again;
  5288. }
  5289. err = -EINVAL;
  5290. }
  5291. if (err < 0) {
  5292. stac92xx_free(codec);
  5293. return err;
  5294. }
  5295. /* enable bass on HP dv7 */
  5296. if (spec->board_config == STAC_HP_DV4 ||
  5297. spec->board_config == STAC_HP_DV5) {
  5298. unsigned int cap;
  5299. cap = snd_hda_param_read(codec, 0x1, AC_PAR_GPIO_CAP);
  5300. cap &= AC_GPIO_IO_COUNT;
  5301. if (cap >= 6)
  5302. stac_add_hp_bass_switch(codec);
  5303. }
  5304. codec->proc_widget_hook = stac92hd7x_proc_hook;
  5305. return 0;
  5306. }
  5307. static int patch_stac922x(struct hda_codec *codec)
  5308. {
  5309. struct sigmatel_spec *spec;
  5310. int err;
  5311. err = alloc_stac_spec(codec, ARRAY_SIZE(stac922x_pin_nids),
  5312. stac922x_pin_nids);
  5313. if (err < 0)
  5314. return err;
  5315. spec = codec->spec;
  5316. spec->linear_tone_beep = 1;
  5317. spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
  5318. stac922x_models,
  5319. stac922x_cfg_tbl);
  5320. if (spec->board_config == STAC_INTEL_MAC_AUTO) {
  5321. spec->gpio_mask = spec->gpio_dir = 0x03;
  5322. spec->gpio_data = 0x03;
  5323. /* Intel Macs have all same PCI SSID, so we need to check
  5324. * codec SSID to distinguish the exact models
  5325. */
  5326. printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
  5327. switch (codec->subsystem_id) {
  5328. case 0x106b0800:
  5329. spec->board_config = STAC_INTEL_MAC_V1;
  5330. break;
  5331. case 0x106b0600:
  5332. case 0x106b0700:
  5333. spec->board_config = STAC_INTEL_MAC_V2;
  5334. break;
  5335. case 0x106b0e00:
  5336. case 0x106b0f00:
  5337. case 0x106b1600:
  5338. case 0x106b1700:
  5339. case 0x106b0200:
  5340. case 0x106b1e00:
  5341. spec->board_config = STAC_INTEL_MAC_V3;
  5342. break;
  5343. case 0x106b1a00:
  5344. case 0x00000100:
  5345. spec->board_config = STAC_INTEL_MAC_V4;
  5346. break;
  5347. case 0x106b0a00:
  5348. case 0x106b2200:
  5349. spec->board_config = STAC_INTEL_MAC_V5;
  5350. break;
  5351. default:
  5352. spec->board_config = STAC_INTEL_MAC_V3;
  5353. break;
  5354. }
  5355. }
  5356. again:
  5357. if (spec->board_config < 0)
  5358. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  5359. codec->chip_name);
  5360. else
  5361. stac92xx_set_config_regs(codec,
  5362. stac922x_brd_tbl[spec->board_config]);
  5363. spec->adc_nids = stac922x_adc_nids;
  5364. spec->mux_nids = stac922x_mux_nids;
  5365. spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
  5366. spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
  5367. spec->num_dmics = 0;
  5368. spec->num_pwrs = 0;
  5369. spec->init = stac922x_core_init;
  5370. spec->num_caps = STAC922X_NUM_CAPS;
  5371. spec->capvols = stac922x_capvols;
  5372. spec->capsws = stac922x_capsws;
  5373. spec->multiout.dac_nids = spec->dac_nids;
  5374. err = stac92xx_parse_auto_config(codec);
  5375. if (!err) {
  5376. if (spec->board_config < 0) {
  5377. printk(KERN_WARNING "hda_codec: No auto-config is "
  5378. "available, default to model=ref\n");
  5379. spec->board_config = STAC_D945_REF;
  5380. goto again;
  5381. }
  5382. err = -EINVAL;
  5383. }
  5384. if (err < 0) {
  5385. stac92xx_free(codec);
  5386. return err;
  5387. }
  5388. codec->patch_ops = stac92xx_patch_ops;
  5389. /* Fix Mux capture level; max to 2 */
  5390. snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
  5391. (0 << AC_AMPCAP_OFFSET_SHIFT) |
  5392. (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
  5393. (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
  5394. (0 << AC_AMPCAP_MUTE_SHIFT));
  5395. return 0;
  5396. }
  5397. static int patch_stac927x(struct hda_codec *codec)
  5398. {
  5399. struct sigmatel_spec *spec;
  5400. int err;
  5401. err = alloc_stac_spec(codec, ARRAY_SIZE(stac927x_pin_nids),
  5402. stac927x_pin_nids);
  5403. if (err < 0)
  5404. return err;
  5405. spec = codec->spec;
  5406. spec->linear_tone_beep = 1;
  5407. codec->slave_dig_outs = stac927x_slave_dig_outs;
  5408. spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
  5409. stac927x_models,
  5410. stac927x_cfg_tbl);
  5411. again:
  5412. if (spec->board_config < 0)
  5413. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  5414. codec->chip_name);
  5415. else
  5416. stac92xx_set_config_regs(codec,
  5417. stac927x_brd_tbl[spec->board_config]);
  5418. spec->digbeep_nid = 0x23;
  5419. spec->adc_nids = stac927x_adc_nids;
  5420. spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
  5421. spec->mux_nids = stac927x_mux_nids;
  5422. spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
  5423. spec->smux_nids = stac927x_smux_nids;
  5424. spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
  5425. spec->spdif_labels = stac927x_spdif_labels;
  5426. spec->dac_list = stac927x_dac_nids;
  5427. spec->multiout.dac_nids = spec->dac_nids;
  5428. if (spec->board_config != STAC_D965_REF) {
  5429. /* GPIO0 High = Enable EAPD */
  5430. spec->eapd_mask = spec->gpio_mask = 0x01;
  5431. spec->gpio_dir = spec->gpio_data = 0x01;
  5432. }
  5433. switch (spec->board_config) {
  5434. case STAC_D965_3ST:
  5435. case STAC_D965_5ST:
  5436. /* GPIO0 High = Enable EAPD */
  5437. spec->num_dmics = 0;
  5438. spec->init = d965_core_init;
  5439. break;
  5440. case STAC_DELL_BIOS:
  5441. switch (codec->subsystem_id) {
  5442. case 0x10280209:
  5443. case 0x1028022e:
  5444. /* correct the device field to SPDIF out */
  5445. snd_hda_codec_set_pincfg(codec, 0x21, 0x01442070);
  5446. break;
  5447. }
  5448. /* configure the analog microphone on some laptops */
  5449. snd_hda_codec_set_pincfg(codec, 0x0c, 0x90a79130);
  5450. /* correct the front output jack as a hp out */
  5451. snd_hda_codec_set_pincfg(codec, 0x0f, 0x0227011f);
  5452. /* correct the front input jack as a mic */
  5453. snd_hda_codec_set_pincfg(codec, 0x0e, 0x02a79130);
  5454. /* fallthru */
  5455. case STAC_DELL_3ST:
  5456. if (codec->subsystem_id != 0x1028022f) {
  5457. /* GPIO2 High = Enable EAPD */
  5458. spec->eapd_mask = spec->gpio_mask = 0x04;
  5459. spec->gpio_dir = spec->gpio_data = 0x04;
  5460. }
  5461. spec->dmic_nids = stac927x_dmic_nids;
  5462. spec->num_dmics = STAC927X_NUM_DMICS;
  5463. spec->init = dell_3st_core_init;
  5464. spec->dmux_nids = stac927x_dmux_nids;
  5465. spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
  5466. break;
  5467. case STAC_927X_VOLKNOB:
  5468. spec->num_dmics = 0;
  5469. spec->init = stac927x_volknob_core_init;
  5470. break;
  5471. default:
  5472. spec->num_dmics = 0;
  5473. spec->init = stac927x_core_init;
  5474. break;
  5475. }
  5476. spec->num_caps = STAC927X_NUM_CAPS;
  5477. spec->capvols = stac927x_capvols;
  5478. spec->capsws = stac927x_capsws;
  5479. spec->num_pwrs = 0;
  5480. spec->aloopback_ctl = stac927x_loopback;
  5481. spec->aloopback_mask = 0x40;
  5482. spec->aloopback_shift = 0;
  5483. spec->eapd_switch = 1;
  5484. err = stac92xx_parse_auto_config(codec);
  5485. if (!err) {
  5486. if (spec->board_config < 0) {
  5487. printk(KERN_WARNING "hda_codec: No auto-config is "
  5488. "available, default to model=ref\n");
  5489. spec->board_config = STAC_D965_REF;
  5490. goto again;
  5491. }
  5492. err = -EINVAL;
  5493. }
  5494. if (err < 0) {
  5495. stac92xx_free(codec);
  5496. return err;
  5497. }
  5498. codec->patch_ops = stac92xx_patch_ops;
  5499. codec->proc_widget_hook = stac927x_proc_hook;
  5500. /*
  5501. * !!FIXME!!
  5502. * The STAC927x seem to require fairly long delays for certain
  5503. * command sequences. With too short delays (even if the answer
  5504. * is set to RIRB properly), it results in the silence output
  5505. * on some hardwares like Dell.
  5506. *
  5507. * The below flag enables the longer delay (see get_response
  5508. * in hda_intel.c).
  5509. */
  5510. codec->bus->needs_damn_long_delay = 1;
  5511. /* no jack detecion for ref-no-jd model */
  5512. if (spec->board_config == STAC_D965_REF_NO_JD)
  5513. spec->hp_detect = 0;
  5514. return 0;
  5515. }
  5516. static int patch_stac9205(struct hda_codec *codec)
  5517. {
  5518. struct sigmatel_spec *spec;
  5519. int err;
  5520. err = alloc_stac_spec(codec, ARRAY_SIZE(stac9205_pin_nids),
  5521. stac9205_pin_nids);
  5522. if (err < 0)
  5523. return err;
  5524. spec = codec->spec;
  5525. spec->linear_tone_beep = 1;
  5526. spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
  5527. stac9205_models,
  5528. stac9205_cfg_tbl);
  5529. again:
  5530. if (spec->board_config < 0)
  5531. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  5532. codec->chip_name);
  5533. else
  5534. stac92xx_set_config_regs(codec,
  5535. stac9205_brd_tbl[spec->board_config]);
  5536. spec->digbeep_nid = 0x23;
  5537. spec->adc_nids = stac9205_adc_nids;
  5538. spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
  5539. spec->mux_nids = stac9205_mux_nids;
  5540. spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
  5541. spec->smux_nids = stac9205_smux_nids;
  5542. spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
  5543. spec->dmic_nids = stac9205_dmic_nids;
  5544. spec->num_dmics = STAC9205_NUM_DMICS;
  5545. spec->dmux_nids = stac9205_dmux_nids;
  5546. spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
  5547. spec->num_pwrs = 0;
  5548. spec->init = stac9205_core_init;
  5549. spec->aloopback_ctl = stac9205_loopback;
  5550. spec->num_caps = STAC9205_NUM_CAPS;
  5551. spec->capvols = stac9205_capvols;
  5552. spec->capsws = stac9205_capsws;
  5553. spec->aloopback_mask = 0x40;
  5554. spec->aloopback_shift = 0;
  5555. /* Turn on/off EAPD per HP plugging */
  5556. if (spec->board_config != STAC_9205_EAPD)
  5557. spec->eapd_switch = 1;
  5558. spec->multiout.dac_nids = spec->dac_nids;
  5559. switch (spec->board_config){
  5560. case STAC_9205_DELL_M43:
  5561. /* Enable SPDIF in/out */
  5562. snd_hda_codec_set_pincfg(codec, 0x1f, 0x01441030);
  5563. snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030);
  5564. /* Enable unsol response for GPIO4/Dock HP connection */
  5565. err = stac_add_event(codec, codec->afg, STAC_VREF_EVENT, 0x01);
  5566. if (err < 0)
  5567. return err;
  5568. snd_hda_codec_write_cache(codec, codec->afg, 0,
  5569. AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
  5570. snd_hda_jack_detect_enable(codec, codec->afg, 0);
  5571. spec->gpio_dir = 0x0b;
  5572. spec->eapd_mask = 0x01;
  5573. spec->gpio_mask = 0x1b;
  5574. spec->gpio_mute = 0x10;
  5575. /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
  5576. * GPIO3 Low = DRM
  5577. */
  5578. spec->gpio_data = 0x01;
  5579. break;
  5580. case STAC_9205_REF:
  5581. /* SPDIF-In enabled */
  5582. break;
  5583. default:
  5584. /* GPIO0 High = EAPD */
  5585. spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
  5586. spec->gpio_data = 0x01;
  5587. break;
  5588. }
  5589. err = stac92xx_parse_auto_config(codec);
  5590. if (!err) {
  5591. if (spec->board_config < 0) {
  5592. printk(KERN_WARNING "hda_codec: No auto-config is "
  5593. "available, default to model=ref\n");
  5594. spec->board_config = STAC_9205_REF;
  5595. goto again;
  5596. }
  5597. err = -EINVAL;
  5598. }
  5599. if (err < 0) {
  5600. stac92xx_free(codec);
  5601. return err;
  5602. }
  5603. codec->patch_ops = stac92xx_patch_ops;
  5604. codec->proc_widget_hook = stac9205_proc_hook;
  5605. return 0;
  5606. }
  5607. /*
  5608. * STAC9872 hack
  5609. */
  5610. static const struct hda_verb stac9872_core_init[] = {
  5611. {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
  5612. {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
  5613. {}
  5614. };
  5615. static const hda_nid_t stac9872_pin_nids[] = {
  5616. 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  5617. 0x11, 0x13, 0x14,
  5618. };
  5619. static const hda_nid_t stac9872_adc_nids[] = {
  5620. 0x8 /*,0x6*/
  5621. };
  5622. static const hda_nid_t stac9872_mux_nids[] = {
  5623. 0x15
  5624. };
  5625. static const unsigned long stac9872_capvols[] = {
  5626. HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT),
  5627. };
  5628. #define stac9872_capsws stac9872_capvols
  5629. static const unsigned int stac9872_vaio_pin_configs[9] = {
  5630. 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
  5631. 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
  5632. 0x90a7013e
  5633. };
  5634. static const char * const stac9872_models[STAC_9872_MODELS] = {
  5635. [STAC_9872_AUTO] = "auto",
  5636. [STAC_9872_VAIO] = "vaio",
  5637. };
  5638. static const unsigned int *stac9872_brd_tbl[STAC_9872_MODELS] = {
  5639. [STAC_9872_VAIO] = stac9872_vaio_pin_configs,
  5640. };
  5641. static const struct snd_pci_quirk stac9872_cfg_tbl[] = {
  5642. SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
  5643. "Sony VAIO F/S", STAC_9872_VAIO),
  5644. {} /* terminator */
  5645. };
  5646. static int patch_stac9872(struct hda_codec *codec)
  5647. {
  5648. struct sigmatel_spec *spec;
  5649. int err;
  5650. err = alloc_stac_spec(codec, ARRAY_SIZE(stac9872_pin_nids),
  5651. stac9872_pin_nids);
  5652. if (err < 0)
  5653. return err;
  5654. spec = codec->spec;
  5655. spec->linear_tone_beep = 1;
  5656. spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
  5657. stac9872_models,
  5658. stac9872_cfg_tbl);
  5659. if (spec->board_config < 0)
  5660. snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
  5661. codec->chip_name);
  5662. else
  5663. stac92xx_set_config_regs(codec,
  5664. stac9872_brd_tbl[spec->board_config]);
  5665. spec->multiout.dac_nids = spec->dac_nids;
  5666. spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
  5667. spec->adc_nids = stac9872_adc_nids;
  5668. spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
  5669. spec->mux_nids = stac9872_mux_nids;
  5670. spec->init = stac9872_core_init;
  5671. spec->num_caps = 1;
  5672. spec->capvols = stac9872_capvols;
  5673. spec->capsws = stac9872_capsws;
  5674. err = stac92xx_parse_auto_config(codec);
  5675. if (err < 0) {
  5676. stac92xx_free(codec);
  5677. return -EINVAL;
  5678. }
  5679. spec->input_mux = &spec->private_imux;
  5680. codec->patch_ops = stac92xx_patch_ops;
  5681. return 0;
  5682. }
  5683. /*
  5684. * patch entries
  5685. */
  5686. static const struct hda_codec_preset snd_hda_preset_sigmatel[] = {
  5687. { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
  5688. { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
  5689. { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
  5690. { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
  5691. { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
  5692. { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
  5693. { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
  5694. { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
  5695. { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
  5696. { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
  5697. { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
  5698. { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
  5699. { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
  5700. { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
  5701. { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
  5702. { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
  5703. { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
  5704. { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
  5705. { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
  5706. { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
  5707. { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
  5708. { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
  5709. { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
  5710. { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
  5711. { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
  5712. { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
  5713. { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
  5714. { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
  5715. { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
  5716. { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
  5717. { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
  5718. /* The following does not take into account .id=0x83847661 when subsys =
  5719. * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
  5720. * currently not fully supported.
  5721. */
  5722. { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
  5723. { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
  5724. { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
  5725. { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
  5726. { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
  5727. { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
  5728. { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
  5729. { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
  5730. { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
  5731. { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
  5732. { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
  5733. { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
  5734. { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
  5735. { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
  5736. { .id = 0x111d76d4, .name = "92HD83C1C5", .patch = patch_stac92hd83xxx},
  5737. { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
  5738. { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
  5739. { .id = 0x111d76d1, .name = "92HD87B1/3", .patch = patch_stac92hd83xxx},
  5740. { .id = 0x111d76d9, .name = "92HD87B2/4", .patch = patch_stac92hd83xxx},
  5741. { .id = 0x111d7666, .name = "92HD88B3", .patch = patch_stac92hd83xxx},
  5742. { .id = 0x111d7667, .name = "92HD88B1", .patch = patch_stac92hd83xxx},
  5743. { .id = 0x111d7668, .name = "92HD88B2", .patch = patch_stac92hd83xxx},
  5744. { .id = 0x111d7669, .name = "92HD88B4", .patch = patch_stac92hd83xxx},
  5745. { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
  5746. { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
  5747. { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
  5748. { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
  5749. { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
  5750. { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
  5751. { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
  5752. { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
  5753. { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
  5754. { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
  5755. { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
  5756. { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
  5757. { .id = 0x111d76c0, .name = "92HD89C3", .patch = patch_stac92hd73xx },
  5758. { .id = 0x111d76c1, .name = "92HD89C2", .patch = patch_stac92hd73xx },
  5759. { .id = 0x111d76c2, .name = "92HD89C1", .patch = patch_stac92hd73xx },
  5760. { .id = 0x111d76c3, .name = "92HD89B3", .patch = patch_stac92hd73xx },
  5761. { .id = 0x111d76c4, .name = "92HD89B2", .patch = patch_stac92hd73xx },
  5762. { .id = 0x111d76c5, .name = "92HD89B1", .patch = patch_stac92hd73xx },
  5763. { .id = 0x111d76c6, .name = "92HD89E3", .patch = patch_stac92hd73xx },
  5764. { .id = 0x111d76c7, .name = "92HD89E2", .patch = patch_stac92hd73xx },
  5765. { .id = 0x111d76c8, .name = "92HD89E1", .patch = patch_stac92hd73xx },
  5766. { .id = 0x111d76c9, .name = "92HD89D3", .patch = patch_stac92hd73xx },
  5767. { .id = 0x111d76ca, .name = "92HD89D2", .patch = patch_stac92hd73xx },
  5768. { .id = 0x111d76cb, .name = "92HD89D1", .patch = patch_stac92hd73xx },
  5769. { .id = 0x111d76cc, .name = "92HD89F3", .patch = patch_stac92hd73xx },
  5770. { .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
  5771. { .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
  5772. { .id = 0x111d76df, .name = "92HD93BXX", .patch = patch_stac92hd83xxx},
  5773. { .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx},
  5774. { .id = 0x111d76e3, .name = "92HD98BXX", .patch = patch_stac92hd83xxx},
  5775. { .id = 0x111d76e5, .name = "92HD99BXX", .patch = patch_stac92hd83xxx},
  5776. { .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx},
  5777. { .id = 0x111d76e8, .name = "92HD66B1X5", .patch = patch_stac92hd83xxx},
  5778. { .id = 0x111d76e9, .name = "92HD66B2X5", .patch = patch_stac92hd83xxx},
  5779. { .id = 0x111d76ea, .name = "92HD66B3X5", .patch = patch_stac92hd83xxx},
  5780. { .id = 0x111d76eb, .name = "92HD66C1X5", .patch = patch_stac92hd83xxx},
  5781. { .id = 0x111d76ec, .name = "92HD66C2X5", .patch = patch_stac92hd83xxx},
  5782. { .id = 0x111d76ed, .name = "92HD66C3X5", .patch = patch_stac92hd83xxx},
  5783. { .id = 0x111d76ee, .name = "92HD66B1X3", .patch = patch_stac92hd83xxx},
  5784. { .id = 0x111d76ef, .name = "92HD66B2X3", .patch = patch_stac92hd83xxx},
  5785. { .id = 0x111d76f0, .name = "92HD66B3X3", .patch = patch_stac92hd83xxx},
  5786. { .id = 0x111d76f1, .name = "92HD66C1X3", .patch = patch_stac92hd83xxx},
  5787. { .id = 0x111d76f2, .name = "92HD66C2X3", .patch = patch_stac92hd83xxx},
  5788. { .id = 0x111d76f3, .name = "92HD66C3/65", .patch = patch_stac92hd83xxx},
  5789. {} /* terminator */
  5790. };
  5791. MODULE_ALIAS("snd-hda-codec-id:8384*");
  5792. MODULE_ALIAS("snd-hda-codec-id:111d*");
  5793. MODULE_LICENSE("GPL");
  5794. MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
  5795. static struct hda_codec_preset_list sigmatel_list = {
  5796. .preset = snd_hda_preset_sigmatel,
  5797. .owner = THIS_MODULE,
  5798. };
  5799. static int __init patch_sigmatel_init(void)
  5800. {
  5801. return snd_hda_add_codec_preset(&sigmatel_list);
  5802. }
  5803. static void __exit patch_sigmatel_exit(void)
  5804. {
  5805. snd_hda_delete_codec_preset(&sigmatel_list);
  5806. }
  5807. module_init(patch_sigmatel_init)
  5808. module_exit(patch_sigmatel_exit)