patch_sigmatel.c 185 KB

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