patch_sigmatel.c 187 KB

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