hda_intel.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868
  1. /*
  2. *
  3. * hda_intel.c - Implementation of primary alsa driver code base
  4. * for Intel HD Audio.
  5. *
  6. * Copyright(c) 2004 Intel Corporation. All rights reserved.
  7. *
  8. * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
  9. * PeiSen Hou <pshou@realtek.com.tw>
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the Free
  13. * Software Foundation; either version 2 of the License, or (at your option)
  14. * any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful, but WITHOUT
  17. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  18. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  19. * more details.
  20. *
  21. * You should have received a copy of the GNU General Public License along with
  22. * this program; if not, write to the Free Software Foundation, Inc., 59
  23. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24. *
  25. * CONTACTS:
  26. *
  27. * Matt Jared matt.jared@intel.com
  28. * Andy Kopp andy.kopp@intel.com
  29. * Dan Kogan dan.d.kogan@intel.com
  30. *
  31. * CHANGES:
  32. *
  33. * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
  34. *
  35. */
  36. #include <asm/io.h>
  37. #include <linux/delay.h>
  38. #include <linux/interrupt.h>
  39. #include <linux/kernel.h>
  40. #include <linux/module.h>
  41. #include <linux/dma-mapping.h>
  42. #include <linux/moduleparam.h>
  43. #include <linux/init.h>
  44. #include <linux/slab.h>
  45. #include <linux/pci.h>
  46. #include <linux/mutex.h>
  47. #include <linux/reboot.h>
  48. #include <sound/core.h>
  49. #include <sound/initval.h>
  50. #include "hda_codec.h"
  51. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
  52. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
  53. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
  54. static char *model[SNDRV_CARDS];
  55. static int position_fix[SNDRV_CARDS];
  56. static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
  57. static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
  58. static int probe_only[SNDRV_CARDS];
  59. static int single_cmd;
  60. static int enable_msi = -1;
  61. #ifdef CONFIG_SND_HDA_PATCH_LOADER
  62. static char *patch[SNDRV_CARDS];
  63. #endif
  64. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  65. static int beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] =
  66. CONFIG_SND_HDA_INPUT_BEEP_MODE};
  67. #endif
  68. module_param_array(index, int, NULL, 0444);
  69. MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
  70. module_param_array(id, charp, NULL, 0444);
  71. MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
  72. module_param_array(enable, bool, NULL, 0444);
  73. MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
  74. module_param_array(model, charp, NULL, 0444);
  75. MODULE_PARM_DESC(model, "Use the given board model.");
  76. module_param_array(position_fix, int, NULL, 0444);
  77. MODULE_PARM_DESC(position_fix, "DMA pointer read method."
  78. "(0 = auto, 1 = LPIB, 2 = POSBUF, 3 = VIACOMBO).");
  79. module_param_array(bdl_pos_adj, int, NULL, 0644);
  80. MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset.");
  81. module_param_array(probe_mask, int, NULL, 0444);
  82. MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
  83. module_param_array(probe_only, int, NULL, 0444);
  84. MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization.");
  85. module_param(single_cmd, bool, 0444);
  86. MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs "
  87. "(for debugging only).");
  88. module_param(enable_msi, int, 0444);
  89. MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)");
  90. #ifdef CONFIG_SND_HDA_PATCH_LOADER
  91. module_param_array(patch, charp, NULL, 0444);
  92. MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface.");
  93. #endif
  94. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  95. module_param_array(beep_mode, int, NULL, 0444);
  96. MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode "
  97. "(0=off, 1=on, 2=mute switch on/off) (default=1).");
  98. #endif
  99. #ifdef CONFIG_SND_HDA_POWER_SAVE
  100. static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
  101. module_param(power_save, int, 0644);
  102. MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "
  103. "(in second, 0 = disable).");
  104. /* reset the HD-audio controller in power save mode.
  105. * this may give more power-saving, but will take longer time to
  106. * wake up.
  107. */
  108. static int power_save_controller = 1;
  109. module_param(power_save_controller, bool, 0644);
  110. MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode.");
  111. #endif
  112. MODULE_LICENSE("GPL");
  113. MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
  114. "{Intel, ICH6M},"
  115. "{Intel, ICH7},"
  116. "{Intel, ESB2},"
  117. "{Intel, ICH8},"
  118. "{Intel, ICH9},"
  119. "{Intel, ICH10},"
  120. "{Intel, PCH},"
  121. "{Intel, CPT},"
  122. "{Intel, PPT},"
  123. "{Intel, PBG},"
  124. "{Intel, SCH},"
  125. "{ATI, SB450},"
  126. "{ATI, SB600},"
  127. "{ATI, RS600},"
  128. "{ATI, RS690},"
  129. "{ATI, RS780},"
  130. "{ATI, R600},"
  131. "{ATI, RV630},"
  132. "{ATI, RV610},"
  133. "{ATI, RV670},"
  134. "{ATI, RV635},"
  135. "{ATI, RV620},"
  136. "{ATI, RV770},"
  137. "{VIA, VT8251},"
  138. "{VIA, VT8237A},"
  139. "{SiS, SIS966},"
  140. "{ULI, M5461}}");
  141. MODULE_DESCRIPTION("Intel HDA driver");
  142. #ifdef CONFIG_SND_VERBOSE_PRINTK
  143. #define SFX /* nop */
  144. #else
  145. #define SFX "hda-intel: "
  146. #endif
  147. /*
  148. * registers
  149. */
  150. #define ICH6_REG_GCAP 0x00
  151. #define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */
  152. #define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */
  153. #define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */
  154. #define ICH6_GCAP_ISS (15 << 8) /* # of input streams */
  155. #define ICH6_GCAP_OSS (15 << 12) /* # of output streams */
  156. #define ICH6_REG_VMIN 0x02
  157. #define ICH6_REG_VMAJ 0x03
  158. #define ICH6_REG_OUTPAY 0x04
  159. #define ICH6_REG_INPAY 0x06
  160. #define ICH6_REG_GCTL 0x08
  161. #define ICH6_GCTL_RESET (1 << 0) /* controller reset */
  162. #define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */
  163. #define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */
  164. #define ICH6_REG_WAKEEN 0x0c
  165. #define ICH6_REG_STATESTS 0x0e
  166. #define ICH6_REG_GSTS 0x10
  167. #define ICH6_GSTS_FSTS (1 << 1) /* flush status */
  168. #define ICH6_REG_INTCTL 0x20
  169. #define ICH6_REG_INTSTS 0x24
  170. #define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */
  171. #define ICH6_REG_SYNC 0x34
  172. #define ICH6_REG_CORBLBASE 0x40
  173. #define ICH6_REG_CORBUBASE 0x44
  174. #define ICH6_REG_CORBWP 0x48
  175. #define ICH6_REG_CORBRP 0x4a
  176. #define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
  177. #define ICH6_REG_CORBCTL 0x4c
  178. #define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
  179. #define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
  180. #define ICH6_REG_CORBSTS 0x4d
  181. #define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
  182. #define ICH6_REG_CORBSIZE 0x4e
  183. #define ICH6_REG_RIRBLBASE 0x50
  184. #define ICH6_REG_RIRBUBASE 0x54
  185. #define ICH6_REG_RIRBWP 0x58
  186. #define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
  187. #define ICH6_REG_RINTCNT 0x5a
  188. #define ICH6_REG_RIRBCTL 0x5c
  189. #define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
  190. #define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
  191. #define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
  192. #define ICH6_REG_RIRBSTS 0x5d
  193. #define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
  194. #define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
  195. #define ICH6_REG_RIRBSIZE 0x5e
  196. #define ICH6_REG_IC 0x60
  197. #define ICH6_REG_IR 0x64
  198. #define ICH6_REG_IRS 0x68
  199. #define ICH6_IRS_VALID (1<<1)
  200. #define ICH6_IRS_BUSY (1<<0)
  201. #define ICH6_REG_DPLBASE 0x70
  202. #define ICH6_REG_DPUBASE 0x74
  203. #define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
  204. /* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
  205. enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
  206. /* stream register offsets from stream base */
  207. #define ICH6_REG_SD_CTL 0x00
  208. #define ICH6_REG_SD_STS 0x03
  209. #define ICH6_REG_SD_LPIB 0x04
  210. #define ICH6_REG_SD_CBL 0x08
  211. #define ICH6_REG_SD_LVI 0x0c
  212. #define ICH6_REG_SD_FIFOW 0x0e
  213. #define ICH6_REG_SD_FIFOSIZE 0x10
  214. #define ICH6_REG_SD_FORMAT 0x12
  215. #define ICH6_REG_SD_BDLPL 0x18
  216. #define ICH6_REG_SD_BDLPU 0x1c
  217. /* PCI space */
  218. #define ICH6_PCIREG_TCSEL 0x44
  219. /*
  220. * other constants
  221. */
  222. /* max number of SDs */
  223. /* ICH, ATI and VIA have 4 playback and 4 capture */
  224. #define ICH6_NUM_CAPTURE 4
  225. #define ICH6_NUM_PLAYBACK 4
  226. /* ULI has 6 playback and 5 capture */
  227. #define ULI_NUM_CAPTURE 5
  228. #define ULI_NUM_PLAYBACK 6
  229. /* ATI HDMI has 1 playback and 0 capture */
  230. #define ATIHDMI_NUM_CAPTURE 0
  231. #define ATIHDMI_NUM_PLAYBACK 1
  232. /* TERA has 4 playback and 3 capture */
  233. #define TERA_NUM_CAPTURE 3
  234. #define TERA_NUM_PLAYBACK 4
  235. /* this number is statically defined for simplicity */
  236. #define MAX_AZX_DEV 16
  237. /* max number of fragments - we may use more if allocating more pages for BDL */
  238. #define BDL_SIZE 4096
  239. #define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
  240. #define AZX_MAX_FRAG 32
  241. /* max buffer size - no h/w limit, you can increase as you like */
  242. #define AZX_MAX_BUF_SIZE (1024*1024*1024)
  243. /* RIRB int mask: overrun[2], response[0] */
  244. #define RIRB_INT_RESPONSE 0x01
  245. #define RIRB_INT_OVERRUN 0x04
  246. #define RIRB_INT_MASK 0x05
  247. /* STATESTS int mask: S3,SD2,SD1,SD0 */
  248. #define AZX_MAX_CODECS 8
  249. #define AZX_DEFAULT_CODECS 4
  250. #define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
  251. /* SD_CTL bits */
  252. #define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
  253. #define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
  254. #define SD_CTL_STRIPE (3 << 16) /* stripe control */
  255. #define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
  256. #define SD_CTL_DIR (1 << 19) /* bi-directional stream */
  257. #define SD_CTL_STREAM_TAG_MASK (0xf << 20)
  258. #define SD_CTL_STREAM_TAG_SHIFT 20
  259. /* SD_CTL and SD_STS */
  260. #define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
  261. #define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
  262. #define SD_INT_COMPLETE 0x04 /* completion interrupt */
  263. #define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
  264. SD_INT_COMPLETE)
  265. /* SD_STS */
  266. #define SD_STS_FIFO_READY 0x20 /* FIFO ready */
  267. /* INTCTL and INTSTS */
  268. #define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
  269. #define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
  270. #define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
  271. /* below are so far hardcoded - should read registers in future */
  272. #define ICH6_MAX_CORB_ENTRIES 256
  273. #define ICH6_MAX_RIRB_ENTRIES 256
  274. /* position fix mode */
  275. enum {
  276. POS_FIX_AUTO,
  277. POS_FIX_LPIB,
  278. POS_FIX_POSBUF,
  279. POS_FIX_VIACOMBO,
  280. };
  281. /* Defines for ATI HD Audio support in SB450 south bridge */
  282. #define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
  283. #define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
  284. /* Defines for Nvidia HDA support */
  285. #define NVIDIA_HDA_TRANSREG_ADDR 0x4e
  286. #define NVIDIA_HDA_ENABLE_COHBITS 0x0f
  287. #define NVIDIA_HDA_ISTRM_COH 0x4d
  288. #define NVIDIA_HDA_OSTRM_COH 0x4c
  289. #define NVIDIA_HDA_ENABLE_COHBIT 0x01
  290. /* Defines for Intel SCH HDA snoop control */
  291. #define INTEL_SCH_HDA_DEVC 0x78
  292. #define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
  293. /* Define IN stream 0 FIFO size offset in VIA controller */
  294. #define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
  295. /* Define VIA HD Audio Device ID*/
  296. #define VIA_HDAC_DEVICE_ID 0x3288
  297. /* HD Audio class code */
  298. #define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
  299. /*
  300. */
  301. struct azx_dev {
  302. struct snd_dma_buffer bdl; /* BDL buffer */
  303. u32 *posbuf; /* position buffer pointer */
  304. unsigned int bufsize; /* size of the play buffer in bytes */
  305. unsigned int period_bytes; /* size of the period in bytes */
  306. unsigned int frags; /* number for period in the play buffer */
  307. unsigned int fifo_size; /* FIFO size */
  308. unsigned long start_wallclk; /* start + minimum wallclk */
  309. unsigned long period_wallclk; /* wallclk for period */
  310. void __iomem *sd_addr; /* stream descriptor pointer */
  311. u32 sd_int_sta_mask; /* stream int status mask */
  312. /* pcm support */
  313. struct snd_pcm_substream *substream; /* assigned substream,
  314. * set in PCM open
  315. */
  316. unsigned int format_val; /* format value to be set in the
  317. * controller and the codec
  318. */
  319. unsigned char stream_tag; /* assigned stream */
  320. unsigned char index; /* stream index */
  321. int device; /* last device number assigned to */
  322. unsigned int opened :1;
  323. unsigned int running :1;
  324. unsigned int irq_pending :1;
  325. /*
  326. * For VIA:
  327. * A flag to ensure DMA position is 0
  328. * when link position is not greater than FIFO size
  329. */
  330. unsigned int insufficient :1;
  331. };
  332. /* CORB/RIRB */
  333. struct azx_rb {
  334. u32 *buf; /* CORB/RIRB buffer
  335. * Each CORB entry is 4byte, RIRB is 8byte
  336. */
  337. dma_addr_t addr; /* physical address of CORB/RIRB buffer */
  338. /* for RIRB */
  339. unsigned short rp, wp; /* read/write pointers */
  340. int cmds[AZX_MAX_CODECS]; /* number of pending requests */
  341. u32 res[AZX_MAX_CODECS]; /* last read value */
  342. };
  343. struct azx {
  344. struct snd_card *card;
  345. struct pci_dev *pci;
  346. int dev_index;
  347. /* chip type specific */
  348. int driver_type;
  349. int playback_streams;
  350. int playback_index_offset;
  351. int capture_streams;
  352. int capture_index_offset;
  353. int num_streams;
  354. /* pci resources */
  355. unsigned long addr;
  356. void __iomem *remap_addr;
  357. int irq;
  358. /* locks */
  359. spinlock_t reg_lock;
  360. struct mutex open_mutex;
  361. /* streams (x num_streams) */
  362. struct azx_dev *azx_dev;
  363. /* PCM */
  364. struct snd_pcm *pcm[HDA_MAX_PCMS];
  365. /* HD codec */
  366. unsigned short codec_mask;
  367. int codec_probe_mask; /* copied from probe_mask option */
  368. struct hda_bus *bus;
  369. unsigned int beep_mode;
  370. /* CORB/RIRB */
  371. struct azx_rb corb;
  372. struct azx_rb rirb;
  373. /* CORB/RIRB and position buffers */
  374. struct snd_dma_buffer rb;
  375. struct snd_dma_buffer posbuf;
  376. /* flags */
  377. int position_fix[2]; /* for both playback/capture streams */
  378. int poll_count;
  379. unsigned int running :1;
  380. unsigned int initialized :1;
  381. unsigned int single_cmd :1;
  382. unsigned int polling_mode :1;
  383. unsigned int msi :1;
  384. unsigned int irq_pending_warned :1;
  385. unsigned int probing :1; /* codec probing phase */
  386. /* for debugging */
  387. unsigned int last_cmd[AZX_MAX_CODECS];
  388. /* for pending irqs */
  389. struct work_struct irq_pending_work;
  390. /* reboot notifier (for mysterious hangup problem at power-down) */
  391. struct notifier_block reboot_notifier;
  392. };
  393. /* driver types */
  394. enum {
  395. AZX_DRIVER_ICH,
  396. AZX_DRIVER_PCH,
  397. AZX_DRIVER_SCH,
  398. AZX_DRIVER_ATI,
  399. AZX_DRIVER_ATIHDMI,
  400. AZX_DRIVER_VIA,
  401. AZX_DRIVER_SIS,
  402. AZX_DRIVER_ULI,
  403. AZX_DRIVER_NVIDIA,
  404. AZX_DRIVER_TERA,
  405. AZX_DRIVER_CTX,
  406. AZX_DRIVER_GENERIC,
  407. AZX_NUM_DRIVERS, /* keep this as last entry */
  408. };
  409. static char *driver_short_names[] __devinitdata = {
  410. [AZX_DRIVER_ICH] = "HDA Intel",
  411. [AZX_DRIVER_PCH] = "HDA Intel PCH",
  412. [AZX_DRIVER_SCH] = "HDA Intel MID",
  413. [AZX_DRIVER_ATI] = "HDA ATI SB",
  414. [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
  415. [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
  416. [AZX_DRIVER_SIS] = "HDA SIS966",
  417. [AZX_DRIVER_ULI] = "HDA ULI M5461",
  418. [AZX_DRIVER_NVIDIA] = "HDA NVidia",
  419. [AZX_DRIVER_TERA] = "HDA Teradici",
  420. [AZX_DRIVER_CTX] = "HDA Creative",
  421. [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
  422. };
  423. /*
  424. * macros for easy use
  425. */
  426. #define azx_writel(chip,reg,value) \
  427. writel(value, (chip)->remap_addr + ICH6_REG_##reg)
  428. #define azx_readl(chip,reg) \
  429. readl((chip)->remap_addr + ICH6_REG_##reg)
  430. #define azx_writew(chip,reg,value) \
  431. writew(value, (chip)->remap_addr + ICH6_REG_##reg)
  432. #define azx_readw(chip,reg) \
  433. readw((chip)->remap_addr + ICH6_REG_##reg)
  434. #define azx_writeb(chip,reg,value) \
  435. writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
  436. #define azx_readb(chip,reg) \
  437. readb((chip)->remap_addr + ICH6_REG_##reg)
  438. #define azx_sd_writel(dev,reg,value) \
  439. writel(value, (dev)->sd_addr + ICH6_REG_##reg)
  440. #define azx_sd_readl(dev,reg) \
  441. readl((dev)->sd_addr + ICH6_REG_##reg)
  442. #define azx_sd_writew(dev,reg,value) \
  443. writew(value, (dev)->sd_addr + ICH6_REG_##reg)
  444. #define azx_sd_readw(dev,reg) \
  445. readw((dev)->sd_addr + ICH6_REG_##reg)
  446. #define azx_sd_writeb(dev,reg,value) \
  447. writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
  448. #define azx_sd_readb(dev,reg) \
  449. readb((dev)->sd_addr + ICH6_REG_##reg)
  450. /* for pcm support */
  451. #define get_azx_dev(substream) (substream->runtime->private_data)
  452. static int azx_acquire_irq(struct azx *chip, int do_disconnect);
  453. static int azx_send_cmd(struct hda_bus *bus, unsigned int val);
  454. /*
  455. * Interface for HD codec
  456. */
  457. /*
  458. * CORB / RIRB interface
  459. */
  460. static int azx_alloc_cmd_io(struct azx *chip)
  461. {
  462. int err;
  463. /* single page (at least 4096 bytes) must suffice for both ringbuffes */
  464. err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
  465. snd_dma_pci_data(chip->pci),
  466. PAGE_SIZE, &chip->rb);
  467. if (err < 0) {
  468. snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
  469. return err;
  470. }
  471. return 0;
  472. }
  473. static void azx_init_cmd_io(struct azx *chip)
  474. {
  475. spin_lock_irq(&chip->reg_lock);
  476. /* CORB set up */
  477. chip->corb.addr = chip->rb.addr;
  478. chip->corb.buf = (u32 *)chip->rb.area;
  479. azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
  480. azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
  481. /* set the corb size to 256 entries (ULI requires explicitly) */
  482. azx_writeb(chip, CORBSIZE, 0x02);
  483. /* set the corb write pointer to 0 */
  484. azx_writew(chip, CORBWP, 0);
  485. /* reset the corb hw read pointer */
  486. azx_writew(chip, CORBRP, ICH6_CORBRP_RST);
  487. /* enable corb dma */
  488. azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN);
  489. /* RIRB set up */
  490. chip->rirb.addr = chip->rb.addr + 2048;
  491. chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
  492. chip->rirb.wp = chip->rirb.rp = 0;
  493. memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds));
  494. azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
  495. azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
  496. /* set the rirb size to 256 entries (ULI requires explicitly) */
  497. azx_writeb(chip, RIRBSIZE, 0x02);
  498. /* reset the rirb hw write pointer */
  499. azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST);
  500. /* set N=1, get RIRB response interrupt for new entry */
  501. if (chip->driver_type == AZX_DRIVER_CTX)
  502. azx_writew(chip, RINTCNT, 0xc0);
  503. else
  504. azx_writew(chip, RINTCNT, 1);
  505. /* enable rirb dma and response irq */
  506. azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
  507. spin_unlock_irq(&chip->reg_lock);
  508. }
  509. static void azx_free_cmd_io(struct azx *chip)
  510. {
  511. spin_lock_irq(&chip->reg_lock);
  512. /* disable ringbuffer DMAs */
  513. azx_writeb(chip, RIRBCTL, 0);
  514. azx_writeb(chip, CORBCTL, 0);
  515. spin_unlock_irq(&chip->reg_lock);
  516. }
  517. static unsigned int azx_command_addr(u32 cmd)
  518. {
  519. unsigned int addr = cmd >> 28;
  520. if (addr >= AZX_MAX_CODECS) {
  521. snd_BUG();
  522. addr = 0;
  523. }
  524. return addr;
  525. }
  526. static unsigned int azx_response_addr(u32 res)
  527. {
  528. unsigned int addr = res & 0xf;
  529. if (addr >= AZX_MAX_CODECS) {
  530. snd_BUG();
  531. addr = 0;
  532. }
  533. return addr;
  534. }
  535. /* send a command */
  536. static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
  537. {
  538. struct azx *chip = bus->private_data;
  539. unsigned int addr = azx_command_addr(val);
  540. unsigned int wp;
  541. spin_lock_irq(&chip->reg_lock);
  542. /* add command to corb */
  543. wp = azx_readb(chip, CORBWP);
  544. wp++;
  545. wp %= ICH6_MAX_CORB_ENTRIES;
  546. chip->rirb.cmds[addr]++;
  547. chip->corb.buf[wp] = cpu_to_le32(val);
  548. azx_writel(chip, CORBWP, wp);
  549. spin_unlock_irq(&chip->reg_lock);
  550. return 0;
  551. }
  552. #define ICH6_RIRB_EX_UNSOL_EV (1<<4)
  553. /* retrieve RIRB entry - called from interrupt handler */
  554. static void azx_update_rirb(struct azx *chip)
  555. {
  556. unsigned int rp, wp;
  557. unsigned int addr;
  558. u32 res, res_ex;
  559. wp = azx_readb(chip, RIRBWP);
  560. if (wp == chip->rirb.wp)
  561. return;
  562. chip->rirb.wp = wp;
  563. while (chip->rirb.rp != wp) {
  564. chip->rirb.rp++;
  565. chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
  566. rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
  567. res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
  568. res = le32_to_cpu(chip->rirb.buf[rp]);
  569. addr = azx_response_addr(res_ex);
  570. if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
  571. snd_hda_queue_unsol_event(chip->bus, res, res_ex);
  572. else if (chip->rirb.cmds[addr]) {
  573. chip->rirb.res[addr] = res;
  574. smp_wmb();
  575. chip->rirb.cmds[addr]--;
  576. } else
  577. snd_printk(KERN_ERR SFX "spurious response %#x:%#x, "
  578. "last cmd=%#08x\n",
  579. res, res_ex,
  580. chip->last_cmd[addr]);
  581. }
  582. }
  583. /* receive a response */
  584. static unsigned int azx_rirb_get_response(struct hda_bus *bus,
  585. unsigned int addr)
  586. {
  587. struct azx *chip = bus->private_data;
  588. unsigned long timeout;
  589. int do_poll = 0;
  590. again:
  591. timeout = jiffies + msecs_to_jiffies(1000);
  592. for (;;) {
  593. if (chip->polling_mode || do_poll) {
  594. spin_lock_irq(&chip->reg_lock);
  595. azx_update_rirb(chip);
  596. spin_unlock_irq(&chip->reg_lock);
  597. }
  598. if (!chip->rirb.cmds[addr]) {
  599. smp_rmb();
  600. bus->rirb_error = 0;
  601. if (!do_poll)
  602. chip->poll_count = 0;
  603. return chip->rirb.res[addr]; /* the last value */
  604. }
  605. if (time_after(jiffies, timeout))
  606. break;
  607. if (bus->needs_damn_long_delay)
  608. msleep(2); /* temporary workaround */
  609. else {
  610. udelay(10);
  611. cond_resched();
  612. }
  613. }
  614. if (!chip->polling_mode && chip->poll_count < 2) {
  615. snd_printdd(SFX "azx_get_response timeout, "
  616. "polling the codec once: last cmd=0x%08x\n",
  617. chip->last_cmd[addr]);
  618. do_poll = 1;
  619. chip->poll_count++;
  620. goto again;
  621. }
  622. if (!chip->polling_mode) {
  623. snd_printk(KERN_WARNING SFX "azx_get_response timeout, "
  624. "switching to polling mode: last cmd=0x%08x\n",
  625. chip->last_cmd[addr]);
  626. chip->polling_mode = 1;
  627. goto again;
  628. }
  629. if (chip->msi) {
  630. snd_printk(KERN_WARNING SFX "No response from codec, "
  631. "disabling MSI: last cmd=0x%08x\n",
  632. chip->last_cmd[addr]);
  633. free_irq(chip->irq, chip);
  634. chip->irq = -1;
  635. pci_disable_msi(chip->pci);
  636. chip->msi = 0;
  637. if (azx_acquire_irq(chip, 1) < 0) {
  638. bus->rirb_error = 1;
  639. return -1;
  640. }
  641. goto again;
  642. }
  643. if (chip->probing) {
  644. /* If this critical timeout happens during the codec probing
  645. * phase, this is likely an access to a non-existing codec
  646. * slot. Better to return an error and reset the system.
  647. */
  648. return -1;
  649. }
  650. /* a fatal communication error; need either to reset or to fallback
  651. * to the single_cmd mode
  652. */
  653. bus->rirb_error = 1;
  654. if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) {
  655. bus->response_reset = 1;
  656. return -1; /* give a chance to retry */
  657. }
  658. snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
  659. "switching to single_cmd mode: last cmd=0x%08x\n",
  660. chip->last_cmd[addr]);
  661. chip->single_cmd = 1;
  662. bus->response_reset = 0;
  663. /* release CORB/RIRB */
  664. azx_free_cmd_io(chip);
  665. /* disable unsolicited responses */
  666. azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL);
  667. return -1;
  668. }
  669. /*
  670. * Use the single immediate command instead of CORB/RIRB for simplicity
  671. *
  672. * Note: according to Intel, this is not preferred use. The command was
  673. * intended for the BIOS only, and may get confused with unsolicited
  674. * responses. So, we shouldn't use it for normal operation from the
  675. * driver.
  676. * I left the codes, however, for debugging/testing purposes.
  677. */
  678. /* receive a response */
  679. static int azx_single_wait_for_response(struct azx *chip, unsigned int addr)
  680. {
  681. int timeout = 50;
  682. while (timeout--) {
  683. /* check IRV busy bit */
  684. if (azx_readw(chip, IRS) & ICH6_IRS_VALID) {
  685. /* reuse rirb.res as the response return value */
  686. chip->rirb.res[addr] = azx_readl(chip, IR);
  687. return 0;
  688. }
  689. udelay(1);
  690. }
  691. if (printk_ratelimit())
  692. snd_printd(SFX "get_response timeout: IRS=0x%x\n",
  693. azx_readw(chip, IRS));
  694. chip->rirb.res[addr] = -1;
  695. return -EIO;
  696. }
  697. /* send a command */
  698. static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
  699. {
  700. struct azx *chip = bus->private_data;
  701. unsigned int addr = azx_command_addr(val);
  702. int timeout = 50;
  703. bus->rirb_error = 0;
  704. while (timeout--) {
  705. /* check ICB busy bit */
  706. if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
  707. /* Clear IRV valid bit */
  708. azx_writew(chip, IRS, azx_readw(chip, IRS) |
  709. ICH6_IRS_VALID);
  710. azx_writel(chip, IC, val);
  711. azx_writew(chip, IRS, azx_readw(chip, IRS) |
  712. ICH6_IRS_BUSY);
  713. return azx_single_wait_for_response(chip, addr);
  714. }
  715. udelay(1);
  716. }
  717. if (printk_ratelimit())
  718. snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
  719. azx_readw(chip, IRS), val);
  720. return -EIO;
  721. }
  722. /* receive a response */
  723. static unsigned int azx_single_get_response(struct hda_bus *bus,
  724. unsigned int addr)
  725. {
  726. struct azx *chip = bus->private_data;
  727. return chip->rirb.res[addr];
  728. }
  729. /*
  730. * The below are the main callbacks from hda_codec.
  731. *
  732. * They are just the skeleton to call sub-callbacks according to the
  733. * current setting of chip->single_cmd.
  734. */
  735. /* send a command */
  736. static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
  737. {
  738. struct azx *chip = bus->private_data;
  739. chip->last_cmd[azx_command_addr(val)] = val;
  740. if (chip->single_cmd)
  741. return azx_single_send_cmd(bus, val);
  742. else
  743. return azx_corb_send_cmd(bus, val);
  744. }
  745. /* get a response */
  746. static unsigned int azx_get_response(struct hda_bus *bus,
  747. unsigned int addr)
  748. {
  749. struct azx *chip = bus->private_data;
  750. if (chip->single_cmd)
  751. return azx_single_get_response(bus, addr);
  752. else
  753. return azx_rirb_get_response(bus, addr);
  754. }
  755. #ifdef CONFIG_SND_HDA_POWER_SAVE
  756. static void azx_power_notify(struct hda_bus *bus);
  757. #endif
  758. /* reset codec link */
  759. static int azx_reset(struct azx *chip, int full_reset)
  760. {
  761. int count;
  762. if (!full_reset)
  763. goto __skip;
  764. /* clear STATESTS */
  765. azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
  766. /* reset controller */
  767. azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
  768. count = 50;
  769. while (azx_readb(chip, GCTL) && --count)
  770. msleep(1);
  771. /* delay for >= 100us for codec PLL to settle per spec
  772. * Rev 0.9 section 5.5.1
  773. */
  774. msleep(1);
  775. /* Bring controller out of reset */
  776. azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
  777. count = 50;
  778. while (!azx_readb(chip, GCTL) && --count)
  779. msleep(1);
  780. /* Brent Chartrand said to wait >= 540us for codecs to initialize */
  781. msleep(1);
  782. __skip:
  783. /* check to see if controller is ready */
  784. if (!azx_readb(chip, GCTL)) {
  785. snd_printd(SFX "azx_reset: controller not ready!\n");
  786. return -EBUSY;
  787. }
  788. /* Accept unsolicited responses */
  789. if (!chip->single_cmd)
  790. azx_writel(chip, GCTL, azx_readl(chip, GCTL) |
  791. ICH6_GCTL_UNSOL);
  792. /* detect codecs */
  793. if (!chip->codec_mask) {
  794. chip->codec_mask = azx_readw(chip, STATESTS);
  795. snd_printdd(SFX "codec_mask = 0x%x\n", chip->codec_mask);
  796. }
  797. return 0;
  798. }
  799. /*
  800. * Lowlevel interface
  801. */
  802. /* enable interrupts */
  803. static void azx_int_enable(struct azx *chip)
  804. {
  805. /* enable controller CIE and GIE */
  806. azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
  807. ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
  808. }
  809. /* disable interrupts */
  810. static void azx_int_disable(struct azx *chip)
  811. {
  812. int i;
  813. /* disable interrupts in stream descriptor */
  814. for (i = 0; i < chip->num_streams; i++) {
  815. struct azx_dev *azx_dev = &chip->azx_dev[i];
  816. azx_sd_writeb(azx_dev, SD_CTL,
  817. azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
  818. }
  819. /* disable SIE for all streams */
  820. azx_writeb(chip, INTCTL, 0);
  821. /* disable controller CIE and GIE */
  822. azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
  823. ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
  824. }
  825. /* clear interrupts */
  826. static void azx_int_clear(struct azx *chip)
  827. {
  828. int i;
  829. /* clear stream status */
  830. for (i = 0; i < chip->num_streams; i++) {
  831. struct azx_dev *azx_dev = &chip->azx_dev[i];
  832. azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
  833. }
  834. /* clear STATESTS */
  835. azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
  836. /* clear rirb status */
  837. azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
  838. /* clear int status */
  839. azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
  840. }
  841. /* start a stream */
  842. static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
  843. {
  844. /*
  845. * Before stream start, initialize parameter
  846. */
  847. azx_dev->insufficient = 1;
  848. /* enable SIE */
  849. azx_writel(chip, INTCTL,
  850. azx_readl(chip, INTCTL) | (1 << azx_dev->index));
  851. /* set DMA start and interrupt mask */
  852. azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
  853. SD_CTL_DMA_START | SD_INT_MASK);
  854. }
  855. /* stop DMA */
  856. static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev)
  857. {
  858. azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
  859. ~(SD_CTL_DMA_START | SD_INT_MASK));
  860. azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
  861. }
  862. /* stop a stream */
  863. static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
  864. {
  865. azx_stream_clear(chip, azx_dev);
  866. /* disable SIE */
  867. azx_writel(chip, INTCTL,
  868. azx_readl(chip, INTCTL) & ~(1 << azx_dev->index));
  869. }
  870. /*
  871. * reset and start the controller registers
  872. */
  873. static void azx_init_chip(struct azx *chip, int full_reset)
  874. {
  875. if (chip->initialized)
  876. return;
  877. /* reset controller */
  878. azx_reset(chip, full_reset);
  879. /* initialize interrupts */
  880. azx_int_clear(chip);
  881. azx_int_enable(chip);
  882. /* initialize the codec command I/O */
  883. if (!chip->single_cmd)
  884. azx_init_cmd_io(chip);
  885. /* program the position buffer */
  886. azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
  887. azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
  888. chip->initialized = 1;
  889. }
  890. /*
  891. * initialize the PCI registers
  892. */
  893. /* update bits in a PCI register byte */
  894. static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
  895. unsigned char mask, unsigned char val)
  896. {
  897. unsigned char data;
  898. pci_read_config_byte(pci, reg, &data);
  899. data &= ~mask;
  900. data |= (val & mask);
  901. pci_write_config_byte(pci, reg, data);
  902. }
  903. static void azx_init_pci(struct azx *chip)
  904. {
  905. unsigned short snoop;
  906. /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
  907. * TCSEL == Traffic Class Select Register, which sets PCI express QOS
  908. * Ensuring these bits are 0 clears playback static on some HD Audio
  909. * codecs.
  910. * The PCI register TCSEL is defined in the Intel manuals.
  911. */
  912. if (chip->driver_type != AZX_DRIVER_ATI &&
  913. chip->driver_type != AZX_DRIVER_ATIHDMI)
  914. update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
  915. switch (chip->driver_type) {
  916. case AZX_DRIVER_ATI:
  917. /* For ATI SB450 azalia HD audio, we need to enable snoop */
  918. update_pci_byte(chip->pci,
  919. ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
  920. 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
  921. break;
  922. case AZX_DRIVER_NVIDIA:
  923. /* For NVIDIA HDA, enable snoop */
  924. update_pci_byte(chip->pci,
  925. NVIDIA_HDA_TRANSREG_ADDR,
  926. 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
  927. update_pci_byte(chip->pci,
  928. NVIDIA_HDA_ISTRM_COH,
  929. 0x01, NVIDIA_HDA_ENABLE_COHBIT);
  930. update_pci_byte(chip->pci,
  931. NVIDIA_HDA_OSTRM_COH,
  932. 0x01, NVIDIA_HDA_ENABLE_COHBIT);
  933. break;
  934. case AZX_DRIVER_SCH:
  935. case AZX_DRIVER_PCH:
  936. pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
  937. if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
  938. pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC,
  939. snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
  940. pci_read_config_word(chip->pci,
  941. INTEL_SCH_HDA_DEVC, &snoop);
  942. snd_printdd(SFX "HDA snoop disabled, enabling ... %s\n",
  943. (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)
  944. ? "Failed" : "OK");
  945. }
  946. break;
  947. }
  948. }
  949. static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
  950. /*
  951. * interrupt handler
  952. */
  953. static irqreturn_t azx_interrupt(int irq, void *dev_id)
  954. {
  955. struct azx *chip = dev_id;
  956. struct azx_dev *azx_dev;
  957. u32 status;
  958. u8 sd_status;
  959. int i, ok;
  960. spin_lock(&chip->reg_lock);
  961. status = azx_readl(chip, INTSTS);
  962. if (status == 0) {
  963. spin_unlock(&chip->reg_lock);
  964. return IRQ_NONE;
  965. }
  966. for (i = 0; i < chip->num_streams; i++) {
  967. azx_dev = &chip->azx_dev[i];
  968. if (status & azx_dev->sd_int_sta_mask) {
  969. sd_status = azx_sd_readb(azx_dev, SD_STS);
  970. azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
  971. if (!azx_dev->substream || !azx_dev->running ||
  972. !(sd_status & SD_INT_COMPLETE))
  973. continue;
  974. /* check whether this IRQ is really acceptable */
  975. ok = azx_position_ok(chip, azx_dev);
  976. if (ok == 1) {
  977. azx_dev->irq_pending = 0;
  978. spin_unlock(&chip->reg_lock);
  979. snd_pcm_period_elapsed(azx_dev->substream);
  980. spin_lock(&chip->reg_lock);
  981. } else if (ok == 0 && chip->bus && chip->bus->workq) {
  982. /* bogus IRQ, process it later */
  983. azx_dev->irq_pending = 1;
  984. queue_work(chip->bus->workq,
  985. &chip->irq_pending_work);
  986. }
  987. }
  988. }
  989. /* clear rirb int */
  990. status = azx_readb(chip, RIRBSTS);
  991. if (status & RIRB_INT_MASK) {
  992. if (status & RIRB_INT_RESPONSE) {
  993. if (chip->driver_type == AZX_DRIVER_CTX)
  994. udelay(80);
  995. azx_update_rirb(chip);
  996. }
  997. azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
  998. }
  999. #if 0
  1000. /* clear state status int */
  1001. if (azx_readb(chip, STATESTS) & 0x04)
  1002. azx_writeb(chip, STATESTS, 0x04);
  1003. #endif
  1004. spin_unlock(&chip->reg_lock);
  1005. return IRQ_HANDLED;
  1006. }
  1007. /*
  1008. * set up a BDL entry
  1009. */
  1010. static int setup_bdle(struct snd_pcm_substream *substream,
  1011. struct azx_dev *azx_dev, u32 **bdlp,
  1012. int ofs, int size, int with_ioc)
  1013. {
  1014. u32 *bdl = *bdlp;
  1015. while (size > 0) {
  1016. dma_addr_t addr;
  1017. int chunk;
  1018. if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
  1019. return -EINVAL;
  1020. addr = snd_pcm_sgbuf_get_addr(substream, ofs);
  1021. /* program the address field of the BDL entry */
  1022. bdl[0] = cpu_to_le32((u32)addr);
  1023. bdl[1] = cpu_to_le32(upper_32_bits(addr));
  1024. /* program the size field of the BDL entry */
  1025. chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
  1026. bdl[2] = cpu_to_le32(chunk);
  1027. /* program the IOC to enable interrupt
  1028. * only when the whole fragment is processed
  1029. */
  1030. size -= chunk;
  1031. bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
  1032. bdl += 4;
  1033. azx_dev->frags++;
  1034. ofs += chunk;
  1035. }
  1036. *bdlp = bdl;
  1037. return ofs;
  1038. }
  1039. /*
  1040. * set up BDL entries
  1041. */
  1042. static int azx_setup_periods(struct azx *chip,
  1043. struct snd_pcm_substream *substream,
  1044. struct azx_dev *azx_dev)
  1045. {
  1046. u32 *bdl;
  1047. int i, ofs, periods, period_bytes;
  1048. int pos_adj;
  1049. /* reset BDL address */
  1050. azx_sd_writel(azx_dev, SD_BDLPL, 0);
  1051. azx_sd_writel(azx_dev, SD_BDLPU, 0);
  1052. period_bytes = azx_dev->period_bytes;
  1053. periods = azx_dev->bufsize / period_bytes;
  1054. /* program the initial BDL entries */
  1055. bdl = (u32 *)azx_dev->bdl.area;
  1056. ofs = 0;
  1057. azx_dev->frags = 0;
  1058. pos_adj = bdl_pos_adj[chip->dev_index];
  1059. if (pos_adj > 0) {
  1060. struct snd_pcm_runtime *runtime = substream->runtime;
  1061. int pos_align = pos_adj;
  1062. pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
  1063. if (!pos_adj)
  1064. pos_adj = pos_align;
  1065. else
  1066. pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
  1067. pos_align;
  1068. pos_adj = frames_to_bytes(runtime, pos_adj);
  1069. if (pos_adj >= period_bytes) {
  1070. snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
  1071. bdl_pos_adj[chip->dev_index]);
  1072. pos_adj = 0;
  1073. } else {
  1074. ofs = setup_bdle(substream, azx_dev,
  1075. &bdl, ofs, pos_adj,
  1076. !substream->runtime->no_period_wakeup);
  1077. if (ofs < 0)
  1078. goto error;
  1079. }
  1080. } else
  1081. pos_adj = 0;
  1082. for (i = 0; i < periods; i++) {
  1083. if (i == periods - 1 && pos_adj)
  1084. ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
  1085. period_bytes - pos_adj, 0);
  1086. else
  1087. ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
  1088. period_bytes,
  1089. !substream->runtime->no_period_wakeup);
  1090. if (ofs < 0)
  1091. goto error;
  1092. }
  1093. return 0;
  1094. error:
  1095. snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
  1096. azx_dev->bufsize, period_bytes);
  1097. return -EINVAL;
  1098. }
  1099. /* reset stream */
  1100. static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
  1101. {
  1102. unsigned char val;
  1103. int timeout;
  1104. azx_stream_clear(chip, azx_dev);
  1105. azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
  1106. SD_CTL_STREAM_RESET);
  1107. udelay(3);
  1108. timeout = 300;
  1109. while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
  1110. --timeout)
  1111. ;
  1112. val &= ~SD_CTL_STREAM_RESET;
  1113. azx_sd_writeb(azx_dev, SD_CTL, val);
  1114. udelay(3);
  1115. timeout = 300;
  1116. /* waiting for hardware to report that the stream is out of reset */
  1117. while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
  1118. --timeout)
  1119. ;
  1120. /* reset first position - may not be synced with hw at this time */
  1121. *azx_dev->posbuf = 0;
  1122. }
  1123. /*
  1124. * set up the SD for streaming
  1125. */
  1126. static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
  1127. {
  1128. /* make sure the run bit is zero for SD */
  1129. azx_stream_clear(chip, azx_dev);
  1130. /* program the stream_tag */
  1131. azx_sd_writel(azx_dev, SD_CTL,
  1132. (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
  1133. (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
  1134. /* program the length of samples in cyclic buffer */
  1135. azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
  1136. /* program the stream format */
  1137. /* this value needs to be the same as the one programmed */
  1138. azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
  1139. /* program the stream LVI (last valid index) of the BDL */
  1140. azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
  1141. /* program the BDL address */
  1142. /* lower BDL address */
  1143. azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
  1144. /* upper BDL address */
  1145. azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
  1146. /* enable the position buffer */
  1147. if (chip->position_fix[0] != POS_FIX_LPIB ||
  1148. chip->position_fix[1] != POS_FIX_LPIB) {
  1149. if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
  1150. azx_writel(chip, DPLBASE,
  1151. (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
  1152. }
  1153. /* set the interrupt enable bits in the descriptor control register */
  1154. azx_sd_writel(azx_dev, SD_CTL,
  1155. azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
  1156. return 0;
  1157. }
  1158. /*
  1159. * Probe the given codec address
  1160. */
  1161. static int probe_codec(struct azx *chip, int addr)
  1162. {
  1163. unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
  1164. (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
  1165. unsigned int res;
  1166. mutex_lock(&chip->bus->cmd_mutex);
  1167. chip->probing = 1;
  1168. azx_send_cmd(chip->bus, cmd);
  1169. res = azx_get_response(chip->bus, addr);
  1170. chip->probing = 0;
  1171. mutex_unlock(&chip->bus->cmd_mutex);
  1172. if (res == -1)
  1173. return -EIO;
  1174. snd_printdd(SFX "codec #%d probed OK\n", addr);
  1175. return 0;
  1176. }
  1177. static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
  1178. struct hda_pcm *cpcm);
  1179. static void azx_stop_chip(struct azx *chip);
  1180. static void azx_bus_reset(struct hda_bus *bus)
  1181. {
  1182. struct azx *chip = bus->private_data;
  1183. bus->in_reset = 1;
  1184. azx_stop_chip(chip);
  1185. azx_init_chip(chip, 1);
  1186. #ifdef CONFIG_PM
  1187. if (chip->initialized) {
  1188. int i;
  1189. for (i = 0; i < HDA_MAX_PCMS; i++)
  1190. snd_pcm_suspend_all(chip->pcm[i]);
  1191. snd_hda_suspend(chip->bus);
  1192. snd_hda_resume(chip->bus);
  1193. }
  1194. #endif
  1195. bus->in_reset = 0;
  1196. }
  1197. /*
  1198. * Codec initialization
  1199. */
  1200. /* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
  1201. static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
  1202. [AZX_DRIVER_NVIDIA] = 8,
  1203. [AZX_DRIVER_TERA] = 1,
  1204. };
  1205. static int __devinit azx_codec_create(struct azx *chip, const char *model)
  1206. {
  1207. struct hda_bus_template bus_temp;
  1208. int c, codecs, err;
  1209. int max_slots;
  1210. memset(&bus_temp, 0, sizeof(bus_temp));
  1211. bus_temp.private_data = chip;
  1212. bus_temp.modelname = model;
  1213. bus_temp.pci = chip->pci;
  1214. bus_temp.ops.command = azx_send_cmd;
  1215. bus_temp.ops.get_response = azx_get_response;
  1216. bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
  1217. bus_temp.ops.bus_reset = azx_bus_reset;
  1218. #ifdef CONFIG_SND_HDA_POWER_SAVE
  1219. bus_temp.power_save = &power_save;
  1220. bus_temp.ops.pm_notify = azx_power_notify;
  1221. #endif
  1222. err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
  1223. if (err < 0)
  1224. return err;
  1225. if (chip->driver_type == AZX_DRIVER_NVIDIA)
  1226. chip->bus->needs_damn_long_delay = 1;
  1227. codecs = 0;
  1228. max_slots = azx_max_codecs[chip->driver_type];
  1229. if (!max_slots)
  1230. max_slots = AZX_DEFAULT_CODECS;
  1231. /* First try to probe all given codec slots */
  1232. for (c = 0; c < max_slots; c++) {
  1233. if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
  1234. if (probe_codec(chip, c) < 0) {
  1235. /* Some BIOSen give you wrong codec addresses
  1236. * that don't exist
  1237. */
  1238. snd_printk(KERN_WARNING SFX
  1239. "Codec #%d probe error; "
  1240. "disabling it...\n", c);
  1241. chip->codec_mask &= ~(1 << c);
  1242. /* More badly, accessing to a non-existing
  1243. * codec often screws up the controller chip,
  1244. * and disturbs the further communications.
  1245. * Thus if an error occurs during probing,
  1246. * better to reset the controller chip to
  1247. * get back to the sanity state.
  1248. */
  1249. azx_stop_chip(chip);
  1250. azx_init_chip(chip, 1);
  1251. }
  1252. }
  1253. }
  1254. /* AMD chipsets often cause the communication stalls upon certain
  1255. * sequence like the pin-detection. It seems that forcing the synced
  1256. * access works around the stall. Grrr...
  1257. */
  1258. if (chip->pci->vendor == PCI_VENDOR_ID_AMD ||
  1259. chip->pci->vendor == PCI_VENDOR_ID_ATI) {
  1260. snd_printk(KERN_INFO SFX "Enable sync_write for AMD chipset\n");
  1261. chip->bus->sync_write = 1;
  1262. chip->bus->allow_bus_reset = 1;
  1263. }
  1264. /* Then create codec instances */
  1265. for (c = 0; c < max_slots; c++) {
  1266. if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
  1267. struct hda_codec *codec;
  1268. err = snd_hda_codec_new(chip->bus, c, &codec);
  1269. if (err < 0)
  1270. continue;
  1271. codec->beep_mode = chip->beep_mode;
  1272. codecs++;
  1273. }
  1274. }
  1275. if (!codecs) {
  1276. snd_printk(KERN_ERR SFX "no codecs initialized\n");
  1277. return -ENXIO;
  1278. }
  1279. return 0;
  1280. }
  1281. /* configure each codec instance */
  1282. static int __devinit azx_codec_configure(struct azx *chip)
  1283. {
  1284. struct hda_codec *codec;
  1285. list_for_each_entry(codec, &chip->bus->codec_list, list) {
  1286. snd_hda_codec_configure(codec);
  1287. }
  1288. return 0;
  1289. }
  1290. /*
  1291. * PCM support
  1292. */
  1293. /* assign a stream for the PCM */
  1294. static inline struct azx_dev *
  1295. azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
  1296. {
  1297. int dev, i, nums;
  1298. struct azx_dev *res = NULL;
  1299. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  1300. dev = chip->playback_index_offset;
  1301. nums = chip->playback_streams;
  1302. } else {
  1303. dev = chip->capture_index_offset;
  1304. nums = chip->capture_streams;
  1305. }
  1306. for (i = 0; i < nums; i++, dev++)
  1307. if (!chip->azx_dev[dev].opened) {
  1308. res = &chip->azx_dev[dev];
  1309. if (res->device == substream->pcm->device)
  1310. break;
  1311. }
  1312. if (res) {
  1313. res->opened = 1;
  1314. res->device = substream->pcm->device;
  1315. }
  1316. return res;
  1317. }
  1318. /* release the assigned stream */
  1319. static inline void azx_release_device(struct azx_dev *azx_dev)
  1320. {
  1321. azx_dev->opened = 0;
  1322. }
  1323. static struct snd_pcm_hardware azx_pcm_hw = {
  1324. .info = (SNDRV_PCM_INFO_MMAP |
  1325. SNDRV_PCM_INFO_INTERLEAVED |
  1326. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  1327. SNDRV_PCM_INFO_MMAP_VALID |
  1328. /* No full-resume yet implemented */
  1329. /* SNDRV_PCM_INFO_RESUME |*/
  1330. SNDRV_PCM_INFO_PAUSE |
  1331. SNDRV_PCM_INFO_SYNC_START |
  1332. SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
  1333. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  1334. .rates = SNDRV_PCM_RATE_48000,
  1335. .rate_min = 48000,
  1336. .rate_max = 48000,
  1337. .channels_min = 2,
  1338. .channels_max = 2,
  1339. .buffer_bytes_max = AZX_MAX_BUF_SIZE,
  1340. .period_bytes_min = 128,
  1341. .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
  1342. .periods_min = 2,
  1343. .periods_max = AZX_MAX_FRAG,
  1344. .fifo_size = 0,
  1345. };
  1346. struct azx_pcm {
  1347. struct azx *chip;
  1348. struct hda_codec *codec;
  1349. struct hda_pcm_stream *hinfo[2];
  1350. };
  1351. static int azx_pcm_open(struct snd_pcm_substream *substream)
  1352. {
  1353. struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
  1354. struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
  1355. struct azx *chip = apcm->chip;
  1356. struct azx_dev *azx_dev;
  1357. struct snd_pcm_runtime *runtime = substream->runtime;
  1358. unsigned long flags;
  1359. int err;
  1360. mutex_lock(&chip->open_mutex);
  1361. azx_dev = azx_assign_device(chip, substream);
  1362. if (azx_dev == NULL) {
  1363. mutex_unlock(&chip->open_mutex);
  1364. return -EBUSY;
  1365. }
  1366. runtime->hw = azx_pcm_hw;
  1367. runtime->hw.channels_min = hinfo->channels_min;
  1368. runtime->hw.channels_max = hinfo->channels_max;
  1369. runtime->hw.formats = hinfo->formats;
  1370. runtime->hw.rates = hinfo->rates;
  1371. snd_pcm_limit_hw_rates(runtime);
  1372. snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
  1373. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  1374. 128);
  1375. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
  1376. 128);
  1377. snd_hda_power_up(apcm->codec);
  1378. err = hinfo->ops.open(hinfo, apcm->codec, substream);
  1379. if (err < 0) {
  1380. azx_release_device(azx_dev);
  1381. snd_hda_power_down(apcm->codec);
  1382. mutex_unlock(&chip->open_mutex);
  1383. return err;
  1384. }
  1385. snd_pcm_limit_hw_rates(runtime);
  1386. /* sanity check */
  1387. if (snd_BUG_ON(!runtime->hw.channels_min) ||
  1388. snd_BUG_ON(!runtime->hw.channels_max) ||
  1389. snd_BUG_ON(!runtime->hw.formats) ||
  1390. snd_BUG_ON(!runtime->hw.rates)) {
  1391. azx_release_device(azx_dev);
  1392. hinfo->ops.close(hinfo, apcm->codec, substream);
  1393. snd_hda_power_down(apcm->codec);
  1394. mutex_unlock(&chip->open_mutex);
  1395. return -EINVAL;
  1396. }
  1397. spin_lock_irqsave(&chip->reg_lock, flags);
  1398. azx_dev->substream = substream;
  1399. azx_dev->running = 0;
  1400. spin_unlock_irqrestore(&chip->reg_lock, flags);
  1401. runtime->private_data = azx_dev;
  1402. snd_pcm_set_sync(substream);
  1403. mutex_unlock(&chip->open_mutex);
  1404. return 0;
  1405. }
  1406. static int azx_pcm_close(struct snd_pcm_substream *substream)
  1407. {
  1408. struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
  1409. struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
  1410. struct azx *chip = apcm->chip;
  1411. struct azx_dev *azx_dev = get_azx_dev(substream);
  1412. unsigned long flags;
  1413. mutex_lock(&chip->open_mutex);
  1414. spin_lock_irqsave(&chip->reg_lock, flags);
  1415. azx_dev->substream = NULL;
  1416. azx_dev->running = 0;
  1417. spin_unlock_irqrestore(&chip->reg_lock, flags);
  1418. azx_release_device(azx_dev);
  1419. hinfo->ops.close(hinfo, apcm->codec, substream);
  1420. snd_hda_power_down(apcm->codec);
  1421. mutex_unlock(&chip->open_mutex);
  1422. return 0;
  1423. }
  1424. static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
  1425. struct snd_pcm_hw_params *hw_params)
  1426. {
  1427. struct azx_dev *azx_dev = get_azx_dev(substream);
  1428. azx_dev->bufsize = 0;
  1429. azx_dev->period_bytes = 0;
  1430. azx_dev->format_val = 0;
  1431. return snd_pcm_lib_malloc_pages(substream,
  1432. params_buffer_bytes(hw_params));
  1433. }
  1434. static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
  1435. {
  1436. struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
  1437. struct azx_dev *azx_dev = get_azx_dev(substream);
  1438. struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
  1439. /* reset BDL address */
  1440. azx_sd_writel(azx_dev, SD_BDLPL, 0);
  1441. azx_sd_writel(azx_dev, SD_BDLPU, 0);
  1442. azx_sd_writel(azx_dev, SD_CTL, 0);
  1443. azx_dev->bufsize = 0;
  1444. azx_dev->period_bytes = 0;
  1445. azx_dev->format_val = 0;
  1446. snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
  1447. return snd_pcm_lib_free_pages(substream);
  1448. }
  1449. static int azx_pcm_prepare(struct snd_pcm_substream *substream)
  1450. {
  1451. struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
  1452. struct azx *chip = apcm->chip;
  1453. struct azx_dev *azx_dev = get_azx_dev(substream);
  1454. struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
  1455. struct snd_pcm_runtime *runtime = substream->runtime;
  1456. unsigned int bufsize, period_bytes, format_val, stream_tag;
  1457. int err;
  1458. azx_stream_reset(chip, azx_dev);
  1459. format_val = snd_hda_calc_stream_format(runtime->rate,
  1460. runtime->channels,
  1461. runtime->format,
  1462. hinfo->maxbps,
  1463. apcm->codec->spdif_ctls);
  1464. if (!format_val) {
  1465. snd_printk(KERN_ERR SFX
  1466. "invalid format_val, rate=%d, ch=%d, format=%d\n",
  1467. runtime->rate, runtime->channels, runtime->format);
  1468. return -EINVAL;
  1469. }
  1470. bufsize = snd_pcm_lib_buffer_bytes(substream);
  1471. period_bytes = snd_pcm_lib_period_bytes(substream);
  1472. snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
  1473. bufsize, format_val);
  1474. if (bufsize != azx_dev->bufsize ||
  1475. period_bytes != azx_dev->period_bytes ||
  1476. format_val != azx_dev->format_val) {
  1477. azx_dev->bufsize = bufsize;
  1478. azx_dev->period_bytes = period_bytes;
  1479. azx_dev->format_val = format_val;
  1480. err = azx_setup_periods(chip, substream, azx_dev);
  1481. if (err < 0)
  1482. return err;
  1483. }
  1484. /* wallclk has 24Mhz clock source */
  1485. azx_dev->period_wallclk = (((runtime->period_size * 24000) /
  1486. runtime->rate) * 1000);
  1487. azx_setup_controller(chip, azx_dev);
  1488. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  1489. azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
  1490. else
  1491. azx_dev->fifo_size = 0;
  1492. stream_tag = azx_dev->stream_tag;
  1493. /* CA-IBG chips need the playback stream starting from 1 */
  1494. if (chip->driver_type == AZX_DRIVER_CTX &&
  1495. stream_tag > chip->capture_streams)
  1496. stream_tag -= chip->capture_streams;
  1497. return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
  1498. azx_dev->format_val, substream);
  1499. }
  1500. static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  1501. {
  1502. struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
  1503. struct azx *chip = apcm->chip;
  1504. struct azx_dev *azx_dev;
  1505. struct snd_pcm_substream *s;
  1506. int rstart = 0, start, nsync = 0, sbits = 0;
  1507. int nwait, timeout;
  1508. switch (cmd) {
  1509. case SNDRV_PCM_TRIGGER_START:
  1510. rstart = 1;
  1511. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  1512. case SNDRV_PCM_TRIGGER_RESUME:
  1513. start = 1;
  1514. break;
  1515. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  1516. case SNDRV_PCM_TRIGGER_SUSPEND:
  1517. case SNDRV_PCM_TRIGGER_STOP:
  1518. start = 0;
  1519. break;
  1520. default:
  1521. return -EINVAL;
  1522. }
  1523. snd_pcm_group_for_each_entry(s, substream) {
  1524. if (s->pcm->card != substream->pcm->card)
  1525. continue;
  1526. azx_dev = get_azx_dev(s);
  1527. sbits |= 1 << azx_dev->index;
  1528. nsync++;
  1529. snd_pcm_trigger_done(s, substream);
  1530. }
  1531. spin_lock(&chip->reg_lock);
  1532. if (nsync > 1) {
  1533. /* first, set SYNC bits of corresponding streams */
  1534. azx_writel(chip, SYNC, azx_readl(chip, SYNC) | sbits);
  1535. }
  1536. snd_pcm_group_for_each_entry(s, substream) {
  1537. if (s->pcm->card != substream->pcm->card)
  1538. continue;
  1539. azx_dev = get_azx_dev(s);
  1540. if (start) {
  1541. azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
  1542. if (!rstart)
  1543. azx_dev->start_wallclk -=
  1544. azx_dev->period_wallclk;
  1545. azx_stream_start(chip, azx_dev);
  1546. } else {
  1547. azx_stream_stop(chip, azx_dev);
  1548. }
  1549. azx_dev->running = start;
  1550. }
  1551. spin_unlock(&chip->reg_lock);
  1552. if (start) {
  1553. if (nsync == 1)
  1554. return 0;
  1555. /* wait until all FIFOs get ready */
  1556. for (timeout = 5000; timeout; timeout--) {
  1557. nwait = 0;
  1558. snd_pcm_group_for_each_entry(s, substream) {
  1559. if (s->pcm->card != substream->pcm->card)
  1560. continue;
  1561. azx_dev = get_azx_dev(s);
  1562. if (!(azx_sd_readb(azx_dev, SD_STS) &
  1563. SD_STS_FIFO_READY))
  1564. nwait++;
  1565. }
  1566. if (!nwait)
  1567. break;
  1568. cpu_relax();
  1569. }
  1570. } else {
  1571. /* wait until all RUN bits are cleared */
  1572. for (timeout = 5000; timeout; timeout--) {
  1573. nwait = 0;
  1574. snd_pcm_group_for_each_entry(s, substream) {
  1575. if (s->pcm->card != substream->pcm->card)
  1576. continue;
  1577. azx_dev = get_azx_dev(s);
  1578. if (azx_sd_readb(azx_dev, SD_CTL) &
  1579. SD_CTL_DMA_START)
  1580. nwait++;
  1581. }
  1582. if (!nwait)
  1583. break;
  1584. cpu_relax();
  1585. }
  1586. }
  1587. if (nsync > 1) {
  1588. spin_lock(&chip->reg_lock);
  1589. /* reset SYNC bits */
  1590. azx_writel(chip, SYNC, azx_readl(chip, SYNC) & ~sbits);
  1591. spin_unlock(&chip->reg_lock);
  1592. }
  1593. return 0;
  1594. }
  1595. /* get the current DMA position with correction on VIA chips */
  1596. static unsigned int azx_via_get_position(struct azx *chip,
  1597. struct azx_dev *azx_dev)
  1598. {
  1599. unsigned int link_pos, mini_pos, bound_pos;
  1600. unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
  1601. unsigned int fifo_size;
  1602. link_pos = azx_sd_readl(azx_dev, SD_LPIB);
  1603. if (azx_dev->index >= 4) {
  1604. /* Playback, no problem using link position */
  1605. return link_pos;
  1606. }
  1607. /* Capture */
  1608. /* For new chipset,
  1609. * use mod to get the DMA position just like old chipset
  1610. */
  1611. mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
  1612. mod_dma_pos %= azx_dev->period_bytes;
  1613. /* azx_dev->fifo_size can't get FIFO size of in stream.
  1614. * Get from base address + offset.
  1615. */
  1616. fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
  1617. if (azx_dev->insufficient) {
  1618. /* Link position never gather than FIFO size */
  1619. if (link_pos <= fifo_size)
  1620. return 0;
  1621. azx_dev->insufficient = 0;
  1622. }
  1623. if (link_pos <= fifo_size)
  1624. mini_pos = azx_dev->bufsize + link_pos - fifo_size;
  1625. else
  1626. mini_pos = link_pos - fifo_size;
  1627. /* Find nearest previous boudary */
  1628. mod_mini_pos = mini_pos % azx_dev->period_bytes;
  1629. mod_link_pos = link_pos % azx_dev->period_bytes;
  1630. if (mod_link_pos >= fifo_size)
  1631. bound_pos = link_pos - mod_link_pos;
  1632. else if (mod_dma_pos >= mod_mini_pos)
  1633. bound_pos = mini_pos - mod_mini_pos;
  1634. else {
  1635. bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
  1636. if (bound_pos >= azx_dev->bufsize)
  1637. bound_pos = 0;
  1638. }
  1639. /* Calculate real DMA position we want */
  1640. return bound_pos + mod_dma_pos;
  1641. }
  1642. static unsigned int azx_get_position(struct azx *chip,
  1643. struct azx_dev *azx_dev)
  1644. {
  1645. unsigned int pos;
  1646. int stream = azx_dev->substream->stream;
  1647. switch (chip->position_fix[stream]) {
  1648. case POS_FIX_LPIB:
  1649. /* read LPIB */
  1650. pos = azx_sd_readl(azx_dev, SD_LPIB);
  1651. break;
  1652. case POS_FIX_VIACOMBO:
  1653. pos = azx_via_get_position(chip, azx_dev);
  1654. break;
  1655. default:
  1656. /* use the position buffer */
  1657. pos = le32_to_cpu(*azx_dev->posbuf);
  1658. }
  1659. if (pos >= azx_dev->bufsize)
  1660. pos = 0;
  1661. return pos;
  1662. }
  1663. static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
  1664. {
  1665. struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
  1666. struct azx *chip = apcm->chip;
  1667. struct azx_dev *azx_dev = get_azx_dev(substream);
  1668. return bytes_to_frames(substream->runtime,
  1669. azx_get_position(chip, azx_dev));
  1670. }
  1671. /*
  1672. * Check whether the current DMA position is acceptable for updating
  1673. * periods. Returns non-zero if it's OK.
  1674. *
  1675. * Many HD-audio controllers appear pretty inaccurate about
  1676. * the update-IRQ timing. The IRQ is issued before actually the
  1677. * data is processed. So, we need to process it afterwords in a
  1678. * workqueue.
  1679. */
  1680. static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
  1681. {
  1682. u32 wallclk;
  1683. unsigned int pos;
  1684. int stream;
  1685. wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
  1686. if (wallclk < (azx_dev->period_wallclk * 2) / 3)
  1687. return -1; /* bogus (too early) interrupt */
  1688. stream = azx_dev->substream->stream;
  1689. pos = azx_get_position(chip, azx_dev);
  1690. if (chip->position_fix[stream] == POS_FIX_AUTO) {
  1691. if (!pos) {
  1692. printk(KERN_WARNING
  1693. "hda-intel: Invalid position buffer, "
  1694. "using LPIB read method instead.\n");
  1695. chip->position_fix[stream] = POS_FIX_LPIB;
  1696. pos = azx_get_position(chip, azx_dev);
  1697. } else
  1698. chip->position_fix[stream] = POS_FIX_POSBUF;
  1699. }
  1700. if (WARN_ONCE(!azx_dev->period_bytes,
  1701. "hda-intel: zero azx_dev->period_bytes"))
  1702. return -1; /* this shouldn't happen! */
  1703. if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
  1704. pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
  1705. /* NG - it's below the first next period boundary */
  1706. return bdl_pos_adj[chip->dev_index] ? 0 : -1;
  1707. azx_dev->start_wallclk += wallclk;
  1708. return 1; /* OK, it's fine */
  1709. }
  1710. /*
  1711. * The work for pending PCM period updates.
  1712. */
  1713. static void azx_irq_pending_work(struct work_struct *work)
  1714. {
  1715. struct azx *chip = container_of(work, struct azx, irq_pending_work);
  1716. int i, pending, ok;
  1717. if (!chip->irq_pending_warned) {
  1718. printk(KERN_WARNING
  1719. "hda-intel: IRQ timing workaround is activated "
  1720. "for card #%d. Suggest a bigger bdl_pos_adj.\n",
  1721. chip->card->number);
  1722. chip->irq_pending_warned = 1;
  1723. }
  1724. for (;;) {
  1725. pending = 0;
  1726. spin_lock_irq(&chip->reg_lock);
  1727. for (i = 0; i < chip->num_streams; i++) {
  1728. struct azx_dev *azx_dev = &chip->azx_dev[i];
  1729. if (!azx_dev->irq_pending ||
  1730. !azx_dev->substream ||
  1731. !azx_dev->running)
  1732. continue;
  1733. ok = azx_position_ok(chip, azx_dev);
  1734. if (ok > 0) {
  1735. azx_dev->irq_pending = 0;
  1736. spin_unlock(&chip->reg_lock);
  1737. snd_pcm_period_elapsed(azx_dev->substream);
  1738. spin_lock(&chip->reg_lock);
  1739. } else if (ok < 0) {
  1740. pending = 0; /* too early */
  1741. } else
  1742. pending++;
  1743. }
  1744. spin_unlock_irq(&chip->reg_lock);
  1745. if (!pending)
  1746. return;
  1747. msleep(1);
  1748. }
  1749. }
  1750. /* clear irq_pending flags and assure no on-going workq */
  1751. static void azx_clear_irq_pending(struct azx *chip)
  1752. {
  1753. int i;
  1754. spin_lock_irq(&chip->reg_lock);
  1755. for (i = 0; i < chip->num_streams; i++)
  1756. chip->azx_dev[i].irq_pending = 0;
  1757. spin_unlock_irq(&chip->reg_lock);
  1758. }
  1759. static struct snd_pcm_ops azx_pcm_ops = {
  1760. .open = azx_pcm_open,
  1761. .close = azx_pcm_close,
  1762. .ioctl = snd_pcm_lib_ioctl,
  1763. .hw_params = azx_pcm_hw_params,
  1764. .hw_free = azx_pcm_hw_free,
  1765. .prepare = azx_pcm_prepare,
  1766. .trigger = azx_pcm_trigger,
  1767. .pointer = azx_pcm_pointer,
  1768. .page = snd_pcm_sgbuf_ops_page,
  1769. };
  1770. static void azx_pcm_free(struct snd_pcm *pcm)
  1771. {
  1772. struct azx_pcm *apcm = pcm->private_data;
  1773. if (apcm) {
  1774. apcm->chip->pcm[pcm->device] = NULL;
  1775. kfree(apcm);
  1776. }
  1777. }
  1778. static int
  1779. azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
  1780. struct hda_pcm *cpcm)
  1781. {
  1782. struct azx *chip = bus->private_data;
  1783. struct snd_pcm *pcm;
  1784. struct azx_pcm *apcm;
  1785. int pcm_dev = cpcm->device;
  1786. int s, err;
  1787. if (pcm_dev >= HDA_MAX_PCMS) {
  1788. snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
  1789. pcm_dev);
  1790. return -EINVAL;
  1791. }
  1792. if (chip->pcm[pcm_dev]) {
  1793. snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
  1794. return -EBUSY;
  1795. }
  1796. err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
  1797. cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
  1798. cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
  1799. &pcm);
  1800. if (err < 0)
  1801. return err;
  1802. strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
  1803. apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
  1804. if (apcm == NULL)
  1805. return -ENOMEM;
  1806. apcm->chip = chip;
  1807. apcm->codec = codec;
  1808. pcm->private_data = apcm;
  1809. pcm->private_free = azx_pcm_free;
  1810. if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
  1811. pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
  1812. chip->pcm[pcm_dev] = pcm;
  1813. cpcm->pcm = pcm;
  1814. for (s = 0; s < 2; s++) {
  1815. apcm->hinfo[s] = &cpcm->stream[s];
  1816. if (cpcm->stream[s].substreams)
  1817. snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
  1818. }
  1819. /* buffer pre-allocation */
  1820. snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1821. snd_dma_pci_data(chip->pci),
  1822. 1024 * 64, 32 * 1024 * 1024);
  1823. return 0;
  1824. }
  1825. /*
  1826. * mixer creation - all stuff is implemented in hda module
  1827. */
  1828. static int __devinit azx_mixer_create(struct azx *chip)
  1829. {
  1830. return snd_hda_build_controls(chip->bus);
  1831. }
  1832. /*
  1833. * initialize SD streams
  1834. */
  1835. static int __devinit azx_init_stream(struct azx *chip)
  1836. {
  1837. int i;
  1838. /* initialize each stream (aka device)
  1839. * assign the starting bdl address to each stream (device)
  1840. * and initialize
  1841. */
  1842. for (i = 0; i < chip->num_streams; i++) {
  1843. struct azx_dev *azx_dev = &chip->azx_dev[i];
  1844. azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
  1845. /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
  1846. azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
  1847. /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
  1848. azx_dev->sd_int_sta_mask = 1 << i;
  1849. /* stream tag: must be non-zero and unique */
  1850. azx_dev->index = i;
  1851. azx_dev->stream_tag = i + 1;
  1852. }
  1853. return 0;
  1854. }
  1855. static int azx_acquire_irq(struct azx *chip, int do_disconnect)
  1856. {
  1857. if (request_irq(chip->pci->irq, azx_interrupt,
  1858. chip->msi ? 0 : IRQF_SHARED,
  1859. "hda_intel", chip)) {
  1860. printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
  1861. "disabling device\n", chip->pci->irq);
  1862. if (do_disconnect)
  1863. snd_card_disconnect(chip->card);
  1864. return -1;
  1865. }
  1866. chip->irq = chip->pci->irq;
  1867. pci_intx(chip->pci, !chip->msi);
  1868. return 0;
  1869. }
  1870. static void azx_stop_chip(struct azx *chip)
  1871. {
  1872. if (!chip->initialized)
  1873. return;
  1874. /* disable interrupts */
  1875. azx_int_disable(chip);
  1876. azx_int_clear(chip);
  1877. /* disable CORB/RIRB */
  1878. azx_free_cmd_io(chip);
  1879. /* disable position buffer */
  1880. azx_writel(chip, DPLBASE, 0);
  1881. azx_writel(chip, DPUBASE, 0);
  1882. chip->initialized = 0;
  1883. }
  1884. #ifdef CONFIG_SND_HDA_POWER_SAVE
  1885. /* power-up/down the controller */
  1886. static void azx_power_notify(struct hda_bus *bus)
  1887. {
  1888. struct azx *chip = bus->private_data;
  1889. struct hda_codec *c;
  1890. int power_on = 0;
  1891. list_for_each_entry(c, &bus->codec_list, list) {
  1892. if (c->power_on) {
  1893. power_on = 1;
  1894. break;
  1895. }
  1896. }
  1897. if (power_on)
  1898. azx_init_chip(chip, 1);
  1899. else if (chip->running && power_save_controller &&
  1900. !bus->power_keep_link_on)
  1901. azx_stop_chip(chip);
  1902. }
  1903. #endif /* CONFIG_SND_HDA_POWER_SAVE */
  1904. #ifdef CONFIG_PM
  1905. /*
  1906. * power management
  1907. */
  1908. static int snd_hda_codecs_inuse(struct hda_bus *bus)
  1909. {
  1910. struct hda_codec *codec;
  1911. list_for_each_entry(codec, &bus->codec_list, list) {
  1912. if (snd_hda_codec_needs_resume(codec))
  1913. return 1;
  1914. }
  1915. return 0;
  1916. }
  1917. static int azx_suspend(struct pci_dev *pci, pm_message_t state)
  1918. {
  1919. struct snd_card *card = pci_get_drvdata(pci);
  1920. struct azx *chip = card->private_data;
  1921. int i;
  1922. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  1923. azx_clear_irq_pending(chip);
  1924. for (i = 0; i < HDA_MAX_PCMS; i++)
  1925. snd_pcm_suspend_all(chip->pcm[i]);
  1926. if (chip->initialized)
  1927. snd_hda_suspend(chip->bus);
  1928. azx_stop_chip(chip);
  1929. if (chip->irq >= 0) {
  1930. free_irq(chip->irq, chip);
  1931. chip->irq = -1;
  1932. }
  1933. if (chip->msi)
  1934. pci_disable_msi(chip->pci);
  1935. pci_disable_device(pci);
  1936. pci_save_state(pci);
  1937. pci_set_power_state(pci, pci_choose_state(pci, state));
  1938. return 0;
  1939. }
  1940. static int azx_resume(struct pci_dev *pci)
  1941. {
  1942. struct snd_card *card = pci_get_drvdata(pci);
  1943. struct azx *chip = card->private_data;
  1944. pci_set_power_state(pci, PCI_D0);
  1945. pci_restore_state(pci);
  1946. if (pci_enable_device(pci) < 0) {
  1947. printk(KERN_ERR "hda-intel: pci_enable_device failed, "
  1948. "disabling device\n");
  1949. snd_card_disconnect(card);
  1950. return -EIO;
  1951. }
  1952. pci_set_master(pci);
  1953. if (chip->msi)
  1954. if (pci_enable_msi(pci) < 0)
  1955. chip->msi = 0;
  1956. if (azx_acquire_irq(chip, 1) < 0)
  1957. return -EIO;
  1958. azx_init_pci(chip);
  1959. if (snd_hda_codecs_inuse(chip->bus))
  1960. azx_init_chip(chip, 1);
  1961. snd_hda_resume(chip->bus);
  1962. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  1963. return 0;
  1964. }
  1965. #endif /* CONFIG_PM */
  1966. /*
  1967. * reboot notifier for hang-up problem at power-down
  1968. */
  1969. static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
  1970. {
  1971. struct azx *chip = container_of(nb, struct azx, reboot_notifier);
  1972. snd_hda_bus_reboot_notify(chip->bus);
  1973. azx_stop_chip(chip);
  1974. return NOTIFY_OK;
  1975. }
  1976. static void azx_notifier_register(struct azx *chip)
  1977. {
  1978. chip->reboot_notifier.notifier_call = azx_halt;
  1979. register_reboot_notifier(&chip->reboot_notifier);
  1980. }
  1981. static void azx_notifier_unregister(struct azx *chip)
  1982. {
  1983. if (chip->reboot_notifier.notifier_call)
  1984. unregister_reboot_notifier(&chip->reboot_notifier);
  1985. }
  1986. /*
  1987. * destructor
  1988. */
  1989. static int azx_free(struct azx *chip)
  1990. {
  1991. int i;
  1992. azx_notifier_unregister(chip);
  1993. if (chip->initialized) {
  1994. azx_clear_irq_pending(chip);
  1995. for (i = 0; i < chip->num_streams; i++)
  1996. azx_stream_stop(chip, &chip->azx_dev[i]);
  1997. azx_stop_chip(chip);
  1998. }
  1999. if (chip->irq >= 0)
  2000. free_irq(chip->irq, (void*)chip);
  2001. if (chip->msi)
  2002. pci_disable_msi(chip->pci);
  2003. if (chip->remap_addr)
  2004. iounmap(chip->remap_addr);
  2005. if (chip->azx_dev) {
  2006. for (i = 0; i < chip->num_streams; i++)
  2007. if (chip->azx_dev[i].bdl.area)
  2008. snd_dma_free_pages(&chip->azx_dev[i].bdl);
  2009. }
  2010. if (chip->rb.area)
  2011. snd_dma_free_pages(&chip->rb);
  2012. if (chip->posbuf.area)
  2013. snd_dma_free_pages(&chip->posbuf);
  2014. pci_release_regions(chip->pci);
  2015. pci_disable_device(chip->pci);
  2016. kfree(chip->azx_dev);
  2017. kfree(chip);
  2018. return 0;
  2019. }
  2020. static int azx_dev_free(struct snd_device *device)
  2021. {
  2022. return azx_free(device->device_data);
  2023. }
  2024. /*
  2025. * white/black-listing for position_fix
  2026. */
  2027. static struct snd_pci_quirk position_fix_list[] __devinitdata = {
  2028. SND_PCI_QUIRK(0x1025, 0x009f, "Acer Aspire 5110", POS_FIX_LPIB),
  2029. SND_PCI_QUIRK(0x1025, 0x026f, "Acer Aspire 5538", POS_FIX_LPIB),
  2030. SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
  2031. SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
  2032. SND_PCI_QUIRK(0x1028, 0x01f6, "Dell Latitude 131L", POS_FIX_LPIB),
  2033. SND_PCI_QUIRK(0x1028, 0x0470, "Dell Inspiron 1120", POS_FIX_LPIB),
  2034. SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
  2035. SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
  2036. SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
  2037. SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
  2038. SND_PCI_QUIRK(0x1043, 0x8410, "ASUS", POS_FIX_LPIB),
  2039. SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
  2040. SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
  2041. SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba A100-259", POS_FIX_LPIB),
  2042. SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
  2043. SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
  2044. SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
  2045. SND_PCI_QUIRK(0x1565, 0x820f, "Biostar Microtech", POS_FIX_LPIB),
  2046. SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
  2047. SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
  2048. SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
  2049. SND_PCI_QUIRK(0x8086, 0xd601, "eMachines T5212", POS_FIX_LPIB),
  2050. {}
  2051. };
  2052. static int __devinit check_position_fix(struct azx *chip, int fix)
  2053. {
  2054. const struct snd_pci_quirk *q;
  2055. switch (fix) {
  2056. case POS_FIX_LPIB:
  2057. case POS_FIX_POSBUF:
  2058. case POS_FIX_VIACOMBO:
  2059. return fix;
  2060. }
  2061. q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
  2062. if (q) {
  2063. printk(KERN_INFO
  2064. "hda_intel: position_fix set to %d "
  2065. "for device %04x:%04x\n",
  2066. q->value, q->subvendor, q->subdevice);
  2067. return q->value;
  2068. }
  2069. /* Check VIA/ATI HD Audio Controller exist */
  2070. switch (chip->driver_type) {
  2071. case AZX_DRIVER_VIA:
  2072. case AZX_DRIVER_ATI:
  2073. /* Use link position directly, avoid any transfer problem. */
  2074. return POS_FIX_VIACOMBO;
  2075. }
  2076. return POS_FIX_AUTO;
  2077. }
  2078. /*
  2079. * black-lists for probe_mask
  2080. */
  2081. static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
  2082. /* Thinkpad often breaks the controller communication when accessing
  2083. * to the non-working (or non-existing) modem codec slot.
  2084. */
  2085. SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
  2086. SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
  2087. SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
  2088. /* broken BIOS */
  2089. SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
  2090. /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
  2091. SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
  2092. /* forced codec slots */
  2093. SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
  2094. SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
  2095. {}
  2096. };
  2097. #define AZX_FORCE_CODEC_MASK 0x100
  2098. static void __devinit check_probe_mask(struct azx *chip, int dev)
  2099. {
  2100. const struct snd_pci_quirk *q;
  2101. chip->codec_probe_mask = probe_mask[dev];
  2102. if (chip->codec_probe_mask == -1) {
  2103. q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
  2104. if (q) {
  2105. printk(KERN_INFO
  2106. "hda_intel: probe_mask set to 0x%x "
  2107. "for device %04x:%04x\n",
  2108. q->value, q->subvendor, q->subdevice);
  2109. chip->codec_probe_mask = q->value;
  2110. }
  2111. }
  2112. /* check forced option */
  2113. if (chip->codec_probe_mask != -1 &&
  2114. (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
  2115. chip->codec_mask = chip->codec_probe_mask & 0xff;
  2116. printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
  2117. chip->codec_mask);
  2118. }
  2119. }
  2120. /*
  2121. * white/black-list for enable_msi
  2122. */
  2123. static struct snd_pci_quirk msi_black_list[] __devinitdata = {
  2124. SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
  2125. SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
  2126. SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
  2127. SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
  2128. SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
  2129. {}
  2130. };
  2131. static void __devinit check_msi(struct azx *chip)
  2132. {
  2133. const struct snd_pci_quirk *q;
  2134. if (enable_msi >= 0) {
  2135. chip->msi = !!enable_msi;
  2136. return;
  2137. }
  2138. chip->msi = 1; /* enable MSI as default */
  2139. q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
  2140. if (q) {
  2141. printk(KERN_INFO
  2142. "hda_intel: msi for device %04x:%04x set to %d\n",
  2143. q->subvendor, q->subdevice, q->value);
  2144. chip->msi = q->value;
  2145. return;
  2146. }
  2147. /* NVidia chipsets seem to cause troubles with MSI */
  2148. if (chip->driver_type == AZX_DRIVER_NVIDIA) {
  2149. printk(KERN_INFO "hda_intel: Disable MSI for Nvidia chipset\n");
  2150. chip->msi = 0;
  2151. }
  2152. }
  2153. /*
  2154. * constructor
  2155. */
  2156. static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
  2157. int dev, int driver_type,
  2158. struct azx **rchip)
  2159. {
  2160. struct azx *chip;
  2161. int i, err;
  2162. unsigned short gcap;
  2163. static struct snd_device_ops ops = {
  2164. .dev_free = azx_dev_free,
  2165. };
  2166. *rchip = NULL;
  2167. err = pci_enable_device(pci);
  2168. if (err < 0)
  2169. return err;
  2170. chip = kzalloc(sizeof(*chip), GFP_KERNEL);
  2171. if (!chip) {
  2172. snd_printk(KERN_ERR SFX "cannot allocate chip\n");
  2173. pci_disable_device(pci);
  2174. return -ENOMEM;
  2175. }
  2176. spin_lock_init(&chip->reg_lock);
  2177. mutex_init(&chip->open_mutex);
  2178. chip->card = card;
  2179. chip->pci = pci;
  2180. chip->irq = -1;
  2181. chip->driver_type = driver_type;
  2182. check_msi(chip);
  2183. chip->dev_index = dev;
  2184. INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
  2185. chip->position_fix[0] = chip->position_fix[1] =
  2186. check_position_fix(chip, position_fix[dev]);
  2187. check_probe_mask(chip, dev);
  2188. chip->single_cmd = single_cmd;
  2189. if (bdl_pos_adj[dev] < 0) {
  2190. switch (chip->driver_type) {
  2191. case AZX_DRIVER_ICH:
  2192. case AZX_DRIVER_PCH:
  2193. bdl_pos_adj[dev] = 1;
  2194. break;
  2195. default:
  2196. bdl_pos_adj[dev] = 32;
  2197. break;
  2198. }
  2199. }
  2200. #if BITS_PER_LONG != 64
  2201. /* Fix up base address on ULI M5461 */
  2202. if (chip->driver_type == AZX_DRIVER_ULI) {
  2203. u16 tmp3;
  2204. pci_read_config_word(pci, 0x40, &tmp3);
  2205. pci_write_config_word(pci, 0x40, tmp3 | 0x10);
  2206. pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
  2207. }
  2208. #endif
  2209. err = pci_request_regions(pci, "ICH HD audio");
  2210. if (err < 0) {
  2211. kfree(chip);
  2212. pci_disable_device(pci);
  2213. return err;
  2214. }
  2215. chip->addr = pci_resource_start(pci, 0);
  2216. chip->remap_addr = pci_ioremap_bar(pci, 0);
  2217. if (chip->remap_addr == NULL) {
  2218. snd_printk(KERN_ERR SFX "ioremap error\n");
  2219. err = -ENXIO;
  2220. goto errout;
  2221. }
  2222. if (chip->msi)
  2223. if (pci_enable_msi(pci) < 0)
  2224. chip->msi = 0;
  2225. if (azx_acquire_irq(chip, 0) < 0) {
  2226. err = -EBUSY;
  2227. goto errout;
  2228. }
  2229. pci_set_master(pci);
  2230. synchronize_irq(chip->irq);
  2231. gcap = azx_readw(chip, GCAP);
  2232. snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
  2233. /* disable SB600 64bit support for safety */
  2234. if ((chip->driver_type == AZX_DRIVER_ATI) ||
  2235. (chip->driver_type == AZX_DRIVER_ATIHDMI)) {
  2236. struct pci_dev *p_smbus;
  2237. p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
  2238. PCI_DEVICE_ID_ATI_SBX00_SMBUS,
  2239. NULL);
  2240. if (p_smbus) {
  2241. if (p_smbus->revision < 0x30)
  2242. gcap &= ~ICH6_GCAP_64OK;
  2243. pci_dev_put(p_smbus);
  2244. }
  2245. }
  2246. /* disable 64bit DMA address for Teradici */
  2247. /* it does not work with device 6549:1200 subsys e4a2:040b */
  2248. if (chip->driver_type == AZX_DRIVER_TERA)
  2249. gcap &= ~ICH6_GCAP_64OK;
  2250. /* allow 64bit DMA address if supported by H/W */
  2251. if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
  2252. pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
  2253. else {
  2254. pci_set_dma_mask(pci, DMA_BIT_MASK(32));
  2255. pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
  2256. }
  2257. /* read number of streams from GCAP register instead of using
  2258. * hardcoded value
  2259. */
  2260. chip->capture_streams = (gcap >> 8) & 0x0f;
  2261. chip->playback_streams = (gcap >> 12) & 0x0f;
  2262. if (!chip->playback_streams && !chip->capture_streams) {
  2263. /* gcap didn't give any info, switching to old method */
  2264. switch (chip->driver_type) {
  2265. case AZX_DRIVER_ULI:
  2266. chip->playback_streams = ULI_NUM_PLAYBACK;
  2267. chip->capture_streams = ULI_NUM_CAPTURE;
  2268. break;
  2269. case AZX_DRIVER_ATIHDMI:
  2270. chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
  2271. chip->capture_streams = ATIHDMI_NUM_CAPTURE;
  2272. break;
  2273. case AZX_DRIVER_GENERIC:
  2274. default:
  2275. chip->playback_streams = ICH6_NUM_PLAYBACK;
  2276. chip->capture_streams = ICH6_NUM_CAPTURE;
  2277. break;
  2278. }
  2279. }
  2280. chip->capture_index_offset = 0;
  2281. chip->playback_index_offset = chip->capture_streams;
  2282. chip->num_streams = chip->playback_streams + chip->capture_streams;
  2283. chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
  2284. GFP_KERNEL);
  2285. if (!chip->azx_dev) {
  2286. snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
  2287. goto errout;
  2288. }
  2289. for (i = 0; i < chip->num_streams; i++) {
  2290. /* allocate memory for the BDL for each stream */
  2291. err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
  2292. snd_dma_pci_data(chip->pci),
  2293. BDL_SIZE, &chip->azx_dev[i].bdl);
  2294. if (err < 0) {
  2295. snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
  2296. goto errout;
  2297. }
  2298. }
  2299. /* allocate memory for the position buffer */
  2300. err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
  2301. snd_dma_pci_data(chip->pci),
  2302. chip->num_streams * 8, &chip->posbuf);
  2303. if (err < 0) {
  2304. snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
  2305. goto errout;
  2306. }
  2307. /* allocate CORB/RIRB */
  2308. err = azx_alloc_cmd_io(chip);
  2309. if (err < 0)
  2310. goto errout;
  2311. /* initialize streams */
  2312. azx_init_stream(chip);
  2313. /* initialize chip */
  2314. azx_init_pci(chip);
  2315. azx_init_chip(chip, (probe_only[dev] & 2) == 0);
  2316. /* codec detection */
  2317. if (!chip->codec_mask) {
  2318. snd_printk(KERN_ERR SFX "no codecs found!\n");
  2319. err = -ENODEV;
  2320. goto errout;
  2321. }
  2322. err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
  2323. if (err <0) {
  2324. snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
  2325. goto errout;
  2326. }
  2327. strcpy(card->driver, "HDA-Intel");
  2328. strlcpy(card->shortname, driver_short_names[chip->driver_type],
  2329. sizeof(card->shortname));
  2330. snprintf(card->longname, sizeof(card->longname),
  2331. "%s at 0x%lx irq %i",
  2332. card->shortname, chip->addr, chip->irq);
  2333. *rchip = chip;
  2334. return 0;
  2335. errout:
  2336. azx_free(chip);
  2337. return err;
  2338. }
  2339. static void power_down_all_codecs(struct azx *chip)
  2340. {
  2341. #ifdef CONFIG_SND_HDA_POWER_SAVE
  2342. /* The codecs were powered up in snd_hda_codec_new().
  2343. * Now all initialization done, so turn them down if possible
  2344. */
  2345. struct hda_codec *codec;
  2346. list_for_each_entry(codec, &chip->bus->codec_list, list) {
  2347. snd_hda_power_down(codec);
  2348. }
  2349. #endif
  2350. }
  2351. static int __devinit azx_probe(struct pci_dev *pci,
  2352. const struct pci_device_id *pci_id)
  2353. {
  2354. static int dev;
  2355. struct snd_card *card;
  2356. struct azx *chip;
  2357. int err;
  2358. if (dev >= SNDRV_CARDS)
  2359. return -ENODEV;
  2360. if (!enable[dev]) {
  2361. dev++;
  2362. return -ENOENT;
  2363. }
  2364. err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
  2365. if (err < 0) {
  2366. snd_printk(KERN_ERR SFX "Error creating card!\n");
  2367. return err;
  2368. }
  2369. /* set this here since it's referred in snd_hda_load_patch() */
  2370. snd_card_set_dev(card, &pci->dev);
  2371. err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
  2372. if (err < 0)
  2373. goto out_free;
  2374. card->private_data = chip;
  2375. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  2376. chip->beep_mode = beep_mode[dev];
  2377. #endif
  2378. /* create codec instances */
  2379. err = azx_codec_create(chip, model[dev]);
  2380. if (err < 0)
  2381. goto out_free;
  2382. #ifdef CONFIG_SND_HDA_PATCH_LOADER
  2383. if (patch[dev] && *patch[dev]) {
  2384. snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
  2385. patch[dev]);
  2386. err = snd_hda_load_patch(chip->bus, patch[dev]);
  2387. if (err < 0)
  2388. goto out_free;
  2389. }
  2390. #endif
  2391. if ((probe_only[dev] & 1) == 0) {
  2392. err = azx_codec_configure(chip);
  2393. if (err < 0)
  2394. goto out_free;
  2395. }
  2396. /* create PCM streams */
  2397. err = snd_hda_build_pcms(chip->bus);
  2398. if (err < 0)
  2399. goto out_free;
  2400. /* create mixer controls */
  2401. err = azx_mixer_create(chip);
  2402. if (err < 0)
  2403. goto out_free;
  2404. err = snd_card_register(card);
  2405. if (err < 0)
  2406. goto out_free;
  2407. pci_set_drvdata(pci, card);
  2408. chip->running = 1;
  2409. power_down_all_codecs(chip);
  2410. azx_notifier_register(chip);
  2411. dev++;
  2412. return err;
  2413. out_free:
  2414. snd_card_free(card);
  2415. return err;
  2416. }
  2417. static void __devexit azx_remove(struct pci_dev *pci)
  2418. {
  2419. snd_card_free(pci_get_drvdata(pci));
  2420. pci_set_drvdata(pci, NULL);
  2421. }
  2422. /* PCI IDs */
  2423. static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
  2424. /* CPT */
  2425. { PCI_DEVICE(0x8086, 0x1c20), .driver_data = AZX_DRIVER_PCH },
  2426. /* PBG */
  2427. { PCI_DEVICE(0x8086, 0x1d20), .driver_data = AZX_DRIVER_PCH },
  2428. /* Panther Point */
  2429. { PCI_DEVICE(0x8086, 0x1e20), .driver_data = AZX_DRIVER_PCH },
  2430. /* SCH */
  2431. { PCI_DEVICE(0x8086, 0x811b), .driver_data = AZX_DRIVER_SCH },
  2432. /* Generic Intel */
  2433. { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
  2434. .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
  2435. .class_mask = 0xffffff,
  2436. .driver_data = AZX_DRIVER_ICH },
  2437. /* ATI SB 450/600 */
  2438. { PCI_DEVICE(0x1002, 0x437b), .driver_data = AZX_DRIVER_ATI },
  2439. { PCI_DEVICE(0x1002, 0x4383), .driver_data = AZX_DRIVER_ATI },
  2440. /* ATI HDMI */
  2441. { PCI_DEVICE(0x1002, 0x793b), .driver_data = AZX_DRIVER_ATIHDMI },
  2442. { PCI_DEVICE(0x1002, 0x7919), .driver_data = AZX_DRIVER_ATIHDMI },
  2443. { PCI_DEVICE(0x1002, 0x960f), .driver_data = AZX_DRIVER_ATIHDMI },
  2444. { PCI_DEVICE(0x1002, 0x970f), .driver_data = AZX_DRIVER_ATIHDMI },
  2445. { PCI_DEVICE(0x1002, 0xaa00), .driver_data = AZX_DRIVER_ATIHDMI },
  2446. { PCI_DEVICE(0x1002, 0xaa08), .driver_data = AZX_DRIVER_ATIHDMI },
  2447. { PCI_DEVICE(0x1002, 0xaa10), .driver_data = AZX_DRIVER_ATIHDMI },
  2448. { PCI_DEVICE(0x1002, 0xaa18), .driver_data = AZX_DRIVER_ATIHDMI },
  2449. { PCI_DEVICE(0x1002, 0xaa20), .driver_data = AZX_DRIVER_ATIHDMI },
  2450. { PCI_DEVICE(0x1002, 0xaa28), .driver_data = AZX_DRIVER_ATIHDMI },
  2451. { PCI_DEVICE(0x1002, 0xaa30), .driver_data = AZX_DRIVER_ATIHDMI },
  2452. { PCI_DEVICE(0x1002, 0xaa38), .driver_data = AZX_DRIVER_ATIHDMI },
  2453. { PCI_DEVICE(0x1002, 0xaa40), .driver_data = AZX_DRIVER_ATIHDMI },
  2454. { PCI_DEVICE(0x1002, 0xaa48), .driver_data = AZX_DRIVER_ATIHDMI },
  2455. /* VIA VT8251/VT8237A */
  2456. { PCI_DEVICE(0x1106, 0x3288), .driver_data = AZX_DRIVER_VIA },
  2457. /* SIS966 */
  2458. { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
  2459. /* ULI M5461 */
  2460. { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
  2461. /* NVIDIA MCP */
  2462. { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
  2463. .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
  2464. .class_mask = 0xffffff,
  2465. .driver_data = AZX_DRIVER_NVIDIA },
  2466. /* Teradici */
  2467. { PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
  2468. /* Creative X-Fi (CA0110-IBG) */
  2469. #if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
  2470. /* the following entry conflicts with snd-ctxfi driver,
  2471. * as ctxfi driver mutates from HD-audio to native mode with
  2472. * a special command sequence.
  2473. */
  2474. { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
  2475. .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
  2476. .class_mask = 0xffffff,
  2477. .driver_data = AZX_DRIVER_CTX },
  2478. #else
  2479. /* this entry seems still valid -- i.e. without emu20kx chip */
  2480. { PCI_DEVICE(0x1102, 0x0009), .driver_data = AZX_DRIVER_CTX },
  2481. #endif
  2482. /* Vortex86MX */
  2483. { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
  2484. /* VMware HDAudio */
  2485. { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
  2486. /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
  2487. { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
  2488. .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
  2489. .class_mask = 0xffffff,
  2490. .driver_data = AZX_DRIVER_GENERIC },
  2491. { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
  2492. .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
  2493. .class_mask = 0xffffff,
  2494. .driver_data = AZX_DRIVER_GENERIC },
  2495. { 0, }
  2496. };
  2497. MODULE_DEVICE_TABLE(pci, azx_ids);
  2498. /* pci_driver definition */
  2499. static struct pci_driver driver = {
  2500. .name = "HDA Intel",
  2501. .id_table = azx_ids,
  2502. .probe = azx_probe,
  2503. .remove = __devexit_p(azx_remove),
  2504. #ifdef CONFIG_PM
  2505. .suspend = azx_suspend,
  2506. .resume = azx_resume,
  2507. #endif
  2508. };
  2509. static int __init alsa_card_azx_init(void)
  2510. {
  2511. return pci_register_driver(&driver);
  2512. }
  2513. static void __exit alsa_card_azx_exit(void)
  2514. {
  2515. pci_unregister_driver(&driver);
  2516. }
  2517. module_init(alsa_card_azx_init)
  2518. module_exit(alsa_card_azx_exit)