via82xx.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  1. /*
  2. * ALSA driver for VIA VT82xx (South Bridge)
  3. *
  4. * VT82C686A/B/C, VT8233A/C, VT8235
  5. *
  6. * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
  7. * Tjeerd.Mulder <Tjeerd.Mulder@fujitsu-siemens.com>
  8. * 2002 Takashi Iwai <tiwai@suse.de>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. */
  25. /*
  26. * Changes:
  27. *
  28. * Dec. 19, 2002 Takashi Iwai <tiwai@suse.de>
  29. * - use the DSX channels for the first pcm playback.
  30. * (on VIA8233, 8233C and 8235 only)
  31. * this will allow you play simultaneously up to 4 streams.
  32. * multi-channel playback is assigned to the second device
  33. * on these chips.
  34. * - support the secondary capture (on VIA8233/C,8235)
  35. * - SPDIF support
  36. * the DSX3 channel can be used for SPDIF output.
  37. * on VIA8233A, this channel is assigned to the second pcm
  38. * playback.
  39. * the card config of alsa-lib will assign the correct
  40. * device for applications.
  41. * - clean up the code, separate low-level initialization
  42. * routines for each chipset.
  43. *
  44. * Sep. 26, 2005 Karsten Wiese <annabellesgarden@yahoo.de>
  45. * - Optimize position calculation for the 823x chips.
  46. */
  47. #include <asm/io.h>
  48. #include <linux/delay.h>
  49. #include <linux/interrupt.h>
  50. #include <linux/init.h>
  51. #include <linux/pci.h>
  52. #include <linux/slab.h>
  53. #include <linux/gameport.h>
  54. #include <linux/moduleparam.h>
  55. #include <sound/core.h>
  56. #include <sound/pcm.h>
  57. #include <sound/pcm_params.h>
  58. #include <sound/info.h>
  59. #include <sound/tlv.h>
  60. #include <sound/ac97_codec.h>
  61. #include <sound/mpu401.h>
  62. #include <sound/initval.h>
  63. #if 0
  64. #define POINTER_DEBUG
  65. #endif
  66. MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
  67. MODULE_DESCRIPTION("VIA VT82xx audio");
  68. MODULE_LICENSE("GPL");
  69. MODULE_SUPPORTED_DEVICE("{{VIA,VT82C686A/B/C,pci},{VIA,VT8233A/C,8235}}");
  70. #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
  71. #define SUPPORT_JOYSTICK 1
  72. #endif
  73. static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
  74. static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
  75. static long mpu_port;
  76. #ifdef SUPPORT_JOYSTICK
  77. static int joystick;
  78. #endif
  79. static int ac97_clock = 48000;
  80. static char *ac97_quirk;
  81. static int dxs_support;
  82. module_param(index, int, 0444);
  83. MODULE_PARM_DESC(index, "Index value for VIA 82xx bridge.");
  84. module_param(id, charp, 0444);
  85. MODULE_PARM_DESC(id, "ID string for VIA 82xx bridge.");
  86. module_param(mpu_port, long, 0444);
  87. MODULE_PARM_DESC(mpu_port, "MPU-401 port. (VT82C686x only)");
  88. #ifdef SUPPORT_JOYSTICK
  89. module_param(joystick, bool, 0444);
  90. MODULE_PARM_DESC(joystick, "Enable joystick. (VT82C686x only)");
  91. #endif
  92. module_param(ac97_clock, int, 0444);
  93. MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (default 48000Hz).");
  94. module_param(ac97_quirk, charp, 0444);
  95. MODULE_PARM_DESC(ac97_quirk, "AC'97 workaround for strange hardware.");
  96. module_param(dxs_support, int, 0444);
  97. MODULE_PARM_DESC(dxs_support, "Support for DXS channels (0 = auto, 1 = enable, 2 = disable, 3 = 48k only, 4 = no VRA, 5 = enable any sample rate)");
  98. /* just for backward compatibility */
  99. static int enable;
  100. module_param(enable, bool, 0444);
  101. /* revision numbers for via686 */
  102. #define VIA_REV_686_A 0x10
  103. #define VIA_REV_686_B 0x11
  104. #define VIA_REV_686_C 0x12
  105. #define VIA_REV_686_D 0x13
  106. #define VIA_REV_686_E 0x14
  107. #define VIA_REV_686_H 0x20
  108. /* revision numbers for via8233 */
  109. #define VIA_REV_PRE_8233 0x10 /* not in market */
  110. #define VIA_REV_8233C 0x20 /* 2 rec, 4 pb, 1 multi-pb */
  111. #define VIA_REV_8233 0x30 /* 2 rec, 4 pb, 1 multi-pb, spdif */
  112. #define VIA_REV_8233A 0x40 /* 1 rec, 1 multi-pb, spdf */
  113. #define VIA_REV_8235 0x50 /* 2 rec, 4 pb, 1 multi-pb, spdif */
  114. #define VIA_REV_8237 0x60
  115. #define VIA_REV_8251 0x70
  116. /*
  117. * Direct registers
  118. */
  119. #define VIAREG(via, x) ((via)->port + VIA_REG_##x)
  120. #define VIADEV_REG(viadev, x) ((viadev)->port + VIA_REG_##x)
  121. /* common offsets */
  122. #define VIA_REG_OFFSET_STATUS 0x00 /* byte - channel status */
  123. #define VIA_REG_STAT_ACTIVE 0x80 /* RO */
  124. #define VIA8233_SHADOW_STAT_ACTIVE 0x08 /* RO */
  125. #define VIA_REG_STAT_PAUSED 0x40 /* RO */
  126. #define VIA_REG_STAT_TRIGGER_QUEUED 0x08 /* RO */
  127. #define VIA_REG_STAT_STOPPED 0x04 /* RWC */
  128. #define VIA_REG_STAT_EOL 0x02 /* RWC */
  129. #define VIA_REG_STAT_FLAG 0x01 /* RWC */
  130. #define VIA_REG_OFFSET_CONTROL 0x01 /* byte - channel control */
  131. #define VIA_REG_CTRL_START 0x80 /* WO */
  132. #define VIA_REG_CTRL_TERMINATE 0x40 /* WO */
  133. #define VIA_REG_CTRL_AUTOSTART 0x20
  134. #define VIA_REG_CTRL_PAUSE 0x08 /* RW */
  135. #define VIA_REG_CTRL_INT_STOP 0x04
  136. #define VIA_REG_CTRL_INT_EOL 0x02
  137. #define VIA_REG_CTRL_INT_FLAG 0x01
  138. #define VIA_REG_CTRL_RESET 0x01 /* RW - probably reset? undocumented */
  139. #define VIA_REG_CTRL_INT (VIA_REG_CTRL_INT_FLAG | VIA_REG_CTRL_INT_EOL | VIA_REG_CTRL_AUTOSTART)
  140. #define VIA_REG_OFFSET_TYPE 0x02 /* byte - channel type (686 only) */
  141. #define VIA_REG_TYPE_AUTOSTART 0x80 /* RW - autostart at EOL */
  142. #define VIA_REG_TYPE_16BIT 0x20 /* RW */
  143. #define VIA_REG_TYPE_STEREO 0x10 /* RW */
  144. #define VIA_REG_TYPE_INT_LLINE 0x00
  145. #define VIA_REG_TYPE_INT_LSAMPLE 0x04
  146. #define VIA_REG_TYPE_INT_LESSONE 0x08
  147. #define VIA_REG_TYPE_INT_MASK 0x0c
  148. #define VIA_REG_TYPE_INT_EOL 0x02
  149. #define VIA_REG_TYPE_INT_FLAG 0x01
  150. #define VIA_REG_OFFSET_TABLE_PTR 0x04 /* dword - channel table pointer */
  151. #define VIA_REG_OFFSET_CURR_PTR 0x04 /* dword - channel current pointer */
  152. #define VIA_REG_OFFSET_STOP_IDX 0x08 /* dword - stop index, channel type, sample rate */
  153. #define VIA8233_REG_TYPE_16BIT 0x00200000 /* RW */
  154. #define VIA8233_REG_TYPE_STEREO 0x00100000 /* RW */
  155. #define VIA_REG_OFFSET_CURR_COUNT 0x0c /* dword - channel current count (24 bit) */
  156. #define VIA_REG_OFFSET_CURR_INDEX 0x0f /* byte - channel current index (for via8233 only) */
  157. #define DEFINE_VIA_REGSET(name,val) \
  158. enum {\
  159. VIA_REG_##name##_STATUS = (val),\
  160. VIA_REG_##name##_CONTROL = (val) + 0x01,\
  161. VIA_REG_##name##_TYPE = (val) + 0x02,\
  162. VIA_REG_##name##_TABLE_PTR = (val) + 0x04,\
  163. VIA_REG_##name##_CURR_PTR = (val) + 0x04,\
  164. VIA_REG_##name##_STOP_IDX = (val) + 0x08,\
  165. VIA_REG_##name##_CURR_COUNT = (val) + 0x0c,\
  166. }
  167. /* playback block */
  168. DEFINE_VIA_REGSET(PLAYBACK, 0x00);
  169. DEFINE_VIA_REGSET(CAPTURE, 0x10);
  170. DEFINE_VIA_REGSET(FM, 0x20);
  171. /* AC'97 */
  172. #define VIA_REG_AC97 0x80 /* dword */
  173. #define VIA_REG_AC97_CODEC_ID_MASK (3<<30)
  174. #define VIA_REG_AC97_CODEC_ID_SHIFT 30
  175. #define VIA_REG_AC97_CODEC_ID_PRIMARY 0x00
  176. #define VIA_REG_AC97_CODEC_ID_SECONDARY 0x01
  177. #define VIA_REG_AC97_SECONDARY_VALID (1<<27)
  178. #define VIA_REG_AC97_PRIMARY_VALID (1<<25)
  179. #define VIA_REG_AC97_BUSY (1<<24)
  180. #define VIA_REG_AC97_READ (1<<23)
  181. #define VIA_REG_AC97_CMD_SHIFT 16
  182. #define VIA_REG_AC97_CMD_MASK 0x7e
  183. #define VIA_REG_AC97_DATA_SHIFT 0
  184. #define VIA_REG_AC97_DATA_MASK 0xffff
  185. #define VIA_REG_SGD_SHADOW 0x84 /* dword */
  186. /* via686 */
  187. #define VIA_REG_SGD_STAT_PB_FLAG (1<<0)
  188. #define VIA_REG_SGD_STAT_CP_FLAG (1<<1)
  189. #define VIA_REG_SGD_STAT_FM_FLAG (1<<2)
  190. #define VIA_REG_SGD_STAT_PB_EOL (1<<4)
  191. #define VIA_REG_SGD_STAT_CP_EOL (1<<5)
  192. #define VIA_REG_SGD_STAT_FM_EOL (1<<6)
  193. #define VIA_REG_SGD_STAT_PB_STOP (1<<8)
  194. #define VIA_REG_SGD_STAT_CP_STOP (1<<9)
  195. #define VIA_REG_SGD_STAT_FM_STOP (1<<10)
  196. #define VIA_REG_SGD_STAT_PB_ACTIVE (1<<12)
  197. #define VIA_REG_SGD_STAT_CP_ACTIVE (1<<13)
  198. #define VIA_REG_SGD_STAT_FM_ACTIVE (1<<14)
  199. /* via8233 */
  200. #define VIA8233_REG_SGD_STAT_FLAG (1<<0)
  201. #define VIA8233_REG_SGD_STAT_EOL (1<<1)
  202. #define VIA8233_REG_SGD_STAT_STOP (1<<2)
  203. #define VIA8233_REG_SGD_STAT_ACTIVE (1<<3)
  204. #define VIA8233_INTR_MASK(chan) ((VIA8233_REG_SGD_STAT_FLAG|VIA8233_REG_SGD_STAT_EOL) << ((chan) * 4))
  205. #define VIA8233_REG_SGD_CHAN_SDX 0
  206. #define VIA8233_REG_SGD_CHAN_MULTI 4
  207. #define VIA8233_REG_SGD_CHAN_REC 6
  208. #define VIA8233_REG_SGD_CHAN_REC1 7
  209. #define VIA_REG_GPI_STATUS 0x88
  210. #define VIA_REG_GPI_INTR 0x8c
  211. /* multi-channel and capture registers for via8233 */
  212. DEFINE_VIA_REGSET(MULTPLAY, 0x40);
  213. DEFINE_VIA_REGSET(CAPTURE_8233, 0x60);
  214. /* via8233-specific registers */
  215. #define VIA_REG_OFS_PLAYBACK_VOLUME_L 0x02 /* byte */
  216. #define VIA_REG_OFS_PLAYBACK_VOLUME_R 0x03 /* byte */
  217. #define VIA_REG_OFS_MULTPLAY_FORMAT 0x02 /* byte - format and channels */
  218. #define VIA_REG_MULTPLAY_FMT_8BIT 0x00
  219. #define VIA_REG_MULTPLAY_FMT_16BIT 0x80
  220. #define VIA_REG_MULTPLAY_FMT_CH_MASK 0x70 /* # channels << 4 (valid = 1,2,4,6) */
  221. #define VIA_REG_OFS_CAPTURE_FIFO 0x02 /* byte - bit 6 = fifo enable */
  222. #define VIA_REG_CAPTURE_FIFO_ENABLE 0x40
  223. #define VIA_DXS_MAX_VOLUME 31 /* max. volume (attenuation) of reg 0x32/33 */
  224. #define VIA_REG_CAPTURE_CHANNEL 0x63 /* byte - input select */
  225. #define VIA_REG_CAPTURE_CHANNEL_MIC 0x4
  226. #define VIA_REG_CAPTURE_CHANNEL_LINE 0
  227. #define VIA_REG_CAPTURE_SELECT_CODEC 0x03 /* recording source codec (0 = primary) */
  228. #define VIA_TBL_BIT_FLAG 0x40000000
  229. #define VIA_TBL_BIT_EOL 0x80000000
  230. /* pci space */
  231. #define VIA_ACLINK_STAT 0x40
  232. #define VIA_ACLINK_C11_READY 0x20
  233. #define VIA_ACLINK_C10_READY 0x10
  234. #define VIA_ACLINK_C01_READY 0x04 /* secondary codec ready */
  235. #define VIA_ACLINK_LOWPOWER 0x02 /* low-power state */
  236. #define VIA_ACLINK_C00_READY 0x01 /* primary codec ready */
  237. #define VIA_ACLINK_CTRL 0x41
  238. #define VIA_ACLINK_CTRL_ENABLE 0x80 /* 0: disable, 1: enable */
  239. #define VIA_ACLINK_CTRL_RESET 0x40 /* 0: assert, 1: de-assert */
  240. #define VIA_ACLINK_CTRL_SYNC 0x20 /* 0: release SYNC, 1: force SYNC hi */
  241. #define VIA_ACLINK_CTRL_SDO 0x10 /* 0: release SDO, 1: force SDO hi */
  242. #define VIA_ACLINK_CTRL_VRA 0x08 /* 0: disable VRA, 1: enable VRA */
  243. #define VIA_ACLINK_CTRL_PCM 0x04 /* 0: disable PCM, 1: enable PCM */
  244. #define VIA_ACLINK_CTRL_FM 0x02 /* via686 only */
  245. #define VIA_ACLINK_CTRL_SB 0x01 /* via686 only */
  246. #define VIA_ACLINK_CTRL_INIT (VIA_ACLINK_CTRL_ENABLE|\
  247. VIA_ACLINK_CTRL_RESET|\
  248. VIA_ACLINK_CTRL_PCM|\
  249. VIA_ACLINK_CTRL_VRA)
  250. #define VIA_FUNC_ENABLE 0x42
  251. #define VIA_FUNC_MIDI_PNP 0x80 /* FIXME: it's 0x40 in the datasheet! */
  252. #define VIA_FUNC_MIDI_IRQMASK 0x40 /* FIXME: not documented! */
  253. #define VIA_FUNC_RX2C_WRITE 0x20
  254. #define VIA_FUNC_SB_FIFO_EMPTY 0x10
  255. #define VIA_FUNC_ENABLE_GAME 0x08
  256. #define VIA_FUNC_ENABLE_FM 0x04
  257. #define VIA_FUNC_ENABLE_MIDI 0x02
  258. #define VIA_FUNC_ENABLE_SB 0x01
  259. #define VIA_PNP_CONTROL 0x43
  260. #define VIA_FM_NMI_CTRL 0x48
  261. #define VIA8233_VOLCHG_CTRL 0x48
  262. #define VIA8233_SPDIF_CTRL 0x49
  263. #define VIA8233_SPDIF_DX3 0x08
  264. #define VIA8233_SPDIF_SLOT_MASK 0x03
  265. #define VIA8233_SPDIF_SLOT_1011 0x00
  266. #define VIA8233_SPDIF_SLOT_34 0x01
  267. #define VIA8233_SPDIF_SLOT_78 0x02
  268. #define VIA8233_SPDIF_SLOT_69 0x03
  269. /*
  270. */
  271. #define VIA_DXS_AUTO 0
  272. #define VIA_DXS_ENABLE 1
  273. #define VIA_DXS_DISABLE 2
  274. #define VIA_DXS_48K 3
  275. #define VIA_DXS_NO_VRA 4
  276. #define VIA_DXS_SRC 5
  277. /*
  278. * pcm stream
  279. */
  280. struct snd_via_sg_table {
  281. unsigned int offset;
  282. unsigned int size;
  283. } ;
  284. #define VIA_TABLE_SIZE 255
  285. struct viadev {
  286. unsigned int reg_offset;
  287. unsigned long port;
  288. int direction; /* playback = 0, capture = 1 */
  289. struct snd_pcm_substream *substream;
  290. int running;
  291. unsigned int tbl_entries; /* # descriptors */
  292. struct snd_dma_buffer table;
  293. struct snd_via_sg_table *idx_table;
  294. /* for recovery from the unexpected pointer */
  295. unsigned int lastpos;
  296. unsigned int fragsize;
  297. unsigned int bufsize;
  298. unsigned int bufsize2;
  299. int hwptr_done; /* processed frame position in the buffer */
  300. int in_interrupt;
  301. int shadow_shift;
  302. };
  303. enum { TYPE_CARD_VIA686 = 1, TYPE_CARD_VIA8233 };
  304. enum { TYPE_VIA686, TYPE_VIA8233, TYPE_VIA8233A };
  305. #define VIA_MAX_DEVS 7 /* 4 playback, 1 multi, 2 capture */
  306. struct via_rate_lock {
  307. spinlock_t lock;
  308. int rate;
  309. int used;
  310. };
  311. struct via82xx {
  312. int irq;
  313. unsigned long port;
  314. struct resource *mpu_res;
  315. int chip_type;
  316. unsigned char revision;
  317. unsigned char old_legacy;
  318. unsigned char old_legacy_cfg;
  319. #ifdef CONFIG_PM
  320. unsigned char legacy_saved;
  321. unsigned char legacy_cfg_saved;
  322. unsigned char spdif_ctrl_saved;
  323. unsigned char capture_src_saved[2];
  324. unsigned int mpu_port_saved;
  325. #endif
  326. unsigned char playback_volume[4][2]; /* for VIA8233/C/8235; default = 0 */
  327. unsigned char playback_volume_c[2]; /* for VIA8233/C/8235; default = 0 */
  328. unsigned int intr_mask; /* SGD_SHADOW mask to check interrupts */
  329. struct pci_dev *pci;
  330. struct snd_card *card;
  331. unsigned int num_devs;
  332. unsigned int playback_devno, multi_devno, capture_devno;
  333. struct viadev devs[VIA_MAX_DEVS];
  334. struct via_rate_lock rates[2]; /* playback and capture */
  335. unsigned int dxs_fixed: 1; /* DXS channel accepts only 48kHz */
  336. unsigned int no_vra: 1; /* no need to set VRA on DXS channels */
  337. unsigned int dxs_src: 1; /* use full SRC capabilities of DXS */
  338. unsigned int spdif_on: 1; /* only spdif rates work to external DACs */
  339. struct snd_pcm *pcms[2];
  340. struct snd_rawmidi *rmidi;
  341. struct snd_ac97_bus *ac97_bus;
  342. struct snd_ac97 *ac97;
  343. unsigned int ac97_clock;
  344. unsigned int ac97_secondary; /* secondary AC'97 codec is present */
  345. spinlock_t reg_lock;
  346. struct snd_info_entry *proc_entry;
  347. #ifdef SUPPORT_JOYSTICK
  348. struct gameport *gameport;
  349. #endif
  350. };
  351. static struct pci_device_id snd_via82xx_ids[] = {
  352. /* 0x1106, 0x3058 */
  353. { PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA686, }, /* 686A */
  354. /* 0x1106, 0x3059 */
  355. { PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA8233, }, /* VT8233 */
  356. { 0, }
  357. };
  358. MODULE_DEVICE_TABLE(pci, snd_via82xx_ids);
  359. /*
  360. */
  361. /*
  362. * allocate and initialize the descriptor buffers
  363. * periods = number of periods
  364. * fragsize = period size in bytes
  365. */
  366. static int build_via_table(struct viadev *dev, struct snd_pcm_substream *substream,
  367. struct pci_dev *pci,
  368. unsigned int periods, unsigned int fragsize)
  369. {
  370. unsigned int i, idx, ofs, rest;
  371. struct via82xx *chip = snd_pcm_substream_chip(substream);
  372. struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
  373. if (dev->table.area == NULL) {
  374. /* the start of each lists must be aligned to 8 bytes,
  375. * but the kernel pages are much bigger, so we don't care
  376. */
  377. if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
  378. PAGE_ALIGN(VIA_TABLE_SIZE * 2 * 8),
  379. &dev->table) < 0)
  380. return -ENOMEM;
  381. }
  382. if (! dev->idx_table) {
  383. dev->idx_table = kmalloc(sizeof(*dev->idx_table) * VIA_TABLE_SIZE, GFP_KERNEL);
  384. if (! dev->idx_table)
  385. return -ENOMEM;
  386. }
  387. /* fill the entries */
  388. idx = 0;
  389. ofs = 0;
  390. for (i = 0; i < periods; i++) {
  391. rest = fragsize;
  392. /* fill descriptors for a period.
  393. * a period can be split to several descriptors if it's
  394. * over page boundary.
  395. */
  396. do {
  397. unsigned int r;
  398. unsigned int flag;
  399. if (idx >= VIA_TABLE_SIZE) {
  400. snd_printk(KERN_ERR "via82xx: too much table size!\n");
  401. return -EINVAL;
  402. }
  403. ((u32 *)dev->table.area)[idx << 1] = cpu_to_le32((u32)snd_pcm_sgbuf_get_addr(sgbuf, ofs));
  404. r = PAGE_SIZE - (ofs % PAGE_SIZE);
  405. if (rest < r)
  406. r = rest;
  407. rest -= r;
  408. if (! rest) {
  409. if (i == periods - 1)
  410. flag = VIA_TBL_BIT_EOL; /* buffer boundary */
  411. else
  412. flag = VIA_TBL_BIT_FLAG; /* period boundary */
  413. } else
  414. flag = 0; /* period continues to the next */
  415. // printk("via: tbl %d: at %d size %d (rest %d)\n", idx, ofs, r, rest);
  416. ((u32 *)dev->table.area)[(idx<<1) + 1] = cpu_to_le32(r | flag);
  417. dev->idx_table[idx].offset = ofs;
  418. dev->idx_table[idx].size = r;
  419. ofs += r;
  420. idx++;
  421. } while (rest > 0);
  422. }
  423. dev->tbl_entries = idx;
  424. dev->bufsize = periods * fragsize;
  425. dev->bufsize2 = dev->bufsize / 2;
  426. dev->fragsize = fragsize;
  427. return 0;
  428. }
  429. static int clean_via_table(struct viadev *dev, struct snd_pcm_substream *substream,
  430. struct pci_dev *pci)
  431. {
  432. if (dev->table.area) {
  433. snd_dma_free_pages(&dev->table);
  434. dev->table.area = NULL;
  435. }
  436. kfree(dev->idx_table);
  437. dev->idx_table = NULL;
  438. return 0;
  439. }
  440. /*
  441. * Basic I/O
  442. */
  443. static inline unsigned int snd_via82xx_codec_xread(struct via82xx *chip)
  444. {
  445. return inl(VIAREG(chip, AC97));
  446. }
  447. static inline void snd_via82xx_codec_xwrite(struct via82xx *chip, unsigned int val)
  448. {
  449. outl(val, VIAREG(chip, AC97));
  450. }
  451. static int snd_via82xx_codec_ready(struct via82xx *chip, int secondary)
  452. {
  453. unsigned int timeout = 1000; /* 1ms */
  454. unsigned int val;
  455. while (timeout-- > 0) {
  456. udelay(1);
  457. if (!((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY))
  458. return val & 0xffff;
  459. }
  460. snd_printk(KERN_ERR "codec_ready: codec %i is not ready [0x%x]\n",
  461. secondary, snd_via82xx_codec_xread(chip));
  462. return -EIO;
  463. }
  464. static int snd_via82xx_codec_valid(struct via82xx *chip, int secondary)
  465. {
  466. unsigned int timeout = 1000; /* 1ms */
  467. unsigned int val, val1;
  468. unsigned int stat = !secondary ? VIA_REG_AC97_PRIMARY_VALID :
  469. VIA_REG_AC97_SECONDARY_VALID;
  470. while (timeout-- > 0) {
  471. val = snd_via82xx_codec_xread(chip);
  472. val1 = val & (VIA_REG_AC97_BUSY | stat);
  473. if (val1 == stat)
  474. return val & 0xffff;
  475. udelay(1);
  476. }
  477. return -EIO;
  478. }
  479. static void snd_via82xx_codec_wait(struct snd_ac97 *ac97)
  480. {
  481. struct via82xx *chip = ac97->private_data;
  482. int err;
  483. err = snd_via82xx_codec_ready(chip, ac97->num);
  484. /* here we need to wait fairly for long time.. */
  485. msleep(500);
  486. }
  487. static void snd_via82xx_codec_write(struct snd_ac97 *ac97,
  488. unsigned short reg,
  489. unsigned short val)
  490. {
  491. struct via82xx *chip = ac97->private_data;
  492. unsigned int xval;
  493. xval = !ac97->num ? VIA_REG_AC97_CODEC_ID_PRIMARY : VIA_REG_AC97_CODEC_ID_SECONDARY;
  494. xval <<= VIA_REG_AC97_CODEC_ID_SHIFT;
  495. xval |= reg << VIA_REG_AC97_CMD_SHIFT;
  496. xval |= val << VIA_REG_AC97_DATA_SHIFT;
  497. snd_via82xx_codec_xwrite(chip, xval);
  498. snd_via82xx_codec_ready(chip, ac97->num);
  499. }
  500. static unsigned short snd_via82xx_codec_read(struct snd_ac97 *ac97, unsigned short reg)
  501. {
  502. struct via82xx *chip = ac97->private_data;
  503. unsigned int xval, val = 0xffff;
  504. int again = 0;
  505. xval = ac97->num << VIA_REG_AC97_CODEC_ID_SHIFT;
  506. xval |= ac97->num ? VIA_REG_AC97_SECONDARY_VALID : VIA_REG_AC97_PRIMARY_VALID;
  507. xval |= VIA_REG_AC97_READ;
  508. xval |= (reg & 0x7f) << VIA_REG_AC97_CMD_SHIFT;
  509. while (1) {
  510. if (again++ > 3) {
  511. snd_printk(KERN_ERR "codec_read: codec %i is not valid [0x%x]\n",
  512. ac97->num, snd_via82xx_codec_xread(chip));
  513. return 0xffff;
  514. }
  515. snd_via82xx_codec_xwrite(chip, xval);
  516. udelay (20);
  517. if (snd_via82xx_codec_valid(chip, ac97->num) >= 0) {
  518. udelay(25);
  519. val = snd_via82xx_codec_xread(chip);
  520. break;
  521. }
  522. }
  523. return val & 0xffff;
  524. }
  525. static void snd_via82xx_channel_reset(struct via82xx *chip, struct viadev *viadev)
  526. {
  527. outb(VIA_REG_CTRL_PAUSE | VIA_REG_CTRL_TERMINATE | VIA_REG_CTRL_RESET,
  528. VIADEV_REG(viadev, OFFSET_CONTROL));
  529. inb(VIADEV_REG(viadev, OFFSET_CONTROL));
  530. udelay(50);
  531. /* disable interrupts */
  532. outb(0x00, VIADEV_REG(viadev, OFFSET_CONTROL));
  533. /* clear interrupts */
  534. outb(0x03, VIADEV_REG(viadev, OFFSET_STATUS));
  535. outb(0x00, VIADEV_REG(viadev, OFFSET_TYPE)); /* for via686 */
  536. // outl(0, VIADEV_REG(viadev, OFFSET_CURR_PTR));
  537. viadev->lastpos = 0;
  538. viadev->hwptr_done = 0;
  539. }
  540. /*
  541. * Interrupt handler
  542. * Used for 686 and 8233A
  543. */
  544. static irqreturn_t snd_via686_interrupt(int irq, void *dev_id)
  545. {
  546. struct via82xx *chip = dev_id;
  547. unsigned int status;
  548. unsigned int i;
  549. status = inl(VIAREG(chip, SGD_SHADOW));
  550. if (! (status & chip->intr_mask)) {
  551. if (chip->rmidi)
  552. /* check mpu401 interrupt */
  553. return snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
  554. return IRQ_NONE;
  555. }
  556. /* check status for each stream */
  557. spin_lock(&chip->reg_lock);
  558. for (i = 0; i < chip->num_devs; i++) {
  559. struct viadev *viadev = &chip->devs[i];
  560. unsigned char c_status = inb(VIADEV_REG(viadev, OFFSET_STATUS));
  561. if (! (c_status & (VIA_REG_STAT_EOL|VIA_REG_STAT_FLAG|VIA_REG_STAT_STOPPED)))
  562. continue;
  563. if (viadev->substream && viadev->running) {
  564. /*
  565. * Update hwptr_done based on 'period elapsed'
  566. * interrupts. We'll use it, when the chip returns 0
  567. * for OFFSET_CURR_COUNT.
  568. */
  569. if (c_status & VIA_REG_STAT_EOL)
  570. viadev->hwptr_done = 0;
  571. else
  572. viadev->hwptr_done += viadev->fragsize;
  573. viadev->in_interrupt = c_status;
  574. spin_unlock(&chip->reg_lock);
  575. snd_pcm_period_elapsed(viadev->substream);
  576. spin_lock(&chip->reg_lock);
  577. viadev->in_interrupt = 0;
  578. }
  579. outb(c_status, VIADEV_REG(viadev, OFFSET_STATUS)); /* ack */
  580. }
  581. spin_unlock(&chip->reg_lock);
  582. return IRQ_HANDLED;
  583. }
  584. /*
  585. * Interrupt handler
  586. */
  587. static irqreturn_t snd_via8233_interrupt(int irq, void *dev_id)
  588. {
  589. struct via82xx *chip = dev_id;
  590. unsigned int status;
  591. unsigned int i;
  592. int irqreturn = 0;
  593. /* check status for each stream */
  594. spin_lock(&chip->reg_lock);
  595. status = inl(VIAREG(chip, SGD_SHADOW));
  596. for (i = 0; i < chip->num_devs; i++) {
  597. struct viadev *viadev = &chip->devs[i];
  598. struct snd_pcm_substream *substream;
  599. unsigned char c_status, shadow_status;
  600. shadow_status = (status >> viadev->shadow_shift) &
  601. (VIA8233_SHADOW_STAT_ACTIVE|VIA_REG_STAT_EOL|
  602. VIA_REG_STAT_FLAG);
  603. c_status = shadow_status & (VIA_REG_STAT_EOL|VIA_REG_STAT_FLAG);
  604. if (!c_status)
  605. continue;
  606. substream = viadev->substream;
  607. if (substream && viadev->running) {
  608. /*
  609. * Update hwptr_done based on 'period elapsed'
  610. * interrupts. We'll use it, when the chip returns 0
  611. * for OFFSET_CURR_COUNT.
  612. */
  613. if (c_status & VIA_REG_STAT_EOL)
  614. viadev->hwptr_done = 0;
  615. else
  616. viadev->hwptr_done += viadev->fragsize;
  617. viadev->in_interrupt = c_status;
  618. if (shadow_status & VIA8233_SHADOW_STAT_ACTIVE)
  619. viadev->in_interrupt |= VIA_REG_STAT_ACTIVE;
  620. spin_unlock(&chip->reg_lock);
  621. snd_pcm_period_elapsed(substream);
  622. spin_lock(&chip->reg_lock);
  623. viadev->in_interrupt = 0;
  624. }
  625. outb(c_status, VIADEV_REG(viadev, OFFSET_STATUS)); /* ack */
  626. irqreturn = 1;
  627. }
  628. spin_unlock(&chip->reg_lock);
  629. return IRQ_RETVAL(irqreturn);
  630. }
  631. /*
  632. * PCM callbacks
  633. */
  634. /*
  635. * trigger callback
  636. */
  637. static int snd_via82xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  638. {
  639. struct via82xx *chip = snd_pcm_substream_chip(substream);
  640. struct viadev *viadev = substream->runtime->private_data;
  641. unsigned char val;
  642. if (chip->chip_type != TYPE_VIA686)
  643. val = VIA_REG_CTRL_INT;
  644. else
  645. val = 0;
  646. switch (cmd) {
  647. case SNDRV_PCM_TRIGGER_START:
  648. case SNDRV_PCM_TRIGGER_RESUME:
  649. val |= VIA_REG_CTRL_START;
  650. viadev->running = 1;
  651. break;
  652. case SNDRV_PCM_TRIGGER_STOP:
  653. case SNDRV_PCM_TRIGGER_SUSPEND:
  654. val = VIA_REG_CTRL_TERMINATE;
  655. viadev->running = 0;
  656. break;
  657. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  658. val |= VIA_REG_CTRL_PAUSE;
  659. viadev->running = 0;
  660. break;
  661. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  662. viadev->running = 1;
  663. break;
  664. default:
  665. return -EINVAL;
  666. }
  667. outb(val, VIADEV_REG(viadev, OFFSET_CONTROL));
  668. if (cmd == SNDRV_PCM_TRIGGER_STOP)
  669. snd_via82xx_channel_reset(chip, viadev);
  670. return 0;
  671. }
  672. /*
  673. * pointer callbacks
  674. */
  675. /*
  676. * calculate the linear position at the given sg-buffer index and the rest count
  677. */
  678. #define check_invalid_pos(viadev,pos) \
  679. ((pos) < viadev->lastpos && ((pos) >= viadev->bufsize2 ||\
  680. viadev->lastpos < viadev->bufsize2))
  681. static inline unsigned int calc_linear_pos(struct viadev *viadev, unsigned int idx,
  682. unsigned int count)
  683. {
  684. unsigned int size, base, res;
  685. size = viadev->idx_table[idx].size;
  686. base = viadev->idx_table[idx].offset;
  687. res = base + size - count;
  688. if (res >= viadev->bufsize)
  689. res -= viadev->bufsize;
  690. /* check the validity of the calculated position */
  691. if (size < count) {
  692. snd_printd(KERN_ERR "invalid via82xx_cur_ptr (size = %d, count = %d)\n",
  693. (int)size, (int)count);
  694. res = viadev->lastpos;
  695. } else {
  696. if (! count) {
  697. /* Some mobos report count = 0 on the DMA boundary,
  698. * i.e. count = size indeed.
  699. * Let's check whether this step is above the expected size.
  700. */
  701. int delta = res - viadev->lastpos;
  702. if (delta < 0)
  703. delta += viadev->bufsize;
  704. if ((unsigned int)delta > viadev->fragsize)
  705. res = base;
  706. }
  707. if (check_invalid_pos(viadev, res)) {
  708. #ifdef POINTER_DEBUG
  709. printk(KERN_DEBUG "fail: idx = %i/%i, lastpos = 0x%x, "
  710. "bufsize2 = 0x%x, offsize = 0x%x, size = 0x%x, "
  711. "count = 0x%x\n", idx, viadev->tbl_entries,
  712. viadev->lastpos, viadev->bufsize2,
  713. viadev->idx_table[idx].offset,
  714. viadev->idx_table[idx].size, count);
  715. #endif
  716. /* count register returns full size when end of buffer is reached */
  717. res = base + size;
  718. if (check_invalid_pos(viadev, res)) {
  719. snd_printd(KERN_ERR "invalid via82xx_cur_ptr (2), "
  720. "using last valid pointer\n");
  721. res = viadev->lastpos;
  722. }
  723. }
  724. }
  725. return res;
  726. }
  727. /*
  728. * get the current pointer on via686
  729. */
  730. static snd_pcm_uframes_t snd_via686_pcm_pointer(struct snd_pcm_substream *substream)
  731. {
  732. struct via82xx *chip = snd_pcm_substream_chip(substream);
  733. struct viadev *viadev = substream->runtime->private_data;
  734. unsigned int idx, ptr, count, res;
  735. if (snd_BUG_ON(!viadev->tbl_entries))
  736. return 0;
  737. if (!(inb(VIADEV_REG(viadev, OFFSET_STATUS)) & VIA_REG_STAT_ACTIVE))
  738. return 0;
  739. spin_lock(&chip->reg_lock);
  740. count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT)) & 0xffffff;
  741. /* The via686a does not have the current index register,
  742. * so we need to calculate the index from CURR_PTR.
  743. */
  744. ptr = inl(VIADEV_REG(viadev, OFFSET_CURR_PTR));
  745. if (ptr <= (unsigned int)viadev->table.addr)
  746. idx = 0;
  747. else /* CURR_PTR holds the address + 8 */
  748. idx = ((ptr - (unsigned int)viadev->table.addr) / 8 - 1) % viadev->tbl_entries;
  749. res = calc_linear_pos(viadev, idx, count);
  750. viadev->lastpos = res; /* remember the last position */
  751. spin_unlock(&chip->reg_lock);
  752. return bytes_to_frames(substream->runtime, res);
  753. }
  754. /*
  755. * get the current pointer on via823x
  756. */
  757. static snd_pcm_uframes_t snd_via8233_pcm_pointer(struct snd_pcm_substream *substream)
  758. {
  759. struct via82xx *chip = snd_pcm_substream_chip(substream);
  760. struct viadev *viadev = substream->runtime->private_data;
  761. unsigned int idx, count, res;
  762. int status;
  763. if (snd_BUG_ON(!viadev->tbl_entries))
  764. return 0;
  765. spin_lock(&chip->reg_lock);
  766. count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT));
  767. status = viadev->in_interrupt;
  768. if (!status)
  769. status = inb(VIADEV_REG(viadev, OFFSET_STATUS));
  770. /* An apparent bug in the 8251 is worked around by sending a
  771. * REG_CTRL_START. */
  772. if (chip->revision == VIA_REV_8251 && (status & VIA_REG_STAT_EOL))
  773. snd_via82xx_pcm_trigger(substream, SNDRV_PCM_TRIGGER_START);
  774. if (!(status & VIA_REG_STAT_ACTIVE)) {
  775. res = 0;
  776. goto unlock;
  777. }
  778. if (count & 0xffffff) {
  779. idx = count >> 24;
  780. if (idx >= viadev->tbl_entries) {
  781. #ifdef POINTER_DEBUG
  782. printk(KERN_DEBUG "fail: invalid idx = %i/%i\n", idx,
  783. viadev->tbl_entries);
  784. #endif
  785. res = viadev->lastpos;
  786. } else {
  787. count &= 0xffffff;
  788. res = calc_linear_pos(viadev, idx, count);
  789. }
  790. } else {
  791. res = viadev->hwptr_done;
  792. if (!viadev->in_interrupt) {
  793. if (status & VIA_REG_STAT_EOL) {
  794. res = 0;
  795. } else
  796. if (status & VIA_REG_STAT_FLAG) {
  797. res += viadev->fragsize;
  798. }
  799. }
  800. }
  801. unlock:
  802. viadev->lastpos = res;
  803. spin_unlock(&chip->reg_lock);
  804. return bytes_to_frames(substream->runtime, res);
  805. }
  806. /*
  807. * hw_params callback:
  808. * allocate the buffer and build up the buffer description table
  809. */
  810. static int snd_via82xx_hw_params(struct snd_pcm_substream *substream,
  811. struct snd_pcm_hw_params *hw_params)
  812. {
  813. struct via82xx *chip = snd_pcm_substream_chip(substream);
  814. struct viadev *viadev = substream->runtime->private_data;
  815. int err;
  816. err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
  817. if (err < 0)
  818. return err;
  819. err = build_via_table(viadev, substream, chip->pci,
  820. params_periods(hw_params),
  821. params_period_bytes(hw_params));
  822. if (err < 0)
  823. return err;
  824. return 0;
  825. }
  826. /*
  827. * hw_free callback:
  828. * clean up the buffer description table and release the buffer
  829. */
  830. static int snd_via82xx_hw_free(struct snd_pcm_substream *substream)
  831. {
  832. struct via82xx *chip = snd_pcm_substream_chip(substream);
  833. struct viadev *viadev = substream->runtime->private_data;
  834. clean_via_table(viadev, substream, chip->pci);
  835. snd_pcm_lib_free_pages(substream);
  836. return 0;
  837. }
  838. /*
  839. * set up the table pointer
  840. */
  841. static void snd_via82xx_set_table_ptr(struct via82xx *chip, struct viadev *viadev)
  842. {
  843. snd_via82xx_codec_ready(chip, 0);
  844. outl((u32)viadev->table.addr, VIADEV_REG(viadev, OFFSET_TABLE_PTR));
  845. udelay(20);
  846. snd_via82xx_codec_ready(chip, 0);
  847. }
  848. /*
  849. * prepare callback for playback and capture on via686
  850. */
  851. static void via686_setup_format(struct via82xx *chip, struct viadev *viadev,
  852. struct snd_pcm_runtime *runtime)
  853. {
  854. snd_via82xx_channel_reset(chip, viadev);
  855. /* this must be set after channel_reset */
  856. snd_via82xx_set_table_ptr(chip, viadev);
  857. outb(VIA_REG_TYPE_AUTOSTART |
  858. (runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA_REG_TYPE_16BIT : 0) |
  859. (runtime->channels > 1 ? VIA_REG_TYPE_STEREO : 0) |
  860. ((viadev->reg_offset & 0x10) == 0 ? VIA_REG_TYPE_INT_LSAMPLE : 0) |
  861. VIA_REG_TYPE_INT_EOL |
  862. VIA_REG_TYPE_INT_FLAG, VIADEV_REG(viadev, OFFSET_TYPE));
  863. }
  864. static int snd_via686_playback_prepare(struct snd_pcm_substream *substream)
  865. {
  866. struct via82xx *chip = snd_pcm_substream_chip(substream);
  867. struct viadev *viadev = substream->runtime->private_data;
  868. struct snd_pcm_runtime *runtime = substream->runtime;
  869. snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
  870. snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
  871. via686_setup_format(chip, viadev, runtime);
  872. return 0;
  873. }
  874. static int snd_via686_capture_prepare(struct snd_pcm_substream *substream)
  875. {
  876. struct via82xx *chip = snd_pcm_substream_chip(substream);
  877. struct viadev *viadev = substream->runtime->private_data;
  878. struct snd_pcm_runtime *runtime = substream->runtime;
  879. snd_ac97_set_rate(chip->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
  880. via686_setup_format(chip, viadev, runtime);
  881. return 0;
  882. }
  883. /*
  884. * lock the current rate
  885. */
  886. static int via_lock_rate(struct via_rate_lock *rec, int rate)
  887. {
  888. int changed = 0;
  889. spin_lock_irq(&rec->lock);
  890. if (rec->rate != rate) {
  891. if (rec->rate && rec->used > 1) /* already set */
  892. changed = -EINVAL;
  893. else {
  894. rec->rate = rate;
  895. changed = 1;
  896. }
  897. }
  898. spin_unlock_irq(&rec->lock);
  899. return changed;
  900. }
  901. /*
  902. * prepare callback for DSX playback on via823x
  903. */
  904. static int snd_via8233_playback_prepare(struct snd_pcm_substream *substream)
  905. {
  906. struct via82xx *chip = snd_pcm_substream_chip(substream);
  907. struct viadev *viadev = substream->runtime->private_data;
  908. struct snd_pcm_runtime *runtime = substream->runtime;
  909. int ac97_rate = chip->dxs_src ? 48000 : runtime->rate;
  910. int rate_changed;
  911. u32 rbits;
  912. if ((rate_changed = via_lock_rate(&chip->rates[0], ac97_rate)) < 0)
  913. return rate_changed;
  914. if (rate_changed)
  915. snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE,
  916. chip->no_vra ? 48000 : runtime->rate);
  917. if (chip->spdif_on && viadev->reg_offset == 0x30)
  918. snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
  919. if (runtime->rate == 48000)
  920. rbits = 0xfffff;
  921. else
  922. rbits = (0x100000 / 48000) * runtime->rate +
  923. ((0x100000 % 48000) * runtime->rate) / 48000;
  924. snd_BUG_ON(rbits & ~0xfffff);
  925. snd_via82xx_channel_reset(chip, viadev);
  926. snd_via82xx_set_table_ptr(chip, viadev);
  927. outb(chip->playback_volume[viadev->reg_offset / 0x10][0],
  928. VIADEV_REG(viadev, OFS_PLAYBACK_VOLUME_L));
  929. outb(chip->playback_volume[viadev->reg_offset / 0x10][1],
  930. VIADEV_REG(viadev, OFS_PLAYBACK_VOLUME_R));
  931. outl((runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA8233_REG_TYPE_16BIT : 0) | /* format */
  932. (runtime->channels > 1 ? VIA8233_REG_TYPE_STEREO : 0) | /* stereo */
  933. rbits | /* rate */
  934. 0xff000000, /* STOP index is never reached */
  935. VIADEV_REG(viadev, OFFSET_STOP_IDX));
  936. udelay(20);
  937. snd_via82xx_codec_ready(chip, 0);
  938. return 0;
  939. }
  940. /*
  941. * prepare callback for multi-channel playback on via823x
  942. */
  943. static int snd_via8233_multi_prepare(struct snd_pcm_substream *substream)
  944. {
  945. struct via82xx *chip = snd_pcm_substream_chip(substream);
  946. struct viadev *viadev = substream->runtime->private_data;
  947. struct snd_pcm_runtime *runtime = substream->runtime;
  948. unsigned int slots;
  949. int fmt;
  950. if (via_lock_rate(&chip->rates[0], runtime->rate) < 0)
  951. return -EINVAL;
  952. snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
  953. snd_ac97_set_rate(chip->ac97, AC97_PCM_SURR_DAC_RATE, runtime->rate);
  954. snd_ac97_set_rate(chip->ac97, AC97_PCM_LFE_DAC_RATE, runtime->rate);
  955. snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
  956. snd_via82xx_channel_reset(chip, viadev);
  957. snd_via82xx_set_table_ptr(chip, viadev);
  958. fmt = (runtime->format == SNDRV_PCM_FORMAT_S16_LE) ?
  959. VIA_REG_MULTPLAY_FMT_16BIT : VIA_REG_MULTPLAY_FMT_8BIT;
  960. fmt |= runtime->channels << 4;
  961. outb(fmt, VIADEV_REG(viadev, OFS_MULTPLAY_FORMAT));
  962. #if 0
  963. if (chip->revision == VIA_REV_8233A)
  964. slots = 0;
  965. else
  966. #endif
  967. {
  968. /* set sample number to slot 3, 4, 7, 8, 6, 9 (for VIA8233/C,8235) */
  969. /* corresponding to FL, FR, RL, RR, C, LFE ?? */
  970. switch (runtime->channels) {
  971. case 1: slots = (1<<0) | (1<<4); break;
  972. case 2: slots = (1<<0) | (2<<4); break;
  973. case 3: slots = (1<<0) | (2<<4) | (5<<8); break;
  974. case 4: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12); break;
  975. case 5: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16); break;
  976. case 6: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16) | (6<<20); break;
  977. default: slots = 0; break;
  978. }
  979. }
  980. /* STOP index is never reached */
  981. outl(0xff000000 | slots, VIADEV_REG(viadev, OFFSET_STOP_IDX));
  982. udelay(20);
  983. snd_via82xx_codec_ready(chip, 0);
  984. return 0;
  985. }
  986. /*
  987. * prepare callback for capture on via823x
  988. */
  989. static int snd_via8233_capture_prepare(struct snd_pcm_substream *substream)
  990. {
  991. struct via82xx *chip = snd_pcm_substream_chip(substream);
  992. struct viadev *viadev = substream->runtime->private_data;
  993. struct snd_pcm_runtime *runtime = substream->runtime;
  994. if (via_lock_rate(&chip->rates[1], runtime->rate) < 0)
  995. return -EINVAL;
  996. snd_ac97_set_rate(chip->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
  997. snd_via82xx_channel_reset(chip, viadev);
  998. snd_via82xx_set_table_ptr(chip, viadev);
  999. outb(VIA_REG_CAPTURE_FIFO_ENABLE, VIADEV_REG(viadev, OFS_CAPTURE_FIFO));
  1000. outl((runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA8233_REG_TYPE_16BIT : 0) |
  1001. (runtime->channels > 1 ? VIA8233_REG_TYPE_STEREO : 0) |
  1002. 0xff000000, /* STOP index is never reached */
  1003. VIADEV_REG(viadev, OFFSET_STOP_IDX));
  1004. udelay(20);
  1005. snd_via82xx_codec_ready(chip, 0);
  1006. return 0;
  1007. }
  1008. /*
  1009. * pcm hardware definition, identical for both playback and capture
  1010. */
  1011. static struct snd_pcm_hardware snd_via82xx_hw =
  1012. {
  1013. .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  1014. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  1015. SNDRV_PCM_INFO_MMAP_VALID |
  1016. /* SNDRV_PCM_INFO_RESUME | */
  1017. SNDRV_PCM_INFO_PAUSE),
  1018. .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
  1019. .rates = SNDRV_PCM_RATE_48000,
  1020. .rate_min = 48000,
  1021. .rate_max = 48000,
  1022. .channels_min = 1,
  1023. .channels_max = 2,
  1024. .buffer_bytes_max = 128 * 1024,
  1025. .period_bytes_min = 32,
  1026. .period_bytes_max = 128 * 1024,
  1027. .periods_min = 2,
  1028. .periods_max = VIA_TABLE_SIZE / 2,
  1029. .fifo_size = 0,
  1030. };
  1031. /*
  1032. * open callback skeleton
  1033. */
  1034. static int snd_via82xx_pcm_open(struct via82xx *chip, struct viadev *viadev,
  1035. struct snd_pcm_substream *substream)
  1036. {
  1037. struct snd_pcm_runtime *runtime = substream->runtime;
  1038. int err;
  1039. struct via_rate_lock *ratep;
  1040. runtime->hw = snd_via82xx_hw;
  1041. /* set the hw rate condition */
  1042. ratep = &chip->rates[viadev->direction];
  1043. spin_lock_irq(&ratep->lock);
  1044. ratep->used++;
  1045. if (chip->spdif_on && viadev->reg_offset == 0x30) {
  1046. /* DXS#3 and spdif is on */
  1047. runtime->hw.rates = chip->ac97->rates[AC97_RATES_SPDIF];
  1048. snd_pcm_limit_hw_rates(runtime);
  1049. } else if (chip->dxs_fixed && viadev->reg_offset < 0x40) {
  1050. /* fixed DXS playback rate */
  1051. runtime->hw.rates = SNDRV_PCM_RATE_48000;
  1052. runtime->hw.rate_min = runtime->hw.rate_max = 48000;
  1053. } else if (chip->dxs_src && viadev->reg_offset < 0x40) {
  1054. /* use full SRC capabilities of DXS */
  1055. runtime->hw.rates = (SNDRV_PCM_RATE_CONTINUOUS |
  1056. SNDRV_PCM_RATE_8000_48000);
  1057. runtime->hw.rate_min = 8000;
  1058. runtime->hw.rate_max = 48000;
  1059. } else if (! ratep->rate) {
  1060. int idx = viadev->direction ? AC97_RATES_ADC : AC97_RATES_FRONT_DAC;
  1061. runtime->hw.rates = chip->ac97->rates[idx];
  1062. snd_pcm_limit_hw_rates(runtime);
  1063. } else {
  1064. /* a fixed rate */
  1065. runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
  1066. runtime->hw.rate_max = runtime->hw.rate_min = ratep->rate;
  1067. }
  1068. spin_unlock_irq(&ratep->lock);
  1069. /* we may remove following constaint when we modify table entries
  1070. in interrupt */
  1071. if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
  1072. return err;
  1073. runtime->private_data = viadev;
  1074. viadev->substream = substream;
  1075. return 0;
  1076. }
  1077. /*
  1078. * open callback for playback on via686 and via823x DSX
  1079. */
  1080. static int snd_via82xx_playback_open(struct snd_pcm_substream *substream)
  1081. {
  1082. struct via82xx *chip = snd_pcm_substream_chip(substream);
  1083. struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number];
  1084. int err;
  1085. if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0)
  1086. return err;
  1087. return 0;
  1088. }
  1089. /*
  1090. * open callback for playback on via823x multi-channel
  1091. */
  1092. static int snd_via8233_multi_open(struct snd_pcm_substream *substream)
  1093. {
  1094. struct via82xx *chip = snd_pcm_substream_chip(substream);
  1095. struct viadev *viadev = &chip->devs[chip->multi_devno];
  1096. int err;
  1097. /* channels constraint for VIA8233A
  1098. * 3 and 5 channels are not supported
  1099. */
  1100. static unsigned int channels[] = {
  1101. 1, 2, 4, 6
  1102. };
  1103. static struct snd_pcm_hw_constraint_list hw_constraints_channels = {
  1104. .count = ARRAY_SIZE(channels),
  1105. .list = channels,
  1106. .mask = 0,
  1107. };
  1108. if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0)
  1109. return err;
  1110. substream->runtime->hw.channels_max = 6;
  1111. if (chip->revision == VIA_REV_8233A)
  1112. snd_pcm_hw_constraint_list(substream->runtime, 0,
  1113. SNDRV_PCM_HW_PARAM_CHANNELS,
  1114. &hw_constraints_channels);
  1115. return 0;
  1116. }
  1117. /*
  1118. * open callback for capture on via686 and via823x
  1119. */
  1120. static int snd_via82xx_capture_open(struct snd_pcm_substream *substream)
  1121. {
  1122. struct via82xx *chip = snd_pcm_substream_chip(substream);
  1123. struct viadev *viadev = &chip->devs[chip->capture_devno + substream->pcm->device];
  1124. return snd_via82xx_pcm_open(chip, viadev, substream);
  1125. }
  1126. /*
  1127. * close callback
  1128. */
  1129. static int snd_via82xx_pcm_close(struct snd_pcm_substream *substream)
  1130. {
  1131. struct via82xx *chip = snd_pcm_substream_chip(substream);
  1132. struct viadev *viadev = substream->runtime->private_data;
  1133. struct via_rate_lock *ratep;
  1134. /* release the rate lock */
  1135. ratep = &chip->rates[viadev->direction];
  1136. spin_lock_irq(&ratep->lock);
  1137. ratep->used--;
  1138. if (! ratep->used)
  1139. ratep->rate = 0;
  1140. spin_unlock_irq(&ratep->lock);
  1141. if (! ratep->rate) {
  1142. if (! viadev->direction) {
  1143. snd_ac97_update_power(chip->ac97,
  1144. AC97_PCM_FRONT_DAC_RATE, 0);
  1145. snd_ac97_update_power(chip->ac97,
  1146. AC97_PCM_SURR_DAC_RATE, 0);
  1147. snd_ac97_update_power(chip->ac97,
  1148. AC97_PCM_LFE_DAC_RATE, 0);
  1149. } else
  1150. snd_ac97_update_power(chip->ac97,
  1151. AC97_PCM_LR_ADC_RATE, 0);
  1152. }
  1153. viadev->substream = NULL;
  1154. return 0;
  1155. }
  1156. /* via686 playback callbacks */
  1157. static struct snd_pcm_ops snd_via686_playback_ops = {
  1158. .open = snd_via82xx_playback_open,
  1159. .close = snd_via82xx_pcm_close,
  1160. .ioctl = snd_pcm_lib_ioctl,
  1161. .hw_params = snd_via82xx_hw_params,
  1162. .hw_free = snd_via82xx_hw_free,
  1163. .prepare = snd_via686_playback_prepare,
  1164. .trigger = snd_via82xx_pcm_trigger,
  1165. .pointer = snd_via686_pcm_pointer,
  1166. .page = snd_pcm_sgbuf_ops_page,
  1167. };
  1168. /* via686 capture callbacks */
  1169. static struct snd_pcm_ops snd_via686_capture_ops = {
  1170. .open = snd_via82xx_capture_open,
  1171. .close = snd_via82xx_pcm_close,
  1172. .ioctl = snd_pcm_lib_ioctl,
  1173. .hw_params = snd_via82xx_hw_params,
  1174. .hw_free = snd_via82xx_hw_free,
  1175. .prepare = snd_via686_capture_prepare,
  1176. .trigger = snd_via82xx_pcm_trigger,
  1177. .pointer = snd_via686_pcm_pointer,
  1178. .page = snd_pcm_sgbuf_ops_page,
  1179. };
  1180. /* via823x DSX playback callbacks */
  1181. static struct snd_pcm_ops snd_via8233_playback_ops = {
  1182. .open = snd_via82xx_playback_open,
  1183. .close = snd_via82xx_pcm_close,
  1184. .ioctl = snd_pcm_lib_ioctl,
  1185. .hw_params = snd_via82xx_hw_params,
  1186. .hw_free = snd_via82xx_hw_free,
  1187. .prepare = snd_via8233_playback_prepare,
  1188. .trigger = snd_via82xx_pcm_trigger,
  1189. .pointer = snd_via8233_pcm_pointer,
  1190. .page = snd_pcm_sgbuf_ops_page,
  1191. };
  1192. /* via823x multi-channel playback callbacks */
  1193. static struct snd_pcm_ops snd_via8233_multi_ops = {
  1194. .open = snd_via8233_multi_open,
  1195. .close = snd_via82xx_pcm_close,
  1196. .ioctl = snd_pcm_lib_ioctl,
  1197. .hw_params = snd_via82xx_hw_params,
  1198. .hw_free = snd_via82xx_hw_free,
  1199. .prepare = snd_via8233_multi_prepare,
  1200. .trigger = snd_via82xx_pcm_trigger,
  1201. .pointer = snd_via8233_pcm_pointer,
  1202. .page = snd_pcm_sgbuf_ops_page,
  1203. };
  1204. /* via823x capture callbacks */
  1205. static struct snd_pcm_ops snd_via8233_capture_ops = {
  1206. .open = snd_via82xx_capture_open,
  1207. .close = snd_via82xx_pcm_close,
  1208. .ioctl = snd_pcm_lib_ioctl,
  1209. .hw_params = snd_via82xx_hw_params,
  1210. .hw_free = snd_via82xx_hw_free,
  1211. .prepare = snd_via8233_capture_prepare,
  1212. .trigger = snd_via82xx_pcm_trigger,
  1213. .pointer = snd_via8233_pcm_pointer,
  1214. .page = snd_pcm_sgbuf_ops_page,
  1215. };
  1216. static void init_viadev(struct via82xx *chip, int idx, unsigned int reg_offset,
  1217. int shadow_pos, int direction)
  1218. {
  1219. chip->devs[idx].reg_offset = reg_offset;
  1220. chip->devs[idx].shadow_shift = shadow_pos * 4;
  1221. chip->devs[idx].direction = direction;
  1222. chip->devs[idx].port = chip->port + reg_offset;
  1223. }
  1224. /*
  1225. * create pcm instances for VIA8233, 8233C and 8235 (not 8233A)
  1226. */
  1227. static int __devinit snd_via8233_pcm_new(struct via82xx *chip)
  1228. {
  1229. struct snd_pcm *pcm;
  1230. int i, err;
  1231. chip->playback_devno = 0; /* x 4 */
  1232. chip->multi_devno = 4; /* x 1 */
  1233. chip->capture_devno = 5; /* x 2 */
  1234. chip->num_devs = 7;
  1235. chip->intr_mask = 0x33033333; /* FLAG|EOL for rec0-1, mc, sdx0-3 */
  1236. /* PCM #0: 4 DSX playbacks and 1 capture */
  1237. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 4, 1, &pcm);
  1238. if (err < 0)
  1239. return err;
  1240. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_playback_ops);
  1241. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
  1242. pcm->private_data = chip;
  1243. strcpy(pcm->name, chip->card->shortname);
  1244. chip->pcms[0] = pcm;
  1245. /* set up playbacks */
  1246. for (i = 0; i < 4; i++)
  1247. init_viadev(chip, i, 0x10 * i, i, 0);
  1248. /* capture */
  1249. init_viadev(chip, chip->capture_devno, VIA_REG_CAPTURE_8233_STATUS, 6, 1);
  1250. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1251. snd_dma_pci_data(chip->pci),
  1252. 64*1024, 128*1024)) < 0)
  1253. return err;
  1254. /* PCM #1: multi-channel playback and 2nd capture */
  1255. err = snd_pcm_new(chip->card, chip->card->shortname, 1, 1, 1, &pcm);
  1256. if (err < 0)
  1257. return err;
  1258. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_multi_ops);
  1259. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
  1260. pcm->private_data = chip;
  1261. strcpy(pcm->name, chip->card->shortname);
  1262. chip->pcms[1] = pcm;
  1263. /* set up playback */
  1264. init_viadev(chip, chip->multi_devno, VIA_REG_MULTPLAY_STATUS, 4, 0);
  1265. /* set up capture */
  1266. init_viadev(chip, chip->capture_devno + 1, VIA_REG_CAPTURE_8233_STATUS + 0x10, 7, 1);
  1267. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1268. snd_dma_pci_data(chip->pci),
  1269. 64*1024, 128*1024)) < 0)
  1270. return err;
  1271. return 0;
  1272. }
  1273. /*
  1274. * create pcm instances for VIA8233A
  1275. */
  1276. static int __devinit snd_via8233a_pcm_new(struct via82xx *chip)
  1277. {
  1278. struct snd_pcm *pcm;
  1279. int err;
  1280. chip->multi_devno = 0;
  1281. chip->playback_devno = 1;
  1282. chip->capture_devno = 2;
  1283. chip->num_devs = 3;
  1284. chip->intr_mask = 0x03033000; /* FLAG|EOL for rec0, mc, sdx3 */
  1285. /* PCM #0: multi-channel playback and capture */
  1286. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
  1287. if (err < 0)
  1288. return err;
  1289. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_multi_ops);
  1290. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
  1291. pcm->private_data = chip;
  1292. strcpy(pcm->name, chip->card->shortname);
  1293. chip->pcms[0] = pcm;
  1294. /* set up playback */
  1295. init_viadev(chip, chip->multi_devno, VIA_REG_MULTPLAY_STATUS, 4, 0);
  1296. /* capture */
  1297. init_viadev(chip, chip->capture_devno, VIA_REG_CAPTURE_8233_STATUS, 6, 1);
  1298. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1299. snd_dma_pci_data(chip->pci),
  1300. 64*1024, 128*1024)) < 0)
  1301. return err;
  1302. /* SPDIF supported? */
  1303. if (! ac97_can_spdif(chip->ac97))
  1304. return 0;
  1305. /* PCM #1: DXS3 playback (for spdif) */
  1306. err = snd_pcm_new(chip->card, chip->card->shortname, 1, 1, 0, &pcm);
  1307. if (err < 0)
  1308. return err;
  1309. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_playback_ops);
  1310. pcm->private_data = chip;
  1311. strcpy(pcm->name, chip->card->shortname);
  1312. chip->pcms[1] = pcm;
  1313. /* set up playback */
  1314. init_viadev(chip, chip->playback_devno, 0x30, 3, 0);
  1315. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1316. snd_dma_pci_data(chip->pci),
  1317. 64*1024, 128*1024)) < 0)
  1318. return err;
  1319. return 0;
  1320. }
  1321. /*
  1322. * create a pcm instance for via686a/b
  1323. */
  1324. static int __devinit snd_via686_pcm_new(struct via82xx *chip)
  1325. {
  1326. struct snd_pcm *pcm;
  1327. int err;
  1328. chip->playback_devno = 0;
  1329. chip->capture_devno = 1;
  1330. chip->num_devs = 2;
  1331. chip->intr_mask = 0x77; /* FLAG | EOL for PB, CP, FM */
  1332. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
  1333. if (err < 0)
  1334. return err;
  1335. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via686_playback_ops);
  1336. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via686_capture_ops);
  1337. pcm->private_data = chip;
  1338. strcpy(pcm->name, chip->card->shortname);
  1339. chip->pcms[0] = pcm;
  1340. init_viadev(chip, 0, VIA_REG_PLAYBACK_STATUS, 0, 0);
  1341. init_viadev(chip, 1, VIA_REG_CAPTURE_STATUS, 0, 1);
  1342. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1343. snd_dma_pci_data(chip->pci),
  1344. 64*1024, 128*1024)) < 0)
  1345. return err;
  1346. return 0;
  1347. }
  1348. /*
  1349. * Mixer part
  1350. */
  1351. static int snd_via8233_capture_source_info(struct snd_kcontrol *kcontrol,
  1352. struct snd_ctl_elem_info *uinfo)
  1353. {
  1354. /* formerly they were "Line" and "Mic", but it looks like that they
  1355. * have nothing to do with the actual physical connections...
  1356. */
  1357. static char *texts[2] = {
  1358. "Input1", "Input2"
  1359. };
  1360. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1361. uinfo->count = 1;
  1362. uinfo->value.enumerated.items = 2;
  1363. if (uinfo->value.enumerated.item >= 2)
  1364. uinfo->value.enumerated.item = 1;
  1365. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1366. return 0;
  1367. }
  1368. static int snd_via8233_capture_source_get(struct snd_kcontrol *kcontrol,
  1369. struct snd_ctl_elem_value *ucontrol)
  1370. {
  1371. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1372. unsigned long port = chip->port + (kcontrol->id.index ? (VIA_REG_CAPTURE_CHANNEL + 0x10) : VIA_REG_CAPTURE_CHANNEL);
  1373. ucontrol->value.enumerated.item[0] = inb(port) & VIA_REG_CAPTURE_CHANNEL_MIC ? 1 : 0;
  1374. return 0;
  1375. }
  1376. static int snd_via8233_capture_source_put(struct snd_kcontrol *kcontrol,
  1377. struct snd_ctl_elem_value *ucontrol)
  1378. {
  1379. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1380. unsigned long port = chip->port + (kcontrol->id.index ? (VIA_REG_CAPTURE_CHANNEL + 0x10) : VIA_REG_CAPTURE_CHANNEL);
  1381. u8 val, oval;
  1382. spin_lock_irq(&chip->reg_lock);
  1383. oval = inb(port);
  1384. val = oval & ~VIA_REG_CAPTURE_CHANNEL_MIC;
  1385. if (ucontrol->value.enumerated.item[0])
  1386. val |= VIA_REG_CAPTURE_CHANNEL_MIC;
  1387. if (val != oval)
  1388. outb(val, port);
  1389. spin_unlock_irq(&chip->reg_lock);
  1390. return val != oval;
  1391. }
  1392. static struct snd_kcontrol_new snd_via8233_capture_source __devinitdata = {
  1393. .name = "Input Source Select",
  1394. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1395. .info = snd_via8233_capture_source_info,
  1396. .get = snd_via8233_capture_source_get,
  1397. .put = snd_via8233_capture_source_put,
  1398. };
  1399. #define snd_via8233_dxs3_spdif_info snd_ctl_boolean_mono_info
  1400. static int snd_via8233_dxs3_spdif_get(struct snd_kcontrol *kcontrol,
  1401. struct snd_ctl_elem_value *ucontrol)
  1402. {
  1403. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1404. u8 val;
  1405. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &val);
  1406. ucontrol->value.integer.value[0] = (val & VIA8233_SPDIF_DX3) ? 1 : 0;
  1407. return 0;
  1408. }
  1409. static int snd_via8233_dxs3_spdif_put(struct snd_kcontrol *kcontrol,
  1410. struct snd_ctl_elem_value *ucontrol)
  1411. {
  1412. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1413. u8 val, oval;
  1414. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &oval);
  1415. val = oval & ~VIA8233_SPDIF_DX3;
  1416. if (ucontrol->value.integer.value[0])
  1417. val |= VIA8233_SPDIF_DX3;
  1418. /* save the spdif flag for rate filtering */
  1419. chip->spdif_on = ucontrol->value.integer.value[0] ? 1 : 0;
  1420. if (val != oval) {
  1421. pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, val);
  1422. return 1;
  1423. }
  1424. return 0;
  1425. }
  1426. static struct snd_kcontrol_new snd_via8233_dxs3_spdif_control __devinitdata = {
  1427. .name = SNDRV_CTL_NAME_IEC958("Output ",NONE,SWITCH),
  1428. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1429. .info = snd_via8233_dxs3_spdif_info,
  1430. .get = snd_via8233_dxs3_spdif_get,
  1431. .put = snd_via8233_dxs3_spdif_put,
  1432. };
  1433. static int snd_via8233_dxs_volume_info(struct snd_kcontrol *kcontrol,
  1434. struct snd_ctl_elem_info *uinfo)
  1435. {
  1436. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1437. uinfo->count = 2;
  1438. uinfo->value.integer.min = 0;
  1439. uinfo->value.integer.max = VIA_DXS_MAX_VOLUME;
  1440. return 0;
  1441. }
  1442. static int snd_via8233_dxs_volume_get(struct snd_kcontrol *kcontrol,
  1443. struct snd_ctl_elem_value *ucontrol)
  1444. {
  1445. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1446. unsigned int idx = snd_ctl_get_ioff(kcontrol, &ucontrol->id);
  1447. ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][0];
  1448. ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][1];
  1449. return 0;
  1450. }
  1451. static int snd_via8233_pcmdxs_volume_get(struct snd_kcontrol *kcontrol,
  1452. struct snd_ctl_elem_value *ucontrol)
  1453. {
  1454. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1455. ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume_c[0];
  1456. ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume_c[1];
  1457. return 0;
  1458. }
  1459. static int snd_via8233_dxs_volume_put(struct snd_kcontrol *kcontrol,
  1460. struct snd_ctl_elem_value *ucontrol)
  1461. {
  1462. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1463. unsigned int idx = snd_ctl_get_ioff(kcontrol, &ucontrol->id);
  1464. unsigned long port = chip->port + 0x10 * idx;
  1465. unsigned char val;
  1466. int i, change = 0;
  1467. for (i = 0; i < 2; i++) {
  1468. val = ucontrol->value.integer.value[i];
  1469. if (val > VIA_DXS_MAX_VOLUME)
  1470. val = VIA_DXS_MAX_VOLUME;
  1471. val = VIA_DXS_MAX_VOLUME - val;
  1472. change |= val != chip->playback_volume[idx][i];
  1473. if (change) {
  1474. chip->playback_volume[idx][i] = val;
  1475. outb(val, port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
  1476. }
  1477. }
  1478. return change;
  1479. }
  1480. static int snd_via8233_pcmdxs_volume_put(struct snd_kcontrol *kcontrol,
  1481. struct snd_ctl_elem_value *ucontrol)
  1482. {
  1483. struct via82xx *chip = snd_kcontrol_chip(kcontrol);
  1484. unsigned int idx;
  1485. unsigned char val;
  1486. int i, change = 0;
  1487. for (i = 0; i < 2; i++) {
  1488. val = ucontrol->value.integer.value[i];
  1489. if (val > VIA_DXS_MAX_VOLUME)
  1490. val = VIA_DXS_MAX_VOLUME;
  1491. val = VIA_DXS_MAX_VOLUME - val;
  1492. if (val != chip->playback_volume_c[i]) {
  1493. change = 1;
  1494. chip->playback_volume_c[i] = val;
  1495. for (idx = 0; idx < 4; idx++) {
  1496. unsigned long port = chip->port + 0x10 * idx;
  1497. chip->playback_volume[idx][i] = val;
  1498. outb(val, port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
  1499. }
  1500. }
  1501. }
  1502. return change;
  1503. }
  1504. static const DECLARE_TLV_DB_SCALE(db_scale_dxs, -9450, 150, 1);
  1505. static struct snd_kcontrol_new snd_via8233_pcmdxs_volume_control __devinitdata = {
  1506. .name = "PCM Playback Volume",
  1507. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1508. .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
  1509. SNDRV_CTL_ELEM_ACCESS_TLV_READ),
  1510. .info = snd_via8233_dxs_volume_info,
  1511. .get = snd_via8233_pcmdxs_volume_get,
  1512. .put = snd_via8233_pcmdxs_volume_put,
  1513. .tlv = { .p = db_scale_dxs }
  1514. };
  1515. static struct snd_kcontrol_new snd_via8233_dxs_volume_control __devinitdata = {
  1516. .name = "VIA DXS Playback Volume",
  1517. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1518. .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
  1519. SNDRV_CTL_ELEM_ACCESS_TLV_READ),
  1520. .count = 4,
  1521. .info = snd_via8233_dxs_volume_info,
  1522. .get = snd_via8233_dxs_volume_get,
  1523. .put = snd_via8233_dxs_volume_put,
  1524. .tlv = { .p = db_scale_dxs }
  1525. };
  1526. /*
  1527. */
  1528. static void snd_via82xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
  1529. {
  1530. struct via82xx *chip = bus->private_data;
  1531. chip->ac97_bus = NULL;
  1532. }
  1533. static void snd_via82xx_mixer_free_ac97(struct snd_ac97 *ac97)
  1534. {
  1535. struct via82xx *chip = ac97->private_data;
  1536. chip->ac97 = NULL;
  1537. }
  1538. static struct ac97_quirk ac97_quirks[] = {
  1539. {
  1540. .subvendor = 0x1106,
  1541. .subdevice = 0x4161,
  1542. .codec_id = 0x56494161, /* VT1612A */
  1543. .name = "Soltek SL-75DRV5",
  1544. .type = AC97_TUNE_NONE
  1545. },
  1546. { /* FIXME: which codec? */
  1547. .subvendor = 0x1106,
  1548. .subdevice = 0x4161,
  1549. .name = "ASRock K7VT2",
  1550. .type = AC97_TUNE_HP_ONLY
  1551. },
  1552. {
  1553. .subvendor = 0x1019,
  1554. .subdevice = 0x0a81,
  1555. .name = "ECS K7VTA3",
  1556. .type = AC97_TUNE_HP_ONLY
  1557. },
  1558. {
  1559. .subvendor = 0x1019,
  1560. .subdevice = 0x0a85,
  1561. .name = "ECS L7VMM2",
  1562. .type = AC97_TUNE_HP_ONLY
  1563. },
  1564. {
  1565. .subvendor = 0x1019,
  1566. .subdevice = 0x1841,
  1567. .name = "ECS K7VTA3",
  1568. .type = AC97_TUNE_HP_ONLY
  1569. },
  1570. {
  1571. .subvendor = 0x1849,
  1572. .subdevice = 0x3059,
  1573. .name = "ASRock K7VM2",
  1574. .type = AC97_TUNE_HP_ONLY /* VT1616 */
  1575. },
  1576. {
  1577. .subvendor = 0x14cd,
  1578. .subdevice = 0x7002,
  1579. .name = "Unknown",
  1580. .type = AC97_TUNE_ALC_JACK
  1581. },
  1582. {
  1583. .subvendor = 0x1071,
  1584. .subdevice = 0x8590,
  1585. .name = "Mitac Mobo",
  1586. .type = AC97_TUNE_ALC_JACK
  1587. },
  1588. {
  1589. .subvendor = 0x161f,
  1590. .subdevice = 0x202b,
  1591. .name = "Arima Notebook",
  1592. .type = AC97_TUNE_HP_ONLY,
  1593. },
  1594. {
  1595. .subvendor = 0x161f,
  1596. .subdevice = 0x2032,
  1597. .name = "Targa Traveller 811",
  1598. .type = AC97_TUNE_HP_ONLY,
  1599. },
  1600. {
  1601. .subvendor = 0x161f,
  1602. .subdevice = 0x2032,
  1603. .name = "m680x",
  1604. .type = AC97_TUNE_HP_ONLY, /* http://launchpad.net/bugs/38546 */
  1605. },
  1606. {
  1607. .subvendor = 0x1297,
  1608. .subdevice = 0xa232,
  1609. .name = "Shuttle AK32VN",
  1610. .type = AC97_TUNE_HP_ONLY
  1611. },
  1612. { } /* terminator */
  1613. };
  1614. static int __devinit snd_via82xx_mixer_new(struct via82xx *chip, const char *quirk_override)
  1615. {
  1616. struct snd_ac97_template ac97;
  1617. int err;
  1618. static struct snd_ac97_bus_ops ops = {
  1619. .write = snd_via82xx_codec_write,
  1620. .read = snd_via82xx_codec_read,
  1621. .wait = snd_via82xx_codec_wait,
  1622. };
  1623. if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)
  1624. return err;
  1625. chip->ac97_bus->private_free = snd_via82xx_mixer_free_ac97_bus;
  1626. chip->ac97_bus->clock = chip->ac97_clock;
  1627. memset(&ac97, 0, sizeof(ac97));
  1628. ac97.private_data = chip;
  1629. ac97.private_free = snd_via82xx_mixer_free_ac97;
  1630. ac97.pci = chip->pci;
  1631. ac97.scaps = AC97_SCAP_SKIP_MODEM | AC97_SCAP_POWER_SAVE;
  1632. if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)
  1633. return err;
  1634. snd_ac97_tune_hardware(chip->ac97, ac97_quirks, quirk_override);
  1635. if (chip->chip_type != TYPE_VIA686) {
  1636. /* use slot 10/11 */
  1637. snd_ac97_update_bits(chip->ac97, AC97_EXTENDED_STATUS, 0x03 << 4, 0x03 << 4);
  1638. }
  1639. return 0;
  1640. }
  1641. #ifdef SUPPORT_JOYSTICK
  1642. #define JOYSTICK_ADDR 0x200
  1643. static int __devinit snd_via686_create_gameport(struct via82xx *chip, unsigned char *legacy)
  1644. {
  1645. struct gameport *gp;
  1646. struct resource *r;
  1647. if (!joystick)
  1648. return -ENODEV;
  1649. r = request_region(JOYSTICK_ADDR, 8, "VIA686 gameport");
  1650. if (!r) {
  1651. printk(KERN_WARNING "via82xx: cannot reserve joystick port 0x%#x\n",
  1652. JOYSTICK_ADDR);
  1653. return -EBUSY;
  1654. }
  1655. chip->gameport = gp = gameport_allocate_port();
  1656. if (!gp) {
  1657. printk(KERN_ERR "via82xx: cannot allocate memory for gameport\n");
  1658. release_and_free_resource(r);
  1659. return -ENOMEM;
  1660. }
  1661. gameport_set_name(gp, "VIA686 Gameport");
  1662. gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
  1663. gameport_set_dev_parent(gp, &chip->pci->dev);
  1664. gp->io = JOYSTICK_ADDR;
  1665. gameport_set_port_data(gp, r);
  1666. /* Enable legacy joystick port */
  1667. *legacy |= VIA_FUNC_ENABLE_GAME;
  1668. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, *legacy);
  1669. gameport_register_port(chip->gameport);
  1670. return 0;
  1671. }
  1672. static void snd_via686_free_gameport(struct via82xx *chip)
  1673. {
  1674. if (chip->gameport) {
  1675. struct resource *r = gameport_get_port_data(chip->gameport);
  1676. gameport_unregister_port(chip->gameport);
  1677. chip->gameport = NULL;
  1678. release_and_free_resource(r);
  1679. }
  1680. }
  1681. #else
  1682. static inline int snd_via686_create_gameport(struct via82xx *chip, unsigned char *legacy)
  1683. {
  1684. return -ENOSYS;
  1685. }
  1686. static inline void snd_via686_free_gameport(struct via82xx *chip) { }
  1687. #endif
  1688. /*
  1689. *
  1690. */
  1691. static int __devinit snd_via8233_init_misc(struct via82xx *chip)
  1692. {
  1693. int i, err, caps;
  1694. unsigned char val;
  1695. caps = chip->chip_type == TYPE_VIA8233A ? 1 : 2;
  1696. for (i = 0; i < caps; i++) {
  1697. snd_via8233_capture_source.index = i;
  1698. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_capture_source, chip));
  1699. if (err < 0)
  1700. return err;
  1701. }
  1702. if (ac97_can_spdif(chip->ac97)) {
  1703. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs3_spdif_control, chip));
  1704. if (err < 0)
  1705. return err;
  1706. }
  1707. if (chip->chip_type != TYPE_VIA8233A) {
  1708. /* when no h/w PCM volume control is found, use DXS volume control
  1709. * as the PCM vol control
  1710. */
  1711. struct snd_ctl_elem_id sid;
  1712. memset(&sid, 0, sizeof(sid));
  1713. strcpy(sid.name, "PCM Playback Volume");
  1714. sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  1715. if (! snd_ctl_find_id(chip->card, &sid)) {
  1716. snd_printd(KERN_INFO "Using DXS as PCM Playback\n");
  1717. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_pcmdxs_volume_control, chip));
  1718. if (err < 0)
  1719. return err;
  1720. }
  1721. else /* Using DXS when PCM emulation is enabled is really weird */
  1722. {
  1723. /* Standalone DXS controls */
  1724. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs_volume_control, chip));
  1725. if (err < 0)
  1726. return err;
  1727. }
  1728. }
  1729. /* select spdif data slot 10/11 */
  1730. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &val);
  1731. val = (val & ~VIA8233_SPDIF_SLOT_MASK) | VIA8233_SPDIF_SLOT_1011;
  1732. val &= ~VIA8233_SPDIF_DX3; /* SPDIF off as default */
  1733. pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, val);
  1734. return 0;
  1735. }
  1736. static int __devinit snd_via686_init_misc(struct via82xx *chip)
  1737. {
  1738. unsigned char legacy, legacy_cfg;
  1739. int rev_h = 0;
  1740. legacy = chip->old_legacy;
  1741. legacy_cfg = chip->old_legacy_cfg;
  1742. legacy |= VIA_FUNC_MIDI_IRQMASK; /* FIXME: correct? (disable MIDI) */
  1743. legacy &= ~VIA_FUNC_ENABLE_GAME; /* disable joystick */
  1744. if (chip->revision >= VIA_REV_686_H) {
  1745. rev_h = 1;
  1746. if (mpu_port >= 0x200) { /* force MIDI */
  1747. mpu_port &= 0xfffc;
  1748. pci_write_config_dword(chip->pci, 0x18, mpu_port | 0x01);
  1749. #ifdef CONFIG_PM
  1750. chip->mpu_port_saved = mpu_port;
  1751. #endif
  1752. } else {
  1753. mpu_port = pci_resource_start(chip->pci, 2);
  1754. }
  1755. } else {
  1756. switch (mpu_port) { /* force MIDI */
  1757. case 0x300:
  1758. case 0x310:
  1759. case 0x320:
  1760. case 0x330:
  1761. legacy_cfg &= ~(3 << 2);
  1762. legacy_cfg |= (mpu_port & 0x0030) >> 2;
  1763. break;
  1764. default: /* no, use BIOS settings */
  1765. if (legacy & VIA_FUNC_ENABLE_MIDI)
  1766. mpu_port = 0x300 + ((legacy_cfg & 0x000c) << 2);
  1767. break;
  1768. }
  1769. }
  1770. if (mpu_port >= 0x200 &&
  1771. (chip->mpu_res = request_region(mpu_port, 2, "VIA82xx MPU401"))
  1772. != NULL) {
  1773. if (rev_h)
  1774. legacy |= VIA_FUNC_MIDI_PNP; /* enable PCI I/O 2 */
  1775. legacy |= VIA_FUNC_ENABLE_MIDI;
  1776. } else {
  1777. if (rev_h)
  1778. legacy &= ~VIA_FUNC_MIDI_PNP; /* disable PCI I/O 2 */
  1779. legacy &= ~VIA_FUNC_ENABLE_MIDI;
  1780. mpu_port = 0;
  1781. }
  1782. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, legacy);
  1783. pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, legacy_cfg);
  1784. if (chip->mpu_res) {
  1785. if (snd_mpu401_uart_new(chip->card, 0, MPU401_HW_VIA686A,
  1786. mpu_port, MPU401_INFO_INTEGRATED,
  1787. chip->irq, 0, &chip->rmidi) < 0) {
  1788. printk(KERN_WARNING "unable to initialize MPU-401"
  1789. " at 0x%lx, skipping\n", mpu_port);
  1790. legacy &= ~VIA_FUNC_ENABLE_MIDI;
  1791. } else {
  1792. legacy &= ~VIA_FUNC_MIDI_IRQMASK; /* enable MIDI interrupt */
  1793. }
  1794. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, legacy);
  1795. }
  1796. snd_via686_create_gameport(chip, &legacy);
  1797. #ifdef CONFIG_PM
  1798. chip->legacy_saved = legacy;
  1799. chip->legacy_cfg_saved = legacy_cfg;
  1800. #endif
  1801. return 0;
  1802. }
  1803. /*
  1804. * proc interface
  1805. */
  1806. static void snd_via82xx_proc_read(struct snd_info_entry *entry,
  1807. struct snd_info_buffer *buffer)
  1808. {
  1809. struct via82xx *chip = entry->private_data;
  1810. int i;
  1811. snd_iprintf(buffer, "%s\n\n", chip->card->longname);
  1812. for (i = 0; i < 0xa0; i += 4) {
  1813. snd_iprintf(buffer, "%02x: %08x\n", i, inl(chip->port + i));
  1814. }
  1815. }
  1816. static void __devinit snd_via82xx_proc_init(struct via82xx *chip)
  1817. {
  1818. struct snd_info_entry *entry;
  1819. if (! snd_card_proc_new(chip->card, "via82xx", &entry))
  1820. snd_info_set_text_ops(entry, chip, snd_via82xx_proc_read);
  1821. }
  1822. /*
  1823. *
  1824. */
  1825. static int snd_via82xx_chip_init(struct via82xx *chip)
  1826. {
  1827. unsigned int val;
  1828. unsigned long end_time;
  1829. unsigned char pval;
  1830. #if 0 /* broken on K7M? */
  1831. if (chip->chip_type == TYPE_VIA686)
  1832. /* disable all legacy ports */
  1833. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, 0);
  1834. #endif
  1835. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  1836. if (! (pval & VIA_ACLINK_C00_READY)) { /* codec not ready? */
  1837. /* deassert ACLink reset, force SYNC */
  1838. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  1839. VIA_ACLINK_CTRL_ENABLE |
  1840. VIA_ACLINK_CTRL_RESET |
  1841. VIA_ACLINK_CTRL_SYNC);
  1842. udelay(100);
  1843. #if 1 /* FIXME: should we do full reset here for all chip models? */
  1844. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, 0x00);
  1845. udelay(100);
  1846. #else
  1847. /* deassert ACLink reset, force SYNC (warm AC'97 reset) */
  1848. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  1849. VIA_ACLINK_CTRL_RESET|VIA_ACLINK_CTRL_SYNC);
  1850. udelay(2);
  1851. #endif
  1852. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  1853. /* note - FM data out has trouble with non VRA codecs !! */
  1854. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  1855. udelay(100);
  1856. }
  1857. /* Make sure VRA is enabled, in case we didn't do a
  1858. * complete codec reset, above */
  1859. pci_read_config_byte(chip->pci, VIA_ACLINK_CTRL, &pval);
  1860. if ((pval & VIA_ACLINK_CTRL_INIT) != VIA_ACLINK_CTRL_INIT) {
  1861. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  1862. /* note - FM data out has trouble with non VRA codecs !! */
  1863. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  1864. udelay(100);
  1865. }
  1866. /* wait until codec ready */
  1867. end_time = jiffies + msecs_to_jiffies(750);
  1868. do {
  1869. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  1870. if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */
  1871. break;
  1872. schedule_timeout_uninterruptible(1);
  1873. } while (time_before(jiffies, end_time));
  1874. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY)
  1875. snd_printk(KERN_ERR "AC'97 codec is not ready [0x%x]\n", val);
  1876. #if 0 /* FIXME: we don't support the second codec yet so skip the detection now.. */
  1877. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  1878. VIA_REG_AC97_SECONDARY_VALID |
  1879. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  1880. end_time = jiffies + msecs_to_jiffies(750);
  1881. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  1882. VIA_REG_AC97_SECONDARY_VALID |
  1883. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  1884. do {
  1885. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_SECONDARY_VALID) {
  1886. chip->ac97_secondary = 1;
  1887. goto __ac97_ok2;
  1888. }
  1889. schedule_timeout_uninterruptible(1);
  1890. } while (time_before(jiffies, end_time));
  1891. /* This is ok, the most of motherboards have only one codec */
  1892. __ac97_ok2:
  1893. #endif
  1894. if (chip->chip_type == TYPE_VIA686) {
  1895. /* route FM trap to IRQ, disable FM trap */
  1896. pci_write_config_byte(chip->pci, VIA_FM_NMI_CTRL, 0);
  1897. /* disable all GPI interrupts */
  1898. outl(0, VIAREG(chip, GPI_INTR));
  1899. }
  1900. if (chip->chip_type != TYPE_VIA686) {
  1901. /* Workaround for Award BIOS bug:
  1902. * DXS channels don't work properly with VRA if MC97 is disabled.
  1903. */
  1904. struct pci_dev *pci;
  1905. pci = pci_get_device(0x1106, 0x3068, NULL); /* MC97 */
  1906. if (pci) {
  1907. unsigned char data;
  1908. pci_read_config_byte(pci, 0x44, &data);
  1909. pci_write_config_byte(pci, 0x44, data | 0x40);
  1910. pci_dev_put(pci);
  1911. }
  1912. }
  1913. if (chip->chip_type != TYPE_VIA8233A) {
  1914. int i, idx;
  1915. for (idx = 0; idx < 4; idx++) {
  1916. unsigned long port = chip->port + 0x10 * idx;
  1917. for (i = 0; i < 2; i++) {
  1918. chip->playback_volume[idx][i]=chip->playback_volume_c[i];
  1919. outb(chip->playback_volume_c[i],
  1920. port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
  1921. }
  1922. }
  1923. }
  1924. return 0;
  1925. }
  1926. #ifdef CONFIG_PM
  1927. /*
  1928. * power management
  1929. */
  1930. static int snd_via82xx_suspend(struct pci_dev *pci, pm_message_t state)
  1931. {
  1932. struct snd_card *card = pci_get_drvdata(pci);
  1933. struct via82xx *chip = card->private_data;
  1934. int i;
  1935. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  1936. for (i = 0; i < 2; i++)
  1937. snd_pcm_suspend_all(chip->pcms[i]);
  1938. for (i = 0; i < chip->num_devs; i++)
  1939. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1940. synchronize_irq(chip->irq);
  1941. snd_ac97_suspend(chip->ac97);
  1942. /* save misc values */
  1943. if (chip->chip_type != TYPE_VIA686) {
  1944. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &chip->spdif_ctrl_saved);
  1945. chip->capture_src_saved[0] = inb(chip->port + VIA_REG_CAPTURE_CHANNEL);
  1946. chip->capture_src_saved[1] = inb(chip->port + VIA_REG_CAPTURE_CHANNEL + 0x10);
  1947. }
  1948. pci_disable_device(pci);
  1949. pci_save_state(pci);
  1950. pci_set_power_state(pci, pci_choose_state(pci, state));
  1951. return 0;
  1952. }
  1953. static int snd_via82xx_resume(struct pci_dev *pci)
  1954. {
  1955. struct snd_card *card = pci_get_drvdata(pci);
  1956. struct via82xx *chip = card->private_data;
  1957. int i;
  1958. pci_set_power_state(pci, PCI_D0);
  1959. pci_restore_state(pci);
  1960. if (pci_enable_device(pci) < 0) {
  1961. printk(KERN_ERR "via82xx: pci_enable_device failed, "
  1962. "disabling device\n");
  1963. snd_card_disconnect(card);
  1964. return -EIO;
  1965. }
  1966. pci_set_master(pci);
  1967. snd_via82xx_chip_init(chip);
  1968. if (chip->chip_type == TYPE_VIA686) {
  1969. if (chip->mpu_port_saved)
  1970. pci_write_config_dword(chip->pci, 0x18, chip->mpu_port_saved | 0x01);
  1971. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, chip->legacy_saved);
  1972. pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, chip->legacy_cfg_saved);
  1973. } else {
  1974. pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, chip->spdif_ctrl_saved);
  1975. outb(chip->capture_src_saved[0], chip->port + VIA_REG_CAPTURE_CHANNEL);
  1976. outb(chip->capture_src_saved[1], chip->port + VIA_REG_CAPTURE_CHANNEL + 0x10);
  1977. }
  1978. snd_ac97_resume(chip->ac97);
  1979. for (i = 0; i < chip->num_devs; i++)
  1980. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1981. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  1982. return 0;
  1983. }
  1984. #endif /* CONFIG_PM */
  1985. static int snd_via82xx_free(struct via82xx *chip)
  1986. {
  1987. unsigned int i;
  1988. if (chip->irq < 0)
  1989. goto __end_hw;
  1990. /* disable interrupts */
  1991. for (i = 0; i < chip->num_devs; i++)
  1992. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1993. if (chip->irq >= 0)
  1994. free_irq(chip->irq, chip);
  1995. __end_hw:
  1996. release_and_free_resource(chip->mpu_res);
  1997. pci_release_regions(chip->pci);
  1998. if (chip->chip_type == TYPE_VIA686) {
  1999. snd_via686_free_gameport(chip);
  2000. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, chip->old_legacy);
  2001. pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, chip->old_legacy_cfg);
  2002. }
  2003. pci_disable_device(chip->pci);
  2004. kfree(chip);
  2005. return 0;
  2006. }
  2007. static int snd_via82xx_dev_free(struct snd_device *device)
  2008. {
  2009. struct via82xx *chip = device->device_data;
  2010. return snd_via82xx_free(chip);
  2011. }
  2012. static int __devinit snd_via82xx_create(struct snd_card *card,
  2013. struct pci_dev *pci,
  2014. int chip_type,
  2015. int revision,
  2016. unsigned int ac97_clock,
  2017. struct via82xx ** r_via)
  2018. {
  2019. struct via82xx *chip;
  2020. int err;
  2021. static struct snd_device_ops ops = {
  2022. .dev_free = snd_via82xx_dev_free,
  2023. };
  2024. if ((err = pci_enable_device(pci)) < 0)
  2025. return err;
  2026. if ((chip = kzalloc(sizeof(*chip), GFP_KERNEL)) == NULL) {
  2027. pci_disable_device(pci);
  2028. return -ENOMEM;
  2029. }
  2030. chip->chip_type = chip_type;
  2031. chip->revision = revision;
  2032. spin_lock_init(&chip->reg_lock);
  2033. spin_lock_init(&chip->rates[0].lock);
  2034. spin_lock_init(&chip->rates[1].lock);
  2035. chip->card = card;
  2036. chip->pci = pci;
  2037. chip->irq = -1;
  2038. pci_read_config_byte(pci, VIA_FUNC_ENABLE, &chip->old_legacy);
  2039. pci_read_config_byte(pci, VIA_PNP_CONTROL, &chip->old_legacy_cfg);
  2040. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE,
  2041. chip->old_legacy & ~(VIA_FUNC_ENABLE_SB|VIA_FUNC_ENABLE_FM));
  2042. if ((err = pci_request_regions(pci, card->driver)) < 0) {
  2043. kfree(chip);
  2044. pci_disable_device(pci);
  2045. return err;
  2046. }
  2047. chip->port = pci_resource_start(pci, 0);
  2048. if (request_irq(pci->irq,
  2049. chip_type == TYPE_VIA8233 ?
  2050. snd_via8233_interrupt : snd_via686_interrupt,
  2051. IRQF_SHARED,
  2052. card->driver, chip)) {
  2053. snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
  2054. snd_via82xx_free(chip);
  2055. return -EBUSY;
  2056. }
  2057. chip->irq = pci->irq;
  2058. if (ac97_clock >= 8000 && ac97_clock <= 48000)
  2059. chip->ac97_clock = ac97_clock;
  2060. synchronize_irq(chip->irq);
  2061. if ((err = snd_via82xx_chip_init(chip)) < 0) {
  2062. snd_via82xx_free(chip);
  2063. return err;
  2064. }
  2065. if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  2066. snd_via82xx_free(chip);
  2067. return err;
  2068. }
  2069. /* The 8233 ac97 controller does not implement the master bit
  2070. * in the pci command register. IMHO this is a violation of the PCI spec.
  2071. * We call pci_set_master here because it does not hurt. */
  2072. pci_set_master(pci);
  2073. snd_card_set_dev(card, &pci->dev);
  2074. *r_via = chip;
  2075. return 0;
  2076. }
  2077. struct via823x_info {
  2078. int revision;
  2079. char *name;
  2080. int type;
  2081. };
  2082. static struct via823x_info via823x_cards[] __devinitdata = {
  2083. { VIA_REV_PRE_8233, "VIA 8233-Pre", TYPE_VIA8233 },
  2084. { VIA_REV_8233C, "VIA 8233C", TYPE_VIA8233 },
  2085. { VIA_REV_8233, "VIA 8233", TYPE_VIA8233 },
  2086. { VIA_REV_8233A, "VIA 8233A", TYPE_VIA8233A },
  2087. { VIA_REV_8235, "VIA 8235", TYPE_VIA8233 },
  2088. { VIA_REV_8237, "VIA 8237", TYPE_VIA8233 },
  2089. { VIA_REV_8251, "VIA 8251", TYPE_VIA8233 },
  2090. };
  2091. /*
  2092. * auto detection of DXS channel supports.
  2093. */
  2094. static struct snd_pci_quirk dxs_whitelist[] __devinitdata = {
  2095. SND_PCI_QUIRK(0x1005, 0x4710, "Avance Logic Mobo", VIA_DXS_ENABLE),
  2096. SND_PCI_QUIRK(0x1019, 0x0996, "ESC Mobo", VIA_DXS_48K),
  2097. SND_PCI_QUIRK(0x1019, 0x0a81, "ECS K7VTA3 v8.0", VIA_DXS_NO_VRA),
  2098. SND_PCI_QUIRK(0x1019, 0x0a85, "ECS L7VMM2", VIA_DXS_NO_VRA),
  2099. SND_PCI_QUIRK(0x1019, 0, "ESC K8", VIA_DXS_SRC),
  2100. SND_PCI_QUIRK(0x1019, 0xaa01, "ESC K8T890-A", VIA_DXS_SRC),
  2101. SND_PCI_QUIRK(0x1025, 0x0033, "Acer Inspire 1353LM", VIA_DXS_NO_VRA),
  2102. SND_PCI_QUIRK(0x1025, 0x0046, "Acer Aspire 1524 WLMi", VIA_DXS_SRC),
  2103. SND_PCI_QUIRK(0x1043, 0, "ASUS A7/A8", VIA_DXS_NO_VRA),
  2104. SND_PCI_QUIRK(0x1071, 0, "Diverse Notebook", VIA_DXS_NO_VRA),
  2105. SND_PCI_QUIRK(0x10cf, 0x118e, "FSC Laptop", VIA_DXS_ENABLE),
  2106. SND_PCI_QUIRK(0x1106, 0, "ASRock", VIA_DXS_SRC),
  2107. SND_PCI_QUIRK(0x1297, 0xa231, "Shuttle AK31v2", VIA_DXS_SRC),
  2108. SND_PCI_QUIRK(0x1297, 0xa232, "Shuttle", VIA_DXS_SRC),
  2109. SND_PCI_QUIRK(0x1297, 0xc160, "Shuttle Sk41G", VIA_DXS_SRC),
  2110. SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte GA-7VAXP", VIA_DXS_ENABLE),
  2111. SND_PCI_QUIRK(0x1462, 0x3800, "MSI KT266", VIA_DXS_ENABLE),
  2112. SND_PCI_QUIRK(0x1462, 0x7120, "MSI KT4V", VIA_DXS_ENABLE),
  2113. SND_PCI_QUIRK(0x1462, 0x7142, "MSI K8MM-V", VIA_DXS_ENABLE),
  2114. SND_PCI_QUIRK(0x1462, 0, "MSI Mobo", VIA_DXS_SRC),
  2115. SND_PCI_QUIRK(0x147b, 0x1401, "ABIT KD7(-RAID)", VIA_DXS_ENABLE),
  2116. SND_PCI_QUIRK(0x147b, 0x1411, "ABIT VA-20", VIA_DXS_ENABLE),
  2117. SND_PCI_QUIRK(0x147b, 0x1413, "ABIT KV8 Pro", VIA_DXS_ENABLE),
  2118. SND_PCI_QUIRK(0x147b, 0x1415, "ABIT AV8", VIA_DXS_NO_VRA),
  2119. SND_PCI_QUIRK(0x14ff, 0x0403, "Twinhead mobo", VIA_DXS_ENABLE),
  2120. SND_PCI_QUIRK(0x14ff, 0x0408, "Twinhead laptop", VIA_DXS_SRC),
  2121. SND_PCI_QUIRK(0x1558, 0x4701, "Clevo D470", VIA_DXS_SRC),
  2122. SND_PCI_QUIRK(0x1584, 0x8120, "Diverse Laptop", VIA_DXS_ENABLE),
  2123. SND_PCI_QUIRK(0x1584, 0x8123, "Targa/Uniwill", VIA_DXS_NO_VRA),
  2124. SND_PCI_QUIRK(0x161f, 0x202b, "Amira Notebook", VIA_DXS_NO_VRA),
  2125. SND_PCI_QUIRK(0x161f, 0x2032, "m680x machines", VIA_DXS_48K),
  2126. SND_PCI_QUIRK(0x1631, 0xe004, "PB EasyNote 3174", VIA_DXS_ENABLE),
  2127. SND_PCI_QUIRK(0x1695, 0x3005, "EPoX EP-8K9A", VIA_DXS_ENABLE),
  2128. SND_PCI_QUIRK(0x1695, 0, "EPoX mobo", VIA_DXS_SRC),
  2129. SND_PCI_QUIRK(0x16f3, 0, "Jetway K8", VIA_DXS_SRC),
  2130. SND_PCI_QUIRK(0x1734, 0, "FSC Laptop", VIA_DXS_SRC),
  2131. SND_PCI_QUIRK(0x1849, 0x3059, "ASRock K7VM2", VIA_DXS_NO_VRA),
  2132. SND_PCI_QUIRK(0x1849, 0, "ASRock mobo", VIA_DXS_SRC),
  2133. SND_PCI_QUIRK(0x1919, 0x200a, "Soltek SL-K8", VIA_DXS_NO_VRA),
  2134. SND_PCI_QUIRK(0x4005, 0x4710, "MSI K7T266", VIA_DXS_SRC),
  2135. { } /* terminator */
  2136. };
  2137. static int __devinit check_dxs_list(struct pci_dev *pci, int revision)
  2138. {
  2139. const struct snd_pci_quirk *w;
  2140. w = snd_pci_quirk_lookup(pci, dxs_whitelist);
  2141. if (w) {
  2142. snd_printdd(KERN_INFO "via82xx: DXS white list for %s found\n",
  2143. w->name);
  2144. return w->value;
  2145. }
  2146. /* for newer revision, default to DXS_SRC */
  2147. if (revision >= VIA_REV_8235)
  2148. return VIA_DXS_SRC;
  2149. /*
  2150. * not detected, try 48k rate only to be sure.
  2151. */
  2152. printk(KERN_INFO "via82xx: Assuming DXS channels with 48k fixed sample rate.\n");
  2153. printk(KERN_INFO " Please try dxs_support=5 option\n");
  2154. printk(KERN_INFO " and report if it works on your machine.\n");
  2155. printk(KERN_INFO " For more details, read ALSA-Configuration.txt.\n");
  2156. return VIA_DXS_48K;
  2157. };
  2158. static int __devinit snd_via82xx_probe(struct pci_dev *pci,
  2159. const struct pci_device_id *pci_id)
  2160. {
  2161. struct snd_card *card;
  2162. struct via82xx *chip;
  2163. int chip_type = 0, card_type;
  2164. unsigned int i;
  2165. int err;
  2166. card = snd_card_new(index, id, THIS_MODULE, 0);
  2167. if (card == NULL)
  2168. return -ENOMEM;
  2169. card_type = pci_id->driver_data;
  2170. switch (card_type) {
  2171. case TYPE_CARD_VIA686:
  2172. strcpy(card->driver, "VIA686A");
  2173. sprintf(card->shortname, "VIA 82C686A/B rev%x", pci->revision);
  2174. chip_type = TYPE_VIA686;
  2175. break;
  2176. case TYPE_CARD_VIA8233:
  2177. chip_type = TYPE_VIA8233;
  2178. sprintf(card->shortname, "VIA 823x rev%x", pci->revision);
  2179. for (i = 0; i < ARRAY_SIZE(via823x_cards); i++) {
  2180. if (pci->revision == via823x_cards[i].revision) {
  2181. chip_type = via823x_cards[i].type;
  2182. strcpy(card->shortname, via823x_cards[i].name);
  2183. break;
  2184. }
  2185. }
  2186. if (chip_type != TYPE_VIA8233A) {
  2187. if (dxs_support == VIA_DXS_AUTO)
  2188. dxs_support = check_dxs_list(pci, pci->revision);
  2189. /* force to use VIA8233 or 8233A model according to
  2190. * dxs_support module option
  2191. */
  2192. if (dxs_support == VIA_DXS_DISABLE)
  2193. chip_type = TYPE_VIA8233A;
  2194. else
  2195. chip_type = TYPE_VIA8233;
  2196. }
  2197. if (chip_type == TYPE_VIA8233A)
  2198. strcpy(card->driver, "VIA8233A");
  2199. else if (pci->revision >= VIA_REV_8237)
  2200. strcpy(card->driver, "VIA8237"); /* no slog assignment */
  2201. else
  2202. strcpy(card->driver, "VIA8233");
  2203. break;
  2204. default:
  2205. snd_printk(KERN_ERR "invalid card type %d\n", card_type);
  2206. err = -EINVAL;
  2207. goto __error;
  2208. }
  2209. if ((err = snd_via82xx_create(card, pci, chip_type, pci->revision,
  2210. ac97_clock, &chip)) < 0)
  2211. goto __error;
  2212. card->private_data = chip;
  2213. if ((err = snd_via82xx_mixer_new(chip, ac97_quirk)) < 0)
  2214. goto __error;
  2215. if (chip_type == TYPE_VIA686) {
  2216. if ((err = snd_via686_pcm_new(chip)) < 0 ||
  2217. (err = snd_via686_init_misc(chip)) < 0)
  2218. goto __error;
  2219. } else {
  2220. if (chip_type == TYPE_VIA8233A) {
  2221. if ((err = snd_via8233a_pcm_new(chip)) < 0)
  2222. goto __error;
  2223. // chip->dxs_fixed = 1; /* FIXME: use 48k for DXS #3? */
  2224. } else {
  2225. if ((err = snd_via8233_pcm_new(chip)) < 0)
  2226. goto __error;
  2227. if (dxs_support == VIA_DXS_48K)
  2228. chip->dxs_fixed = 1;
  2229. else if (dxs_support == VIA_DXS_NO_VRA)
  2230. chip->no_vra = 1;
  2231. else if (dxs_support == VIA_DXS_SRC) {
  2232. chip->no_vra = 1;
  2233. chip->dxs_src = 1;
  2234. }
  2235. }
  2236. if ((err = snd_via8233_init_misc(chip)) < 0)
  2237. goto __error;
  2238. }
  2239. /* disable interrupts */
  2240. for (i = 0; i < chip->num_devs; i++)
  2241. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  2242. snprintf(card->longname, sizeof(card->longname),
  2243. "%s with %s at %#lx, irq %d", card->shortname,
  2244. snd_ac97_get_short_name(chip->ac97), chip->port, chip->irq);
  2245. snd_via82xx_proc_init(chip);
  2246. if ((err = snd_card_register(card)) < 0) {
  2247. snd_card_free(card);
  2248. return err;
  2249. }
  2250. pci_set_drvdata(pci, card);
  2251. return 0;
  2252. __error:
  2253. snd_card_free(card);
  2254. return err;
  2255. }
  2256. static void __devexit snd_via82xx_remove(struct pci_dev *pci)
  2257. {
  2258. snd_card_free(pci_get_drvdata(pci));
  2259. pci_set_drvdata(pci, NULL);
  2260. }
  2261. static struct pci_driver driver = {
  2262. .name = "VIA 82xx Audio",
  2263. .id_table = snd_via82xx_ids,
  2264. .probe = snd_via82xx_probe,
  2265. .remove = __devexit_p(snd_via82xx_remove),
  2266. #ifdef CONFIG_PM
  2267. .suspend = snd_via82xx_suspend,
  2268. .resume = snd_via82xx_resume,
  2269. #endif
  2270. };
  2271. static int __init alsa_card_via82xx_init(void)
  2272. {
  2273. return pci_register_driver(&driver);
  2274. }
  2275. static void __exit alsa_card_via82xx_exit(void)
  2276. {
  2277. pci_unregister_driver(&driver);
  2278. }
  2279. module_init(alsa_card_via82xx_init)
  2280. module_exit(alsa_card_via82xx_exit)