via82xx.c 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  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)");
  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. /*
  279. */
  280. typedef struct _snd_via82xx via82xx_t;
  281. typedef struct via_dev viadev_t;
  282. /*
  283. * pcm stream
  284. */
  285. struct snd_via_sg_table {
  286. unsigned int offset;
  287. unsigned int size;
  288. } ;
  289. #define VIA_TABLE_SIZE 255
  290. struct via_dev {
  291. unsigned int reg_offset;
  292. unsigned long port;
  293. int direction; /* playback = 0, capture = 1 */
  294. snd_pcm_substream_t *substream;
  295. int running;
  296. unsigned int tbl_entries; /* # descriptors */
  297. struct snd_dma_buffer table;
  298. struct snd_via_sg_table *idx_table;
  299. /* for recovery from the unexpected pointer */
  300. unsigned int lastpos;
  301. unsigned int fragsize;
  302. unsigned int bufsize;
  303. unsigned int bufsize2;
  304. };
  305. enum { TYPE_CARD_VIA686 = 1, TYPE_CARD_VIA8233 };
  306. enum { TYPE_VIA686, TYPE_VIA8233, TYPE_VIA8233A };
  307. #define VIA_MAX_DEVS 7 /* 4 playback, 1 multi, 2 capture */
  308. struct via_rate_lock {
  309. spinlock_t lock;
  310. int rate;
  311. int used;
  312. };
  313. struct _snd_via82xx {
  314. int irq;
  315. unsigned long port;
  316. struct resource *mpu_res;
  317. int chip_type;
  318. unsigned char revision;
  319. unsigned char old_legacy;
  320. unsigned char old_legacy_cfg;
  321. #ifdef CONFIG_PM
  322. unsigned char legacy_saved;
  323. unsigned char legacy_cfg_saved;
  324. unsigned char spdif_ctrl_saved;
  325. unsigned char capture_src_saved[2];
  326. unsigned int mpu_port_saved;
  327. #endif
  328. unsigned char playback_volume[2]; /* for VIA8233/C/8235; default = 0 */
  329. unsigned int intr_mask; /* SGD_SHADOW mask to check interrupts */
  330. struct pci_dev *pci;
  331. snd_card_t *card;
  332. unsigned int num_devs;
  333. unsigned int playback_devno, multi_devno, capture_devno;
  334. viadev_t devs[VIA_MAX_DEVS];
  335. struct via_rate_lock rates[2]; /* playback and capture */
  336. unsigned int dxs_fixed: 1; /* DXS channel accepts only 48kHz */
  337. unsigned int no_vra: 1; /* no need to set VRA on DXS channels */
  338. unsigned int spdif_on: 1; /* only spdif rates work to external DACs */
  339. snd_pcm_t *pcms[2];
  340. snd_rawmidi_t *rmidi;
  341. ac97_bus_t *ac97_bus;
  342. ac97_t *ac97;
  343. unsigned int ac97_clock;
  344. unsigned int ac97_secondary; /* secondary AC'97 codec is present */
  345. spinlock_t reg_lock;
  346. snd_info_entry_t *proc_entry;
  347. #ifdef SUPPORT_JOYSTICK
  348. struct gameport *gameport;
  349. #endif
  350. };
  351. static struct pci_device_id snd_via82xx_ids[] = {
  352. { 0x1106, 0x3058, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA686, }, /* 686A */
  353. { 0x1106, 0x3059, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA8233, }, /* VT8233 */
  354. { 0, }
  355. };
  356. MODULE_DEVICE_TABLE(pci, snd_via82xx_ids);
  357. /*
  358. */
  359. /*
  360. * allocate and initialize the descriptor buffers
  361. * periods = number of periods
  362. * fragsize = period size in bytes
  363. */
  364. static int build_via_table(viadev_t *dev, snd_pcm_substream_t *substream,
  365. struct pci_dev *pci,
  366. unsigned int periods, unsigned int fragsize)
  367. {
  368. unsigned int i, idx, ofs, rest;
  369. via82xx_t *chip = snd_pcm_substream_chip(substream);
  370. struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
  371. if (dev->table.area == NULL) {
  372. /* the start of each lists must be aligned to 8 bytes,
  373. * but the kernel pages are much bigger, so we don't care
  374. */
  375. if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
  376. PAGE_ALIGN(VIA_TABLE_SIZE * 2 * 8),
  377. &dev->table) < 0)
  378. return -ENOMEM;
  379. }
  380. if (! dev->idx_table) {
  381. dev->idx_table = kmalloc(sizeof(*dev->idx_table) * VIA_TABLE_SIZE, GFP_KERNEL);
  382. if (! dev->idx_table)
  383. return -ENOMEM;
  384. }
  385. /* fill the entries */
  386. idx = 0;
  387. ofs = 0;
  388. for (i = 0; i < periods; i++) {
  389. rest = fragsize;
  390. /* fill descriptors for a period.
  391. * a period can be split to several descriptors if it's
  392. * over page boundary.
  393. */
  394. do {
  395. unsigned int r;
  396. unsigned int flag;
  397. if (idx >= VIA_TABLE_SIZE) {
  398. snd_printk(KERN_ERR "via82xx: too much table size!\n");
  399. return -EINVAL;
  400. }
  401. ((u32 *)dev->table.area)[idx << 1] = cpu_to_le32((u32)snd_pcm_sgbuf_get_addr(sgbuf, ofs));
  402. r = PAGE_SIZE - (ofs % PAGE_SIZE);
  403. if (rest < r)
  404. r = rest;
  405. rest -= r;
  406. if (! rest) {
  407. if (i == periods - 1)
  408. flag = VIA_TBL_BIT_EOL; /* buffer boundary */
  409. else
  410. flag = VIA_TBL_BIT_FLAG; /* period boundary */
  411. } else
  412. flag = 0; /* period continues to the next */
  413. // printk("via: tbl %d: at %d size %d (rest %d)\n", idx, ofs, r, rest);
  414. ((u32 *)dev->table.area)[(idx<<1) + 1] = cpu_to_le32(r | flag);
  415. dev->idx_table[idx].offset = ofs;
  416. dev->idx_table[idx].size = r;
  417. ofs += r;
  418. idx++;
  419. } while (rest > 0);
  420. }
  421. dev->tbl_entries = idx;
  422. dev->bufsize = periods * fragsize;
  423. dev->bufsize2 = dev->bufsize / 2;
  424. dev->fragsize = fragsize;
  425. return 0;
  426. }
  427. static int clean_via_table(viadev_t *dev, snd_pcm_substream_t *substream,
  428. struct pci_dev *pci)
  429. {
  430. if (dev->table.area) {
  431. snd_dma_free_pages(&dev->table);
  432. dev->table.area = NULL;
  433. }
  434. if (dev->idx_table) {
  435. kfree(dev->idx_table);
  436. dev->idx_table = NULL;
  437. }
  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. set_current_state(TASK_UNINTERRUPTIBLE);
  485. schedule_timeout(HZ/2);
  486. }
  487. static void snd_via82xx_codec_write(ac97_t *ac97,
  488. unsigned short reg,
  489. unsigned short val)
  490. {
  491. via82xx_t *chip = ac97->private_data;
  492. unsigned int xval;
  493. xval = !ac97->num ? VIA_REG_AC97_CODEC_ID_PRIMARY : VIA_REG_AC97_CODEC_ID_SECONDARY;
  494. xval <<= VIA_REG_AC97_CODEC_ID_SHIFT;
  495. xval |= reg << VIA_REG_AC97_CMD_SHIFT;
  496. xval |= val << VIA_REG_AC97_DATA_SHIFT;
  497. snd_via82xx_codec_xwrite(chip, xval);
  498. snd_via82xx_codec_ready(chip, ac97->num);
  499. }
  500. static unsigned short snd_via82xx_codec_read(ac97_t *ac97, unsigned short reg)
  501. {
  502. via82xx_t *chip = ac97->private_data;
  503. unsigned int xval, val = 0xffff;
  504. int again = 0;
  505. xval = ac97->num << VIA_REG_AC97_CODEC_ID_SHIFT;
  506. xval |= ac97->num ? VIA_REG_AC97_SECONDARY_VALID : VIA_REG_AC97_PRIMARY_VALID;
  507. xval |= VIA_REG_AC97_READ;
  508. xval |= (reg & 0x7f) << VIA_REG_AC97_CMD_SHIFT;
  509. while (1) {
  510. if (again++ > 3) {
  511. snd_printk(KERN_ERR "codec_read: codec %i is not valid [0x%x]\n", ac97->num, snd_via82xx_codec_xread(chip));
  512. return 0xffff;
  513. }
  514. snd_via82xx_codec_xwrite(chip, xval);
  515. udelay (20);
  516. if (snd_via82xx_codec_valid(chip, ac97->num) >= 0) {
  517. udelay(25);
  518. val = snd_via82xx_codec_xread(chip);
  519. break;
  520. }
  521. }
  522. return val & 0xffff;
  523. }
  524. static void snd_via82xx_channel_reset(via82xx_t *chip, viadev_t *viadev)
  525. {
  526. outb(VIA_REG_CTRL_PAUSE | VIA_REG_CTRL_TERMINATE | VIA_REG_CTRL_RESET,
  527. VIADEV_REG(viadev, OFFSET_CONTROL));
  528. inb(VIADEV_REG(viadev, OFFSET_CONTROL));
  529. udelay(50);
  530. /* disable interrupts */
  531. outb(0x00, VIADEV_REG(viadev, OFFSET_CONTROL));
  532. /* clear interrupts */
  533. outb(0x03, VIADEV_REG(viadev, OFFSET_STATUS));
  534. outb(0x00, VIADEV_REG(viadev, OFFSET_TYPE)); /* for via686 */
  535. // outl(0, VIADEV_REG(viadev, OFFSET_CURR_PTR));
  536. viadev->lastpos = 0;
  537. }
  538. /*
  539. * Interrupt handler
  540. */
  541. static irqreturn_t snd_via82xx_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  542. {
  543. via82xx_t *chip = dev_id;
  544. unsigned int status;
  545. unsigned int i;
  546. status = inl(VIAREG(chip, SGD_SHADOW));
  547. if (! (status & chip->intr_mask)) {
  548. if (chip->rmidi)
  549. /* check mpu401 interrupt */
  550. return snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs);
  551. return IRQ_NONE;
  552. }
  553. /* check status for each stream */
  554. spin_lock(&chip->reg_lock);
  555. for (i = 0; i < chip->num_devs; i++) {
  556. viadev_t *viadev = &chip->devs[i];
  557. unsigned char c_status = inb(VIADEV_REG(viadev, OFFSET_STATUS));
  558. c_status &= (VIA_REG_STAT_EOL|VIA_REG_STAT_FLAG|VIA_REG_STAT_STOPPED);
  559. if (! c_status)
  560. continue;
  561. if (viadev->substream && viadev->running) {
  562. spin_unlock(&chip->reg_lock);
  563. snd_pcm_period_elapsed(viadev->substream);
  564. spin_lock(&chip->reg_lock);
  565. }
  566. outb(c_status, VIADEV_REG(viadev, OFFSET_STATUS)); /* ack */
  567. }
  568. spin_unlock(&chip->reg_lock);
  569. return IRQ_HANDLED;
  570. }
  571. /*
  572. * PCM callbacks
  573. */
  574. /*
  575. * trigger callback
  576. */
  577. static int snd_via82xx_pcm_trigger(snd_pcm_substream_t * substream, int cmd)
  578. {
  579. via82xx_t *chip = snd_pcm_substream_chip(substream);
  580. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  581. unsigned char val;
  582. if (chip->chip_type != TYPE_VIA686)
  583. val = VIA_REG_CTRL_INT;
  584. else
  585. val = 0;
  586. switch (cmd) {
  587. case SNDRV_PCM_TRIGGER_START:
  588. val |= VIA_REG_CTRL_START;
  589. viadev->running = 1;
  590. break;
  591. case SNDRV_PCM_TRIGGER_STOP:
  592. val = VIA_REG_CTRL_TERMINATE;
  593. viadev->running = 0;
  594. break;
  595. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  596. val |= VIA_REG_CTRL_PAUSE;
  597. viadev->running = 0;
  598. break;
  599. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  600. viadev->running = 1;
  601. break;
  602. default:
  603. return -EINVAL;
  604. }
  605. outb(val, VIADEV_REG(viadev, OFFSET_CONTROL));
  606. if (cmd == SNDRV_PCM_TRIGGER_STOP)
  607. snd_via82xx_channel_reset(chip, viadev);
  608. return 0;
  609. }
  610. /*
  611. * pointer callbacks
  612. */
  613. /*
  614. * calculate the linear position at the given sg-buffer index and the rest count
  615. */
  616. #define check_invalid_pos(viadev,pos) \
  617. ((pos) < viadev->lastpos && ((pos) >= viadev->bufsize2 || viadev->lastpos < viadev->bufsize2))
  618. static inline unsigned int calc_linear_pos(viadev_t *viadev, unsigned int idx, unsigned int count)
  619. {
  620. unsigned int size, base, res;
  621. size = viadev->idx_table[idx].size;
  622. base = viadev->idx_table[idx].offset;
  623. res = base + size - count;
  624. /* check the validity of the calculated position */
  625. if (size < count) {
  626. snd_printd(KERN_ERR "invalid via82xx_cur_ptr (size = %d, count = %d)\n", (int)size, (int)count);
  627. res = viadev->lastpos;
  628. } else {
  629. if (! count) {
  630. /* Some mobos report count = 0 on the DMA boundary,
  631. * i.e. count = size indeed.
  632. * Let's check whether this step is above the expected size.
  633. */
  634. int delta = res - viadev->lastpos;
  635. if (delta < 0)
  636. delta += viadev->bufsize;
  637. if ((unsigned int)delta > viadev->fragsize)
  638. res = base;
  639. }
  640. if (check_invalid_pos(viadev, res)) {
  641. #ifdef POINTER_DEBUG
  642. 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);
  643. #endif
  644. /* count register returns full size when end of buffer is reached */
  645. res = base + size;
  646. if (check_invalid_pos(viadev, res)) {
  647. snd_printd(KERN_ERR "invalid via82xx_cur_ptr (2), using last valid pointer\n");
  648. res = viadev->lastpos;
  649. }
  650. }
  651. }
  652. viadev->lastpos = res; /* remember the last position */
  653. if (res >= viadev->bufsize)
  654. res -= viadev->bufsize;
  655. return res;
  656. }
  657. /*
  658. * get the current pointer on via686
  659. */
  660. static snd_pcm_uframes_t snd_via686_pcm_pointer(snd_pcm_substream_t *substream)
  661. {
  662. via82xx_t *chip = snd_pcm_substream_chip(substream);
  663. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  664. unsigned int idx, ptr, count, res;
  665. snd_assert(viadev->tbl_entries, return 0);
  666. if (!(inb(VIADEV_REG(viadev, OFFSET_STATUS)) & VIA_REG_STAT_ACTIVE))
  667. return 0;
  668. spin_lock(&chip->reg_lock);
  669. count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT)) & 0xffffff;
  670. /* The via686a does not have the current index register,
  671. * so we need to calculate the index from CURR_PTR.
  672. */
  673. ptr = inl(VIADEV_REG(viadev, OFFSET_CURR_PTR));
  674. if (ptr <= (unsigned int)viadev->table.addr)
  675. idx = 0;
  676. else /* CURR_PTR holds the address + 8 */
  677. idx = ((ptr - (unsigned int)viadev->table.addr) / 8 - 1) % viadev->tbl_entries;
  678. res = calc_linear_pos(viadev, idx, count);
  679. spin_unlock(&chip->reg_lock);
  680. return bytes_to_frames(substream->runtime, res);
  681. }
  682. /*
  683. * get the current pointer on via823x
  684. */
  685. static snd_pcm_uframes_t snd_via8233_pcm_pointer(snd_pcm_substream_t *substream)
  686. {
  687. via82xx_t *chip = snd_pcm_substream_chip(substream);
  688. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  689. unsigned int idx, count, res;
  690. int timeout = 5000;
  691. snd_assert(viadev->tbl_entries, return 0);
  692. if (!(inb(VIADEV_REG(viadev, OFFSET_STATUS)) & VIA_REG_STAT_ACTIVE))
  693. return 0;
  694. spin_lock(&chip->reg_lock);
  695. do {
  696. count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT));
  697. /* some mobos read 0 count */
  698. if ((count & 0xffffff) || ! viadev->running)
  699. break;
  700. } while (--timeout);
  701. if (! timeout)
  702. snd_printd(KERN_ERR "zero position is read\n");
  703. idx = count >> 24;
  704. if (idx >= viadev->tbl_entries) {
  705. #ifdef POINTER_DEBUG
  706. printk("fail: invalid idx = %i/%i\n", idx, viadev->tbl_entries);
  707. #endif
  708. res = viadev->lastpos;
  709. } else {
  710. count &= 0xffffff;
  711. res = calc_linear_pos(viadev, idx, count);
  712. }
  713. spin_unlock(&chip->reg_lock);
  714. return bytes_to_frames(substream->runtime, res);
  715. }
  716. /*
  717. * hw_params callback:
  718. * allocate the buffer and build up the buffer description table
  719. */
  720. static int snd_via82xx_hw_params(snd_pcm_substream_t * substream,
  721. snd_pcm_hw_params_t * hw_params)
  722. {
  723. via82xx_t *chip = snd_pcm_substream_chip(substream);
  724. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  725. int err;
  726. err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
  727. if (err < 0)
  728. return err;
  729. err = build_via_table(viadev, substream, chip->pci,
  730. params_periods(hw_params),
  731. params_period_bytes(hw_params));
  732. if (err < 0)
  733. return err;
  734. return 0;
  735. }
  736. /*
  737. * hw_free callback:
  738. * clean up the buffer description table and release the buffer
  739. */
  740. static int snd_via82xx_hw_free(snd_pcm_substream_t * substream)
  741. {
  742. via82xx_t *chip = snd_pcm_substream_chip(substream);
  743. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  744. clean_via_table(viadev, substream, chip->pci);
  745. snd_pcm_lib_free_pages(substream);
  746. return 0;
  747. }
  748. /*
  749. * set up the table pointer
  750. */
  751. static void snd_via82xx_set_table_ptr(via82xx_t *chip, viadev_t *viadev)
  752. {
  753. snd_via82xx_codec_ready(chip, 0);
  754. outl((u32)viadev->table.addr, VIADEV_REG(viadev, OFFSET_TABLE_PTR));
  755. udelay(20);
  756. snd_via82xx_codec_ready(chip, 0);
  757. }
  758. /*
  759. * prepare callback for playback and capture on via686
  760. */
  761. static void via686_setup_format(via82xx_t *chip, viadev_t *viadev, snd_pcm_runtime_t *runtime)
  762. {
  763. snd_via82xx_channel_reset(chip, viadev);
  764. /* this must be set after channel_reset */
  765. snd_via82xx_set_table_ptr(chip, viadev);
  766. outb(VIA_REG_TYPE_AUTOSTART |
  767. (runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA_REG_TYPE_16BIT : 0) |
  768. (runtime->channels > 1 ? VIA_REG_TYPE_STEREO : 0) |
  769. ((viadev->reg_offset & 0x10) == 0 ? VIA_REG_TYPE_INT_LSAMPLE : 0) |
  770. VIA_REG_TYPE_INT_EOL |
  771. VIA_REG_TYPE_INT_FLAG, VIADEV_REG(viadev, OFFSET_TYPE));
  772. }
  773. static int snd_via686_playback_prepare(snd_pcm_substream_t *substream)
  774. {
  775. via82xx_t *chip = snd_pcm_substream_chip(substream);
  776. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  777. snd_pcm_runtime_t *runtime = substream->runtime;
  778. snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
  779. snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
  780. via686_setup_format(chip, viadev, runtime);
  781. return 0;
  782. }
  783. static int snd_via686_capture_prepare(snd_pcm_substream_t *substream)
  784. {
  785. via82xx_t *chip = snd_pcm_substream_chip(substream);
  786. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  787. snd_pcm_runtime_t *runtime = substream->runtime;
  788. snd_ac97_set_rate(chip->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
  789. via686_setup_format(chip, viadev, runtime);
  790. return 0;
  791. }
  792. /*
  793. * lock the current rate
  794. */
  795. static int via_lock_rate(struct via_rate_lock *rec, int rate)
  796. {
  797. int changed = 0;
  798. spin_lock_irq(&rec->lock);
  799. if (rec->rate != rate) {
  800. if (rec->rate && rec->used > 1) /* already set */
  801. changed = -EINVAL;
  802. else {
  803. rec->rate = rate;
  804. changed = 1;
  805. }
  806. }
  807. spin_unlock_irq(&rec->lock);
  808. return changed;
  809. }
  810. /*
  811. * prepare callback for DSX playback on via823x
  812. */
  813. static int snd_via8233_playback_prepare(snd_pcm_substream_t *substream)
  814. {
  815. via82xx_t *chip = snd_pcm_substream_chip(substream);
  816. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  817. snd_pcm_runtime_t *runtime = substream->runtime;
  818. int rate_changed;
  819. u32 rbits;
  820. if ((rate_changed = via_lock_rate(&chip->rates[0], runtime->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. snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
  826. }
  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 (! ratep->rate) {
  957. int idx = viadev->direction ? AC97_RATES_ADC : AC97_RATES_FRONT_DAC;
  958. runtime->hw.rates = chip->ac97->rates[idx];
  959. snd_pcm_limit_hw_rates(runtime);
  960. } else {
  961. /* a fixed rate */
  962. runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
  963. runtime->hw.rate_max = runtime->hw.rate_min = ratep->rate;
  964. }
  965. spin_unlock_irq(&ratep->lock);
  966. /* we may remove following constaint when we modify table entries
  967. in interrupt */
  968. if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
  969. return err;
  970. runtime->private_data = viadev;
  971. viadev->substream = substream;
  972. return 0;
  973. }
  974. /*
  975. * open callback for playback on via686 and via823x DSX
  976. */
  977. static int snd_via82xx_playback_open(snd_pcm_substream_t * substream)
  978. {
  979. via82xx_t *chip = snd_pcm_substream_chip(substream);
  980. viadev_t *viadev = &chip->devs[chip->playback_devno + substream->number];
  981. int err;
  982. if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0)
  983. return err;
  984. return 0;
  985. }
  986. /*
  987. * open callback for playback on via823x multi-channel
  988. */
  989. static int snd_via8233_multi_open(snd_pcm_substream_t * substream)
  990. {
  991. via82xx_t *chip = snd_pcm_substream_chip(substream);
  992. viadev_t *viadev = &chip->devs[chip->multi_devno];
  993. int err;
  994. /* channels constraint for VIA8233A
  995. * 3 and 5 channels are not supported
  996. */
  997. static unsigned int channels[] = {
  998. 1, 2, 4, 6
  999. };
  1000. static snd_pcm_hw_constraint_list_t hw_constraints_channels = {
  1001. .count = ARRAY_SIZE(channels),
  1002. .list = channels,
  1003. .mask = 0,
  1004. };
  1005. if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0)
  1006. return err;
  1007. substream->runtime->hw.channels_max = 6;
  1008. if (chip->revision == VIA_REV_8233A)
  1009. snd_pcm_hw_constraint_list(substream->runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels);
  1010. return 0;
  1011. }
  1012. /*
  1013. * open callback for capture on via686 and via823x
  1014. */
  1015. static int snd_via82xx_capture_open(snd_pcm_substream_t * substream)
  1016. {
  1017. via82xx_t *chip = snd_pcm_substream_chip(substream);
  1018. viadev_t *viadev = &chip->devs[chip->capture_devno + substream->pcm->device];
  1019. return snd_via82xx_pcm_open(chip, viadev, substream);
  1020. }
  1021. /*
  1022. * close callback
  1023. */
  1024. static int snd_via82xx_pcm_close(snd_pcm_substream_t * substream)
  1025. {
  1026. via82xx_t *chip = snd_pcm_substream_chip(substream);
  1027. viadev_t *viadev = (viadev_t *)substream->runtime->private_data;
  1028. struct via_rate_lock *ratep;
  1029. /* release the rate lock */
  1030. ratep = &chip->rates[viadev->direction];
  1031. spin_lock_irq(&ratep->lock);
  1032. ratep->used--;
  1033. if (! ratep->used)
  1034. ratep->rate = 0;
  1035. spin_unlock_irq(&ratep->lock);
  1036. viadev->substream = NULL;
  1037. return 0;
  1038. }
  1039. /* via686 playback callbacks */
  1040. static snd_pcm_ops_t snd_via686_playback_ops = {
  1041. .open = snd_via82xx_playback_open,
  1042. .close = snd_via82xx_pcm_close,
  1043. .ioctl = snd_pcm_lib_ioctl,
  1044. .hw_params = snd_via82xx_hw_params,
  1045. .hw_free = snd_via82xx_hw_free,
  1046. .prepare = snd_via686_playback_prepare,
  1047. .trigger = snd_via82xx_pcm_trigger,
  1048. .pointer = snd_via686_pcm_pointer,
  1049. .page = snd_pcm_sgbuf_ops_page,
  1050. };
  1051. /* via686 capture callbacks */
  1052. static snd_pcm_ops_t snd_via686_capture_ops = {
  1053. .open = snd_via82xx_capture_open,
  1054. .close = snd_via82xx_pcm_close,
  1055. .ioctl = snd_pcm_lib_ioctl,
  1056. .hw_params = snd_via82xx_hw_params,
  1057. .hw_free = snd_via82xx_hw_free,
  1058. .prepare = snd_via686_capture_prepare,
  1059. .trigger = snd_via82xx_pcm_trigger,
  1060. .pointer = snd_via686_pcm_pointer,
  1061. .page = snd_pcm_sgbuf_ops_page,
  1062. };
  1063. /* via823x DSX playback callbacks */
  1064. static snd_pcm_ops_t snd_via8233_playback_ops = {
  1065. .open = snd_via82xx_playback_open,
  1066. .close = snd_via82xx_pcm_close,
  1067. .ioctl = snd_pcm_lib_ioctl,
  1068. .hw_params = snd_via82xx_hw_params,
  1069. .hw_free = snd_via82xx_hw_free,
  1070. .prepare = snd_via8233_playback_prepare,
  1071. .trigger = snd_via82xx_pcm_trigger,
  1072. .pointer = snd_via8233_pcm_pointer,
  1073. .page = snd_pcm_sgbuf_ops_page,
  1074. };
  1075. /* via823x multi-channel playback callbacks */
  1076. static snd_pcm_ops_t snd_via8233_multi_ops = {
  1077. .open = snd_via8233_multi_open,
  1078. .close = snd_via82xx_pcm_close,
  1079. .ioctl = snd_pcm_lib_ioctl,
  1080. .hw_params = snd_via82xx_hw_params,
  1081. .hw_free = snd_via82xx_hw_free,
  1082. .prepare = snd_via8233_multi_prepare,
  1083. .trigger = snd_via82xx_pcm_trigger,
  1084. .pointer = snd_via8233_pcm_pointer,
  1085. .page = snd_pcm_sgbuf_ops_page,
  1086. };
  1087. /* via823x capture callbacks */
  1088. static snd_pcm_ops_t snd_via8233_capture_ops = {
  1089. .open = snd_via82xx_capture_open,
  1090. .close = snd_via82xx_pcm_close,
  1091. .ioctl = snd_pcm_lib_ioctl,
  1092. .hw_params = snd_via82xx_hw_params,
  1093. .hw_free = snd_via82xx_hw_free,
  1094. .prepare = snd_via8233_capture_prepare,
  1095. .trigger = snd_via82xx_pcm_trigger,
  1096. .pointer = snd_via8233_pcm_pointer,
  1097. .page = snd_pcm_sgbuf_ops_page,
  1098. };
  1099. static void init_viadev(via82xx_t *chip, int idx, unsigned int reg_offset, int direction)
  1100. {
  1101. chip->devs[idx].reg_offset = reg_offset;
  1102. chip->devs[idx].direction = direction;
  1103. chip->devs[idx].port = chip->port + reg_offset;
  1104. }
  1105. /*
  1106. * create pcm instances for VIA8233, 8233C and 8235 (not 8233A)
  1107. */
  1108. static int __devinit snd_via8233_pcm_new(via82xx_t *chip)
  1109. {
  1110. snd_pcm_t *pcm;
  1111. int i, err;
  1112. chip->playback_devno = 0; /* x 4 */
  1113. chip->multi_devno = 4; /* x 1 */
  1114. chip->capture_devno = 5; /* x 2 */
  1115. chip->num_devs = 7;
  1116. chip->intr_mask = 0x33033333; /* FLAG|EOL for rec0-1, mc, sdx0-3 */
  1117. /* PCM #0: 4 DSX playbacks and 1 capture */
  1118. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 4, 1, &pcm);
  1119. if (err < 0)
  1120. return err;
  1121. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_playback_ops);
  1122. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
  1123. pcm->private_data = chip;
  1124. strcpy(pcm->name, chip->card->shortname);
  1125. chip->pcms[0] = pcm;
  1126. /* set up playbacks */
  1127. for (i = 0; i < 4; i++)
  1128. init_viadev(chip, i, 0x10 * i, 0);
  1129. /* capture */
  1130. init_viadev(chip, chip->capture_devno, VIA_REG_CAPTURE_8233_STATUS, 1);
  1131. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1132. snd_dma_pci_data(chip->pci), 64*1024, 128*1024)) < 0)
  1133. return err;
  1134. /* PCM #1: multi-channel playback and 2nd capture */
  1135. err = snd_pcm_new(chip->card, chip->card->shortname, 1, 1, 1, &pcm);
  1136. if (err < 0)
  1137. return err;
  1138. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_multi_ops);
  1139. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
  1140. pcm->private_data = chip;
  1141. strcpy(pcm->name, chip->card->shortname);
  1142. chip->pcms[1] = pcm;
  1143. /* set up playback */
  1144. init_viadev(chip, chip->multi_devno, VIA_REG_MULTPLAY_STATUS, 0);
  1145. /* set up capture */
  1146. init_viadev(chip, chip->capture_devno + 1, VIA_REG_CAPTURE_8233_STATUS + 0x10, 1);
  1147. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1148. snd_dma_pci_data(chip->pci), 64*1024, 128*1024)) < 0)
  1149. return err;
  1150. return 0;
  1151. }
  1152. /*
  1153. * create pcm instances for VIA8233A
  1154. */
  1155. static int __devinit snd_via8233a_pcm_new(via82xx_t *chip)
  1156. {
  1157. snd_pcm_t *pcm;
  1158. int err;
  1159. chip->multi_devno = 0;
  1160. chip->playback_devno = 1;
  1161. chip->capture_devno = 2;
  1162. chip->num_devs = 3;
  1163. chip->intr_mask = 0x03033000; /* FLAG|EOL for rec0, mc, sdx3 */
  1164. /* PCM #0: multi-channel playback and capture */
  1165. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
  1166. if (err < 0)
  1167. return err;
  1168. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_multi_ops);
  1169. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
  1170. pcm->private_data = chip;
  1171. strcpy(pcm->name, chip->card->shortname);
  1172. chip->pcms[0] = pcm;
  1173. /* set up playback */
  1174. init_viadev(chip, chip->multi_devno, VIA_REG_MULTPLAY_STATUS, 0);
  1175. /* capture */
  1176. init_viadev(chip, chip->capture_devno, VIA_REG_CAPTURE_8233_STATUS, 1);
  1177. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1178. snd_dma_pci_data(chip->pci), 64*1024, 128*1024)) < 0)
  1179. return err;
  1180. /* SPDIF supported? */
  1181. if (! ac97_can_spdif(chip->ac97))
  1182. return 0;
  1183. /* PCM #1: DXS3 playback (for spdif) */
  1184. err = snd_pcm_new(chip->card, chip->card->shortname, 1, 1, 0, &pcm);
  1185. if (err < 0)
  1186. return err;
  1187. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_playback_ops);
  1188. pcm->private_data = chip;
  1189. strcpy(pcm->name, chip->card->shortname);
  1190. chip->pcms[1] = pcm;
  1191. /* set up playback */
  1192. init_viadev(chip, chip->playback_devno, 0x30, 0);
  1193. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1194. snd_dma_pci_data(chip->pci), 64*1024, 128*1024)) < 0)
  1195. return err;
  1196. return 0;
  1197. }
  1198. /*
  1199. * create a pcm instance for via686a/b
  1200. */
  1201. static int __devinit snd_via686_pcm_new(via82xx_t *chip)
  1202. {
  1203. snd_pcm_t *pcm;
  1204. int err;
  1205. chip->playback_devno = 0;
  1206. chip->capture_devno = 1;
  1207. chip->num_devs = 2;
  1208. chip->intr_mask = 0x77; /* FLAG | EOL for PB, CP, FM */
  1209. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
  1210. if (err < 0)
  1211. return err;
  1212. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via686_playback_ops);
  1213. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via686_capture_ops);
  1214. pcm->private_data = chip;
  1215. strcpy(pcm->name, chip->card->shortname);
  1216. chip->pcms[0] = pcm;
  1217. init_viadev(chip, 0, VIA_REG_PLAYBACK_STATUS, 0);
  1218. init_viadev(chip, 1, VIA_REG_CAPTURE_STATUS, 1);
  1219. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  1220. snd_dma_pci_data(chip->pci), 64*1024, 128*1024)) < 0)
  1221. return err;
  1222. return 0;
  1223. }
  1224. /*
  1225. * Mixer part
  1226. */
  1227. static int snd_via8233_capture_source_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
  1228. {
  1229. /* formerly they were "Line" and "Mic", but it looks like that they
  1230. * have nothing to do with the actual physical connections...
  1231. */
  1232. static char *texts[2] = {
  1233. "Input1", "Input2"
  1234. };
  1235. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1236. uinfo->count = 1;
  1237. uinfo->value.enumerated.items = 2;
  1238. if (uinfo->value.enumerated.item >= 2)
  1239. uinfo->value.enumerated.item = 1;
  1240. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1241. return 0;
  1242. }
  1243. static int snd_via8233_capture_source_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
  1244. {
  1245. via82xx_t *chip = snd_kcontrol_chip(kcontrol);
  1246. unsigned long port = chip->port + (kcontrol->id.index ? (VIA_REG_CAPTURE_CHANNEL + 0x10) : VIA_REG_CAPTURE_CHANNEL);
  1247. ucontrol->value.enumerated.item[0] = inb(port) & VIA_REG_CAPTURE_CHANNEL_MIC ? 1 : 0;
  1248. return 0;
  1249. }
  1250. static int snd_via8233_capture_source_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
  1251. {
  1252. via82xx_t *chip = snd_kcontrol_chip(kcontrol);
  1253. unsigned long port = chip->port + (kcontrol->id.index ? (VIA_REG_CAPTURE_CHANNEL + 0x10) : VIA_REG_CAPTURE_CHANNEL);
  1254. u8 val, oval;
  1255. spin_lock_irq(&chip->reg_lock);
  1256. oval = inb(port);
  1257. val = oval & ~VIA_REG_CAPTURE_CHANNEL_MIC;
  1258. if (ucontrol->value.enumerated.item[0])
  1259. val |= VIA_REG_CAPTURE_CHANNEL_MIC;
  1260. if (val != oval)
  1261. outb(val, port);
  1262. spin_unlock_irq(&chip->reg_lock);
  1263. return val != oval;
  1264. }
  1265. static snd_kcontrol_new_t snd_via8233_capture_source __devinitdata = {
  1266. .name = "Input Source Select",
  1267. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1268. .info = snd_via8233_capture_source_info,
  1269. .get = snd_via8233_capture_source_get,
  1270. .put = snd_via8233_capture_source_put,
  1271. };
  1272. static int snd_via8233_dxs3_spdif_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
  1273. {
  1274. uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  1275. uinfo->count = 1;
  1276. uinfo->value.integer.min = 0;
  1277. uinfo->value.integer.max = 1;
  1278. return 0;
  1279. }
  1280. static int snd_via8233_dxs3_spdif_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
  1281. {
  1282. via82xx_t *chip = snd_kcontrol_chip(kcontrol);
  1283. u8 val;
  1284. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &val);
  1285. ucontrol->value.integer.value[0] = (val & VIA8233_SPDIF_DX3) ? 1 : 0;
  1286. return 0;
  1287. }
  1288. static int snd_via8233_dxs3_spdif_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
  1289. {
  1290. via82xx_t *chip = snd_kcontrol_chip(kcontrol);
  1291. u8 val, oval;
  1292. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &oval);
  1293. val = oval & ~VIA8233_SPDIF_DX3;
  1294. if (ucontrol->value.integer.value[0])
  1295. val |= VIA8233_SPDIF_DX3;
  1296. /* save the spdif flag for rate filtering */
  1297. chip->spdif_on = ucontrol->value.integer.value[0] ? 1 : 0;
  1298. if (val != oval) {
  1299. pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, val);
  1300. return 1;
  1301. }
  1302. return 0;
  1303. }
  1304. static snd_kcontrol_new_t snd_via8233_dxs3_spdif_control __devinitdata = {
  1305. .name = "IEC958 Output Switch",
  1306. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1307. .info = snd_via8233_dxs3_spdif_info,
  1308. .get = snd_via8233_dxs3_spdif_get,
  1309. .put = snd_via8233_dxs3_spdif_put,
  1310. };
  1311. static int snd_via8233_dxs_volume_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
  1312. {
  1313. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1314. uinfo->count = 2;
  1315. uinfo->value.integer.min = 0;
  1316. uinfo->value.integer.max = VIA_DXS_MAX_VOLUME;
  1317. return 0;
  1318. }
  1319. static int snd_via8233_dxs_volume_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
  1320. {
  1321. via82xx_t *chip = snd_kcontrol_chip(kcontrol);
  1322. ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume[0];
  1323. ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume[1];
  1324. return 0;
  1325. }
  1326. static int snd_via8233_dxs_volume_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
  1327. {
  1328. via82xx_t *chip = snd_kcontrol_chip(kcontrol);
  1329. unsigned int idx;
  1330. unsigned char val;
  1331. int i, change = 0;
  1332. for (i = 0; i < 2; i++) {
  1333. val = ucontrol->value.integer.value[i];
  1334. if (val > VIA_DXS_MAX_VOLUME)
  1335. val = VIA_DXS_MAX_VOLUME;
  1336. val = VIA_DXS_MAX_VOLUME - val;
  1337. if (val != chip->playback_volume[i]) {
  1338. change = 1;
  1339. chip->playback_volume[i] = val;
  1340. for (idx = 0; idx < 4; idx++) {
  1341. unsigned long port = chip->port + 0x10 * idx;
  1342. outb(val, port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
  1343. }
  1344. }
  1345. }
  1346. return change;
  1347. }
  1348. static snd_kcontrol_new_t snd_via8233_dxs_volume_control __devinitdata = {
  1349. .name = "PCM Playback Volume",
  1350. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1351. .info = snd_via8233_dxs_volume_info,
  1352. .get = snd_via8233_dxs_volume_get,
  1353. .put = snd_via8233_dxs_volume_put,
  1354. };
  1355. /*
  1356. */
  1357. static void snd_via82xx_mixer_free_ac97_bus(ac97_bus_t *bus)
  1358. {
  1359. via82xx_t *chip = bus->private_data;
  1360. chip->ac97_bus = NULL;
  1361. }
  1362. static void snd_via82xx_mixer_free_ac97(ac97_t *ac97)
  1363. {
  1364. via82xx_t *chip = ac97->private_data;
  1365. chip->ac97 = NULL;
  1366. }
  1367. static struct ac97_quirk ac97_quirks[] = {
  1368. {
  1369. .vendor = 0x1106,
  1370. .device = 0x4161,
  1371. .codec_id = 0x56494161, /* VT1612A */
  1372. .name = "Soltek SL-75DRV5",
  1373. .type = AC97_TUNE_NONE
  1374. },
  1375. { /* FIXME: which codec? */
  1376. .vendor = 0x1106,
  1377. .device = 0x4161,
  1378. .name = "ASRock K7VT2",
  1379. .type = AC97_TUNE_HP_ONLY
  1380. },
  1381. {
  1382. .vendor = 0x1019,
  1383. .device = 0x0a81,
  1384. .name = "ECS K7VTA3",
  1385. .type = AC97_TUNE_HP_ONLY
  1386. },
  1387. {
  1388. .vendor = 0x1019,
  1389. .device = 0x0a85,
  1390. .name = "ECS L7VMM2",
  1391. .type = AC97_TUNE_HP_ONLY
  1392. },
  1393. {
  1394. .vendor = 0x1849,
  1395. .device = 0x3059,
  1396. .name = "ASRock K7VM2",
  1397. .type = AC97_TUNE_HP_ONLY /* VT1616 */
  1398. },
  1399. {
  1400. .vendor = 0x14cd,
  1401. .device = 0x7002,
  1402. .name = "Unknown",
  1403. .type = AC97_TUNE_ALC_JACK
  1404. },
  1405. {
  1406. .vendor = 0x1071,
  1407. .device = 0x8590,
  1408. .name = "Mitac Mobo",
  1409. .type = AC97_TUNE_ALC_JACK
  1410. },
  1411. {
  1412. .vendor = 0x161f,
  1413. .device = 0x202b,
  1414. .name = "Arima Notebook",
  1415. .type = AC97_TUNE_HP_ONLY,
  1416. },
  1417. { } /* terminator */
  1418. };
  1419. static int __devinit snd_via82xx_mixer_new(via82xx_t *chip, const char *quirk_override)
  1420. {
  1421. ac97_template_t ac97;
  1422. int err;
  1423. static ac97_bus_ops_t ops = {
  1424. .write = snd_via82xx_codec_write,
  1425. .read = snd_via82xx_codec_read,
  1426. .wait = snd_via82xx_codec_wait,
  1427. };
  1428. if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)
  1429. return err;
  1430. chip->ac97_bus->private_free = snd_via82xx_mixer_free_ac97_bus;
  1431. chip->ac97_bus->clock = chip->ac97_clock;
  1432. chip->ac97_bus->shared_type = AC97_SHARED_TYPE_VIA;
  1433. memset(&ac97, 0, sizeof(ac97));
  1434. ac97.private_data = chip;
  1435. ac97.private_free = snd_via82xx_mixer_free_ac97;
  1436. ac97.pci = chip->pci;
  1437. if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)
  1438. return err;
  1439. snd_ac97_tune_hardware(chip->ac97, ac97_quirks, quirk_override);
  1440. if (chip->chip_type != TYPE_VIA686) {
  1441. /* use slot 10/11 */
  1442. snd_ac97_update_bits(chip->ac97, AC97_EXTENDED_STATUS, 0x03 << 4, 0x03 << 4);
  1443. }
  1444. return 0;
  1445. }
  1446. #ifdef SUPPORT_JOYSTICK
  1447. #define JOYSTICK_ADDR 0x200
  1448. static int __devinit snd_via686_create_gameport(via82xx_t *chip, int dev, unsigned char *legacy)
  1449. {
  1450. struct gameport *gp;
  1451. struct resource *r;
  1452. if (!joystick[dev])
  1453. return -ENODEV;
  1454. r = request_region(JOYSTICK_ADDR, 8, "VIA686 gameport");
  1455. if (!r) {
  1456. printk(KERN_WARNING "via82xx: cannot reserve joystick port 0x%#x\n", JOYSTICK_ADDR);
  1457. return -EBUSY;
  1458. }
  1459. chip->gameport = gp = gameport_allocate_port();
  1460. if (!gp) {
  1461. printk(KERN_ERR "via82xx: cannot allocate memory for gameport\n");
  1462. release_resource(r);
  1463. kfree_nocheck(r);
  1464. return -ENOMEM;
  1465. }
  1466. gameport_set_name(gp, "VIA686 Gameport");
  1467. gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
  1468. gameport_set_dev_parent(gp, &chip->pci->dev);
  1469. gp->io = JOYSTICK_ADDR;
  1470. gameport_set_port_data(gp, r);
  1471. /* Enable legacy joystick port */
  1472. *legacy |= VIA_FUNC_ENABLE_GAME;
  1473. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, *legacy);
  1474. gameport_register_port(chip->gameport);
  1475. return 0;
  1476. }
  1477. static void snd_via686_free_gameport(via82xx_t *chip)
  1478. {
  1479. if (chip->gameport) {
  1480. struct resource *r = gameport_get_port_data(chip->gameport);
  1481. gameport_unregister_port(chip->gameport);
  1482. chip->gameport = NULL;
  1483. release_resource(r);
  1484. kfree_nocheck(r);
  1485. }
  1486. }
  1487. #else
  1488. static inline int snd_via686_create_gameport(via82xx_t *chip, int dev, unsigned char *legacy)
  1489. {
  1490. return -ENOSYS;
  1491. }
  1492. static inline void snd_via686_free_gameport(via82xx_t *chip) { }
  1493. #endif
  1494. /*
  1495. *
  1496. */
  1497. static int __devinit snd_via8233_init_misc(via82xx_t *chip, int dev)
  1498. {
  1499. int i, err, caps;
  1500. unsigned char val;
  1501. caps = chip->chip_type == TYPE_VIA8233A ? 1 : 2;
  1502. for (i = 0; i < caps; i++) {
  1503. snd_via8233_capture_source.index = i;
  1504. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_capture_source, chip));
  1505. if (err < 0)
  1506. return err;
  1507. }
  1508. if (ac97_can_spdif(chip->ac97)) {
  1509. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs3_spdif_control, chip));
  1510. if (err < 0)
  1511. return err;
  1512. }
  1513. if (chip->chip_type != TYPE_VIA8233A) {
  1514. /* when no h/w PCM volume control is found, use DXS volume control
  1515. * as the PCM vol control
  1516. */
  1517. snd_ctl_elem_id_t sid;
  1518. memset(&sid, 0, sizeof(sid));
  1519. strcpy(sid.name, "PCM Playback Volume");
  1520. sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  1521. if (! snd_ctl_find_id(chip->card, &sid)) {
  1522. err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs_volume_control, chip));
  1523. if (err < 0)
  1524. return err;
  1525. }
  1526. }
  1527. /* select spdif data slot 10/11 */
  1528. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &val);
  1529. val = (val & ~VIA8233_SPDIF_SLOT_MASK) | VIA8233_SPDIF_SLOT_1011;
  1530. val &= ~VIA8233_SPDIF_DX3; /* SPDIF off as default */
  1531. pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, val);
  1532. return 0;
  1533. }
  1534. static int __devinit snd_via686_init_misc(via82xx_t *chip, int dev)
  1535. {
  1536. unsigned char legacy, legacy_cfg;
  1537. int rev_h = 0;
  1538. legacy = chip->old_legacy;
  1539. legacy_cfg = chip->old_legacy_cfg;
  1540. legacy |= VIA_FUNC_MIDI_IRQMASK; /* FIXME: correct? (disable MIDI) */
  1541. legacy &= ~VIA_FUNC_ENABLE_GAME; /* disable joystick */
  1542. if (chip->revision >= VIA_REV_686_H) {
  1543. rev_h = 1;
  1544. if (mpu_port[dev] >= 0x200) { /* force MIDI */
  1545. mpu_port[dev] &= 0xfffc;
  1546. pci_write_config_dword(chip->pci, 0x18, mpu_port[dev] | 0x01);
  1547. #ifdef CONFIG_PM
  1548. chip->mpu_port_saved = mpu_port[dev];
  1549. #endif
  1550. } else {
  1551. mpu_port[dev] = pci_resource_start(chip->pci, 2);
  1552. }
  1553. } else {
  1554. switch (mpu_port[dev]) { /* force MIDI */
  1555. case 0x300:
  1556. case 0x310:
  1557. case 0x320:
  1558. case 0x330:
  1559. legacy_cfg &= ~(3 << 2);
  1560. legacy_cfg |= (mpu_port[dev] & 0x0030) >> 2;
  1561. break;
  1562. default: /* no, use BIOS settings */
  1563. if (legacy & VIA_FUNC_ENABLE_MIDI)
  1564. mpu_port[dev] = 0x300 + ((legacy_cfg & 0x000c) << 2);
  1565. break;
  1566. }
  1567. }
  1568. if (mpu_port[dev] >= 0x200 &&
  1569. (chip->mpu_res = request_region(mpu_port[dev], 2, "VIA82xx MPU401")) != NULL) {
  1570. if (rev_h)
  1571. legacy |= VIA_FUNC_MIDI_PNP; /* enable PCI I/O 2 */
  1572. legacy |= VIA_FUNC_ENABLE_MIDI;
  1573. } else {
  1574. if (rev_h)
  1575. legacy &= ~VIA_FUNC_MIDI_PNP; /* disable PCI I/O 2 */
  1576. legacy &= ~VIA_FUNC_ENABLE_MIDI;
  1577. mpu_port[dev] = 0;
  1578. }
  1579. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, legacy);
  1580. pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, legacy_cfg);
  1581. if (chip->mpu_res) {
  1582. if (snd_mpu401_uart_new(chip->card, 0, MPU401_HW_VIA686A,
  1583. mpu_port[dev], 1,
  1584. chip->irq, 0, &chip->rmidi) < 0) {
  1585. printk(KERN_WARNING "unable to initialize MPU-401 at 0x%lx, skipping\n", mpu_port[dev]);
  1586. legacy &= ~VIA_FUNC_ENABLE_MIDI;
  1587. } else {
  1588. legacy &= ~VIA_FUNC_MIDI_IRQMASK; /* enable MIDI interrupt */
  1589. }
  1590. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, legacy);
  1591. }
  1592. snd_via686_create_gameport(chip, dev, &legacy);
  1593. #ifdef CONFIG_PM
  1594. chip->legacy_saved = legacy;
  1595. chip->legacy_cfg_saved = legacy_cfg;
  1596. #endif
  1597. return 0;
  1598. }
  1599. /*
  1600. * proc interface
  1601. */
  1602. static void snd_via82xx_proc_read(snd_info_entry_t *entry, snd_info_buffer_t *buffer)
  1603. {
  1604. via82xx_t *chip = entry->private_data;
  1605. int i;
  1606. snd_iprintf(buffer, "%s\n\n", chip->card->longname);
  1607. for (i = 0; i < 0xa0; i += 4) {
  1608. snd_iprintf(buffer, "%02x: %08x\n", i, inl(chip->port + i));
  1609. }
  1610. }
  1611. static void __devinit snd_via82xx_proc_init(via82xx_t *chip)
  1612. {
  1613. snd_info_entry_t *entry;
  1614. if (! snd_card_proc_new(chip->card, "via82xx", &entry))
  1615. snd_info_set_text_ops(entry, chip, 1024, snd_via82xx_proc_read);
  1616. }
  1617. /*
  1618. *
  1619. */
  1620. static int snd_via82xx_chip_init(via82xx_t *chip)
  1621. {
  1622. unsigned int val;
  1623. int max_count;
  1624. unsigned char pval;
  1625. #if 0 /* broken on K7M? */
  1626. if (chip->chip_type == TYPE_VIA686)
  1627. /* disable all legacy ports */
  1628. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, 0);
  1629. #endif
  1630. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  1631. if (! (pval & VIA_ACLINK_C00_READY)) { /* codec not ready? */
  1632. /* deassert ACLink reset, force SYNC */
  1633. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  1634. VIA_ACLINK_CTRL_ENABLE |
  1635. VIA_ACLINK_CTRL_RESET |
  1636. VIA_ACLINK_CTRL_SYNC);
  1637. udelay(100);
  1638. #if 1 /* FIXME: should we do full reset here for all chip models? */
  1639. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, 0x00);
  1640. udelay(100);
  1641. #else
  1642. /* deassert ACLink reset, force SYNC (warm AC'97 reset) */
  1643. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  1644. VIA_ACLINK_CTRL_RESET|VIA_ACLINK_CTRL_SYNC);
  1645. udelay(2);
  1646. #endif
  1647. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  1648. /* note - FM data out has trouble with non VRA codecs !! */
  1649. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  1650. udelay(100);
  1651. }
  1652. /* Make sure VRA is enabled, in case we didn't do a
  1653. * complete codec reset, above */
  1654. pci_read_config_byte(chip->pci, VIA_ACLINK_CTRL, &pval);
  1655. if ((pval & VIA_ACLINK_CTRL_INIT) != VIA_ACLINK_CTRL_INIT) {
  1656. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  1657. /* note - FM data out has trouble with non VRA codecs !! */
  1658. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  1659. udelay(100);
  1660. }
  1661. /* wait until codec ready */
  1662. max_count = ((3 * HZ) / 4) + 1;
  1663. do {
  1664. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  1665. if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */
  1666. break;
  1667. set_current_state(TASK_UNINTERRUPTIBLE);
  1668. schedule_timeout(1);
  1669. } while (--max_count > 0);
  1670. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY)
  1671. snd_printk("AC'97 codec is not ready [0x%x]\n", val);
  1672. #if 0 /* FIXME: we don't support the second codec yet so skip the detection now.. */
  1673. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  1674. VIA_REG_AC97_SECONDARY_VALID |
  1675. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  1676. max_count = ((3 * HZ) / 4) + 1;
  1677. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  1678. VIA_REG_AC97_SECONDARY_VALID |
  1679. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  1680. do {
  1681. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_SECONDARY_VALID) {
  1682. chip->ac97_secondary = 1;
  1683. goto __ac97_ok2;
  1684. }
  1685. set_current_state(TASK_INTERRUPTIBLE);
  1686. schedule_timeout(1);
  1687. } while (--max_count > 0);
  1688. /* This is ok, the most of motherboards have only one codec */
  1689. __ac97_ok2:
  1690. #endif
  1691. if (chip->chip_type == TYPE_VIA686) {
  1692. /* route FM trap to IRQ, disable FM trap */
  1693. pci_write_config_byte(chip->pci, VIA_FM_NMI_CTRL, 0);
  1694. /* disable all GPI interrupts */
  1695. outl(0, VIAREG(chip, GPI_INTR));
  1696. }
  1697. if (chip->chip_type != TYPE_VIA686) {
  1698. /* Workaround for Award BIOS bug:
  1699. * DXS channels don't work properly with VRA if MC97 is disabled.
  1700. */
  1701. struct pci_dev *pci;
  1702. pci = pci_find_device(0x1106, 0x3068, NULL); /* MC97 */
  1703. if (pci) {
  1704. unsigned char data;
  1705. pci_read_config_byte(pci, 0x44, &data);
  1706. pci_write_config_byte(pci, 0x44, data | 0x40);
  1707. }
  1708. }
  1709. if (chip->chip_type != TYPE_VIA8233A) {
  1710. int i, idx;
  1711. for (idx = 0; idx < 4; idx++) {
  1712. unsigned long port = chip->port + 0x10 * idx;
  1713. for (i = 0; i < 2; i++)
  1714. outb(chip->playback_volume[i], port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
  1715. }
  1716. }
  1717. return 0;
  1718. }
  1719. #ifdef CONFIG_PM
  1720. /*
  1721. * power management
  1722. */
  1723. static int snd_via82xx_suspend(snd_card_t *card, pm_message_t state)
  1724. {
  1725. via82xx_t *chip = card->pm_private_data;
  1726. int i;
  1727. for (i = 0; i < 2; i++)
  1728. if (chip->pcms[i])
  1729. snd_pcm_suspend_all(chip->pcms[i]);
  1730. for (i = 0; i < chip->num_devs; i++)
  1731. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1732. synchronize_irq(chip->irq);
  1733. snd_ac97_suspend(chip->ac97);
  1734. /* save misc values */
  1735. if (chip->chip_type != TYPE_VIA686) {
  1736. pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &chip->spdif_ctrl_saved);
  1737. chip->capture_src_saved[0] = inb(chip->port + VIA_REG_CAPTURE_CHANNEL);
  1738. chip->capture_src_saved[1] = inb(chip->port + VIA_REG_CAPTURE_CHANNEL + 0x10);
  1739. }
  1740. pci_set_power_state(chip->pci, 3);
  1741. pci_disable_device(chip->pci);
  1742. return 0;
  1743. }
  1744. static int snd_via82xx_resume(snd_card_t *card)
  1745. {
  1746. via82xx_t *chip = card->pm_private_data;
  1747. int i;
  1748. pci_enable_device(chip->pci);
  1749. pci_set_power_state(chip->pci, 0);
  1750. snd_via82xx_chip_init(chip);
  1751. if (chip->chip_type == TYPE_VIA686) {
  1752. if (chip->mpu_port_saved)
  1753. pci_write_config_dword(chip->pci, 0x18, chip->mpu_port_saved | 0x01);
  1754. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, chip->legacy_saved);
  1755. pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, chip->legacy_cfg_saved);
  1756. } else {
  1757. pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, chip->spdif_ctrl_saved);
  1758. outb(chip->capture_src_saved[0], chip->port + VIA_REG_CAPTURE_CHANNEL);
  1759. outb(chip->capture_src_saved[1], chip->port + VIA_REG_CAPTURE_CHANNEL + 0x10);
  1760. }
  1761. snd_ac97_resume(chip->ac97);
  1762. for (i = 0; i < chip->num_devs; i++)
  1763. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1764. return 0;
  1765. }
  1766. #endif /* CONFIG_PM */
  1767. static int snd_via82xx_free(via82xx_t *chip)
  1768. {
  1769. unsigned int i;
  1770. if (chip->irq < 0)
  1771. goto __end_hw;
  1772. /* disable interrupts */
  1773. for (i = 0; i < chip->num_devs; i++)
  1774. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1775. synchronize_irq(chip->irq);
  1776. __end_hw:
  1777. if (chip->irq >= 0)
  1778. free_irq(chip->irq, (void *)chip);
  1779. if (chip->mpu_res) {
  1780. release_resource(chip->mpu_res);
  1781. kfree_nocheck(chip->mpu_res);
  1782. }
  1783. pci_release_regions(chip->pci);
  1784. if (chip->chip_type == TYPE_VIA686) {
  1785. snd_via686_free_gameport(chip);
  1786. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, chip->old_legacy);
  1787. pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, chip->old_legacy_cfg);
  1788. }
  1789. pci_disable_device(chip->pci);
  1790. kfree(chip);
  1791. return 0;
  1792. }
  1793. static int snd_via82xx_dev_free(snd_device_t *device)
  1794. {
  1795. via82xx_t *chip = device->device_data;
  1796. return snd_via82xx_free(chip);
  1797. }
  1798. static int __devinit snd_via82xx_create(snd_card_t * card,
  1799. struct pci_dev *pci,
  1800. int chip_type,
  1801. int revision,
  1802. unsigned int ac97_clock,
  1803. via82xx_t ** r_via)
  1804. {
  1805. via82xx_t *chip;
  1806. int err;
  1807. static snd_device_ops_t ops = {
  1808. .dev_free = snd_via82xx_dev_free,
  1809. };
  1810. if ((err = pci_enable_device(pci)) < 0)
  1811. return err;
  1812. if ((chip = kcalloc(1, sizeof(*chip), GFP_KERNEL)) == NULL) {
  1813. pci_disable_device(pci);
  1814. return -ENOMEM;
  1815. }
  1816. chip->chip_type = chip_type;
  1817. chip->revision = revision;
  1818. spin_lock_init(&chip->reg_lock);
  1819. spin_lock_init(&chip->rates[0].lock);
  1820. spin_lock_init(&chip->rates[1].lock);
  1821. chip->card = card;
  1822. chip->pci = pci;
  1823. chip->irq = -1;
  1824. pci_read_config_byte(pci, VIA_FUNC_ENABLE, &chip->old_legacy);
  1825. pci_read_config_byte(pci, VIA_PNP_CONTROL, &chip->old_legacy_cfg);
  1826. pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE,
  1827. chip->old_legacy & ~(VIA_FUNC_ENABLE_SB|VIA_FUNC_ENABLE_FM));
  1828. if ((err = pci_request_regions(pci, card->driver)) < 0) {
  1829. kfree(chip);
  1830. pci_disable_device(pci);
  1831. return err;
  1832. }
  1833. chip->port = pci_resource_start(pci, 0);
  1834. if (request_irq(pci->irq, snd_via82xx_interrupt, SA_INTERRUPT|SA_SHIRQ,
  1835. card->driver, (void *)chip)) {
  1836. snd_printk("unable to grab IRQ %d\n", pci->irq);
  1837. snd_via82xx_free(chip);
  1838. return -EBUSY;
  1839. }
  1840. chip->irq = pci->irq;
  1841. if (ac97_clock >= 8000 && ac97_clock <= 48000)
  1842. chip->ac97_clock = ac97_clock;
  1843. synchronize_irq(chip->irq);
  1844. if ((err = snd_via82xx_chip_init(chip)) < 0) {
  1845. snd_via82xx_free(chip);
  1846. return err;
  1847. }
  1848. if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  1849. snd_via82xx_free(chip);
  1850. return err;
  1851. }
  1852. /* The 8233 ac97 controller does not implement the master bit
  1853. * in the pci command register. IMHO this is a violation of the PCI spec.
  1854. * We call pci_set_master here because it does not hurt. */
  1855. pci_set_master(pci);
  1856. snd_card_set_dev(card, &pci->dev);
  1857. *r_via = chip;
  1858. return 0;
  1859. }
  1860. struct via823x_info {
  1861. int revision;
  1862. char *name;
  1863. int type;
  1864. };
  1865. static struct via823x_info via823x_cards[] __devinitdata = {
  1866. { VIA_REV_PRE_8233, "VIA 8233-Pre", TYPE_VIA8233 },
  1867. { VIA_REV_8233C, "VIA 8233C", TYPE_VIA8233 },
  1868. { VIA_REV_8233, "VIA 8233", TYPE_VIA8233 },
  1869. { VIA_REV_8233A, "VIA 8233A", TYPE_VIA8233A },
  1870. { VIA_REV_8235, "VIA 8235", TYPE_VIA8233 },
  1871. { VIA_REV_8237, "VIA 8237", TYPE_VIA8233 },
  1872. };
  1873. /*
  1874. * auto detection of DXS channel supports.
  1875. */
  1876. struct dxs_whitelist {
  1877. unsigned short vendor;
  1878. unsigned short device;
  1879. unsigned short mask;
  1880. short action; /* new dxs_support value */
  1881. };
  1882. static int __devinit check_dxs_list(struct pci_dev *pci)
  1883. {
  1884. static struct dxs_whitelist whitelist[] = {
  1885. { .vendor = 0x1005, .device = 0x4710, .action = VIA_DXS_ENABLE }, /* Avance Logic Mobo */
  1886. { .vendor = 0x1019, .device = 0x0996, .action = VIA_DXS_48K },
  1887. { .vendor = 0x1019, .device = 0x0a81, .action = VIA_DXS_NO_VRA }, /* ECS K7VTA3 v8.0 */
  1888. { .vendor = 0x1019, .device = 0x0a85, .action = VIA_DXS_NO_VRA }, /* ECS L7VMM2 */
  1889. { .vendor = 0x1025, .device = 0x0033, .action = VIA_DXS_NO_VRA }, /* Acer Inspire 1353LM */
  1890. { .vendor = 0x1043, .device = 0x8095, .action = VIA_DXS_NO_VRA }, /* ASUS A7V8X (FIXME: possibly VIA_DXS_ENABLE?)*/
  1891. { .vendor = 0x1043, .device = 0x80a1, .action = VIA_DXS_NO_VRA }, /* ASUS A7V8-X */
  1892. { .vendor = 0x1043, .device = 0x80b0, .action = VIA_DXS_NO_VRA }, /* ASUS A7V600 & K8V*/
  1893. { .vendor = 0x1071, .device = 0x8375, .action = VIA_DXS_NO_VRA }, /* Vobis/Yakumo/Mitac notebook */
  1894. { .vendor = 0x10cf, .device = 0x118e, .action = VIA_DXS_ENABLE }, /* FSC laptop */
  1895. { .vendor = 0x1106, .device = 0x4161, .action = VIA_DXS_NO_VRA }, /* ASRock K7VT2 */
  1896. { .vendor = 0x1106, .device = 0x4552, .action = VIA_DXS_NO_VRA }, /* QDI Kudoz 7X/600-6AL */
  1897. { .vendor = 0x1106, .device = 0xaa01, .action = VIA_DXS_NO_VRA }, /* EPIA MII */
  1898. { .vendor = 0x1297, .device = 0xa232, .action = VIA_DXS_ENABLE }, /* Shuttle ?? */
  1899. { .vendor = 0x1297, .device = 0xc160, .action = VIA_DXS_ENABLE }, /* Shuttle SK41G */
  1900. { .vendor = 0x1458, .device = 0xa002, .action = VIA_DXS_ENABLE }, /* Gigabyte GA-7VAXP */
  1901. { .vendor = 0x1462, .device = 0x3800, .action = VIA_DXS_ENABLE }, /* MSI KT266 */
  1902. { .vendor = 0x1462, .device = 0x5901, .action = VIA_DXS_NO_VRA }, /* MSI KT6 Delta-SR */
  1903. { .vendor = 0x1462, .device = 0x7023, .action = VIA_DXS_NO_VRA }, /* MSI K8T Neo2-FI */
  1904. { .vendor = 0x1462, .device = 0x7120, .action = VIA_DXS_ENABLE }, /* MSI KT4V */
  1905. { .vendor = 0x147b, .device = 0x1401, .action = VIA_DXS_ENABLE }, /* ABIT KD7(-RAID) */
  1906. { .vendor = 0x147b, .device = 0x1411, .action = VIA_DXS_ENABLE }, /* ABIT VA-20 */
  1907. { .vendor = 0x147b, .device = 0x1413, .action = VIA_DXS_ENABLE }, /* ABIT KV8 Pro */
  1908. { .vendor = 0x147b, .device = 0x1415, .action = VIA_DXS_NO_VRA }, /* Abit AV8 */
  1909. { .vendor = 0x14ff, .device = 0x0403, .action = VIA_DXS_ENABLE }, /* Twinhead mobo */
  1910. { .vendor = 0x1584, .device = 0x8120, .action = VIA_DXS_ENABLE }, /* Gericom/Targa/Vobis/Uniwill laptop */
  1911. { .vendor = 0x1584, .device = 0x8123, .action = VIA_DXS_NO_VRA }, /* Uniwill (Targa Visionary XP-210) */
  1912. { .vendor = 0x161f, .device = 0x202b, .action = VIA_DXS_NO_VRA }, /* Amira Note book */
  1913. { .vendor = 0x161f, .device = 0x2032, .action = VIA_DXS_48K }, /* m680x machines */
  1914. { .vendor = 0x1631, .device = 0xe004, .action = VIA_DXS_ENABLE }, /* Easy Note 3174, Packard Bell */
  1915. { .vendor = 0x1695, .device = 0x3005, .action = VIA_DXS_ENABLE }, /* EPoX EP-8K9A */
  1916. { .vendor = 0x1849, .device = 0x3059, .action = VIA_DXS_NO_VRA }, /* ASRock K7VM2 */
  1917. { } /* terminator */
  1918. };
  1919. struct dxs_whitelist *w;
  1920. unsigned short subsystem_vendor;
  1921. unsigned short subsystem_device;
  1922. pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &subsystem_vendor);
  1923. pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &subsystem_device);
  1924. for (w = whitelist; w->vendor; w++) {
  1925. if (w->vendor != subsystem_vendor)
  1926. continue;
  1927. if (w->mask) {
  1928. if ((w->mask & subsystem_device) == w->device)
  1929. return w->action;
  1930. } else {
  1931. if (subsystem_device == w->device)
  1932. return w->action;
  1933. }
  1934. }
  1935. /*
  1936. * not detected, try 48k rate only to be sure.
  1937. */
  1938. printk(KERN_INFO "via82xx: Assuming DXS channels with 48k fixed sample rate.\n");
  1939. printk(KERN_INFO " Please try dxs_support=1 or dxs_support=4 option\n");
  1940. printk(KERN_INFO " and report if it works on your machine.\n");
  1941. return VIA_DXS_48K;
  1942. };
  1943. static int __devinit snd_via82xx_probe(struct pci_dev *pci,
  1944. const struct pci_device_id *pci_id)
  1945. {
  1946. static int dev;
  1947. snd_card_t *card;
  1948. via82xx_t *chip;
  1949. unsigned char revision;
  1950. int chip_type = 0, card_type;
  1951. unsigned int i;
  1952. int err;
  1953. if (dev >= SNDRV_CARDS)
  1954. return -ENODEV;
  1955. if (!enable[dev]) {
  1956. dev++;
  1957. return -ENOENT;
  1958. }
  1959. card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
  1960. if (card == NULL)
  1961. return -ENOMEM;
  1962. card_type = pci_id->driver_data;
  1963. pci_read_config_byte(pci, PCI_REVISION_ID, &revision);
  1964. switch (card_type) {
  1965. case TYPE_CARD_VIA686:
  1966. strcpy(card->driver, "VIA686A");
  1967. sprintf(card->shortname, "VIA 82C686A/B rev%x", revision);
  1968. chip_type = TYPE_VIA686;
  1969. break;
  1970. case TYPE_CARD_VIA8233:
  1971. chip_type = TYPE_VIA8233;
  1972. sprintf(card->shortname, "VIA 823x rev%x", revision);
  1973. for (i = 0; i < ARRAY_SIZE(via823x_cards); i++) {
  1974. if (revision == via823x_cards[i].revision) {
  1975. chip_type = via823x_cards[i].type;
  1976. strcpy(card->shortname, via823x_cards[i].name);
  1977. break;
  1978. }
  1979. }
  1980. if (chip_type != TYPE_VIA8233A) {
  1981. if (dxs_support[dev] == VIA_DXS_AUTO)
  1982. dxs_support[dev] = check_dxs_list(pci);
  1983. /* force to use VIA8233 or 8233A model according to
  1984. * dxs_support module option
  1985. */
  1986. if (dxs_support[dev] == VIA_DXS_DISABLE)
  1987. chip_type = TYPE_VIA8233A;
  1988. else
  1989. chip_type = TYPE_VIA8233;
  1990. }
  1991. if (chip_type == TYPE_VIA8233A)
  1992. strcpy(card->driver, "VIA8233A");
  1993. else if (revision >= VIA_REV_8237)
  1994. strcpy(card->driver, "VIA8237"); /* no slog assignment */
  1995. else
  1996. strcpy(card->driver, "VIA8233");
  1997. break;
  1998. default:
  1999. snd_printk(KERN_ERR "invalid card type %d\n", card_type);
  2000. err = -EINVAL;
  2001. goto __error;
  2002. }
  2003. if ((err = snd_via82xx_create(card, pci, chip_type, revision, ac97_clock[dev], &chip)) < 0)
  2004. goto __error;
  2005. if ((err = snd_via82xx_mixer_new(chip, ac97_quirk[dev])) < 0)
  2006. goto __error;
  2007. if (chip_type == TYPE_VIA686) {
  2008. if ((err = snd_via686_pcm_new(chip)) < 0 ||
  2009. (err = snd_via686_init_misc(chip, dev)) < 0)
  2010. goto __error;
  2011. } else {
  2012. if (chip_type == TYPE_VIA8233A) {
  2013. if ((err = snd_via8233a_pcm_new(chip)) < 0)
  2014. goto __error;
  2015. // chip->dxs_fixed = 1; /* FIXME: use 48k for DXS #3? */
  2016. } else {
  2017. if ((err = snd_via8233_pcm_new(chip)) < 0)
  2018. goto __error;
  2019. if (dxs_support[dev] == VIA_DXS_48K)
  2020. chip->dxs_fixed = 1;
  2021. else if (dxs_support[dev] == VIA_DXS_NO_VRA)
  2022. chip->no_vra = 1;
  2023. }
  2024. if ((err = snd_via8233_init_misc(chip, dev)) < 0)
  2025. goto __error;
  2026. }
  2027. snd_card_set_pm_callback(card, snd_via82xx_suspend, snd_via82xx_resume, chip);
  2028. /* disable interrupts */
  2029. for (i = 0; i < chip->num_devs; i++)
  2030. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  2031. snprintf(card->longname, sizeof(card->longname),
  2032. "%s with %s at %#lx, irq %d", card->shortname,
  2033. snd_ac97_get_short_name(chip->ac97), chip->port, chip->irq);
  2034. snd_via82xx_proc_init(chip);
  2035. if ((err = snd_card_register(card)) < 0) {
  2036. snd_card_free(card);
  2037. return err;
  2038. }
  2039. pci_set_drvdata(pci, card);
  2040. dev++;
  2041. return 0;
  2042. __error:
  2043. snd_card_free(card);
  2044. return err;
  2045. }
  2046. static void __devexit snd_via82xx_remove(struct pci_dev *pci)
  2047. {
  2048. snd_card_free(pci_get_drvdata(pci));
  2049. pci_set_drvdata(pci, NULL);
  2050. }
  2051. static struct pci_driver driver = {
  2052. .name = "VIA 82xx Audio",
  2053. .id_table = snd_via82xx_ids,
  2054. .probe = snd_via82xx_probe,
  2055. .remove = __devexit_p(snd_via82xx_remove),
  2056. SND_PCI_PM_CALLBACKS
  2057. };
  2058. static int __init alsa_card_via82xx_init(void)
  2059. {
  2060. return pci_module_init(&driver);
  2061. }
  2062. static void __exit alsa_card_via82xx_exit(void)
  2063. {
  2064. pci_unregister_driver(&driver);
  2065. }
  2066. module_init(alsa_card_via82xx_init)
  2067. module_exit(alsa_card_via82xx_exit)