patch_hdmi.c 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  1. /*
  2. *
  3. * patch_hdmi.c - routines for HDMI/DisplayPort codecs
  4. *
  5. * Copyright(c) 2008-2010 Intel Corporation. All rights reserved.
  6. * Copyright (c) 2006 ATI Technologies Inc.
  7. * Copyright (c) 2008 NVIDIA Corp. All rights reserved.
  8. * Copyright (c) 2008 Wei Ni <wni@nvidia.com>
  9. *
  10. * Authors:
  11. * Wu Fengguang <wfg@linux.intel.com>
  12. *
  13. * Maintained by:
  14. * Wu Fengguang <wfg@linux.intel.com>
  15. *
  16. * This program is free software; you can redistribute it and/or modify it
  17. * under the terms of the GNU General Public License as published by the Free
  18. * Software Foundation; either version 2 of the License, or (at your option)
  19. * any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful, but
  22. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  23. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  24. * for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software Foundation,
  28. * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  29. */
  30. #include <linux/init.h>
  31. #include <linux/delay.h>
  32. #include <linux/slab.h>
  33. #include <linux/module.h>
  34. #include <sound/core.h>
  35. #include <sound/jack.h>
  36. #include <sound/asoundef.h>
  37. #include <sound/tlv.h>
  38. #include "hda_codec.h"
  39. #include "hda_local.h"
  40. #include "hda_jack.h"
  41. static bool static_hdmi_pcm;
  42. module_param(static_hdmi_pcm, bool, 0644);
  43. MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
  44. struct hdmi_spec_per_cvt {
  45. hda_nid_t cvt_nid;
  46. int assigned;
  47. unsigned int channels_min;
  48. unsigned int channels_max;
  49. u32 rates;
  50. u64 formats;
  51. unsigned int maxbps;
  52. };
  53. /* max. connections to a widget */
  54. #define HDA_MAX_CONNECTIONS 32
  55. struct hdmi_spec_per_pin {
  56. hda_nid_t pin_nid;
  57. int num_mux_nids;
  58. hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
  59. struct hda_codec *codec;
  60. struct hdmi_eld sink_eld;
  61. struct delayed_work work;
  62. struct snd_kcontrol *eld_ctl;
  63. int repoll_count;
  64. bool non_pcm;
  65. bool chmap_set; /* channel-map override by ALSA API? */
  66. unsigned char chmap[8]; /* ALSA API channel-map */
  67. char pcm_name[8]; /* filled in build_pcm callbacks */
  68. };
  69. struct hdmi_spec {
  70. int num_cvts;
  71. struct snd_array cvts; /* struct hdmi_spec_per_cvt */
  72. hda_nid_t cvt_nids[4]; /* only for haswell fix */
  73. int num_pins;
  74. struct snd_array pins; /* struct hdmi_spec_per_pin */
  75. struct snd_array pcm_rec; /* struct hda_pcm */
  76. unsigned int channels_max; /* max over all cvts */
  77. struct hdmi_eld temp_eld;
  78. /*
  79. * Non-generic ATI/NVIDIA specific
  80. */
  81. struct hda_multi_out multiout;
  82. struct hda_pcm_stream pcm_playback;
  83. };
  84. struct hdmi_audio_infoframe {
  85. u8 type; /* 0x84 */
  86. u8 ver; /* 0x01 */
  87. u8 len; /* 0x0a */
  88. u8 checksum;
  89. u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
  90. u8 SS01_SF24;
  91. u8 CXT04;
  92. u8 CA;
  93. u8 LFEPBL01_LSV36_DM_INH7;
  94. };
  95. struct dp_audio_infoframe {
  96. u8 type; /* 0x84 */
  97. u8 len; /* 0x1b */
  98. u8 ver; /* 0x11 << 2 */
  99. u8 CC02_CT47; /* match with HDMI infoframe from this on */
  100. u8 SS01_SF24;
  101. u8 CXT04;
  102. u8 CA;
  103. u8 LFEPBL01_LSV36_DM_INH7;
  104. };
  105. union audio_infoframe {
  106. struct hdmi_audio_infoframe hdmi;
  107. struct dp_audio_infoframe dp;
  108. u8 bytes[0];
  109. };
  110. /*
  111. * CEA speaker placement:
  112. *
  113. * FLH FCH FRH
  114. * FLW FL FLC FC FRC FR FRW
  115. *
  116. * LFE
  117. * TC
  118. *
  119. * RL RLC RC RRC RR
  120. *
  121. * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
  122. * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
  123. */
  124. enum cea_speaker_placement {
  125. FL = (1 << 0), /* Front Left */
  126. FC = (1 << 1), /* Front Center */
  127. FR = (1 << 2), /* Front Right */
  128. FLC = (1 << 3), /* Front Left Center */
  129. FRC = (1 << 4), /* Front Right Center */
  130. RL = (1 << 5), /* Rear Left */
  131. RC = (1 << 6), /* Rear Center */
  132. RR = (1 << 7), /* Rear Right */
  133. RLC = (1 << 8), /* Rear Left Center */
  134. RRC = (1 << 9), /* Rear Right Center */
  135. LFE = (1 << 10), /* Low Frequency Effect */
  136. FLW = (1 << 11), /* Front Left Wide */
  137. FRW = (1 << 12), /* Front Right Wide */
  138. FLH = (1 << 13), /* Front Left High */
  139. FCH = (1 << 14), /* Front Center High */
  140. FRH = (1 << 15), /* Front Right High */
  141. TC = (1 << 16), /* Top Center */
  142. };
  143. /*
  144. * ELD SA bits in the CEA Speaker Allocation data block
  145. */
  146. static int eld_speaker_allocation_bits[] = {
  147. [0] = FL | FR,
  148. [1] = LFE,
  149. [2] = FC,
  150. [3] = RL | RR,
  151. [4] = RC,
  152. [5] = FLC | FRC,
  153. [6] = RLC | RRC,
  154. /* the following are not defined in ELD yet */
  155. [7] = FLW | FRW,
  156. [8] = FLH | FRH,
  157. [9] = TC,
  158. [10] = FCH,
  159. };
  160. struct cea_channel_speaker_allocation {
  161. int ca_index;
  162. int speakers[8];
  163. /* derived values, just for convenience */
  164. int channels;
  165. int spk_mask;
  166. };
  167. /*
  168. * ALSA sequence is:
  169. *
  170. * surround40 surround41 surround50 surround51 surround71
  171. * ch0 front left = = = =
  172. * ch1 front right = = = =
  173. * ch2 rear left = = = =
  174. * ch3 rear right = = = =
  175. * ch4 LFE center center center
  176. * ch5 LFE LFE
  177. * ch6 side left
  178. * ch7 side right
  179. *
  180. * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
  181. */
  182. static int hdmi_channel_mapping[0x32][8] = {
  183. /* stereo */
  184. [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
  185. /* 2.1 */
  186. [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
  187. /* Dolby Surround */
  188. [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
  189. /* surround40 */
  190. [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
  191. /* 4ch */
  192. [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
  193. /* surround41 */
  194. [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
  195. /* surround50 */
  196. [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
  197. /* surround51 */
  198. [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
  199. /* 7.1 */
  200. [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
  201. };
  202. /*
  203. * This is an ordered list!
  204. *
  205. * The preceding ones have better chances to be selected by
  206. * hdmi_channel_allocation().
  207. */
  208. static struct cea_channel_speaker_allocation channel_allocations[] = {
  209. /* channel: 7 6 5 4 3 2 1 0 */
  210. { .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
  211. /* 2.1 */
  212. { .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
  213. /* Dolby Surround */
  214. { .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
  215. /* surround40 */
  216. { .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
  217. /* surround41 */
  218. { .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
  219. /* surround50 */
  220. { .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
  221. /* surround51 */
  222. { .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
  223. /* 6.1 */
  224. { .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
  225. /* surround71 */
  226. { .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
  227. { .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
  228. { .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
  229. { .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
  230. { .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
  231. { .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
  232. { .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
  233. { .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
  234. { .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
  235. { .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
  236. { .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
  237. { .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
  238. { .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
  239. { .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
  240. { .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
  241. { .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
  242. { .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
  243. { .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
  244. { .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
  245. { .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
  246. { .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
  247. { .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
  248. { .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
  249. { .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
  250. { .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
  251. { .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
  252. { .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
  253. { .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
  254. { .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
  255. { .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
  256. { .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
  257. { .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
  258. { .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
  259. { .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
  260. { .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
  261. { .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
  262. { .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
  263. { .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
  264. { .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
  265. { .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
  266. { .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
  267. { .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
  268. };
  269. /*
  270. * HDMI routines
  271. */
  272. #define get_pin(spec, idx) \
  273. ((struct hdmi_spec_per_pin *)snd_array_elem(&spec->pins, idx))
  274. #define get_cvt(spec, idx) \
  275. ((struct hdmi_spec_per_cvt *)snd_array_elem(&spec->cvts, idx))
  276. #define get_pcm_rec(spec, idx) \
  277. ((struct hda_pcm *)snd_array_elem(&spec->pcm_rec, idx))
  278. static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
  279. {
  280. int pin_idx;
  281. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
  282. if (get_pin(spec, pin_idx)->pin_nid == pin_nid)
  283. return pin_idx;
  284. snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
  285. return -EINVAL;
  286. }
  287. static int hinfo_to_pin_index(struct hdmi_spec *spec,
  288. struct hda_pcm_stream *hinfo)
  289. {
  290. int pin_idx;
  291. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
  292. if (get_pcm_rec(spec, pin_idx)->stream == hinfo)
  293. return pin_idx;
  294. snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
  295. return -EINVAL;
  296. }
  297. static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
  298. {
  299. int cvt_idx;
  300. for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
  301. if (get_cvt(spec, cvt_idx)->cvt_nid == cvt_nid)
  302. return cvt_idx;
  303. snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
  304. return -EINVAL;
  305. }
  306. static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
  307. struct snd_ctl_elem_info *uinfo)
  308. {
  309. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  310. struct hdmi_spec *spec = codec->spec;
  311. struct hdmi_eld *eld;
  312. int pin_idx;
  313. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  314. pin_idx = kcontrol->private_value;
  315. eld = &get_pin(spec, pin_idx)->sink_eld;
  316. mutex_lock(&eld->lock);
  317. uinfo->count = eld->eld_valid ? eld->eld_size : 0;
  318. mutex_unlock(&eld->lock);
  319. return 0;
  320. }
  321. static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
  322. struct snd_ctl_elem_value *ucontrol)
  323. {
  324. struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
  325. struct hdmi_spec *spec = codec->spec;
  326. struct hdmi_eld *eld;
  327. int pin_idx;
  328. pin_idx = kcontrol->private_value;
  329. eld = &get_pin(spec, pin_idx)->sink_eld;
  330. mutex_lock(&eld->lock);
  331. if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data)) {
  332. mutex_unlock(&eld->lock);
  333. snd_BUG();
  334. return -EINVAL;
  335. }
  336. memset(ucontrol->value.bytes.data, 0,
  337. ARRAY_SIZE(ucontrol->value.bytes.data));
  338. if (eld->eld_valid)
  339. memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
  340. eld->eld_size);
  341. mutex_unlock(&eld->lock);
  342. return 0;
  343. }
  344. static struct snd_kcontrol_new eld_bytes_ctl = {
  345. .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
  346. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  347. .name = "ELD",
  348. .info = hdmi_eld_ctl_info,
  349. .get = hdmi_eld_ctl_get,
  350. };
  351. static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
  352. int device)
  353. {
  354. struct snd_kcontrol *kctl;
  355. struct hdmi_spec *spec = codec->spec;
  356. int err;
  357. kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
  358. if (!kctl)
  359. return -ENOMEM;
  360. kctl->private_value = pin_idx;
  361. kctl->id.device = device;
  362. err = snd_hda_ctl_add(codec, get_pin(spec, pin_idx)->pin_nid, kctl);
  363. if (err < 0)
  364. return err;
  365. get_pin(spec, pin_idx)->eld_ctl = kctl;
  366. return 0;
  367. }
  368. #ifdef BE_PARANOID
  369. static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
  370. int *packet_index, int *byte_index)
  371. {
  372. int val;
  373. val = snd_hda_codec_read(codec, pin_nid, 0,
  374. AC_VERB_GET_HDMI_DIP_INDEX, 0);
  375. *packet_index = val >> 5;
  376. *byte_index = val & 0x1f;
  377. }
  378. #endif
  379. static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
  380. int packet_index, int byte_index)
  381. {
  382. int val;
  383. val = (packet_index << 5) | (byte_index & 0x1f);
  384. snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
  385. }
  386. static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
  387. unsigned char val)
  388. {
  389. snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
  390. }
  391. static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
  392. {
  393. /* Unmute */
  394. if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
  395. snd_hda_codec_write(codec, pin_nid, 0,
  396. AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
  397. /* Enable pin out: some machines with GM965 gets broken output when
  398. * the pin is disabled or changed while using with HDMI
  399. */
  400. snd_hda_codec_write(codec, pin_nid, 0,
  401. AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
  402. }
  403. static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
  404. {
  405. return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
  406. AC_VERB_GET_CVT_CHAN_COUNT, 0);
  407. }
  408. static void hdmi_set_channel_count(struct hda_codec *codec,
  409. hda_nid_t cvt_nid, int chs)
  410. {
  411. if (chs != hdmi_get_channel_count(codec, cvt_nid))
  412. snd_hda_codec_write(codec, cvt_nid, 0,
  413. AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
  414. }
  415. /*
  416. * Channel mapping routines
  417. */
  418. /*
  419. * Compute derived values in channel_allocations[].
  420. */
  421. static void init_channel_allocations(void)
  422. {
  423. int i, j;
  424. struct cea_channel_speaker_allocation *p;
  425. for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
  426. p = channel_allocations + i;
  427. p->channels = 0;
  428. p->spk_mask = 0;
  429. for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
  430. if (p->speakers[j]) {
  431. p->channels++;
  432. p->spk_mask |= p->speakers[j];
  433. }
  434. }
  435. }
  436. static int get_channel_allocation_order(int ca)
  437. {
  438. int i;
  439. for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
  440. if (channel_allocations[i].ca_index == ca)
  441. break;
  442. }
  443. return i;
  444. }
  445. /*
  446. * The transformation takes two steps:
  447. *
  448. * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
  449. * spk_mask => (channel_allocations[]) => ai->CA
  450. *
  451. * TODO: it could select the wrong CA from multiple candidates.
  452. */
  453. static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
  454. {
  455. int i;
  456. int ca = 0;
  457. int spk_mask = 0;
  458. char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
  459. /*
  460. * CA defaults to 0 for basic stereo audio
  461. */
  462. if (channels <= 2)
  463. return 0;
  464. /*
  465. * expand ELD's speaker allocation mask
  466. *
  467. * ELD tells the speaker mask in a compact(paired) form,
  468. * expand ELD's notions to match the ones used by Audio InfoFrame.
  469. */
  470. for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
  471. if (eld->info.spk_alloc & (1 << i))
  472. spk_mask |= eld_speaker_allocation_bits[i];
  473. }
  474. /* search for the first working match in the CA table */
  475. for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
  476. if (channels == channel_allocations[i].channels &&
  477. (spk_mask & channel_allocations[i].spk_mask) ==
  478. channel_allocations[i].spk_mask) {
  479. ca = channel_allocations[i].ca_index;
  480. break;
  481. }
  482. }
  483. snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
  484. snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
  485. ca, channels, buf);
  486. return ca;
  487. }
  488. static void hdmi_debug_channel_mapping(struct hda_codec *codec,
  489. hda_nid_t pin_nid)
  490. {
  491. #ifdef CONFIG_SND_DEBUG_VERBOSE
  492. int i;
  493. int slot;
  494. for (i = 0; i < 8; i++) {
  495. slot = snd_hda_codec_read(codec, pin_nid, 0,
  496. AC_VERB_GET_HDMI_CHAN_SLOT, i);
  497. printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
  498. slot >> 4, slot & 0xf);
  499. }
  500. #endif
  501. }
  502. static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
  503. hda_nid_t pin_nid,
  504. bool non_pcm,
  505. int ca)
  506. {
  507. int i;
  508. int err;
  509. int order;
  510. int non_pcm_mapping[8];
  511. order = get_channel_allocation_order(ca);
  512. if (hdmi_channel_mapping[ca][1] == 0) {
  513. for (i = 0; i < channel_allocations[order].channels; i++)
  514. hdmi_channel_mapping[ca][i] = i | (i << 4);
  515. for (; i < 8; i++)
  516. hdmi_channel_mapping[ca][i] = 0xf | (i << 4);
  517. }
  518. if (non_pcm) {
  519. for (i = 0; i < channel_allocations[order].channels; i++)
  520. non_pcm_mapping[i] = i | (i << 4);
  521. for (; i < 8; i++)
  522. non_pcm_mapping[i] = 0xf | (i << 4);
  523. }
  524. for (i = 0; i < 8; i++) {
  525. err = snd_hda_codec_write(codec, pin_nid, 0,
  526. AC_VERB_SET_HDMI_CHAN_SLOT,
  527. non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i]);
  528. if (err) {
  529. snd_printdd(KERN_NOTICE
  530. "HDMI: channel mapping failed\n");
  531. break;
  532. }
  533. }
  534. hdmi_debug_channel_mapping(codec, pin_nid);
  535. }
  536. struct channel_map_table {
  537. unsigned char map; /* ALSA API channel map position */
  538. unsigned char cea_slot; /* CEA slot value */
  539. int spk_mask; /* speaker position bit mask */
  540. };
  541. static struct channel_map_table map_tables[] = {
  542. { SNDRV_CHMAP_FL, 0x00, FL },
  543. { SNDRV_CHMAP_FR, 0x01, FR },
  544. { SNDRV_CHMAP_RL, 0x04, RL },
  545. { SNDRV_CHMAP_RR, 0x05, RR },
  546. { SNDRV_CHMAP_LFE, 0x02, LFE },
  547. { SNDRV_CHMAP_FC, 0x03, FC },
  548. { SNDRV_CHMAP_RLC, 0x06, RLC },
  549. { SNDRV_CHMAP_RRC, 0x07, RRC },
  550. {} /* terminator */
  551. };
  552. /* from ALSA API channel position to speaker bit mask */
  553. static int to_spk_mask(unsigned char c)
  554. {
  555. struct channel_map_table *t = map_tables;
  556. for (; t->map; t++) {
  557. if (t->map == c)
  558. return t->spk_mask;
  559. }
  560. return 0;
  561. }
  562. /* from ALSA API channel position to CEA slot */
  563. static int to_cea_slot(unsigned char c)
  564. {
  565. struct channel_map_table *t = map_tables;
  566. for (; t->map; t++) {
  567. if (t->map == c)
  568. return t->cea_slot;
  569. }
  570. return 0x0f;
  571. }
  572. /* from CEA slot to ALSA API channel position */
  573. static int from_cea_slot(unsigned char c)
  574. {
  575. struct channel_map_table *t = map_tables;
  576. for (; t->map; t++) {
  577. if (t->cea_slot == c)
  578. return t->map;
  579. }
  580. return 0;
  581. }
  582. /* from speaker bit mask to ALSA API channel position */
  583. static int spk_to_chmap(int spk)
  584. {
  585. struct channel_map_table *t = map_tables;
  586. for (; t->map; t++) {
  587. if (t->spk_mask == spk)
  588. return t->map;
  589. }
  590. return 0;
  591. }
  592. /* get the CA index corresponding to the given ALSA API channel map */
  593. static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
  594. {
  595. int i, spks = 0, spk_mask = 0;
  596. for (i = 0; i < chs; i++) {
  597. int mask = to_spk_mask(map[i]);
  598. if (mask) {
  599. spk_mask |= mask;
  600. spks++;
  601. }
  602. }
  603. for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
  604. if ((chs == channel_allocations[i].channels ||
  605. spks == channel_allocations[i].channels) &&
  606. (spk_mask & channel_allocations[i].spk_mask) ==
  607. channel_allocations[i].spk_mask)
  608. return channel_allocations[i].ca_index;
  609. }
  610. return -1;
  611. }
  612. /* set up the channel slots for the given ALSA API channel map */
  613. static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
  614. hda_nid_t pin_nid,
  615. int chs, unsigned char *map)
  616. {
  617. int i;
  618. for (i = 0; i < 8; i++) {
  619. int val, err;
  620. if (i < chs)
  621. val = to_cea_slot(map[i]);
  622. else
  623. val = 0xf;
  624. val |= (i << 4);
  625. err = snd_hda_codec_write(codec, pin_nid, 0,
  626. AC_VERB_SET_HDMI_CHAN_SLOT, val);
  627. if (err)
  628. return -EINVAL;
  629. }
  630. return 0;
  631. }
  632. /* store ALSA API channel map from the current default map */
  633. static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
  634. {
  635. int i;
  636. for (i = 0; i < 8; i++) {
  637. if (i < channel_allocations[ca].channels)
  638. map[i] = from_cea_slot((hdmi_channel_mapping[ca][i] >> 4) & 0x0f);
  639. else
  640. map[i] = 0;
  641. }
  642. }
  643. static void hdmi_setup_channel_mapping(struct hda_codec *codec,
  644. hda_nid_t pin_nid, bool non_pcm, int ca,
  645. int channels, unsigned char *map,
  646. bool chmap_set)
  647. {
  648. if (!non_pcm && chmap_set) {
  649. hdmi_manual_setup_channel_mapping(codec, pin_nid,
  650. channels, map);
  651. } else {
  652. hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
  653. hdmi_setup_fake_chmap(map, ca);
  654. }
  655. }
  656. /*
  657. * Audio InfoFrame routines
  658. */
  659. /*
  660. * Enable Audio InfoFrame Transmission
  661. */
  662. static void hdmi_start_infoframe_trans(struct hda_codec *codec,
  663. hda_nid_t pin_nid)
  664. {
  665. hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
  666. snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
  667. AC_DIPXMIT_BEST);
  668. }
  669. /*
  670. * Disable Audio InfoFrame Transmission
  671. */
  672. static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
  673. hda_nid_t pin_nid)
  674. {
  675. hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
  676. snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
  677. AC_DIPXMIT_DISABLE);
  678. }
  679. static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
  680. {
  681. #ifdef CONFIG_SND_DEBUG_VERBOSE
  682. int i;
  683. int size;
  684. size = snd_hdmi_get_eld_size(codec, pin_nid);
  685. printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
  686. for (i = 0; i < 8; i++) {
  687. size = snd_hda_codec_read(codec, pin_nid, 0,
  688. AC_VERB_GET_HDMI_DIP_SIZE, i);
  689. printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
  690. }
  691. #endif
  692. }
  693. static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
  694. {
  695. #ifdef BE_PARANOID
  696. int i, j;
  697. int size;
  698. int pi, bi;
  699. for (i = 0; i < 8; i++) {
  700. size = snd_hda_codec_read(codec, pin_nid, 0,
  701. AC_VERB_GET_HDMI_DIP_SIZE, i);
  702. if (size == 0)
  703. continue;
  704. hdmi_set_dip_index(codec, pin_nid, i, 0x0);
  705. for (j = 1; j < 1000; j++) {
  706. hdmi_write_dip_byte(codec, pin_nid, 0x0);
  707. hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
  708. if (pi != i)
  709. snd_printd(KERN_INFO "dip index %d: %d != %d\n",
  710. bi, pi, i);
  711. if (bi == 0) /* byte index wrapped around */
  712. break;
  713. }
  714. snd_printd(KERN_INFO
  715. "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
  716. i, size, j);
  717. }
  718. #endif
  719. }
  720. static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
  721. {
  722. u8 *bytes = (u8 *)hdmi_ai;
  723. u8 sum = 0;
  724. int i;
  725. hdmi_ai->checksum = 0;
  726. for (i = 0; i < sizeof(*hdmi_ai); i++)
  727. sum += bytes[i];
  728. hdmi_ai->checksum = -sum;
  729. }
  730. static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
  731. hda_nid_t pin_nid,
  732. u8 *dip, int size)
  733. {
  734. int i;
  735. hdmi_debug_dip_size(codec, pin_nid);
  736. hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
  737. hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
  738. for (i = 0; i < size; i++)
  739. hdmi_write_dip_byte(codec, pin_nid, dip[i]);
  740. }
  741. static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
  742. u8 *dip, int size)
  743. {
  744. u8 val;
  745. int i;
  746. if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
  747. != AC_DIPXMIT_BEST)
  748. return false;
  749. hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
  750. for (i = 0; i < size; i++) {
  751. val = snd_hda_codec_read(codec, pin_nid, 0,
  752. AC_VERB_GET_HDMI_DIP_DATA, 0);
  753. if (val != dip[i])
  754. return false;
  755. }
  756. return true;
  757. }
  758. static void hdmi_setup_audio_infoframe(struct hda_codec *codec, int pin_idx,
  759. bool non_pcm,
  760. struct snd_pcm_substream *substream)
  761. {
  762. struct hdmi_spec *spec = codec->spec;
  763. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  764. hda_nid_t pin_nid = per_pin->pin_nid;
  765. int channels = substream->runtime->channels;
  766. struct hdmi_eld *eld;
  767. int ca;
  768. union audio_infoframe ai;
  769. eld = &per_pin->sink_eld;
  770. if (!eld->monitor_present)
  771. return;
  772. if (!non_pcm && per_pin->chmap_set)
  773. ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
  774. else
  775. ca = hdmi_channel_allocation(eld, channels);
  776. if (ca < 0)
  777. ca = 0;
  778. memset(&ai, 0, sizeof(ai));
  779. if (eld->info.conn_type == 0) { /* HDMI */
  780. struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
  781. hdmi_ai->type = 0x84;
  782. hdmi_ai->ver = 0x01;
  783. hdmi_ai->len = 0x0a;
  784. hdmi_ai->CC02_CT47 = channels - 1;
  785. hdmi_ai->CA = ca;
  786. hdmi_checksum_audio_infoframe(hdmi_ai);
  787. } else if (eld->info.conn_type == 1) { /* DisplayPort */
  788. struct dp_audio_infoframe *dp_ai = &ai.dp;
  789. dp_ai->type = 0x84;
  790. dp_ai->len = 0x1b;
  791. dp_ai->ver = 0x11 << 2;
  792. dp_ai->CC02_CT47 = channels - 1;
  793. dp_ai->CA = ca;
  794. } else {
  795. snd_printd("HDMI: unknown connection type at pin %d\n",
  796. pin_nid);
  797. return;
  798. }
  799. /*
  800. * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
  801. * sizeof(*dp_ai) to avoid partial match/update problems when
  802. * the user switches between HDMI/DP monitors.
  803. */
  804. if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
  805. sizeof(ai))) {
  806. snd_printdd("hdmi_setup_audio_infoframe: "
  807. "pin=%d channels=%d\n",
  808. pin_nid,
  809. channels);
  810. hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
  811. channels, per_pin->chmap,
  812. per_pin->chmap_set);
  813. hdmi_stop_infoframe_trans(codec, pin_nid);
  814. hdmi_fill_audio_infoframe(codec, pin_nid,
  815. ai.bytes, sizeof(ai));
  816. hdmi_start_infoframe_trans(codec, pin_nid);
  817. } else {
  818. /* For non-pcm audio switch, setup new channel mapping
  819. * accordingly */
  820. if (per_pin->non_pcm != non_pcm)
  821. hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
  822. channels, per_pin->chmap,
  823. per_pin->chmap_set);
  824. }
  825. per_pin->non_pcm = non_pcm;
  826. }
  827. /*
  828. * Unsolicited events
  829. */
  830. static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
  831. static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
  832. {
  833. struct hdmi_spec *spec = codec->spec;
  834. int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
  835. int pin_nid;
  836. int pin_idx;
  837. struct hda_jack_tbl *jack;
  838. jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
  839. if (!jack)
  840. return;
  841. pin_nid = jack->nid;
  842. jack->jack_dirty = 1;
  843. _snd_printd(SND_PR_VERBOSE,
  844. "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
  845. codec->addr, pin_nid,
  846. !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
  847. pin_idx = pin_nid_to_pin_index(spec, pin_nid);
  848. if (pin_idx < 0)
  849. return;
  850. hdmi_present_sense(get_pin(spec, pin_idx), 1);
  851. snd_hda_jack_report_sync(codec);
  852. }
  853. static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
  854. {
  855. int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
  856. int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
  857. int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
  858. int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
  859. printk(KERN_INFO
  860. "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
  861. codec->addr,
  862. tag,
  863. subtag,
  864. cp_state,
  865. cp_ready);
  866. /* TODO */
  867. if (cp_state)
  868. ;
  869. if (cp_ready)
  870. ;
  871. }
  872. static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
  873. {
  874. int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
  875. int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
  876. if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
  877. snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
  878. return;
  879. }
  880. if (subtag == 0)
  881. hdmi_intrinsic_event(codec, res);
  882. else
  883. hdmi_non_intrinsic_event(codec, res);
  884. }
  885. static void haswell_verify_pin_D0(struct hda_codec *codec, hda_nid_t nid)
  886. {
  887. int pwr, lamp, ramp;
  888. pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
  889. pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
  890. if (pwr != AC_PWRST_D0) {
  891. snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
  892. AC_PWRST_D0);
  893. msleep(40);
  894. pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
  895. pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
  896. snd_printd("Haswell HDMI audio: Power for pin 0x%x is now D%d\n", nid, pwr);
  897. }
  898. lamp = snd_hda_codec_read(codec, nid, 0,
  899. AC_VERB_GET_AMP_GAIN_MUTE,
  900. AC_AMP_GET_LEFT | AC_AMP_GET_OUTPUT);
  901. ramp = snd_hda_codec_read(codec, nid, 0,
  902. AC_VERB_GET_AMP_GAIN_MUTE,
  903. AC_AMP_GET_RIGHT | AC_AMP_GET_OUTPUT);
  904. if (lamp != ramp) {
  905. snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
  906. AC_AMP_SET_RIGHT | AC_AMP_SET_OUTPUT | lamp);
  907. lamp = snd_hda_codec_read(codec, nid, 0,
  908. AC_VERB_GET_AMP_GAIN_MUTE,
  909. AC_AMP_GET_LEFT | AC_AMP_GET_OUTPUT);
  910. ramp = snd_hda_codec_read(codec, nid, 0,
  911. AC_VERB_GET_AMP_GAIN_MUTE,
  912. AC_AMP_GET_RIGHT | AC_AMP_GET_OUTPUT);
  913. snd_printd("Haswell HDMI audio: Mute after set on pin 0x%x: [0x%x 0x%x]\n", nid, lamp, ramp);
  914. }
  915. }
  916. /*
  917. * Callbacks
  918. */
  919. /* HBR should be Non-PCM, 8 channels */
  920. #define is_hbr_format(format) \
  921. ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
  922. static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
  923. hda_nid_t pin_nid, u32 stream_tag, int format)
  924. {
  925. int pinctl;
  926. int new_pinctl = 0;
  927. if (codec->vendor_id == 0x80862807)
  928. haswell_verify_pin_D0(codec, pin_nid);
  929. if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
  930. pinctl = snd_hda_codec_read(codec, pin_nid, 0,
  931. AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
  932. new_pinctl = pinctl & ~AC_PINCTL_EPT;
  933. if (is_hbr_format(format))
  934. new_pinctl |= AC_PINCTL_EPT_HBR;
  935. else
  936. new_pinctl |= AC_PINCTL_EPT_NATIVE;
  937. snd_printdd("hdmi_setup_stream: "
  938. "NID=0x%x, %spinctl=0x%x\n",
  939. pin_nid,
  940. pinctl == new_pinctl ? "" : "new-",
  941. new_pinctl);
  942. if (pinctl != new_pinctl)
  943. snd_hda_codec_write(codec, pin_nid, 0,
  944. AC_VERB_SET_PIN_WIDGET_CONTROL,
  945. new_pinctl);
  946. }
  947. if (is_hbr_format(format) && !new_pinctl) {
  948. snd_printdd("hdmi_setup_stream: HBR is not supported\n");
  949. return -EINVAL;
  950. }
  951. snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
  952. return 0;
  953. }
  954. /*
  955. * HDA PCM callbacks
  956. */
  957. static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
  958. struct hda_codec *codec,
  959. struct snd_pcm_substream *substream)
  960. {
  961. struct hdmi_spec *spec = codec->spec;
  962. struct snd_pcm_runtime *runtime = substream->runtime;
  963. int pin_idx, cvt_idx, mux_idx = 0;
  964. struct hdmi_spec_per_pin *per_pin;
  965. struct hdmi_eld *eld;
  966. struct hdmi_spec_per_cvt *per_cvt = NULL;
  967. /* Validate hinfo */
  968. pin_idx = hinfo_to_pin_index(spec, hinfo);
  969. if (snd_BUG_ON(pin_idx < 0))
  970. return -EINVAL;
  971. per_pin = get_pin(spec, pin_idx);
  972. eld = &per_pin->sink_eld;
  973. /* Dynamically assign converter to stream */
  974. for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
  975. per_cvt = get_cvt(spec, cvt_idx);
  976. /* Must not already be assigned */
  977. if (per_cvt->assigned)
  978. continue;
  979. /* Must be in pin's mux's list of converters */
  980. for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
  981. if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
  982. break;
  983. /* Not in mux list */
  984. if (mux_idx == per_pin->num_mux_nids)
  985. continue;
  986. break;
  987. }
  988. /* No free converters */
  989. if (cvt_idx == spec->num_cvts)
  990. return -ENODEV;
  991. /* Claim converter */
  992. per_cvt->assigned = 1;
  993. hinfo->nid = per_cvt->cvt_nid;
  994. snd_hda_codec_write(codec, per_pin->pin_nid, 0,
  995. AC_VERB_SET_CONNECT_SEL,
  996. mux_idx);
  997. snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
  998. /* Initially set the converter's capabilities */
  999. hinfo->channels_min = per_cvt->channels_min;
  1000. hinfo->channels_max = per_cvt->channels_max;
  1001. hinfo->rates = per_cvt->rates;
  1002. hinfo->formats = per_cvt->formats;
  1003. hinfo->maxbps = per_cvt->maxbps;
  1004. /* Restrict capabilities by ELD if this isn't disabled */
  1005. if (!static_hdmi_pcm && eld->eld_valid) {
  1006. snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
  1007. if (hinfo->channels_min > hinfo->channels_max ||
  1008. !hinfo->rates || !hinfo->formats) {
  1009. per_cvt->assigned = 0;
  1010. hinfo->nid = 0;
  1011. snd_hda_spdif_ctls_unassign(codec, pin_idx);
  1012. return -ENODEV;
  1013. }
  1014. }
  1015. /* Store the updated parameters */
  1016. runtime->hw.channels_min = hinfo->channels_min;
  1017. runtime->hw.channels_max = hinfo->channels_max;
  1018. runtime->hw.formats = hinfo->formats;
  1019. runtime->hw.rates = hinfo->rates;
  1020. snd_pcm_hw_constraint_step(substream->runtime, 0,
  1021. SNDRV_PCM_HW_PARAM_CHANNELS, 2);
  1022. return 0;
  1023. }
  1024. /*
  1025. * HDA/HDMI auto parsing
  1026. */
  1027. static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
  1028. {
  1029. struct hdmi_spec *spec = codec->spec;
  1030. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1031. hda_nid_t pin_nid = per_pin->pin_nid;
  1032. if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
  1033. snd_printk(KERN_WARNING
  1034. "HDMI: pin %d wcaps %#x "
  1035. "does not support connection list\n",
  1036. pin_nid, get_wcaps(codec, pin_nid));
  1037. return -EINVAL;
  1038. }
  1039. per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
  1040. per_pin->mux_nids,
  1041. HDA_MAX_CONNECTIONS);
  1042. return 0;
  1043. }
  1044. static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
  1045. {
  1046. struct hda_codec *codec = per_pin->codec;
  1047. struct hdmi_spec *spec = codec->spec;
  1048. struct hdmi_eld *eld = &spec->temp_eld;
  1049. struct hdmi_eld *pin_eld = &per_pin->sink_eld;
  1050. hda_nid_t pin_nid = per_pin->pin_nid;
  1051. /*
  1052. * Always execute a GetPinSense verb here, even when called from
  1053. * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
  1054. * response's PD bit is not the real PD value, but indicates that
  1055. * the real PD value changed. An older version of the HD-audio
  1056. * specification worked this way. Hence, we just ignore the data in
  1057. * the unsolicited response to avoid custom WARs.
  1058. */
  1059. int present = snd_hda_pin_sense(codec, pin_nid);
  1060. bool update_eld = false;
  1061. bool eld_changed = false;
  1062. pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
  1063. if (pin_eld->monitor_present)
  1064. eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
  1065. else
  1066. eld->eld_valid = false;
  1067. _snd_printd(SND_PR_VERBOSE,
  1068. "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
  1069. codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
  1070. if (eld->eld_valid) {
  1071. if (snd_hdmi_get_eld(codec, pin_nid, eld->eld_buffer,
  1072. &eld->eld_size) < 0)
  1073. eld->eld_valid = false;
  1074. else {
  1075. memset(&eld->info, 0, sizeof(struct parsed_hdmi_eld));
  1076. if (snd_hdmi_parse_eld(&eld->info, eld->eld_buffer,
  1077. eld->eld_size) < 0)
  1078. eld->eld_valid = false;
  1079. }
  1080. if (eld->eld_valid) {
  1081. snd_hdmi_show_eld(&eld->info);
  1082. update_eld = true;
  1083. }
  1084. else if (repoll) {
  1085. queue_delayed_work(codec->bus->workq,
  1086. &per_pin->work,
  1087. msecs_to_jiffies(300));
  1088. return;
  1089. }
  1090. }
  1091. mutex_lock(&pin_eld->lock);
  1092. if (pin_eld->eld_valid && !eld->eld_valid) {
  1093. update_eld = true;
  1094. eld_changed = true;
  1095. }
  1096. if (update_eld) {
  1097. pin_eld->eld_valid = eld->eld_valid;
  1098. eld_changed = pin_eld->eld_size != eld->eld_size ||
  1099. memcmp(pin_eld->eld_buffer, eld->eld_buffer,
  1100. eld->eld_size) != 0;
  1101. if (eld_changed)
  1102. memcpy(pin_eld->eld_buffer, eld->eld_buffer,
  1103. eld->eld_size);
  1104. pin_eld->eld_size = eld->eld_size;
  1105. pin_eld->info = eld->info;
  1106. }
  1107. mutex_unlock(&pin_eld->lock);
  1108. if (eld_changed)
  1109. snd_ctl_notify(codec->bus->card,
  1110. SNDRV_CTL_EVENT_MASK_VALUE | SNDRV_CTL_EVENT_MASK_INFO,
  1111. &per_pin->eld_ctl->id);
  1112. }
  1113. static void hdmi_repoll_eld(struct work_struct *work)
  1114. {
  1115. struct hdmi_spec_per_pin *per_pin =
  1116. container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
  1117. if (per_pin->repoll_count++ > 6)
  1118. per_pin->repoll_count = 0;
  1119. hdmi_present_sense(per_pin, per_pin->repoll_count);
  1120. }
  1121. static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
  1122. hda_nid_t nid);
  1123. static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
  1124. {
  1125. struct hdmi_spec *spec = codec->spec;
  1126. unsigned int caps, config;
  1127. int pin_idx;
  1128. struct hdmi_spec_per_pin *per_pin;
  1129. int err;
  1130. caps = snd_hda_query_pin_caps(codec, pin_nid);
  1131. if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
  1132. return 0;
  1133. config = snd_hda_codec_get_pincfg(codec, pin_nid);
  1134. if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
  1135. return 0;
  1136. if (codec->vendor_id == 0x80862807)
  1137. intel_haswell_fixup_connect_list(codec, pin_nid);
  1138. pin_idx = spec->num_pins;
  1139. per_pin = snd_array_new(&spec->pins);
  1140. if (!per_pin)
  1141. return -ENOMEM;
  1142. per_pin->pin_nid = pin_nid;
  1143. per_pin->non_pcm = false;
  1144. err = hdmi_read_pin_conn(codec, pin_idx);
  1145. if (err < 0)
  1146. return err;
  1147. spec->num_pins++;
  1148. return 0;
  1149. }
  1150. static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
  1151. {
  1152. struct hdmi_spec *spec = codec->spec;
  1153. struct hdmi_spec_per_cvt *per_cvt;
  1154. unsigned int chans;
  1155. int err;
  1156. chans = get_wcaps(codec, cvt_nid);
  1157. chans = get_wcaps_channels(chans);
  1158. per_cvt = snd_array_new(&spec->cvts);
  1159. if (!per_cvt)
  1160. return -ENOMEM;
  1161. per_cvt->cvt_nid = cvt_nid;
  1162. per_cvt->channels_min = 2;
  1163. if (chans <= 16) {
  1164. per_cvt->channels_max = chans;
  1165. if (chans > spec->channels_max)
  1166. spec->channels_max = chans;
  1167. }
  1168. err = snd_hda_query_supported_pcm(codec, cvt_nid,
  1169. &per_cvt->rates,
  1170. &per_cvt->formats,
  1171. &per_cvt->maxbps);
  1172. if (err < 0)
  1173. return err;
  1174. if (spec->num_cvts < ARRAY_SIZE(spec->cvt_nids))
  1175. spec->cvt_nids[spec->num_cvts] = cvt_nid;
  1176. spec->num_cvts++;
  1177. return 0;
  1178. }
  1179. static int hdmi_parse_codec(struct hda_codec *codec)
  1180. {
  1181. hda_nid_t nid;
  1182. int i, nodes;
  1183. nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
  1184. if (!nid || nodes < 0) {
  1185. snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
  1186. return -EINVAL;
  1187. }
  1188. for (i = 0; i < nodes; i++, nid++) {
  1189. unsigned int caps;
  1190. unsigned int type;
  1191. caps = get_wcaps(codec, nid);
  1192. type = get_wcaps_type(caps);
  1193. if (!(caps & AC_WCAP_DIGITAL))
  1194. continue;
  1195. switch (type) {
  1196. case AC_WID_AUD_OUT:
  1197. hdmi_add_cvt(codec, nid);
  1198. break;
  1199. case AC_WID_PIN:
  1200. hdmi_add_pin(codec, nid);
  1201. break;
  1202. }
  1203. }
  1204. #ifdef CONFIG_PM
  1205. /* We're seeing some problems with unsolicited hot plug events on
  1206. * PantherPoint after S3, if this is not enabled */
  1207. if (codec->vendor_id == 0x80862806)
  1208. codec->bus->power_keep_link_on = 1;
  1209. /*
  1210. * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
  1211. * can be lost and presence sense verb will become inaccurate if the
  1212. * HDA link is powered off at hot plug or hw initialization time.
  1213. */
  1214. else if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
  1215. AC_PWRST_EPSS))
  1216. codec->bus->power_keep_link_on = 1;
  1217. #endif
  1218. return 0;
  1219. }
  1220. /*
  1221. */
  1222. static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
  1223. {
  1224. struct hda_spdif_out *spdif;
  1225. bool non_pcm;
  1226. mutex_lock(&codec->spdif_mutex);
  1227. spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
  1228. non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
  1229. mutex_unlock(&codec->spdif_mutex);
  1230. return non_pcm;
  1231. }
  1232. /*
  1233. * HDMI callbacks
  1234. */
  1235. static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
  1236. struct hda_codec *codec,
  1237. unsigned int stream_tag,
  1238. unsigned int format,
  1239. struct snd_pcm_substream *substream)
  1240. {
  1241. hda_nid_t cvt_nid = hinfo->nid;
  1242. struct hdmi_spec *spec = codec->spec;
  1243. int pin_idx = hinfo_to_pin_index(spec, hinfo);
  1244. hda_nid_t pin_nid = get_pin(spec, pin_idx)->pin_nid;
  1245. bool non_pcm;
  1246. non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
  1247. hdmi_set_channel_count(codec, cvt_nid, substream->runtime->channels);
  1248. hdmi_setup_audio_infoframe(codec, pin_idx, non_pcm, substream);
  1249. return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
  1250. }
  1251. static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
  1252. struct hda_codec *codec,
  1253. struct snd_pcm_substream *substream)
  1254. {
  1255. snd_hda_codec_cleanup_stream(codec, hinfo->nid);
  1256. return 0;
  1257. }
  1258. static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
  1259. struct hda_codec *codec,
  1260. struct snd_pcm_substream *substream)
  1261. {
  1262. struct hdmi_spec *spec = codec->spec;
  1263. int cvt_idx, pin_idx;
  1264. struct hdmi_spec_per_cvt *per_cvt;
  1265. struct hdmi_spec_per_pin *per_pin;
  1266. if (hinfo->nid) {
  1267. cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
  1268. if (snd_BUG_ON(cvt_idx < 0))
  1269. return -EINVAL;
  1270. per_cvt = get_cvt(spec, cvt_idx);
  1271. snd_BUG_ON(!per_cvt->assigned);
  1272. per_cvt->assigned = 0;
  1273. hinfo->nid = 0;
  1274. pin_idx = hinfo_to_pin_index(spec, hinfo);
  1275. if (snd_BUG_ON(pin_idx < 0))
  1276. return -EINVAL;
  1277. per_pin = get_pin(spec, pin_idx);
  1278. snd_hda_spdif_ctls_unassign(codec, pin_idx);
  1279. per_pin->chmap_set = false;
  1280. memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
  1281. }
  1282. return 0;
  1283. }
  1284. static const struct hda_pcm_ops generic_ops = {
  1285. .open = hdmi_pcm_open,
  1286. .close = hdmi_pcm_close,
  1287. .prepare = generic_hdmi_playback_pcm_prepare,
  1288. .cleanup = generic_hdmi_playback_pcm_cleanup,
  1289. };
  1290. /*
  1291. * ALSA API channel-map control callbacks
  1292. */
  1293. static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
  1294. struct snd_ctl_elem_info *uinfo)
  1295. {
  1296. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1297. struct hda_codec *codec = info->private_data;
  1298. struct hdmi_spec *spec = codec->spec;
  1299. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1300. uinfo->count = spec->channels_max;
  1301. uinfo->value.integer.min = 0;
  1302. uinfo->value.integer.max = SNDRV_CHMAP_LAST;
  1303. return 0;
  1304. }
  1305. static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
  1306. unsigned int size, unsigned int __user *tlv)
  1307. {
  1308. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1309. struct hda_codec *codec = info->private_data;
  1310. struct hdmi_spec *spec = codec->spec;
  1311. const unsigned int valid_mask =
  1312. FL | FR | RL | RR | LFE | FC | RLC | RRC;
  1313. unsigned int __user *dst;
  1314. int chs, count = 0;
  1315. if (size < 8)
  1316. return -ENOMEM;
  1317. if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
  1318. return -EFAULT;
  1319. size -= 8;
  1320. dst = tlv + 2;
  1321. for (chs = 2; chs <= spec->channels_max; chs++) {
  1322. int i, c;
  1323. struct cea_channel_speaker_allocation *cap;
  1324. cap = channel_allocations;
  1325. for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
  1326. int chs_bytes = chs * 4;
  1327. if (cap->channels != chs)
  1328. continue;
  1329. if (cap->spk_mask & ~valid_mask)
  1330. continue;
  1331. if (size < 8)
  1332. return -ENOMEM;
  1333. if (put_user(SNDRV_CTL_TLVT_CHMAP_VAR, dst) ||
  1334. put_user(chs_bytes, dst + 1))
  1335. return -EFAULT;
  1336. dst += 2;
  1337. size -= 8;
  1338. count += 8;
  1339. if (size < chs_bytes)
  1340. return -ENOMEM;
  1341. size -= chs_bytes;
  1342. count += chs_bytes;
  1343. for (c = 7; c >= 0; c--) {
  1344. int spk = cap->speakers[c];
  1345. if (!spk)
  1346. continue;
  1347. if (put_user(spk_to_chmap(spk), dst))
  1348. return -EFAULT;
  1349. dst++;
  1350. }
  1351. }
  1352. }
  1353. if (put_user(count, tlv + 1))
  1354. return -EFAULT;
  1355. return 0;
  1356. }
  1357. static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
  1358. struct snd_ctl_elem_value *ucontrol)
  1359. {
  1360. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1361. struct hda_codec *codec = info->private_data;
  1362. struct hdmi_spec *spec = codec->spec;
  1363. int pin_idx = kcontrol->private_value;
  1364. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1365. int i;
  1366. for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
  1367. ucontrol->value.integer.value[i] = per_pin->chmap[i];
  1368. return 0;
  1369. }
  1370. static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
  1371. struct snd_ctl_elem_value *ucontrol)
  1372. {
  1373. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1374. struct hda_codec *codec = info->private_data;
  1375. struct hdmi_spec *spec = codec->spec;
  1376. int pin_idx = kcontrol->private_value;
  1377. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1378. unsigned int ctl_idx;
  1379. struct snd_pcm_substream *substream;
  1380. unsigned char chmap[8];
  1381. int i, ca, prepared = 0;
  1382. ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1383. substream = snd_pcm_chmap_substream(info, ctl_idx);
  1384. if (!substream || !substream->runtime)
  1385. return 0; /* just for avoiding error from alsactl restore */
  1386. switch (substream->runtime->status->state) {
  1387. case SNDRV_PCM_STATE_OPEN:
  1388. case SNDRV_PCM_STATE_SETUP:
  1389. break;
  1390. case SNDRV_PCM_STATE_PREPARED:
  1391. prepared = 1;
  1392. break;
  1393. default:
  1394. return -EBUSY;
  1395. }
  1396. memset(chmap, 0, sizeof(chmap));
  1397. for (i = 0; i < ARRAY_SIZE(chmap); i++)
  1398. chmap[i] = ucontrol->value.integer.value[i];
  1399. if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
  1400. return 0;
  1401. ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
  1402. if (ca < 0)
  1403. return -EINVAL;
  1404. per_pin->chmap_set = true;
  1405. memcpy(per_pin->chmap, chmap, sizeof(chmap));
  1406. if (prepared)
  1407. hdmi_setup_audio_infoframe(codec, pin_idx, per_pin->non_pcm,
  1408. substream);
  1409. return 0;
  1410. }
  1411. static int generic_hdmi_build_pcms(struct hda_codec *codec)
  1412. {
  1413. struct hdmi_spec *spec = codec->spec;
  1414. int pin_idx;
  1415. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
  1416. struct hda_pcm *info;
  1417. struct hda_pcm_stream *pstr;
  1418. struct hdmi_spec_per_pin *per_pin;
  1419. per_pin = get_pin(spec, pin_idx);
  1420. sprintf(per_pin->pcm_name, "HDMI %d", pin_idx);
  1421. info = snd_array_new(&spec->pcm_rec);
  1422. if (!info)
  1423. return -ENOMEM;
  1424. info->name = per_pin->pcm_name;
  1425. info->pcm_type = HDA_PCM_TYPE_HDMI;
  1426. info->own_chmap = true;
  1427. pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
  1428. pstr->substreams = 1;
  1429. pstr->ops = generic_ops;
  1430. /* other pstr fields are set in open */
  1431. }
  1432. codec->num_pcms = spec->num_pins;
  1433. codec->pcm_info = spec->pcm_rec.list;
  1434. return 0;
  1435. }
  1436. static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
  1437. {
  1438. char hdmi_str[32] = "HDMI/DP";
  1439. struct hdmi_spec *spec = codec->spec;
  1440. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1441. int pcmdev = get_pcm_rec(spec, pin_idx)->device;
  1442. if (pcmdev > 0)
  1443. sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
  1444. if (!is_jack_detectable(codec, per_pin->pin_nid))
  1445. strncat(hdmi_str, " Phantom",
  1446. sizeof(hdmi_str) - strlen(hdmi_str) - 1);
  1447. return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
  1448. }
  1449. static int generic_hdmi_build_controls(struct hda_codec *codec)
  1450. {
  1451. struct hdmi_spec *spec = codec->spec;
  1452. int err;
  1453. int pin_idx;
  1454. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
  1455. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1456. err = generic_hdmi_build_jack(codec, pin_idx);
  1457. if (err < 0)
  1458. return err;
  1459. err = snd_hda_create_dig_out_ctls(codec,
  1460. per_pin->pin_nid,
  1461. per_pin->mux_nids[0],
  1462. HDA_PCM_TYPE_HDMI);
  1463. if (err < 0)
  1464. return err;
  1465. snd_hda_spdif_ctls_unassign(codec, pin_idx);
  1466. /* add control for ELD Bytes */
  1467. err = hdmi_create_eld_ctl(codec, pin_idx,
  1468. get_pcm_rec(spec, pin_idx)->device);
  1469. if (err < 0)
  1470. return err;
  1471. hdmi_present_sense(per_pin, 0);
  1472. }
  1473. /* add channel maps */
  1474. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
  1475. struct snd_pcm_chmap *chmap;
  1476. struct snd_kcontrol *kctl;
  1477. int i;
  1478. err = snd_pcm_add_chmap_ctls(codec->pcm_info[pin_idx].pcm,
  1479. SNDRV_PCM_STREAM_PLAYBACK,
  1480. NULL, 0, pin_idx, &chmap);
  1481. if (err < 0)
  1482. return err;
  1483. /* override handlers */
  1484. chmap->private_data = codec;
  1485. kctl = chmap->kctl;
  1486. for (i = 0; i < kctl->count; i++)
  1487. kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
  1488. kctl->info = hdmi_chmap_ctl_info;
  1489. kctl->get = hdmi_chmap_ctl_get;
  1490. kctl->put = hdmi_chmap_ctl_put;
  1491. kctl->tlv.c = hdmi_chmap_ctl_tlv;
  1492. }
  1493. return 0;
  1494. }
  1495. static int generic_hdmi_init_per_pins(struct hda_codec *codec)
  1496. {
  1497. struct hdmi_spec *spec = codec->spec;
  1498. int pin_idx;
  1499. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
  1500. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1501. struct hdmi_eld *eld = &per_pin->sink_eld;
  1502. per_pin->codec = codec;
  1503. mutex_init(&eld->lock);
  1504. INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
  1505. snd_hda_eld_proc_new(codec, eld, pin_idx);
  1506. }
  1507. return 0;
  1508. }
  1509. static int generic_hdmi_init(struct hda_codec *codec)
  1510. {
  1511. struct hdmi_spec *spec = codec->spec;
  1512. int pin_idx;
  1513. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
  1514. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1515. hda_nid_t pin_nid = per_pin->pin_nid;
  1516. hdmi_init_pin(codec, pin_nid);
  1517. snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
  1518. }
  1519. return 0;
  1520. }
  1521. static void hdmi_array_init(struct hdmi_spec *spec, int nums)
  1522. {
  1523. snd_array_init(&spec->pins, sizeof(struct hdmi_spec_per_pin), nums);
  1524. snd_array_init(&spec->cvts, sizeof(struct hdmi_spec_per_cvt), nums);
  1525. snd_array_init(&spec->pcm_rec, sizeof(struct hda_pcm), nums);
  1526. }
  1527. static void hdmi_array_free(struct hdmi_spec *spec)
  1528. {
  1529. snd_array_free(&spec->pins);
  1530. snd_array_free(&spec->cvts);
  1531. snd_array_free(&spec->pcm_rec);
  1532. }
  1533. static void generic_hdmi_free(struct hda_codec *codec)
  1534. {
  1535. struct hdmi_spec *spec = codec->spec;
  1536. int pin_idx;
  1537. for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
  1538. struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
  1539. struct hdmi_eld *eld = &per_pin->sink_eld;
  1540. cancel_delayed_work(&per_pin->work);
  1541. snd_hda_eld_proc_free(codec, eld);
  1542. }
  1543. flush_workqueue(codec->bus->workq);
  1544. hdmi_array_free(spec);
  1545. kfree(spec);
  1546. }
  1547. static const struct hda_codec_ops generic_hdmi_patch_ops = {
  1548. .init = generic_hdmi_init,
  1549. .free = generic_hdmi_free,
  1550. .build_pcms = generic_hdmi_build_pcms,
  1551. .build_controls = generic_hdmi_build_controls,
  1552. .unsol_event = hdmi_unsol_event,
  1553. };
  1554. static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
  1555. hda_nid_t nid)
  1556. {
  1557. struct hdmi_spec *spec = codec->spec;
  1558. hda_nid_t conns[4];
  1559. int nconns;
  1560. nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
  1561. if (nconns == spec->num_cvts &&
  1562. !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
  1563. return;
  1564. /* override pins connection list */
  1565. snd_printdd("hdmi: haswell: override pin connection 0x%x\n", nid);
  1566. nconns = max(spec->num_cvts, 4);
  1567. snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
  1568. }
  1569. #define INTEL_VENDOR_NID 0x08
  1570. #define INTEL_GET_VENDOR_VERB 0xf81
  1571. #define INTEL_SET_VENDOR_VERB 0x781
  1572. #define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
  1573. #define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
  1574. static void intel_haswell_enable_all_pins(struct hda_codec *codec,
  1575. bool update_tree)
  1576. {
  1577. unsigned int vendor_param;
  1578. vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
  1579. INTEL_GET_VENDOR_VERB, 0);
  1580. if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
  1581. return;
  1582. vendor_param |= INTEL_EN_ALL_PIN_CVTS;
  1583. vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
  1584. INTEL_SET_VENDOR_VERB, vendor_param);
  1585. if (vendor_param == -1)
  1586. return;
  1587. if (update_tree)
  1588. snd_hda_codec_update_widgets(codec);
  1589. }
  1590. static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
  1591. {
  1592. unsigned int vendor_param;
  1593. vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
  1594. INTEL_GET_VENDOR_VERB, 0);
  1595. if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
  1596. return;
  1597. /* enable DP1.2 mode */
  1598. vendor_param |= INTEL_EN_DP12;
  1599. snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
  1600. INTEL_SET_VENDOR_VERB, vendor_param);
  1601. }
  1602. /* Haswell needs to re-issue the vendor-specific verbs before turning to D0.
  1603. * Otherwise you may get severe h/w communication errors.
  1604. */
  1605. static void haswell_set_power_state(struct hda_codec *codec, hda_nid_t fg,
  1606. unsigned int power_state)
  1607. {
  1608. if (power_state == AC_PWRST_D0) {
  1609. intel_haswell_enable_all_pins(codec, false);
  1610. intel_haswell_fixup_enable_dp12(codec);
  1611. }
  1612. snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state);
  1613. snd_hda_codec_set_power_to_all(codec, fg, power_state);
  1614. }
  1615. static int patch_generic_hdmi(struct hda_codec *codec)
  1616. {
  1617. struct hdmi_spec *spec;
  1618. spec = kzalloc(sizeof(*spec), GFP_KERNEL);
  1619. if (spec == NULL)
  1620. return -ENOMEM;
  1621. codec->spec = spec;
  1622. hdmi_array_init(spec, 4);
  1623. if (codec->vendor_id == 0x80862807) {
  1624. intel_haswell_enable_all_pins(codec, true);
  1625. intel_haswell_fixup_enable_dp12(codec);
  1626. }
  1627. if (hdmi_parse_codec(codec) < 0) {
  1628. codec->spec = NULL;
  1629. kfree(spec);
  1630. return -EINVAL;
  1631. }
  1632. codec->patch_ops = generic_hdmi_patch_ops;
  1633. if (codec->vendor_id == 0x80862807)
  1634. codec->patch_ops.set_power_state = haswell_set_power_state;
  1635. generic_hdmi_init_per_pins(codec);
  1636. init_channel_allocations();
  1637. return 0;
  1638. }
  1639. /*
  1640. * Shared non-generic implementations
  1641. */
  1642. static int simple_playback_build_pcms(struct hda_codec *codec)
  1643. {
  1644. struct hdmi_spec *spec = codec->spec;
  1645. struct hda_pcm *info;
  1646. unsigned int chans;
  1647. struct hda_pcm_stream *pstr;
  1648. struct hdmi_spec_per_cvt *per_cvt;
  1649. per_cvt = get_cvt(spec, 0);
  1650. chans = get_wcaps(codec, per_cvt->cvt_nid);
  1651. chans = get_wcaps_channels(chans);
  1652. info = snd_array_new(&spec->pcm_rec);
  1653. if (!info)
  1654. return -ENOMEM;
  1655. info->name = get_pin(spec, 0)->pcm_name;
  1656. sprintf(info->name, "HDMI 0");
  1657. info->pcm_type = HDA_PCM_TYPE_HDMI;
  1658. pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
  1659. *pstr = spec->pcm_playback;
  1660. pstr->nid = per_cvt->cvt_nid;
  1661. if (pstr->channels_max <= 2 && chans && chans <= 16)
  1662. pstr->channels_max = chans;
  1663. codec->num_pcms = 1;
  1664. codec->pcm_info = info;
  1665. return 0;
  1666. }
  1667. /* unsolicited event for jack sensing */
  1668. static void simple_hdmi_unsol_event(struct hda_codec *codec,
  1669. unsigned int res)
  1670. {
  1671. snd_hda_jack_set_dirty_all(codec);
  1672. snd_hda_jack_report_sync(codec);
  1673. }
  1674. /* generic_hdmi_build_jack can be used for simple_hdmi, too,
  1675. * as long as spec->pins[] is set correctly
  1676. */
  1677. #define simple_hdmi_build_jack generic_hdmi_build_jack
  1678. static int simple_playback_build_controls(struct hda_codec *codec)
  1679. {
  1680. struct hdmi_spec *spec = codec->spec;
  1681. struct hdmi_spec_per_cvt *per_cvt;
  1682. int err;
  1683. per_cvt = get_cvt(spec, 0);
  1684. err = snd_hda_create_spdif_out_ctls(codec, per_cvt->cvt_nid,
  1685. per_cvt->cvt_nid);
  1686. if (err < 0)
  1687. return err;
  1688. return simple_hdmi_build_jack(codec, 0);
  1689. }
  1690. static int simple_playback_init(struct hda_codec *codec)
  1691. {
  1692. struct hdmi_spec *spec = codec->spec;
  1693. struct hdmi_spec_per_pin *per_pin = get_pin(spec, 0);
  1694. hda_nid_t pin = per_pin->pin_nid;
  1695. snd_hda_codec_write(codec, pin, 0,
  1696. AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
  1697. /* some codecs require to unmute the pin */
  1698. if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
  1699. snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
  1700. AMP_OUT_UNMUTE);
  1701. snd_hda_jack_detect_enable(codec, pin, pin);
  1702. return 0;
  1703. }
  1704. static void simple_playback_free(struct hda_codec *codec)
  1705. {
  1706. struct hdmi_spec *spec = codec->spec;
  1707. hdmi_array_free(spec);
  1708. kfree(spec);
  1709. }
  1710. /*
  1711. * Nvidia specific implementations
  1712. */
  1713. #define Nv_VERB_SET_Channel_Allocation 0xF79
  1714. #define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
  1715. #define Nv_VERB_SET_Audio_Protection_On 0xF98
  1716. #define Nv_VERB_SET_Audio_Protection_Off 0xF99
  1717. #define nvhdmi_master_con_nid_7x 0x04
  1718. #define nvhdmi_master_pin_nid_7x 0x05
  1719. static const hda_nid_t nvhdmi_con_nids_7x[4] = {
  1720. /*front, rear, clfe, rear_surr */
  1721. 0x6, 0x8, 0xa, 0xc,
  1722. };
  1723. static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
  1724. /* set audio protect on */
  1725. { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
  1726. /* enable digital output on pin widget */
  1727. { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
  1728. {} /* terminator */
  1729. };
  1730. static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
  1731. /* set audio protect on */
  1732. { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
  1733. /* enable digital output on pin widget */
  1734. { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
  1735. { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
  1736. { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
  1737. { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
  1738. { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
  1739. {} /* terminator */
  1740. };
  1741. #ifdef LIMITED_RATE_FMT_SUPPORT
  1742. /* support only the safe format and rate */
  1743. #define SUPPORTED_RATES SNDRV_PCM_RATE_48000
  1744. #define SUPPORTED_MAXBPS 16
  1745. #define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
  1746. #else
  1747. /* support all rates and formats */
  1748. #define SUPPORTED_RATES \
  1749. (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
  1750. SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
  1751. SNDRV_PCM_RATE_192000)
  1752. #define SUPPORTED_MAXBPS 24
  1753. #define SUPPORTED_FORMATS \
  1754. (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
  1755. #endif
  1756. static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
  1757. {
  1758. snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
  1759. return 0;
  1760. }
  1761. static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
  1762. {
  1763. snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
  1764. return 0;
  1765. }
  1766. static unsigned int channels_2_6_8[] = {
  1767. 2, 6, 8
  1768. };
  1769. static unsigned int channels_2_8[] = {
  1770. 2, 8
  1771. };
  1772. static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
  1773. .count = ARRAY_SIZE(channels_2_6_8),
  1774. .list = channels_2_6_8,
  1775. .mask = 0,
  1776. };
  1777. static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
  1778. .count = ARRAY_SIZE(channels_2_8),
  1779. .list = channels_2_8,
  1780. .mask = 0,
  1781. };
  1782. static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
  1783. struct hda_codec *codec,
  1784. struct snd_pcm_substream *substream)
  1785. {
  1786. struct hdmi_spec *spec = codec->spec;
  1787. struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
  1788. switch (codec->preset->id) {
  1789. case 0x10de0002:
  1790. case 0x10de0003:
  1791. case 0x10de0005:
  1792. case 0x10de0006:
  1793. hw_constraints_channels = &hw_constraints_2_8_channels;
  1794. break;
  1795. case 0x10de0007:
  1796. hw_constraints_channels = &hw_constraints_2_6_8_channels;
  1797. break;
  1798. default:
  1799. break;
  1800. }
  1801. if (hw_constraints_channels != NULL) {
  1802. snd_pcm_hw_constraint_list(substream->runtime, 0,
  1803. SNDRV_PCM_HW_PARAM_CHANNELS,
  1804. hw_constraints_channels);
  1805. } else {
  1806. snd_pcm_hw_constraint_step(substream->runtime, 0,
  1807. SNDRV_PCM_HW_PARAM_CHANNELS, 2);
  1808. }
  1809. return snd_hda_multi_out_dig_open(codec, &spec->multiout);
  1810. }
  1811. static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
  1812. struct hda_codec *codec,
  1813. struct snd_pcm_substream *substream)
  1814. {
  1815. struct hdmi_spec *spec = codec->spec;
  1816. return snd_hda_multi_out_dig_close(codec, &spec->multiout);
  1817. }
  1818. static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
  1819. struct hda_codec *codec,
  1820. unsigned int stream_tag,
  1821. unsigned int format,
  1822. struct snd_pcm_substream *substream)
  1823. {
  1824. struct hdmi_spec *spec = codec->spec;
  1825. return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
  1826. stream_tag, format, substream);
  1827. }
  1828. static const struct hda_pcm_stream simple_pcm_playback = {
  1829. .substreams = 1,
  1830. .channels_min = 2,
  1831. .channels_max = 2,
  1832. .ops = {
  1833. .open = simple_playback_pcm_open,
  1834. .close = simple_playback_pcm_close,
  1835. .prepare = simple_playback_pcm_prepare
  1836. },
  1837. };
  1838. static const struct hda_codec_ops simple_hdmi_patch_ops = {
  1839. .build_controls = simple_playback_build_controls,
  1840. .build_pcms = simple_playback_build_pcms,
  1841. .init = simple_playback_init,
  1842. .free = simple_playback_free,
  1843. .unsol_event = simple_hdmi_unsol_event,
  1844. };
  1845. static int patch_simple_hdmi(struct hda_codec *codec,
  1846. hda_nid_t cvt_nid, hda_nid_t pin_nid)
  1847. {
  1848. struct hdmi_spec *spec;
  1849. struct hdmi_spec_per_cvt *per_cvt;
  1850. struct hdmi_spec_per_pin *per_pin;
  1851. spec = kzalloc(sizeof(*spec), GFP_KERNEL);
  1852. if (!spec)
  1853. return -ENOMEM;
  1854. codec->spec = spec;
  1855. hdmi_array_init(spec, 1);
  1856. spec->multiout.num_dacs = 0; /* no analog */
  1857. spec->multiout.max_channels = 2;
  1858. spec->multiout.dig_out_nid = cvt_nid;
  1859. spec->num_cvts = 1;
  1860. spec->num_pins = 1;
  1861. per_pin = snd_array_new(&spec->pins);
  1862. per_cvt = snd_array_new(&spec->cvts);
  1863. if (!per_pin || !per_cvt) {
  1864. simple_playback_free(codec);
  1865. return -ENOMEM;
  1866. }
  1867. per_cvt->cvt_nid = cvt_nid;
  1868. per_pin->pin_nid = pin_nid;
  1869. spec->pcm_playback = simple_pcm_playback;
  1870. codec->patch_ops = simple_hdmi_patch_ops;
  1871. return 0;
  1872. }
  1873. static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
  1874. int channels)
  1875. {
  1876. unsigned int chanmask;
  1877. int chan = channels ? (channels - 1) : 1;
  1878. switch (channels) {
  1879. default:
  1880. case 0:
  1881. case 2:
  1882. chanmask = 0x00;
  1883. break;
  1884. case 4:
  1885. chanmask = 0x08;
  1886. break;
  1887. case 6:
  1888. chanmask = 0x0b;
  1889. break;
  1890. case 8:
  1891. chanmask = 0x13;
  1892. break;
  1893. }
  1894. /* Set the audio infoframe channel allocation and checksum fields. The
  1895. * channel count is computed implicitly by the hardware. */
  1896. snd_hda_codec_write(codec, 0x1, 0,
  1897. Nv_VERB_SET_Channel_Allocation, chanmask);
  1898. snd_hda_codec_write(codec, 0x1, 0,
  1899. Nv_VERB_SET_Info_Frame_Checksum,
  1900. (0x71 - chan - chanmask));
  1901. }
  1902. static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
  1903. struct hda_codec *codec,
  1904. struct snd_pcm_substream *substream)
  1905. {
  1906. struct hdmi_spec *spec = codec->spec;
  1907. int i;
  1908. snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
  1909. 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
  1910. for (i = 0; i < 4; i++) {
  1911. /* set the stream id */
  1912. snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
  1913. AC_VERB_SET_CHANNEL_STREAMID, 0);
  1914. /* set the stream format */
  1915. snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
  1916. AC_VERB_SET_STREAM_FORMAT, 0);
  1917. }
  1918. /* The audio hardware sends a channel count of 0x7 (8ch) when all the
  1919. * streams are disabled. */
  1920. nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
  1921. return snd_hda_multi_out_dig_close(codec, &spec->multiout);
  1922. }
  1923. static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
  1924. struct hda_codec *codec,
  1925. unsigned int stream_tag,
  1926. unsigned int format,
  1927. struct snd_pcm_substream *substream)
  1928. {
  1929. int chs;
  1930. unsigned int dataDCC2, channel_id;
  1931. int i;
  1932. struct hdmi_spec *spec = codec->spec;
  1933. struct hda_spdif_out *spdif;
  1934. struct hdmi_spec_per_cvt *per_cvt;
  1935. mutex_lock(&codec->spdif_mutex);
  1936. per_cvt = get_cvt(spec, 0);
  1937. spdif = snd_hda_spdif_out_of_nid(codec, per_cvt->cvt_nid);
  1938. chs = substream->runtime->channels;
  1939. dataDCC2 = 0x2;
  1940. /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
  1941. if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
  1942. snd_hda_codec_write(codec,
  1943. nvhdmi_master_con_nid_7x,
  1944. 0,
  1945. AC_VERB_SET_DIGI_CONVERT_1,
  1946. spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
  1947. /* set the stream id */
  1948. snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
  1949. AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
  1950. /* set the stream format */
  1951. snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
  1952. AC_VERB_SET_STREAM_FORMAT, format);
  1953. /* turn on again (if needed) */
  1954. /* enable and set the channel status audio/data flag */
  1955. if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
  1956. snd_hda_codec_write(codec,
  1957. nvhdmi_master_con_nid_7x,
  1958. 0,
  1959. AC_VERB_SET_DIGI_CONVERT_1,
  1960. spdif->ctls & 0xff);
  1961. snd_hda_codec_write(codec,
  1962. nvhdmi_master_con_nid_7x,
  1963. 0,
  1964. AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
  1965. }
  1966. for (i = 0; i < 4; i++) {
  1967. if (chs == 2)
  1968. channel_id = 0;
  1969. else
  1970. channel_id = i * 2;
  1971. /* turn off SPDIF once;
  1972. *otherwise the IEC958 bits won't be updated
  1973. */
  1974. if (codec->spdif_status_reset &&
  1975. (spdif->ctls & AC_DIG1_ENABLE))
  1976. snd_hda_codec_write(codec,
  1977. nvhdmi_con_nids_7x[i],
  1978. 0,
  1979. AC_VERB_SET_DIGI_CONVERT_1,
  1980. spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
  1981. /* set the stream id */
  1982. snd_hda_codec_write(codec,
  1983. nvhdmi_con_nids_7x[i],
  1984. 0,
  1985. AC_VERB_SET_CHANNEL_STREAMID,
  1986. (stream_tag << 4) | channel_id);
  1987. /* set the stream format */
  1988. snd_hda_codec_write(codec,
  1989. nvhdmi_con_nids_7x[i],
  1990. 0,
  1991. AC_VERB_SET_STREAM_FORMAT,
  1992. format);
  1993. /* turn on again (if needed) */
  1994. /* enable and set the channel status audio/data flag */
  1995. if (codec->spdif_status_reset &&
  1996. (spdif->ctls & AC_DIG1_ENABLE)) {
  1997. snd_hda_codec_write(codec,
  1998. nvhdmi_con_nids_7x[i],
  1999. 0,
  2000. AC_VERB_SET_DIGI_CONVERT_1,
  2001. spdif->ctls & 0xff);
  2002. snd_hda_codec_write(codec,
  2003. nvhdmi_con_nids_7x[i],
  2004. 0,
  2005. AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
  2006. }
  2007. }
  2008. nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
  2009. mutex_unlock(&codec->spdif_mutex);
  2010. return 0;
  2011. }
  2012. static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
  2013. .substreams = 1,
  2014. .channels_min = 2,
  2015. .channels_max = 8,
  2016. .nid = nvhdmi_master_con_nid_7x,
  2017. .rates = SUPPORTED_RATES,
  2018. .maxbps = SUPPORTED_MAXBPS,
  2019. .formats = SUPPORTED_FORMATS,
  2020. .ops = {
  2021. .open = simple_playback_pcm_open,
  2022. .close = nvhdmi_8ch_7x_pcm_close,
  2023. .prepare = nvhdmi_8ch_7x_pcm_prepare
  2024. },
  2025. };
  2026. static int patch_nvhdmi_2ch(struct hda_codec *codec)
  2027. {
  2028. struct hdmi_spec *spec;
  2029. int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
  2030. nvhdmi_master_pin_nid_7x);
  2031. if (err < 0)
  2032. return err;
  2033. codec->patch_ops.init = nvhdmi_7x_init_2ch;
  2034. /* override the PCM rates, etc, as the codec doesn't give full list */
  2035. spec = codec->spec;
  2036. spec->pcm_playback.rates = SUPPORTED_RATES;
  2037. spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
  2038. spec->pcm_playback.formats = SUPPORTED_FORMATS;
  2039. return 0;
  2040. }
  2041. static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
  2042. {
  2043. struct hdmi_spec *spec = codec->spec;
  2044. int err = simple_playback_build_pcms(codec);
  2045. if (!err) {
  2046. struct hda_pcm *info = get_pcm_rec(spec, 0);
  2047. info->own_chmap = true;
  2048. }
  2049. return err;
  2050. }
  2051. static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
  2052. {
  2053. struct hdmi_spec *spec = codec->spec;
  2054. struct hda_pcm *info;
  2055. struct snd_pcm_chmap *chmap;
  2056. int err;
  2057. err = simple_playback_build_controls(codec);
  2058. if (err < 0)
  2059. return err;
  2060. /* add channel maps */
  2061. info = get_pcm_rec(spec, 0);
  2062. err = snd_pcm_add_chmap_ctls(info->pcm,
  2063. SNDRV_PCM_STREAM_PLAYBACK,
  2064. snd_pcm_alt_chmaps, 8, 0, &chmap);
  2065. if (err < 0)
  2066. return err;
  2067. switch (codec->preset->id) {
  2068. case 0x10de0002:
  2069. case 0x10de0003:
  2070. case 0x10de0005:
  2071. case 0x10de0006:
  2072. chmap->channel_mask = (1U << 2) | (1U << 8);
  2073. break;
  2074. case 0x10de0007:
  2075. chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
  2076. }
  2077. return 0;
  2078. }
  2079. static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
  2080. {
  2081. struct hdmi_spec *spec;
  2082. int err = patch_nvhdmi_2ch(codec);
  2083. if (err < 0)
  2084. return err;
  2085. spec = codec->spec;
  2086. spec->multiout.max_channels = 8;
  2087. spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
  2088. codec->patch_ops.init = nvhdmi_7x_init_8ch;
  2089. codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
  2090. codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
  2091. /* Initialize the audio infoframe channel mask and checksum to something
  2092. * valid */
  2093. nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
  2094. return 0;
  2095. }
  2096. /*
  2097. * ATI-specific implementations
  2098. *
  2099. * FIXME: we may omit the whole this and use the generic code once after
  2100. * it's confirmed to work.
  2101. */
  2102. #define ATIHDMI_CVT_NID 0x02 /* audio converter */
  2103. #define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
  2104. static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
  2105. struct hda_codec *codec,
  2106. unsigned int stream_tag,
  2107. unsigned int format,
  2108. struct snd_pcm_substream *substream)
  2109. {
  2110. struct hdmi_spec *spec = codec->spec;
  2111. struct hdmi_spec_per_cvt *per_cvt = get_cvt(spec, 0);
  2112. int chans = substream->runtime->channels;
  2113. int i, err;
  2114. err = simple_playback_pcm_prepare(hinfo, codec, stream_tag, format,
  2115. substream);
  2116. if (err < 0)
  2117. return err;
  2118. snd_hda_codec_write(codec, per_cvt->cvt_nid, 0,
  2119. AC_VERB_SET_CVT_CHAN_COUNT, chans - 1);
  2120. /* FIXME: XXX */
  2121. for (i = 0; i < chans; i++) {
  2122. snd_hda_codec_write(codec, per_cvt->cvt_nid, 0,
  2123. AC_VERB_SET_HDMI_CHAN_SLOT,
  2124. (i << 4) | i);
  2125. }
  2126. return 0;
  2127. }
  2128. static int patch_atihdmi(struct hda_codec *codec)
  2129. {
  2130. struct hdmi_spec *spec;
  2131. int err = patch_simple_hdmi(codec, ATIHDMI_CVT_NID, ATIHDMI_PIN_NID);
  2132. if (err < 0)
  2133. return err;
  2134. spec = codec->spec;
  2135. spec->pcm_playback.ops.prepare = atihdmi_playback_pcm_prepare;
  2136. return 0;
  2137. }
  2138. /* VIA HDMI Implementation */
  2139. #define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
  2140. #define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
  2141. static int patch_via_hdmi(struct hda_codec *codec)
  2142. {
  2143. return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
  2144. }
  2145. /*
  2146. * patch entries
  2147. */
  2148. static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
  2149. { .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
  2150. { .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
  2151. { .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
  2152. { .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_generic_hdmi },
  2153. { .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
  2154. { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
  2155. { .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
  2156. { .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
  2157. { .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
  2158. { .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
  2159. { .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
  2160. { .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
  2161. { .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
  2162. { .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
  2163. { .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
  2164. { .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
  2165. { .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
  2166. { .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
  2167. { .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
  2168. { .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
  2169. { .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
  2170. { .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
  2171. { .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
  2172. /* 17 is known to be absent */
  2173. { .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
  2174. { .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
  2175. { .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
  2176. { .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
  2177. { .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
  2178. { .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
  2179. { .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
  2180. { .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
  2181. { .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
  2182. { .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
  2183. { .id = 0x10de0051, .name = "GPU 51 HDMI/DP", .patch = patch_generic_hdmi },
  2184. { .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
  2185. { .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
  2186. { .id = 0x11069f80, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
  2187. { .id = 0x11069f81, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
  2188. { .id = 0x11069f84, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
  2189. { .id = 0x11069f85, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
  2190. { .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
  2191. { .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
  2192. { .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
  2193. { .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
  2194. { .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
  2195. { .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
  2196. { .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
  2197. { .id = 0x80862807, .name = "Haswell HDMI", .patch = patch_generic_hdmi },
  2198. { .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi },
  2199. { .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
  2200. {} /* terminator */
  2201. };
  2202. MODULE_ALIAS("snd-hda-codec-id:1002793c");
  2203. MODULE_ALIAS("snd-hda-codec-id:10027919");
  2204. MODULE_ALIAS("snd-hda-codec-id:1002791a");
  2205. MODULE_ALIAS("snd-hda-codec-id:1002aa01");
  2206. MODULE_ALIAS("snd-hda-codec-id:10951390");
  2207. MODULE_ALIAS("snd-hda-codec-id:10951392");
  2208. MODULE_ALIAS("snd-hda-codec-id:10de0002");
  2209. MODULE_ALIAS("snd-hda-codec-id:10de0003");
  2210. MODULE_ALIAS("snd-hda-codec-id:10de0005");
  2211. MODULE_ALIAS("snd-hda-codec-id:10de0006");
  2212. MODULE_ALIAS("snd-hda-codec-id:10de0007");
  2213. MODULE_ALIAS("snd-hda-codec-id:10de000a");
  2214. MODULE_ALIAS("snd-hda-codec-id:10de000b");
  2215. MODULE_ALIAS("snd-hda-codec-id:10de000c");
  2216. MODULE_ALIAS("snd-hda-codec-id:10de000d");
  2217. MODULE_ALIAS("snd-hda-codec-id:10de0010");
  2218. MODULE_ALIAS("snd-hda-codec-id:10de0011");
  2219. MODULE_ALIAS("snd-hda-codec-id:10de0012");
  2220. MODULE_ALIAS("snd-hda-codec-id:10de0013");
  2221. MODULE_ALIAS("snd-hda-codec-id:10de0014");
  2222. MODULE_ALIAS("snd-hda-codec-id:10de0015");
  2223. MODULE_ALIAS("snd-hda-codec-id:10de0016");
  2224. MODULE_ALIAS("snd-hda-codec-id:10de0018");
  2225. MODULE_ALIAS("snd-hda-codec-id:10de0019");
  2226. MODULE_ALIAS("snd-hda-codec-id:10de001a");
  2227. MODULE_ALIAS("snd-hda-codec-id:10de001b");
  2228. MODULE_ALIAS("snd-hda-codec-id:10de001c");
  2229. MODULE_ALIAS("snd-hda-codec-id:10de0040");
  2230. MODULE_ALIAS("snd-hda-codec-id:10de0041");
  2231. MODULE_ALIAS("snd-hda-codec-id:10de0042");
  2232. MODULE_ALIAS("snd-hda-codec-id:10de0043");
  2233. MODULE_ALIAS("snd-hda-codec-id:10de0044");
  2234. MODULE_ALIAS("snd-hda-codec-id:10de0051");
  2235. MODULE_ALIAS("snd-hda-codec-id:10de0067");
  2236. MODULE_ALIAS("snd-hda-codec-id:10de8001");
  2237. MODULE_ALIAS("snd-hda-codec-id:11069f80");
  2238. MODULE_ALIAS("snd-hda-codec-id:11069f81");
  2239. MODULE_ALIAS("snd-hda-codec-id:11069f84");
  2240. MODULE_ALIAS("snd-hda-codec-id:11069f85");
  2241. MODULE_ALIAS("snd-hda-codec-id:17e80047");
  2242. MODULE_ALIAS("snd-hda-codec-id:80860054");
  2243. MODULE_ALIAS("snd-hda-codec-id:80862801");
  2244. MODULE_ALIAS("snd-hda-codec-id:80862802");
  2245. MODULE_ALIAS("snd-hda-codec-id:80862803");
  2246. MODULE_ALIAS("snd-hda-codec-id:80862804");
  2247. MODULE_ALIAS("snd-hda-codec-id:80862805");
  2248. MODULE_ALIAS("snd-hda-codec-id:80862806");
  2249. MODULE_ALIAS("snd-hda-codec-id:80862807");
  2250. MODULE_ALIAS("snd-hda-codec-id:80862880");
  2251. MODULE_ALIAS("snd-hda-codec-id:808629fb");
  2252. MODULE_LICENSE("GPL");
  2253. MODULE_DESCRIPTION("HDMI HD-audio codec");
  2254. MODULE_ALIAS("snd-hda-codec-intelhdmi");
  2255. MODULE_ALIAS("snd-hda-codec-nvhdmi");
  2256. MODULE_ALIAS("snd-hda-codec-atihdmi");
  2257. static struct hda_codec_preset_list intel_list = {
  2258. .preset = snd_hda_preset_hdmi,
  2259. .owner = THIS_MODULE,
  2260. };
  2261. static int __init patch_hdmi_init(void)
  2262. {
  2263. return snd_hda_add_codec_preset(&intel_list);
  2264. }
  2265. static void __exit patch_hdmi_exit(void)
  2266. {
  2267. snd_hda_delete_codec_preset(&intel_list);
  2268. }
  2269. module_init(patch_hdmi_init)
  2270. module_exit(patch_hdmi_exit)