via82xx.c 71 KB

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