patch_sigmatel.c 182 KB

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