ice1724.c 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610
  1. /*
  2. * ALSA driver for VT1724 ICEnsemble ICE1724 / VIA VT1724 (Envy24HT)
  3. * VIA VT1720 (Envy24PT)
  4. *
  5. * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
  6. * 2002 James Stafford <jstafford@ampltd.com>
  7. * 2003 Takashi Iwai <tiwai@suse.de>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. */
  24. #include <asm/io.h>
  25. #include <linux/delay.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/init.h>
  28. #include <linux/pci.h>
  29. #include <linux/slab.h>
  30. #include <linux/moduleparam.h>
  31. #include <linux/mutex.h>
  32. #include <sound/core.h>
  33. #include <sound/info.h>
  34. #include <sound/rawmidi.h>
  35. #include <sound/initval.h>
  36. #include <sound/asoundef.h>
  37. #include "ice1712.h"
  38. #include "envy24ht.h"
  39. /* lowlevel routines */
  40. #include "amp.h"
  41. #include "revo.h"
  42. #include "aureon.h"
  43. #include "vt1720_mobo.h"
  44. #include "pontis.h"
  45. #include "prodigy192.h"
  46. #include "prodigy_hifi.h"
  47. #include "juli.h"
  48. #include "phase.h"
  49. #include "wtm.h"
  50. #include "se.h"
  51. MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
  52. MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)");
  53. MODULE_LICENSE("GPL");
  54. MODULE_SUPPORTED_DEVICE("{"
  55. REVO_DEVICE_DESC
  56. AMP_AUDIO2000_DEVICE_DESC
  57. AUREON_DEVICE_DESC
  58. VT1720_MOBO_DEVICE_DESC
  59. PONTIS_DEVICE_DESC
  60. PRODIGY192_DEVICE_DESC
  61. PRODIGY_HIFI_DEVICE_DESC
  62. JULI_DEVICE_DESC
  63. PHASE_DEVICE_DESC
  64. WTM_DEVICE_DESC
  65. SE_DEVICE_DESC
  66. "{VIA,VT1720},"
  67. "{VIA,VT1724},"
  68. "{ICEnsemble,Generic ICE1724},"
  69. "{ICEnsemble,Generic Envy24HT}"
  70. "{ICEnsemble,Generic Envy24PT}}");
  71. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
  72. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
  73. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
  74. static char *model[SNDRV_CARDS];
  75. module_param_array(index, int, NULL, 0444);
  76. MODULE_PARM_DESC(index, "Index value for ICE1724 soundcard.");
  77. module_param_array(id, charp, NULL, 0444);
  78. MODULE_PARM_DESC(id, "ID string for ICE1724 soundcard.");
  79. module_param_array(enable, bool, NULL, 0444);
  80. MODULE_PARM_DESC(enable, "Enable ICE1724 soundcard.");
  81. module_param_array(model, charp, NULL, 0444);
  82. MODULE_PARM_DESC(model, "Use the given board model.");
  83. /* Both VT1720 and VT1724 have the same PCI IDs */
  84. static const struct pci_device_id snd_vt1724_ids[] = {
  85. { PCI_VENDOR_ID_ICE, PCI_DEVICE_ID_VT1724, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  86. { 0, }
  87. };
  88. MODULE_DEVICE_TABLE(pci, snd_vt1724_ids);
  89. static int PRO_RATE_LOCKED;
  90. static int PRO_RATE_RESET = 1;
  91. static unsigned int PRO_RATE_DEFAULT = 44100;
  92. /*
  93. * Basic I/O
  94. */
  95. /*
  96. * default rates, default clock routines
  97. */
  98. /* check whether the clock mode is spdif-in */
  99. static inline int stdclock_is_spdif_master(struct snd_ice1712 *ice)
  100. {
  101. return (inb(ICEMT1724(ice, RATE)) & VT1724_SPDIF_MASTER) ? 1 : 0;
  102. }
  103. static inline int is_pro_rate_locked(struct snd_ice1712 *ice)
  104. {
  105. return ice->is_spdif_master(ice) || PRO_RATE_LOCKED;
  106. }
  107. /*
  108. * ac97 section
  109. */
  110. static unsigned char snd_vt1724_ac97_ready(struct snd_ice1712 *ice)
  111. {
  112. unsigned char old_cmd;
  113. int tm;
  114. for (tm = 0; tm < 0x10000; tm++) {
  115. old_cmd = inb(ICEMT1724(ice, AC97_CMD));
  116. if (old_cmd & (VT1724_AC97_WRITE | VT1724_AC97_READ))
  117. continue;
  118. if (!(old_cmd & VT1724_AC97_READY))
  119. continue;
  120. return old_cmd;
  121. }
  122. snd_printd(KERN_ERR "snd_vt1724_ac97_ready: timeout\n");
  123. return old_cmd;
  124. }
  125. static int snd_vt1724_ac97_wait_bit(struct snd_ice1712 *ice, unsigned char bit)
  126. {
  127. int tm;
  128. for (tm = 0; tm < 0x10000; tm++)
  129. if ((inb(ICEMT1724(ice, AC97_CMD)) & bit) == 0)
  130. return 0;
  131. snd_printd(KERN_ERR "snd_vt1724_ac97_wait_bit: timeout\n");
  132. return -EIO;
  133. }
  134. static void snd_vt1724_ac97_write(struct snd_ac97 *ac97,
  135. unsigned short reg,
  136. unsigned short val)
  137. {
  138. struct snd_ice1712 *ice = ac97->private_data;
  139. unsigned char old_cmd;
  140. old_cmd = snd_vt1724_ac97_ready(ice);
  141. old_cmd &= ~VT1724_AC97_ID_MASK;
  142. old_cmd |= ac97->num;
  143. outb(reg, ICEMT1724(ice, AC97_INDEX));
  144. outw(val, ICEMT1724(ice, AC97_DATA));
  145. outb(old_cmd | VT1724_AC97_WRITE, ICEMT1724(ice, AC97_CMD));
  146. snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_WRITE);
  147. }
  148. static unsigned short snd_vt1724_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
  149. {
  150. struct snd_ice1712 *ice = ac97->private_data;
  151. unsigned char old_cmd;
  152. old_cmd = snd_vt1724_ac97_ready(ice);
  153. old_cmd &= ~VT1724_AC97_ID_MASK;
  154. old_cmd |= ac97->num;
  155. outb(reg, ICEMT1724(ice, AC97_INDEX));
  156. outb(old_cmd | VT1724_AC97_READ, ICEMT1724(ice, AC97_CMD));
  157. if (snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_READ) < 0)
  158. return ~0;
  159. return inw(ICEMT1724(ice, AC97_DATA));
  160. }
  161. /*
  162. * GPIO operations
  163. */
  164. /* set gpio direction 0 = read, 1 = write */
  165. static void snd_vt1724_set_gpio_dir(struct snd_ice1712 *ice, unsigned int data)
  166. {
  167. outl(data, ICEREG1724(ice, GPIO_DIRECTION));
  168. inw(ICEREG1724(ice, GPIO_DIRECTION)); /* dummy read for pci-posting */
  169. }
  170. /* set the gpio mask (0 = writable) */
  171. static void snd_vt1724_set_gpio_mask(struct snd_ice1712 *ice, unsigned int data)
  172. {
  173. outw(data, ICEREG1724(ice, GPIO_WRITE_MASK));
  174. if (! ice->vt1720) /* VT1720 supports only 16 GPIO bits */
  175. outb((data >> 16) & 0xff, ICEREG1724(ice, GPIO_WRITE_MASK_22));
  176. inw(ICEREG1724(ice, GPIO_WRITE_MASK)); /* dummy read for pci-posting */
  177. }
  178. static void snd_vt1724_set_gpio_data(struct snd_ice1712 *ice, unsigned int data)
  179. {
  180. outw(data, ICEREG1724(ice, GPIO_DATA));
  181. if (! ice->vt1720)
  182. outb(data >> 16, ICEREG1724(ice, GPIO_DATA_22));
  183. inw(ICEREG1724(ice, GPIO_DATA)); /* dummy read for pci-posting */
  184. }
  185. static unsigned int snd_vt1724_get_gpio_data(struct snd_ice1712 *ice)
  186. {
  187. unsigned int data;
  188. if (! ice->vt1720)
  189. data = (unsigned int)inb(ICEREG1724(ice, GPIO_DATA_22));
  190. else
  191. data = 0;
  192. data = (data << 16) | inw(ICEREG1724(ice, GPIO_DATA));
  193. return data;
  194. }
  195. /*
  196. * MIDI
  197. */
  198. static void vt1724_midi_clear_rx(struct snd_ice1712 *ice)
  199. {
  200. unsigned int count;
  201. for (count = inb(ICEREG1724(ice, MPU_RXFIFO)); count > 0; --count)
  202. inb(ICEREG1724(ice, MPU_DATA));
  203. }
  204. static inline struct snd_rawmidi_substream *
  205. get_rawmidi_substream(struct snd_ice1712 *ice, unsigned int stream)
  206. {
  207. return list_first_entry(&ice->rmidi[0]->streams[stream].substreams,
  208. struct snd_rawmidi_substream, list);
  209. }
  210. static void vt1724_midi_write(struct snd_ice1712 *ice)
  211. {
  212. struct snd_rawmidi_substream *s;
  213. int count, i;
  214. u8 buffer[32];
  215. s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_OUTPUT);
  216. count = 31 - inb(ICEREG1724(ice, MPU_TXFIFO));
  217. if (count > 0) {
  218. count = snd_rawmidi_transmit(s, buffer, count);
  219. for (i = 0; i < count; ++i)
  220. outb(buffer[i], ICEREG1724(ice, MPU_DATA));
  221. }
  222. }
  223. static void vt1724_midi_read(struct snd_ice1712 *ice)
  224. {
  225. struct snd_rawmidi_substream *s;
  226. int count, i;
  227. u8 buffer[32];
  228. s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_INPUT);
  229. count = inb(ICEREG1724(ice, MPU_RXFIFO));
  230. if (count > 0) {
  231. count = min(count, 32);
  232. for (i = 0; i < count; ++i)
  233. buffer[i] = inb(ICEREG1724(ice, MPU_DATA));
  234. snd_rawmidi_receive(s, buffer, count);
  235. }
  236. }
  237. static void vt1724_enable_midi_irq(struct snd_rawmidi_substream *substream,
  238. u8 flag, int enable)
  239. {
  240. struct snd_ice1712 *ice = substream->rmidi->private_data;
  241. u8 mask;
  242. spin_lock_irq(&ice->reg_lock);
  243. mask = inb(ICEREG1724(ice, IRQMASK));
  244. if (enable)
  245. mask &= ~flag;
  246. else
  247. mask |= flag;
  248. outb(mask, ICEREG1724(ice, IRQMASK));
  249. spin_unlock_irq(&ice->reg_lock);
  250. }
  251. static int vt1724_midi_output_open(struct snd_rawmidi_substream *s)
  252. {
  253. vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 1);
  254. return 0;
  255. }
  256. static int vt1724_midi_output_close(struct snd_rawmidi_substream *s)
  257. {
  258. vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 0);
  259. return 0;
  260. }
  261. static void vt1724_midi_output_trigger(struct snd_rawmidi_substream *s, int up)
  262. {
  263. struct snd_ice1712 *ice = s->rmidi->private_data;
  264. unsigned long flags;
  265. spin_lock_irqsave(&ice->reg_lock, flags);
  266. if (up) {
  267. ice->midi_output = 1;
  268. vt1724_midi_write(ice);
  269. } else {
  270. ice->midi_output = 0;
  271. }
  272. spin_unlock_irqrestore(&ice->reg_lock, flags);
  273. }
  274. static void vt1724_midi_output_drain(struct snd_rawmidi_substream *s)
  275. {
  276. struct snd_ice1712 *ice = s->rmidi->private_data;
  277. unsigned long timeout;
  278. /* 32 bytes should be transmitted in less than about 12 ms */
  279. timeout = jiffies + msecs_to_jiffies(15);
  280. do {
  281. if (inb(ICEREG1724(ice, MPU_CTRL)) & VT1724_MPU_TX_EMPTY)
  282. break;
  283. schedule_timeout_uninterruptible(1);
  284. } while (time_after(timeout, jiffies));
  285. }
  286. static struct snd_rawmidi_ops vt1724_midi_output_ops = {
  287. .open = vt1724_midi_output_open,
  288. .close = vt1724_midi_output_close,
  289. .trigger = vt1724_midi_output_trigger,
  290. .drain = vt1724_midi_output_drain,
  291. };
  292. static int vt1724_midi_input_open(struct snd_rawmidi_substream *s)
  293. {
  294. vt1724_midi_clear_rx(s->rmidi->private_data);
  295. vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 1);
  296. return 0;
  297. }
  298. static int vt1724_midi_input_close(struct snd_rawmidi_substream *s)
  299. {
  300. vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 0);
  301. return 0;
  302. }
  303. static void vt1724_midi_input_trigger(struct snd_rawmidi_substream *s, int up)
  304. {
  305. struct snd_ice1712 *ice = s->rmidi->private_data;
  306. unsigned long flags;
  307. spin_lock_irqsave(&ice->reg_lock, flags);
  308. if (up) {
  309. ice->midi_input = 1;
  310. vt1724_midi_read(ice);
  311. } else {
  312. ice->midi_input = 0;
  313. }
  314. spin_unlock_irqrestore(&ice->reg_lock, flags);
  315. }
  316. static struct snd_rawmidi_ops vt1724_midi_input_ops = {
  317. .open = vt1724_midi_input_open,
  318. .close = vt1724_midi_input_close,
  319. .trigger = vt1724_midi_input_trigger,
  320. };
  321. /*
  322. * Interrupt handler
  323. */
  324. static irqreturn_t snd_vt1724_interrupt(int irq, void *dev_id)
  325. {
  326. struct snd_ice1712 *ice = dev_id;
  327. unsigned char status;
  328. unsigned char status_mask =
  329. VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX | VT1724_IRQ_MTPCM;
  330. int handled = 0;
  331. #ifdef CONFIG_SND_DEBUG
  332. int timeout = 0;
  333. #endif
  334. while (1) {
  335. status = inb(ICEREG1724(ice, IRQSTAT));
  336. status &= status_mask;
  337. if (status == 0)
  338. break;
  339. #ifdef CONFIG_SND_DEBUG
  340. if (++timeout > 10) {
  341. printk(KERN_ERR
  342. "ice1724: Too long irq loop, status = 0x%x\n",
  343. status);
  344. break;
  345. }
  346. #endif
  347. handled = 1;
  348. if (status & VT1724_IRQ_MPU_TX) {
  349. spin_lock(&ice->reg_lock);
  350. if (ice->midi_output)
  351. vt1724_midi_write(ice);
  352. spin_unlock(&ice->reg_lock);
  353. /* Due to mysterical reasons, MPU_TX is always
  354. * generated (and can't be cleared) when a PCM
  355. * playback is going. So let's ignore at the
  356. * next loop.
  357. */
  358. status_mask &= ~VT1724_IRQ_MPU_TX;
  359. }
  360. if (status & VT1724_IRQ_MPU_RX) {
  361. spin_lock(&ice->reg_lock);
  362. if (ice->midi_input)
  363. vt1724_midi_read(ice);
  364. else
  365. vt1724_midi_clear_rx(ice);
  366. spin_unlock(&ice->reg_lock);
  367. }
  368. /* ack MPU irq */
  369. outb(status, ICEREG1724(ice, IRQSTAT));
  370. if (status & VT1724_IRQ_MTPCM) {
  371. /*
  372. * Multi-track PCM
  373. * PCM assignment are:
  374. * Playback DMA0 (M/C) = playback_pro_substream
  375. * Playback DMA1 = playback_con_substream_ds[0]
  376. * Playback DMA2 = playback_con_substream_ds[1]
  377. * Playback DMA3 = playback_con_substream_ds[2]
  378. * Playback DMA4 (SPDIF) = playback_con_substream
  379. * Record DMA0 = capture_pro_substream
  380. * Record DMA1 = capture_con_substream
  381. */
  382. unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
  383. if (mtstat & VT1724_MULTI_PDMA0) {
  384. if (ice->playback_pro_substream)
  385. snd_pcm_period_elapsed(ice->playback_pro_substream);
  386. }
  387. if (mtstat & VT1724_MULTI_RDMA0) {
  388. if (ice->capture_pro_substream)
  389. snd_pcm_period_elapsed(ice->capture_pro_substream);
  390. }
  391. if (mtstat & VT1724_MULTI_PDMA1) {
  392. if (ice->playback_con_substream_ds[0])
  393. snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
  394. }
  395. if (mtstat & VT1724_MULTI_PDMA2) {
  396. if (ice->playback_con_substream_ds[1])
  397. snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
  398. }
  399. if (mtstat & VT1724_MULTI_PDMA3) {
  400. if (ice->playback_con_substream_ds[2])
  401. snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
  402. }
  403. if (mtstat & VT1724_MULTI_PDMA4) {
  404. if (ice->playback_con_substream)
  405. snd_pcm_period_elapsed(ice->playback_con_substream);
  406. }
  407. if (mtstat & VT1724_MULTI_RDMA1) {
  408. if (ice->capture_con_substream)
  409. snd_pcm_period_elapsed(ice->capture_con_substream);
  410. }
  411. /* ack anyway to avoid freeze */
  412. outb(mtstat, ICEMT1724(ice, IRQ));
  413. /* ought to really handle this properly */
  414. if (mtstat & VT1724_MULTI_FIFO_ERR) {
  415. unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
  416. outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
  417. outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
  418. /* If I don't do this, I get machine lockup due to continual interrupts */
  419. }
  420. }
  421. }
  422. return IRQ_RETVAL(handled);
  423. }
  424. /*
  425. * PCM code - professional part (multitrack)
  426. */
  427. static unsigned int rates[] = {
  428. 8000, 9600, 11025, 12000, 16000, 22050, 24000,
  429. 32000, 44100, 48000, 64000, 88200, 96000,
  430. 176400, 192000,
  431. };
  432. static struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
  433. .count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
  434. .list = rates,
  435. .mask = 0,
  436. };
  437. static struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
  438. .count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
  439. .list = rates,
  440. .mask = 0,
  441. };
  442. static struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
  443. .count = ARRAY_SIZE(rates),
  444. .list = rates,
  445. .mask = 0,
  446. };
  447. struct vt1724_pcm_reg {
  448. unsigned int addr; /* ADDR register offset */
  449. unsigned int size; /* SIZE register offset */
  450. unsigned int count; /* COUNT register offset */
  451. unsigned int start; /* start & pause bit */
  452. };
  453. static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  454. {
  455. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  456. unsigned char what;
  457. unsigned char old;
  458. struct snd_pcm_substream *s;
  459. what = 0;
  460. snd_pcm_group_for_each_entry(s, substream) {
  461. if (snd_pcm_substream_chip(s) == ice) {
  462. const struct vt1724_pcm_reg *reg;
  463. reg = s->runtime->private_data;
  464. what |= reg->start;
  465. snd_pcm_trigger_done(s, substream);
  466. }
  467. }
  468. switch (cmd) {
  469. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  470. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  471. spin_lock(&ice->reg_lock);
  472. old = inb(ICEMT1724(ice, DMA_PAUSE));
  473. if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
  474. old |= what;
  475. else
  476. old &= ~what;
  477. outb(old, ICEMT1724(ice, DMA_PAUSE));
  478. spin_unlock(&ice->reg_lock);
  479. break;
  480. case SNDRV_PCM_TRIGGER_START:
  481. case SNDRV_PCM_TRIGGER_STOP:
  482. spin_lock(&ice->reg_lock);
  483. old = inb(ICEMT1724(ice, DMA_CONTROL));
  484. if (cmd == SNDRV_PCM_TRIGGER_START)
  485. old |= what;
  486. else
  487. old &= ~what;
  488. outb(old, ICEMT1724(ice, DMA_CONTROL));
  489. spin_unlock(&ice->reg_lock);
  490. break;
  491. default:
  492. return -EINVAL;
  493. }
  494. return 0;
  495. }
  496. /*
  497. */
  498. #define DMA_STARTS (VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
  499. VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
  500. #define DMA_PAUSES (VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
  501. VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)
  502. static const unsigned int stdclock_rate_list[16] = {
  503. 48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
  504. 22050, 11025, 88200, 176400, 0, 192000, 64000
  505. };
  506. static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
  507. {
  508. unsigned int rate;
  509. rate = stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
  510. return rate;
  511. }
  512. static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
  513. {
  514. int i;
  515. for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
  516. if (stdclock_rate_list[i] == rate) {
  517. outb(i, ICEMT1724(ice, RATE));
  518. return;
  519. }
  520. }
  521. }
  522. static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
  523. unsigned int rate)
  524. {
  525. unsigned char val, old;
  526. /* check MT02 */
  527. if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
  528. val = old = inb(ICEMT1724(ice, I2S_FORMAT));
  529. if (rate > 96000)
  530. val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
  531. else
  532. val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
  533. if (val != old) {
  534. outb(val, ICEMT1724(ice, I2S_FORMAT));
  535. /* master clock changed */
  536. return 1;
  537. }
  538. }
  539. /* no change in master clock */
  540. return 0;
  541. }
  542. static void snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
  543. int force)
  544. {
  545. unsigned long flags;
  546. unsigned char mclk_change;
  547. unsigned int i, old_rate;
  548. if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
  549. return;
  550. spin_lock_irqsave(&ice->reg_lock, flags);
  551. if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
  552. (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
  553. /* running? we cannot change the rate now... */
  554. spin_unlock_irqrestore(&ice->reg_lock, flags);
  555. return;
  556. }
  557. if (!force && is_pro_rate_locked(ice)) {
  558. spin_unlock_irqrestore(&ice->reg_lock, flags);
  559. return;
  560. }
  561. old_rate = ice->get_rate(ice);
  562. if (force || (old_rate != rate))
  563. ice->set_rate(ice, rate);
  564. else if (rate == ice->cur_rate) {
  565. spin_unlock_irqrestore(&ice->reg_lock, flags);
  566. return;
  567. }
  568. ice->cur_rate = rate;
  569. /* setting master clock */
  570. mclk_change = ice->set_mclk(ice, rate);
  571. spin_unlock_irqrestore(&ice->reg_lock, flags);
  572. if (mclk_change && ice->gpio.i2s_mclk_changed)
  573. ice->gpio.i2s_mclk_changed(ice);
  574. if (ice->gpio.set_pro_rate)
  575. ice->gpio.set_pro_rate(ice, rate);
  576. /* set up codecs */
  577. for (i = 0; i < ice->akm_codecs; i++) {
  578. if (ice->akm[i].ops.set_rate_val)
  579. ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
  580. }
  581. if (ice->spdif.ops.setup_rate)
  582. ice->spdif.ops.setup_rate(ice, rate);
  583. }
  584. static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
  585. struct snd_pcm_hw_params *hw_params)
  586. {
  587. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  588. int i, chs;
  589. chs = params_channels(hw_params);
  590. mutex_lock(&ice->open_mutex);
  591. /* mark surround channels */
  592. if (substream == ice->playback_pro_substream) {
  593. /* PDMA0 can be multi-channel up to 8 */
  594. chs = chs / 2 - 1;
  595. for (i = 0; i < chs; i++) {
  596. if (ice->pcm_reserved[i] &&
  597. ice->pcm_reserved[i] != substream) {
  598. mutex_unlock(&ice->open_mutex);
  599. return -EBUSY;
  600. }
  601. ice->pcm_reserved[i] = substream;
  602. }
  603. for (; i < 3; i++) {
  604. if (ice->pcm_reserved[i] == substream)
  605. ice->pcm_reserved[i] = NULL;
  606. }
  607. } else {
  608. for (i = 0; i < 3; i++) {
  609. /* check individual playback stream */
  610. if (ice->playback_con_substream_ds[i] == substream) {
  611. if (ice->pcm_reserved[i] &&
  612. ice->pcm_reserved[i] != substream) {
  613. mutex_unlock(&ice->open_mutex);
  614. return -EBUSY;
  615. }
  616. ice->pcm_reserved[i] = substream;
  617. break;
  618. }
  619. }
  620. }
  621. mutex_unlock(&ice->open_mutex);
  622. snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
  623. return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
  624. }
  625. static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
  626. {
  627. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  628. int i;
  629. mutex_lock(&ice->open_mutex);
  630. /* unmark surround channels */
  631. for (i = 0; i < 3; i++)
  632. if (ice->pcm_reserved[i] == substream)
  633. ice->pcm_reserved[i] = NULL;
  634. mutex_unlock(&ice->open_mutex);
  635. return snd_pcm_lib_free_pages(substream);
  636. }
  637. static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
  638. {
  639. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  640. unsigned char val;
  641. unsigned int size;
  642. spin_lock_irq(&ice->reg_lock);
  643. val = (8 - substream->runtime->channels) >> 1;
  644. outb(val, ICEMT1724(ice, BURST));
  645. outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
  646. size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
  647. // outl(size, ICEMT1724(ice, PLAYBACK_SIZE));
  648. outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
  649. outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
  650. size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
  651. // outl(size, ICEMT1724(ice, PLAYBACK_COUNT));
  652. outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
  653. outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
  654. spin_unlock_irq(&ice->reg_lock);
  655. // printk("pro prepare: ch = %d, addr = 0x%x, buffer = 0x%x, period = 0x%x\n", substream->runtime->channels, (unsigned int)substream->runtime->dma_addr, snd_pcm_lib_buffer_bytes(substream), snd_pcm_lib_period_bytes(substream));
  656. return 0;
  657. }
  658. static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
  659. {
  660. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  661. size_t ptr;
  662. if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
  663. return 0;
  664. #if 0 /* read PLAYBACK_ADDR */
  665. ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
  666. if (ptr < substream->runtime->dma_addr) {
  667. snd_printd("ice1724: invalid negative ptr\n");
  668. return 0;
  669. }
  670. ptr -= substream->runtime->dma_addr;
  671. ptr = bytes_to_frames(substream->runtime, ptr);
  672. if (ptr >= substream->runtime->buffer_size) {
  673. snd_printd("ice1724: invalid ptr %d (size=%d)\n",
  674. (int)ptr, (int)substream->runtime->period_size);
  675. return 0;
  676. }
  677. #else /* read PLAYBACK_SIZE */
  678. ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
  679. ptr = (ptr + 1) << 2;
  680. ptr = bytes_to_frames(substream->runtime, ptr);
  681. if (! ptr)
  682. ;
  683. else if (ptr <= substream->runtime->buffer_size)
  684. ptr = substream->runtime->buffer_size - ptr;
  685. else {
  686. snd_printd("ice1724: invalid ptr %d (size=%d)\n",
  687. (int)ptr, (int)substream->runtime->buffer_size);
  688. ptr = 0;
  689. }
  690. #endif
  691. return ptr;
  692. }
  693. static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
  694. {
  695. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  696. const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
  697. spin_lock_irq(&ice->reg_lock);
  698. outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
  699. outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
  700. ice->profi_port + reg->size);
  701. outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
  702. ice->profi_port + reg->count);
  703. spin_unlock_irq(&ice->reg_lock);
  704. return 0;
  705. }
  706. static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
  707. {
  708. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  709. const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
  710. size_t ptr;
  711. if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
  712. return 0;
  713. #if 0 /* use ADDR register */
  714. ptr = inl(ice->profi_port + reg->addr);
  715. ptr -= substream->runtime->dma_addr;
  716. return bytes_to_frames(substream->runtime, ptr);
  717. #else /* use SIZE register */
  718. ptr = inw(ice->profi_port + reg->size);
  719. ptr = (ptr + 1) << 2;
  720. ptr = bytes_to_frames(substream->runtime, ptr);
  721. if (! ptr)
  722. ;
  723. else if (ptr <= substream->runtime->buffer_size)
  724. ptr = substream->runtime->buffer_size - ptr;
  725. else {
  726. snd_printd("ice1724: invalid ptr %d (size=%d)\n",
  727. (int)ptr, (int)substream->runtime->buffer_size);
  728. ptr = 0;
  729. }
  730. return ptr;
  731. #endif
  732. }
  733. static const struct vt1724_pcm_reg vt1724_playback_pro_reg = {
  734. .addr = VT1724_MT_PLAYBACK_ADDR,
  735. .size = VT1724_MT_PLAYBACK_SIZE,
  736. .count = VT1724_MT_PLAYBACK_COUNT,
  737. .start = VT1724_PDMA0_START,
  738. };
  739. static const struct vt1724_pcm_reg vt1724_capture_pro_reg = {
  740. .addr = VT1724_MT_CAPTURE_ADDR,
  741. .size = VT1724_MT_CAPTURE_SIZE,
  742. .count = VT1724_MT_CAPTURE_COUNT,
  743. .start = VT1724_RDMA0_START,
  744. };
  745. static const struct snd_pcm_hardware snd_vt1724_playback_pro =
  746. {
  747. .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  748. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  749. SNDRV_PCM_INFO_MMAP_VALID |
  750. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
  751. .formats = SNDRV_PCM_FMTBIT_S32_LE,
  752. .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
  753. .rate_min = 8000,
  754. .rate_max = 192000,
  755. .channels_min = 2,
  756. .channels_max = 8,
  757. .buffer_bytes_max = (1UL << 21), /* 19bits dword */
  758. .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
  759. .period_bytes_max = (1UL << 21),
  760. .periods_min = 2,
  761. .periods_max = 1024,
  762. };
  763. static const struct snd_pcm_hardware snd_vt1724_spdif =
  764. {
  765. .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  766. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  767. SNDRV_PCM_INFO_MMAP_VALID |
  768. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
  769. .formats = SNDRV_PCM_FMTBIT_S32_LE,
  770. .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
  771. SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
  772. SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
  773. SNDRV_PCM_RATE_192000),
  774. .rate_min = 32000,
  775. .rate_max = 192000,
  776. .channels_min = 2,
  777. .channels_max = 2,
  778. .buffer_bytes_max = (1UL << 18), /* 16bits dword */
  779. .period_bytes_min = 2 * 4 * 2,
  780. .period_bytes_max = (1UL << 18),
  781. .periods_min = 2,
  782. .periods_max = 1024,
  783. };
  784. static const struct snd_pcm_hardware snd_vt1724_2ch_stereo =
  785. {
  786. .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  787. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  788. SNDRV_PCM_INFO_MMAP_VALID |
  789. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
  790. .formats = SNDRV_PCM_FMTBIT_S32_LE,
  791. .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
  792. .rate_min = 8000,
  793. .rate_max = 192000,
  794. .channels_min = 2,
  795. .channels_max = 2,
  796. .buffer_bytes_max = (1UL << 18), /* 16bits dword */
  797. .period_bytes_min = 2 * 4 * 2,
  798. .period_bytes_max = (1UL << 18),
  799. .periods_min = 2,
  800. .periods_max = 1024,
  801. };
  802. /*
  803. * set rate constraints
  804. */
  805. static void set_std_hw_rates(struct snd_ice1712 *ice)
  806. {
  807. if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
  808. /* I2S */
  809. /* VT1720 doesn't support more than 96kHz */
  810. if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
  811. ice->hw_rates = &hw_constraints_rates_192;
  812. else
  813. ice->hw_rates = &hw_constraints_rates_96;
  814. } else {
  815. /* ACLINK */
  816. ice->hw_rates = &hw_constraints_rates_48;
  817. }
  818. }
  819. static int set_rate_constraints(struct snd_ice1712 *ice,
  820. struct snd_pcm_substream *substream)
  821. {
  822. struct snd_pcm_runtime *runtime = substream->runtime;
  823. runtime->hw.rate_min = ice->hw_rates->list[0];
  824. runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
  825. runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
  826. return snd_pcm_hw_constraint_list(runtime, 0,
  827. SNDRV_PCM_HW_PARAM_RATE,
  828. ice->hw_rates);
  829. }
  830. /* multi-channel playback needs alignment 8x32bit regardless of the channels
  831. * actually used
  832. */
  833. #define VT1724_BUFFER_ALIGN 0x20
  834. static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
  835. {
  836. struct snd_pcm_runtime *runtime = substream->runtime;
  837. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  838. int chs;
  839. runtime->private_data = (void *)&vt1724_playback_pro_reg;
  840. ice->playback_pro_substream = substream;
  841. runtime->hw = snd_vt1724_playback_pro;
  842. snd_pcm_set_sync(substream);
  843. snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
  844. set_rate_constraints(ice, substream);
  845. mutex_lock(&ice->open_mutex);
  846. /* calculate the currently available channels */
  847. for (chs = 0; chs < 3; chs++) {
  848. if (ice->pcm_reserved[chs])
  849. break;
  850. }
  851. chs = (chs + 1) * 2;
  852. runtime->hw.channels_max = chs;
  853. if (chs > 2) /* channels must be even */
  854. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
  855. mutex_unlock(&ice->open_mutex);
  856. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
  857. VT1724_BUFFER_ALIGN);
  858. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  859. VT1724_BUFFER_ALIGN);
  860. return 0;
  861. }
  862. static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
  863. {
  864. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  865. struct snd_pcm_runtime *runtime = substream->runtime;
  866. runtime->private_data = (void *)&vt1724_capture_pro_reg;
  867. ice->capture_pro_substream = substream;
  868. runtime->hw = snd_vt1724_2ch_stereo;
  869. snd_pcm_set_sync(substream);
  870. snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
  871. set_rate_constraints(ice, substream);
  872. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
  873. VT1724_BUFFER_ALIGN);
  874. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  875. VT1724_BUFFER_ALIGN);
  876. return 0;
  877. }
  878. static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
  879. {
  880. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  881. if (PRO_RATE_RESET)
  882. snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
  883. ice->playback_pro_substream = NULL;
  884. return 0;
  885. }
  886. static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
  887. {
  888. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  889. if (PRO_RATE_RESET)
  890. snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
  891. ice->capture_pro_substream = NULL;
  892. return 0;
  893. }
  894. static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
  895. .open = snd_vt1724_playback_pro_open,
  896. .close = snd_vt1724_playback_pro_close,
  897. .ioctl = snd_pcm_lib_ioctl,
  898. .hw_params = snd_vt1724_pcm_hw_params,
  899. .hw_free = snd_vt1724_pcm_hw_free,
  900. .prepare = snd_vt1724_playback_pro_prepare,
  901. .trigger = snd_vt1724_pcm_trigger,
  902. .pointer = snd_vt1724_playback_pro_pointer,
  903. };
  904. static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
  905. .open = snd_vt1724_capture_pro_open,
  906. .close = snd_vt1724_capture_pro_close,
  907. .ioctl = snd_pcm_lib_ioctl,
  908. .hw_params = snd_vt1724_pcm_hw_params,
  909. .hw_free = snd_vt1724_pcm_hw_free,
  910. .prepare = snd_vt1724_pcm_prepare,
  911. .trigger = snd_vt1724_pcm_trigger,
  912. .pointer = snd_vt1724_pcm_pointer,
  913. };
  914. static int __devinit snd_vt1724_pcm_profi(struct snd_ice1712 * ice, int device)
  915. {
  916. struct snd_pcm *pcm;
  917. int err;
  918. err = snd_pcm_new(ice->card, "ICE1724", device, 1, 1, &pcm);
  919. if (err < 0)
  920. return err;
  921. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
  922. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_vt1724_capture_pro_ops);
  923. pcm->private_data = ice;
  924. pcm->info_flags = 0;
  925. strcpy(pcm->name, "ICE1724");
  926. snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
  927. snd_dma_pci_data(ice->pci),
  928. 256*1024, 256*1024);
  929. ice->pcm_pro = pcm;
  930. return 0;
  931. }
  932. /*
  933. * SPDIF PCM
  934. */
  935. static const struct vt1724_pcm_reg vt1724_playback_spdif_reg = {
  936. .addr = VT1724_MT_PDMA4_ADDR,
  937. .size = VT1724_MT_PDMA4_SIZE,
  938. .count = VT1724_MT_PDMA4_COUNT,
  939. .start = VT1724_PDMA4_START,
  940. };
  941. static const struct vt1724_pcm_reg vt1724_capture_spdif_reg = {
  942. .addr = VT1724_MT_RDMA1_ADDR,
  943. .size = VT1724_MT_RDMA1_SIZE,
  944. .count = VT1724_MT_RDMA1_COUNT,
  945. .start = VT1724_RDMA1_START,
  946. };
  947. /* update spdif control bits; call with reg_lock */
  948. static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
  949. {
  950. unsigned char cbit, disabled;
  951. cbit = inb(ICEREG1724(ice, SPDIF_CFG));
  952. disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
  953. if (cbit != disabled)
  954. outb(disabled, ICEREG1724(ice, SPDIF_CFG));
  955. outw(val, ICEMT1724(ice, SPDIF_CTRL));
  956. if (cbit != disabled)
  957. outb(cbit, ICEREG1724(ice, SPDIF_CFG));
  958. outw(val, ICEMT1724(ice, SPDIF_CTRL));
  959. }
  960. /* update SPDIF control bits according to the given rate */
  961. static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
  962. {
  963. unsigned int val, nval;
  964. unsigned long flags;
  965. spin_lock_irqsave(&ice->reg_lock, flags);
  966. nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
  967. nval &= ~(7 << 12);
  968. switch (rate) {
  969. case 44100: break;
  970. case 48000: nval |= 2 << 12; break;
  971. case 32000: nval |= 3 << 12; break;
  972. case 88200: nval |= 4 << 12; break;
  973. case 96000: nval |= 5 << 12; break;
  974. case 192000: nval |= 6 << 12; break;
  975. case 176400: nval |= 7 << 12; break;
  976. }
  977. if (val != nval)
  978. update_spdif_bits(ice, nval);
  979. spin_unlock_irqrestore(&ice->reg_lock, flags);
  980. }
  981. static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
  982. {
  983. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  984. if (! ice->force_pdma4)
  985. update_spdif_rate(ice, substream->runtime->rate);
  986. return snd_vt1724_pcm_prepare(substream);
  987. }
  988. static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
  989. {
  990. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  991. struct snd_pcm_runtime *runtime = substream->runtime;
  992. runtime->private_data = (void *)&vt1724_playback_spdif_reg;
  993. ice->playback_con_substream = substream;
  994. if (ice->force_pdma4) {
  995. runtime->hw = snd_vt1724_2ch_stereo;
  996. set_rate_constraints(ice, substream);
  997. } else
  998. runtime->hw = snd_vt1724_spdif;
  999. snd_pcm_set_sync(substream);
  1000. snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
  1001. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
  1002. VT1724_BUFFER_ALIGN);
  1003. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  1004. VT1724_BUFFER_ALIGN);
  1005. if (ice->spdif.ops.open)
  1006. ice->spdif.ops.open(ice, substream);
  1007. return 0;
  1008. }
  1009. static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
  1010. {
  1011. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  1012. if (PRO_RATE_RESET)
  1013. snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
  1014. ice->playback_con_substream = NULL;
  1015. if (ice->spdif.ops.close)
  1016. ice->spdif.ops.close(ice, substream);
  1017. return 0;
  1018. }
  1019. static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
  1020. {
  1021. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  1022. struct snd_pcm_runtime *runtime = substream->runtime;
  1023. runtime->private_data = (void *)&vt1724_capture_spdif_reg;
  1024. ice->capture_con_substream = substream;
  1025. if (ice->force_rdma1) {
  1026. runtime->hw = snd_vt1724_2ch_stereo;
  1027. set_rate_constraints(ice, substream);
  1028. } else
  1029. runtime->hw = snd_vt1724_spdif;
  1030. snd_pcm_set_sync(substream);
  1031. snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
  1032. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
  1033. VT1724_BUFFER_ALIGN);
  1034. snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  1035. VT1724_BUFFER_ALIGN);
  1036. if (ice->spdif.ops.open)
  1037. ice->spdif.ops.open(ice, substream);
  1038. return 0;
  1039. }
  1040. static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
  1041. {
  1042. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  1043. if (PRO_RATE_RESET)
  1044. snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
  1045. ice->capture_con_substream = NULL;
  1046. if (ice->spdif.ops.close)
  1047. ice->spdif.ops.close(ice, substream);
  1048. return 0;
  1049. }
  1050. static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
  1051. .open = snd_vt1724_playback_spdif_open,
  1052. .close = snd_vt1724_playback_spdif_close,
  1053. .ioctl = snd_pcm_lib_ioctl,
  1054. .hw_params = snd_vt1724_pcm_hw_params,
  1055. .hw_free = snd_vt1724_pcm_hw_free,
  1056. .prepare = snd_vt1724_playback_spdif_prepare,
  1057. .trigger = snd_vt1724_pcm_trigger,
  1058. .pointer = snd_vt1724_pcm_pointer,
  1059. };
  1060. static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
  1061. .open = snd_vt1724_capture_spdif_open,
  1062. .close = snd_vt1724_capture_spdif_close,
  1063. .ioctl = snd_pcm_lib_ioctl,
  1064. .hw_params = snd_vt1724_pcm_hw_params,
  1065. .hw_free = snd_vt1724_pcm_hw_free,
  1066. .prepare = snd_vt1724_pcm_prepare,
  1067. .trigger = snd_vt1724_pcm_trigger,
  1068. .pointer = snd_vt1724_pcm_pointer,
  1069. };
  1070. static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 * ice, int device)
  1071. {
  1072. char *name;
  1073. struct snd_pcm *pcm;
  1074. int play, capt;
  1075. int err;
  1076. if (ice->force_pdma4 ||
  1077. (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
  1078. play = 1;
  1079. ice->has_spdif = 1;
  1080. } else
  1081. play = 0;
  1082. if (ice->force_rdma1 ||
  1083. (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
  1084. capt = 1;
  1085. ice->has_spdif = 1;
  1086. } else
  1087. capt = 0;
  1088. if (! play && ! capt)
  1089. return 0; /* no spdif device */
  1090. if (ice->force_pdma4 || ice->force_rdma1)
  1091. name = "ICE1724 Secondary";
  1092. else
  1093. name = "IEC1724 IEC958";
  1094. err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
  1095. if (err < 0)
  1096. return err;
  1097. if (play)
  1098. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1099. &snd_vt1724_playback_spdif_ops);
  1100. if (capt)
  1101. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1102. &snd_vt1724_capture_spdif_ops);
  1103. pcm->private_data = ice;
  1104. pcm->info_flags = 0;
  1105. strcpy(pcm->name, name);
  1106. snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
  1107. snd_dma_pci_data(ice->pci),
  1108. 64*1024, 64*1024);
  1109. ice->pcm = pcm;
  1110. return 0;
  1111. }
  1112. /*
  1113. * independent surround PCMs
  1114. */
  1115. static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
  1116. {
  1117. .addr = VT1724_MT_PDMA1_ADDR,
  1118. .size = VT1724_MT_PDMA1_SIZE,
  1119. .count = VT1724_MT_PDMA1_COUNT,
  1120. .start = VT1724_PDMA1_START,
  1121. },
  1122. {
  1123. .addr = VT1724_MT_PDMA2_ADDR,
  1124. .size = VT1724_MT_PDMA2_SIZE,
  1125. .count = VT1724_MT_PDMA2_COUNT,
  1126. .start = VT1724_PDMA2_START,
  1127. },
  1128. {
  1129. .addr = VT1724_MT_PDMA3_ADDR,
  1130. .size = VT1724_MT_PDMA3_SIZE,
  1131. .count = VT1724_MT_PDMA3_COUNT,
  1132. .start = VT1724_PDMA3_START,
  1133. },
  1134. };
  1135. static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
  1136. {
  1137. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  1138. unsigned char val;
  1139. spin_lock_irq(&ice->reg_lock);
  1140. val = 3 - substream->number;
  1141. if (inb(ICEMT1724(ice, BURST)) < val)
  1142. outb(val, ICEMT1724(ice, BURST));
  1143. spin_unlock_irq(&ice->reg_lock);
  1144. return snd_vt1724_pcm_prepare(substream);
  1145. }
  1146. static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
  1147. {
  1148. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  1149. struct snd_pcm_runtime *runtime = substream->runtime;
  1150. mutex_lock(&ice->open_mutex);
  1151. /* already used by PDMA0? */
  1152. if (ice->pcm_reserved[substream->number]) {
  1153. mutex_unlock(&ice->open_mutex);
  1154. return -EBUSY; /* FIXME: should handle blocking mode properly */
  1155. }
  1156. mutex_unlock(&ice->open_mutex);
  1157. runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
  1158. ice->playback_con_substream_ds[substream->number] = substream;
  1159. runtime->hw = snd_vt1724_2ch_stereo;
  1160. snd_pcm_set_sync(substream);
  1161. snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
  1162. set_rate_constraints(ice, substream);
  1163. return 0;
  1164. }
  1165. static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
  1166. {
  1167. struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
  1168. if (PRO_RATE_RESET)
  1169. snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
  1170. ice->playback_con_substream_ds[substream->number] = NULL;
  1171. ice->pcm_reserved[substream->number] = NULL;
  1172. return 0;
  1173. }
  1174. static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
  1175. .open = snd_vt1724_playback_indep_open,
  1176. .close = snd_vt1724_playback_indep_close,
  1177. .ioctl = snd_pcm_lib_ioctl,
  1178. .hw_params = snd_vt1724_pcm_hw_params,
  1179. .hw_free = snd_vt1724_pcm_hw_free,
  1180. .prepare = snd_vt1724_playback_indep_prepare,
  1181. .trigger = snd_vt1724_pcm_trigger,
  1182. .pointer = snd_vt1724_pcm_pointer,
  1183. };
  1184. static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 * ice, int device)
  1185. {
  1186. struct snd_pcm *pcm;
  1187. int play;
  1188. int err;
  1189. play = ice->num_total_dacs / 2 - 1;
  1190. if (play <= 0)
  1191. return 0;
  1192. err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
  1193. if (err < 0)
  1194. return err;
  1195. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1196. &snd_vt1724_playback_indep_ops);
  1197. pcm->private_data = ice;
  1198. pcm->info_flags = 0;
  1199. strcpy(pcm->name, "ICE1724 Surround PCM");
  1200. snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
  1201. snd_dma_pci_data(ice->pci),
  1202. 64*1024, 64*1024);
  1203. ice->pcm_ds = pcm;
  1204. return 0;
  1205. }
  1206. /*
  1207. * Mixer section
  1208. */
  1209. static int __devinit snd_vt1724_ac97_mixer(struct snd_ice1712 * ice)
  1210. {
  1211. int err;
  1212. if (! (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
  1213. struct snd_ac97_bus *pbus;
  1214. struct snd_ac97_template ac97;
  1215. static struct snd_ac97_bus_ops ops = {
  1216. .write = snd_vt1724_ac97_write,
  1217. .read = snd_vt1724_ac97_read,
  1218. };
  1219. /* cold reset */
  1220. outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
  1221. mdelay(5); /* FIXME */
  1222. outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
  1223. if ((err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus)) < 0)
  1224. return err;
  1225. memset(&ac97, 0, sizeof(ac97));
  1226. ac97.private_data = ice;
  1227. if ((err = snd_ac97_mixer(pbus, &ac97, &ice->ac97)) < 0)
  1228. printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
  1229. else
  1230. return 0;
  1231. }
  1232. /* I2S mixer only */
  1233. strcat(ice->card->mixername, "ICE1724 - multitrack");
  1234. return 0;
  1235. }
  1236. /*
  1237. *
  1238. */
  1239. static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
  1240. {
  1241. return (unsigned int)ice->eeprom.data[idx] | \
  1242. ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
  1243. ((unsigned int)ice->eeprom.data[idx + 2] << 16);
  1244. }
  1245. static void snd_vt1724_proc_read(struct snd_info_entry *entry,
  1246. struct snd_info_buffer *buffer)
  1247. {
  1248. struct snd_ice1712 *ice = entry->private_data;
  1249. unsigned int idx;
  1250. snd_iprintf(buffer, "%s\n\n", ice->card->longname);
  1251. snd_iprintf(buffer, "EEPROM:\n");
  1252. snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
  1253. snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
  1254. snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
  1255. snd_iprintf(buffer, " System Config : 0x%x\n",
  1256. ice->eeprom.data[ICE_EEP2_SYSCONF]);
  1257. snd_iprintf(buffer, " ACLink : 0x%x\n",
  1258. ice->eeprom.data[ICE_EEP2_ACLINK]);
  1259. snd_iprintf(buffer, " I2S : 0x%x\n",
  1260. ice->eeprom.data[ICE_EEP2_I2S]);
  1261. snd_iprintf(buffer, " S/PDIF : 0x%x\n",
  1262. ice->eeprom.data[ICE_EEP2_SPDIF]);
  1263. snd_iprintf(buffer, " GPIO direction : 0x%x\n",
  1264. ice->eeprom.gpiodir);
  1265. snd_iprintf(buffer, " GPIO mask : 0x%x\n",
  1266. ice->eeprom.gpiomask);
  1267. snd_iprintf(buffer, " GPIO state : 0x%x\n",
  1268. ice->eeprom.gpiostate);
  1269. for (idx = 0x12; idx < ice->eeprom.size; idx++)
  1270. snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
  1271. idx, ice->eeprom.data[idx]);
  1272. snd_iprintf(buffer, "\nRegisters:\n");
  1273. snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
  1274. (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
  1275. for (idx = 0x0; idx < 0x20 ; idx++)
  1276. snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
  1277. idx, inb(ice->port+idx));
  1278. for (idx = 0x0; idx < 0x30 ; idx++)
  1279. snd_iprintf(buffer, " MT%02x : 0x%02x\n",
  1280. idx, inb(ice->profi_port+idx));
  1281. }
  1282. static void __devinit snd_vt1724_proc_init(struct snd_ice1712 * ice)
  1283. {
  1284. struct snd_info_entry *entry;
  1285. if (! snd_card_proc_new(ice->card, "ice1724", &entry))
  1286. snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
  1287. }
  1288. /*
  1289. *
  1290. */
  1291. static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
  1292. struct snd_ctl_elem_info *uinfo)
  1293. {
  1294. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  1295. uinfo->count = sizeof(struct snd_ice1712_eeprom);
  1296. return 0;
  1297. }
  1298. static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
  1299. struct snd_ctl_elem_value *ucontrol)
  1300. {
  1301. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1302. memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
  1303. return 0;
  1304. }
  1305. static struct snd_kcontrol_new snd_vt1724_eeprom __devinitdata = {
  1306. .iface = SNDRV_CTL_ELEM_IFACE_CARD,
  1307. .name = "ICE1724 EEPROM",
  1308. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  1309. .info = snd_vt1724_eeprom_info,
  1310. .get = snd_vt1724_eeprom_get
  1311. };
  1312. /*
  1313. */
  1314. static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
  1315. struct snd_ctl_elem_info *uinfo)
  1316. {
  1317. uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
  1318. uinfo->count = 1;
  1319. return 0;
  1320. }
  1321. static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
  1322. {
  1323. unsigned int val, rbits;
  1324. val = diga->status[0] & 0x03; /* professional, non-audio */
  1325. if (val & 0x01) {
  1326. /* professional */
  1327. if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
  1328. IEC958_AES0_PRO_EMPHASIS_5015)
  1329. val |= 1U << 3;
  1330. rbits = (diga->status[4] >> 3) & 0x0f;
  1331. if (rbits) {
  1332. switch (rbits) {
  1333. case 2: val |= 5 << 12; break; /* 96k */
  1334. case 3: val |= 6 << 12; break; /* 192k */
  1335. case 10: val |= 4 << 12; break; /* 88.2k */
  1336. case 11: val |= 7 << 12; break; /* 176.4k */
  1337. }
  1338. } else {
  1339. switch (diga->status[0] & IEC958_AES0_PRO_FS) {
  1340. case IEC958_AES0_PRO_FS_44100:
  1341. break;
  1342. case IEC958_AES0_PRO_FS_32000:
  1343. val |= 3U << 12;
  1344. break;
  1345. default:
  1346. val |= 2U << 12;
  1347. break;
  1348. }
  1349. }
  1350. } else {
  1351. /* consumer */
  1352. val |= diga->status[1] & 0x04; /* copyright */
  1353. if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
  1354. IEC958_AES0_CON_EMPHASIS_5015)
  1355. val |= 1U << 3;
  1356. val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
  1357. val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
  1358. }
  1359. return val;
  1360. }
  1361. static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
  1362. {
  1363. memset(diga->status, 0, sizeof(diga->status));
  1364. diga->status[0] = val & 0x03; /* professional, non-audio */
  1365. if (val & 0x01) {
  1366. /* professional */
  1367. if (val & (1U << 3))
  1368. diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
  1369. switch ((val >> 12) & 0x7) {
  1370. case 0:
  1371. break;
  1372. case 2:
  1373. diga->status[0] |= IEC958_AES0_PRO_FS_32000;
  1374. break;
  1375. default:
  1376. diga->status[0] |= IEC958_AES0_PRO_FS_48000;
  1377. break;
  1378. }
  1379. } else {
  1380. /* consumer */
  1381. diga->status[0] |= val & (1U << 2); /* copyright */
  1382. if (val & (1U << 3))
  1383. diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
  1384. diga->status[1] |= (val >> 4) & 0x3f; /* category */
  1385. diga->status[3] |= (val >> 12) & 0x07; /* fs */
  1386. }
  1387. }
  1388. static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
  1389. struct snd_ctl_elem_value *ucontrol)
  1390. {
  1391. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1392. unsigned int val;
  1393. val = inw(ICEMT1724(ice, SPDIF_CTRL));
  1394. decode_spdif_bits(&ucontrol->value.iec958, val);
  1395. return 0;
  1396. }
  1397. static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
  1398. struct snd_ctl_elem_value *ucontrol)
  1399. {
  1400. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1401. unsigned int val, old;
  1402. val = encode_spdif_bits(&ucontrol->value.iec958);
  1403. spin_lock_irq(&ice->reg_lock);
  1404. old = inw(ICEMT1724(ice, SPDIF_CTRL));
  1405. if (val != old)
  1406. update_spdif_bits(ice, val);
  1407. spin_unlock_irq(&ice->reg_lock);
  1408. return (val != old);
  1409. }
  1410. static struct snd_kcontrol_new snd_vt1724_spdif_default __devinitdata =
  1411. {
  1412. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  1413. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
  1414. .info = snd_vt1724_spdif_info,
  1415. .get = snd_vt1724_spdif_default_get,
  1416. .put = snd_vt1724_spdif_default_put
  1417. };
  1418. static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
  1419. struct snd_ctl_elem_value *ucontrol)
  1420. {
  1421. ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
  1422. IEC958_AES0_PROFESSIONAL |
  1423. IEC958_AES0_CON_NOT_COPYRIGHT |
  1424. IEC958_AES0_CON_EMPHASIS;
  1425. ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
  1426. IEC958_AES1_CON_CATEGORY;
  1427. ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
  1428. return 0;
  1429. }
  1430. static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
  1431. struct snd_ctl_elem_value *ucontrol)
  1432. {
  1433. ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
  1434. IEC958_AES0_PROFESSIONAL |
  1435. IEC958_AES0_PRO_FS |
  1436. IEC958_AES0_PRO_EMPHASIS;
  1437. return 0;
  1438. }
  1439. static struct snd_kcontrol_new snd_vt1724_spdif_maskc __devinitdata =
  1440. {
  1441. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  1442. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  1443. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
  1444. .info = snd_vt1724_spdif_info,
  1445. .get = snd_vt1724_spdif_maskc_get,
  1446. };
  1447. static struct snd_kcontrol_new snd_vt1724_spdif_maskp __devinitdata =
  1448. {
  1449. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  1450. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  1451. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
  1452. .info = snd_vt1724_spdif_info,
  1453. .get = snd_vt1724_spdif_maskp_get,
  1454. };
  1455. #define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
  1456. static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
  1457. struct snd_ctl_elem_value *ucontrol)
  1458. {
  1459. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1460. ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
  1461. VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
  1462. return 0;
  1463. }
  1464. static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
  1465. struct snd_ctl_elem_value *ucontrol)
  1466. {
  1467. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1468. unsigned char old, val;
  1469. spin_lock_irq(&ice->reg_lock);
  1470. old = val = inb(ICEREG1724(ice, SPDIF_CFG));
  1471. val &= ~VT1724_CFG_SPDIF_OUT_EN;
  1472. if (ucontrol->value.integer.value[0])
  1473. val |= VT1724_CFG_SPDIF_OUT_EN;
  1474. if (old != val)
  1475. outb(val, ICEREG1724(ice, SPDIF_CFG));
  1476. spin_unlock_irq(&ice->reg_lock);
  1477. return old != val;
  1478. }
  1479. static struct snd_kcontrol_new snd_vt1724_spdif_switch __devinitdata =
  1480. {
  1481. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1482. /* FIXME: the following conflict with IEC958 Playback Route */
  1483. // .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
  1484. .name = SNDRV_CTL_NAME_IEC958("Output ",NONE,SWITCH),
  1485. .info = snd_vt1724_spdif_sw_info,
  1486. .get = snd_vt1724_spdif_sw_get,
  1487. .put = snd_vt1724_spdif_sw_put
  1488. };
  1489. #if 0 /* NOT USED YET */
  1490. /*
  1491. * GPIO access from extern
  1492. */
  1493. #define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
  1494. int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
  1495. struct snd_ctl_elem_value *ucontrol)
  1496. {
  1497. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1498. int shift = kcontrol->private_value & 0xff;
  1499. int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
  1500. snd_ice1712_save_gpio_status(ice);
  1501. ucontrol->value.integer.value[0] =
  1502. (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
  1503. snd_ice1712_restore_gpio_status(ice);
  1504. return 0;
  1505. }
  1506. int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
  1507. struct snd_ctl_elem_value *ucontrol)
  1508. {
  1509. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1510. int shift = kcontrol->private_value & 0xff;
  1511. int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
  1512. unsigned int val, nval;
  1513. if (kcontrol->private_value & (1 << 31))
  1514. return -EPERM;
  1515. nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
  1516. snd_ice1712_save_gpio_status(ice);
  1517. val = snd_ice1712_gpio_read(ice);
  1518. nval |= val & ~(1 << shift);
  1519. if (val != nval)
  1520. snd_ice1712_gpio_write(ice, nval);
  1521. snd_ice1712_restore_gpio_status(ice);
  1522. return val != nval;
  1523. }
  1524. #endif /* NOT USED YET */
  1525. /*
  1526. * rate
  1527. */
  1528. static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
  1529. struct snd_ctl_elem_info *uinfo)
  1530. {
  1531. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1532. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1533. uinfo->count = 1;
  1534. uinfo->value.enumerated.items = ice->hw_rates->count + 1;
  1535. if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
  1536. uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
  1537. if (uinfo->value.enumerated.item == uinfo->value.enumerated.items - 1)
  1538. strcpy(uinfo->value.enumerated.name, "IEC958 Input");
  1539. else
  1540. sprintf(uinfo->value.enumerated.name, "%d",
  1541. ice->hw_rates->list[uinfo->value.enumerated.item]);
  1542. return 0;
  1543. }
  1544. static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
  1545. struct snd_ctl_elem_value *ucontrol)
  1546. {
  1547. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1548. unsigned int i, rate;
  1549. spin_lock_irq(&ice->reg_lock);
  1550. if (ice->is_spdif_master(ice)) {
  1551. ucontrol->value.enumerated.item[0] = ice->hw_rates->count;
  1552. } else {
  1553. rate = ice->get_rate(ice);
  1554. ucontrol->value.enumerated.item[0] = 0;
  1555. for (i = 0; i < ice->hw_rates->count; i++) {
  1556. if (ice->hw_rates->list[i] == rate) {
  1557. ucontrol->value.enumerated.item[0] = i;
  1558. break;
  1559. }
  1560. }
  1561. }
  1562. spin_unlock_irq(&ice->reg_lock);
  1563. return 0;
  1564. }
  1565. /* setting clock to external - SPDIF */
  1566. static void stdclock_set_spdif_clock(struct snd_ice1712 *ice)
  1567. {
  1568. unsigned char oval;
  1569. unsigned char i2s_oval;
  1570. oval = inb(ICEMT1724(ice, RATE));
  1571. outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
  1572. /* setting 256fs */
  1573. i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
  1574. outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
  1575. }
  1576. static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
  1577. struct snd_ctl_elem_value *ucontrol)
  1578. {
  1579. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1580. unsigned int old_rate, new_rate;
  1581. unsigned int item = ucontrol->value.enumerated.item[0];
  1582. unsigned int spdif = ice->hw_rates->count;
  1583. if (item > spdif)
  1584. return -EINVAL;
  1585. spin_lock_irq(&ice->reg_lock);
  1586. if (ice->is_spdif_master(ice))
  1587. old_rate = 0;
  1588. else
  1589. old_rate = ice->get_rate(ice);
  1590. if (item == spdif) {
  1591. /* switching to external clock via SPDIF */
  1592. ice->set_spdif_clock(ice);
  1593. new_rate = 0;
  1594. } else {
  1595. /* internal on-card clock */
  1596. new_rate = ice->hw_rates->list[item];
  1597. ice->pro_rate_default = new_rate;
  1598. spin_unlock_irq(&ice->reg_lock);
  1599. snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
  1600. spin_lock_irq(&ice->reg_lock);
  1601. }
  1602. spin_unlock_irq(&ice->reg_lock);
  1603. /* the first reset to the SPDIF master mode? */
  1604. if (old_rate != new_rate && !new_rate) {
  1605. /* notify akm chips as well */
  1606. unsigned int i;
  1607. if (ice->gpio.set_pro_rate)
  1608. ice->gpio.set_pro_rate(ice, 0);
  1609. for (i = 0; i < ice->akm_codecs; i++) {
  1610. if (ice->akm[i].ops.set_rate_val)
  1611. ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
  1612. }
  1613. }
  1614. return old_rate != new_rate;
  1615. }
  1616. static struct snd_kcontrol_new snd_vt1724_pro_internal_clock __devinitdata = {
  1617. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1618. .name = "Multi Track Internal Clock",
  1619. .info = snd_vt1724_pro_internal_clock_info,
  1620. .get = snd_vt1724_pro_internal_clock_get,
  1621. .put = snd_vt1724_pro_internal_clock_put
  1622. };
  1623. #define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
  1624. static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
  1625. struct snd_ctl_elem_value *ucontrol)
  1626. {
  1627. ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
  1628. return 0;
  1629. }
  1630. static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
  1631. struct snd_ctl_elem_value *ucontrol)
  1632. {
  1633. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1634. int change = 0, nval;
  1635. nval = ucontrol->value.integer.value[0] ? 1 : 0;
  1636. spin_lock_irq(&ice->reg_lock);
  1637. change = PRO_RATE_LOCKED != nval;
  1638. PRO_RATE_LOCKED = nval;
  1639. spin_unlock_irq(&ice->reg_lock);
  1640. return change;
  1641. }
  1642. static struct snd_kcontrol_new snd_vt1724_pro_rate_locking __devinitdata = {
  1643. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1644. .name = "Multi Track Rate Locking",
  1645. .info = snd_vt1724_pro_rate_locking_info,
  1646. .get = snd_vt1724_pro_rate_locking_get,
  1647. .put = snd_vt1724_pro_rate_locking_put
  1648. };
  1649. #define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
  1650. static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
  1651. struct snd_ctl_elem_value *ucontrol)
  1652. {
  1653. ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
  1654. return 0;
  1655. }
  1656. static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
  1657. struct snd_ctl_elem_value *ucontrol)
  1658. {
  1659. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1660. int change = 0, nval;
  1661. nval = ucontrol->value.integer.value[0] ? 1 : 0;
  1662. spin_lock_irq(&ice->reg_lock);
  1663. change = PRO_RATE_RESET != nval;
  1664. PRO_RATE_RESET = nval;
  1665. spin_unlock_irq(&ice->reg_lock);
  1666. return change;
  1667. }
  1668. static struct snd_kcontrol_new snd_vt1724_pro_rate_reset __devinitdata = {
  1669. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1670. .name = "Multi Track Rate Reset",
  1671. .info = snd_vt1724_pro_rate_reset_info,
  1672. .get = snd_vt1724_pro_rate_reset_get,
  1673. .put = snd_vt1724_pro_rate_reset_put
  1674. };
  1675. /*
  1676. * routing
  1677. */
  1678. static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
  1679. struct snd_ctl_elem_info *uinfo)
  1680. {
  1681. static char *texts[] = {
  1682. "PCM Out", /* 0 */
  1683. "H/W In 0", "H/W In 1", /* 1-2 */
  1684. "IEC958 In L", "IEC958 In R", /* 3-4 */
  1685. };
  1686. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1687. uinfo->count = 1;
  1688. uinfo->value.enumerated.items = 5;
  1689. if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
  1690. uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
  1691. strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
  1692. return 0;
  1693. }
  1694. static inline int analog_route_shift(int idx)
  1695. {
  1696. return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
  1697. }
  1698. static inline int digital_route_shift(int idx)
  1699. {
  1700. return idx * 3;
  1701. }
  1702. static int get_route_val(struct snd_ice1712 *ice, int shift)
  1703. {
  1704. unsigned long val;
  1705. unsigned char eitem;
  1706. static const unsigned char xlate[8] = {
  1707. 0, 255, 1, 2, 255, 255, 3, 4,
  1708. };
  1709. val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
  1710. val >>= shift;
  1711. val &= 7; //we now have 3 bits per output
  1712. eitem = xlate[val];
  1713. if (eitem == 255) {
  1714. snd_BUG();
  1715. return 0;
  1716. }
  1717. return eitem;
  1718. }
  1719. static int put_route_val(struct snd_ice1712 *ice, unsigned int val, int shift)
  1720. {
  1721. unsigned int old_val, nval;
  1722. int change;
  1723. static const unsigned char xroute[8] = {
  1724. 0, /* PCM */
  1725. 2, /* PSDIN0 Left */
  1726. 3, /* PSDIN0 Right */
  1727. 6, /* SPDIN Left */
  1728. 7, /* SPDIN Right */
  1729. };
  1730. nval = xroute[val % 5];
  1731. val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
  1732. val &= ~(0x07 << shift);
  1733. val |= nval << shift;
  1734. change = val != old_val;
  1735. if (change)
  1736. outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
  1737. return change;
  1738. }
  1739. static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
  1740. struct snd_ctl_elem_value *ucontrol)
  1741. {
  1742. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1743. int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1744. ucontrol->value.enumerated.item[0] =
  1745. get_route_val(ice, analog_route_shift(idx));
  1746. return 0;
  1747. }
  1748. static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
  1749. struct snd_ctl_elem_value *ucontrol)
  1750. {
  1751. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1752. int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1753. return put_route_val(ice, ucontrol->value.enumerated.item[0],
  1754. analog_route_shift(idx));
  1755. }
  1756. static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
  1757. struct snd_ctl_elem_value *ucontrol)
  1758. {
  1759. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1760. int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1761. ucontrol->value.enumerated.item[0] =
  1762. get_route_val(ice, digital_route_shift(idx));
  1763. return 0;
  1764. }
  1765. static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
  1766. struct snd_ctl_elem_value *ucontrol)
  1767. {
  1768. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1769. int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1770. return put_route_val(ice, ucontrol->value.enumerated.item[0],
  1771. digital_route_shift(idx));
  1772. }
  1773. static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route __devinitdata = {
  1774. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1775. .name = "H/W Playback Route",
  1776. .info = snd_vt1724_pro_route_info,
  1777. .get = snd_vt1724_pro_route_analog_get,
  1778. .put = snd_vt1724_pro_route_analog_put,
  1779. };
  1780. static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route __devinitdata = {
  1781. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1782. .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Route",
  1783. .info = snd_vt1724_pro_route_info,
  1784. .get = snd_vt1724_pro_route_spdif_get,
  1785. .put = snd_vt1724_pro_route_spdif_put,
  1786. .count = 2,
  1787. };
  1788. static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
  1789. struct snd_ctl_elem_info *uinfo)
  1790. {
  1791. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1792. uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
  1793. uinfo->value.integer.min = 0;
  1794. uinfo->value.integer.max = 255;
  1795. return 0;
  1796. }
  1797. static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
  1798. struct snd_ctl_elem_value *ucontrol)
  1799. {
  1800. struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
  1801. int idx;
  1802. spin_lock_irq(&ice->reg_lock);
  1803. for (idx = 0; idx < 22; idx++) {
  1804. outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
  1805. ucontrol->value.integer.value[idx] =
  1806. inb(ICEMT1724(ice, MONITOR_PEAKDATA));
  1807. }
  1808. spin_unlock_irq(&ice->reg_lock);
  1809. return 0;
  1810. }
  1811. static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = {
  1812. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1813. .name = "Multi Track Peak",
  1814. .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
  1815. .info = snd_vt1724_pro_peak_info,
  1816. .get = snd_vt1724_pro_peak_get
  1817. };
  1818. /*
  1819. *
  1820. */
  1821. static struct snd_ice1712_card_info no_matched __devinitdata;
  1822. static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
  1823. snd_vt1724_revo_cards,
  1824. snd_vt1724_amp_cards,
  1825. snd_vt1724_aureon_cards,
  1826. snd_vt1720_mobo_cards,
  1827. snd_vt1720_pontis_cards,
  1828. snd_vt1724_prodigy_hifi_cards,
  1829. snd_vt1724_prodigy192_cards,
  1830. snd_vt1724_juli_cards,
  1831. snd_vt1724_phase_cards,
  1832. snd_vt1724_wtm_cards,
  1833. snd_vt1724_se_cards,
  1834. NULL,
  1835. };
  1836. /*
  1837. */
  1838. static void wait_i2c_busy(struct snd_ice1712 *ice)
  1839. {
  1840. int t = 0x10000;
  1841. while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
  1842. ;
  1843. if (t == -1)
  1844. printk(KERN_ERR "ice1724: i2c busy timeout\n");
  1845. }
  1846. unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
  1847. unsigned char dev, unsigned char addr)
  1848. {
  1849. unsigned char val;
  1850. mutex_lock(&ice->i2c_mutex);
  1851. wait_i2c_busy(ice);
  1852. outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
  1853. outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
  1854. wait_i2c_busy(ice);
  1855. val = inb(ICEREG1724(ice, I2C_DATA));
  1856. mutex_unlock(&ice->i2c_mutex);
  1857. //printk("i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
  1858. return val;
  1859. }
  1860. void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
  1861. unsigned char dev, unsigned char addr, unsigned char data)
  1862. {
  1863. mutex_lock(&ice->i2c_mutex);
  1864. wait_i2c_busy(ice);
  1865. //printk("i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
  1866. outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
  1867. outb(data, ICEREG1724(ice, I2C_DATA));
  1868. outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
  1869. wait_i2c_busy(ice);
  1870. mutex_unlock(&ice->i2c_mutex);
  1871. }
  1872. static int __devinit snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
  1873. const char *modelname)
  1874. {
  1875. const int dev = 0xa0; /* EEPROM device address */
  1876. unsigned int i, size;
  1877. struct snd_ice1712_card_info * const *tbl, *c;
  1878. if (! modelname || ! *modelname) {
  1879. ice->eeprom.subvendor = 0;
  1880. if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
  1881. ice->eeprom.subvendor =
  1882. (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
  1883. (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
  1884. (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
  1885. (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
  1886. if (ice->eeprom.subvendor == 0 ||
  1887. ice->eeprom.subvendor == (unsigned int)-1) {
  1888. /* invalid subvendor from EEPROM, try the PCI
  1889. * subststem ID instead
  1890. */
  1891. u16 vendor, device;
  1892. pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
  1893. &vendor);
  1894. pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
  1895. ice->eeprom.subvendor =
  1896. ((unsigned int)swab16(vendor) << 16) | swab16(device);
  1897. if (ice->eeprom.subvendor == 0 ||
  1898. ice->eeprom.subvendor == (unsigned int)-1) {
  1899. printk(KERN_ERR "ice1724: No valid ID is found\n");
  1900. return -ENXIO;
  1901. }
  1902. }
  1903. }
  1904. for (tbl = card_tables; *tbl; tbl++) {
  1905. for (c = *tbl; c->subvendor; c++) {
  1906. if (modelname && c->model &&
  1907. ! strcmp(modelname, c->model)) {
  1908. printk(KERN_INFO "ice1724: Using board model %s\n",
  1909. c->name);
  1910. ice->eeprom.subvendor = c->subvendor;
  1911. } else if (c->subvendor != ice->eeprom.subvendor)
  1912. continue;
  1913. if (! c->eeprom_size || ! c->eeprom_data)
  1914. goto found;
  1915. /* if the EEPROM is given by the driver, use it */
  1916. snd_printdd("using the defined eeprom..\n");
  1917. ice->eeprom.version = 2;
  1918. ice->eeprom.size = c->eeprom_size + 6;
  1919. memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
  1920. goto read_skipped;
  1921. }
  1922. }
  1923. printk(KERN_WARNING "ice1724: No matching model found for ID 0x%x\n",
  1924. ice->eeprom.subvendor);
  1925. found:
  1926. ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
  1927. if (ice->eeprom.size < 6)
  1928. ice->eeprom.size = 32;
  1929. else if (ice->eeprom.size > 32) {
  1930. printk(KERN_ERR "ice1724: Invalid EEPROM (size = %i)\n",
  1931. ice->eeprom.size);
  1932. return -EIO;
  1933. }
  1934. ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
  1935. if (ice->eeprom.version != 2)
  1936. printk(KERN_WARNING "ice1724: Invalid EEPROM version %i\n",
  1937. ice->eeprom.version);
  1938. size = ice->eeprom.size - 6;
  1939. for (i = 0; i < size; i++)
  1940. ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
  1941. read_skipped:
  1942. ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
  1943. ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
  1944. ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
  1945. return 0;
  1946. }
  1947. static void __devinit snd_vt1724_chip_reset(struct snd_ice1712 *ice)
  1948. {
  1949. outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
  1950. msleep(10);
  1951. outb(0, ICEREG1724(ice, CONTROL));
  1952. msleep(10);
  1953. }
  1954. static int __devinit snd_vt1724_chip_init(struct snd_ice1712 *ice)
  1955. {
  1956. outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
  1957. outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
  1958. outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
  1959. outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
  1960. ice->gpio.write_mask = ice->eeprom.gpiomask;
  1961. ice->gpio.direction = ice->eeprom.gpiodir;
  1962. snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
  1963. snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
  1964. snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
  1965. outb(0, ICEREG1724(ice, POWERDOWN));
  1966. return 0;
  1967. }
  1968. static int __devinit snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
  1969. {
  1970. int err;
  1971. struct snd_kcontrol *kctl;
  1972. snd_assert(ice->pcm != NULL, return -EIO);
  1973. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
  1974. if (err < 0)
  1975. return err;
  1976. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
  1977. if (err < 0)
  1978. return err;
  1979. err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
  1980. if (err < 0)
  1981. return err;
  1982. kctl->id.device = ice->pcm->device;
  1983. err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
  1984. if (err < 0)
  1985. return err;
  1986. kctl->id.device = ice->pcm->device;
  1987. err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
  1988. if (err < 0)
  1989. return err;
  1990. kctl->id.device = ice->pcm->device;
  1991. #if 0 /* use default only */
  1992. err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
  1993. if (err < 0)
  1994. return err;
  1995. kctl->id.device = ice->pcm->device;
  1996. ice->spdif.stream_ctl = kctl;
  1997. #endif
  1998. return 0;
  1999. }
  2000. static int __devinit snd_vt1724_build_controls(struct snd_ice1712 *ice)
  2001. {
  2002. int err;
  2003. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
  2004. if (err < 0)
  2005. return err;
  2006. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
  2007. if (err < 0)
  2008. return err;
  2009. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
  2010. if (err < 0)
  2011. return err;
  2012. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
  2013. if (err < 0)
  2014. return err;
  2015. if (ice->num_total_dacs > 0) {
  2016. struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
  2017. tmp.count = ice->num_total_dacs;
  2018. if (ice->vt1720 && tmp.count > 2)
  2019. tmp.count = 2;
  2020. err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
  2021. if (err < 0)
  2022. return err;
  2023. }
  2024. err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
  2025. if (err < 0)
  2026. return err;
  2027. return 0;
  2028. }
  2029. static int snd_vt1724_free(struct snd_ice1712 *ice)
  2030. {
  2031. if (! ice->port)
  2032. goto __hw_end;
  2033. /* mask all interrupts */
  2034. outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
  2035. outb(0xff, ICEREG1724(ice, IRQMASK));
  2036. /* --- */
  2037. __hw_end:
  2038. if (ice->irq >= 0)
  2039. free_irq(ice->irq, ice);
  2040. pci_release_regions(ice->pci);
  2041. snd_ice1712_akm4xxx_free(ice);
  2042. pci_disable_device(ice->pci);
  2043. kfree(ice->spec);
  2044. kfree(ice);
  2045. return 0;
  2046. }
  2047. static int snd_vt1724_dev_free(struct snd_device *device)
  2048. {
  2049. struct snd_ice1712 *ice = device->device_data;
  2050. return snd_vt1724_free(ice);
  2051. }
  2052. static int __devinit snd_vt1724_create(struct snd_card *card,
  2053. struct pci_dev *pci,
  2054. const char *modelname,
  2055. struct snd_ice1712 ** r_ice1712)
  2056. {
  2057. struct snd_ice1712 *ice;
  2058. int err;
  2059. unsigned char mask;
  2060. static struct snd_device_ops ops = {
  2061. .dev_free = snd_vt1724_dev_free,
  2062. };
  2063. *r_ice1712 = NULL;
  2064. /* enable PCI device */
  2065. if ((err = pci_enable_device(pci)) < 0)
  2066. return err;
  2067. ice = kzalloc(sizeof(*ice), GFP_KERNEL);
  2068. if (ice == NULL) {
  2069. pci_disable_device(pci);
  2070. return -ENOMEM;
  2071. }
  2072. ice->vt1724 = 1;
  2073. spin_lock_init(&ice->reg_lock);
  2074. mutex_init(&ice->gpio_mutex);
  2075. mutex_init(&ice->open_mutex);
  2076. mutex_init(&ice->i2c_mutex);
  2077. ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
  2078. ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
  2079. ice->gpio.set_data = snd_vt1724_set_gpio_data;
  2080. ice->gpio.get_data = snd_vt1724_get_gpio_data;
  2081. ice->card = card;
  2082. ice->pci = pci;
  2083. ice->irq = -1;
  2084. pci_set_master(pci);
  2085. snd_vt1724_proc_init(ice);
  2086. synchronize_irq(pci->irq);
  2087. if ((err = pci_request_regions(pci, "ICE1724")) < 0) {
  2088. kfree(ice);
  2089. pci_disable_device(pci);
  2090. return err;
  2091. }
  2092. ice->port = pci_resource_start(pci, 0);
  2093. ice->profi_port = pci_resource_start(pci, 1);
  2094. if (request_irq(pci->irq, snd_vt1724_interrupt,
  2095. IRQF_SHARED, "ICE1724", ice)) {
  2096. snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
  2097. snd_vt1724_free(ice);
  2098. return -EIO;
  2099. }
  2100. ice->irq = pci->irq;
  2101. snd_vt1724_chip_reset(ice);
  2102. if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
  2103. snd_vt1724_free(ice);
  2104. return -EIO;
  2105. }
  2106. if (snd_vt1724_chip_init(ice) < 0) {
  2107. snd_vt1724_free(ice);
  2108. return -EIO;
  2109. }
  2110. /* unmask used interrupts */
  2111. mask = VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX;
  2112. outb(mask, ICEREG1724(ice, IRQMASK));
  2113. /* don't handle FIFO overrun/underruns (just yet),
  2114. * since they cause machine lockups
  2115. */
  2116. outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
  2117. if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops)) < 0) {
  2118. snd_vt1724_free(ice);
  2119. return err;
  2120. }
  2121. snd_card_set_dev(card, &pci->dev);
  2122. *r_ice1712 = ice;
  2123. return 0;
  2124. }
  2125. /*
  2126. *
  2127. * Registration
  2128. *
  2129. */
  2130. static int __devinit snd_vt1724_probe(struct pci_dev *pci,
  2131. const struct pci_device_id *pci_id)
  2132. {
  2133. static int dev;
  2134. struct snd_card *card;
  2135. struct snd_ice1712 *ice;
  2136. int pcm_dev = 0, err;
  2137. struct snd_ice1712_card_info * const *tbl, *c;
  2138. if (dev >= SNDRV_CARDS)
  2139. return -ENODEV;
  2140. if (!enable[dev]) {
  2141. dev++;
  2142. return -ENOENT;
  2143. }
  2144. card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
  2145. if (card == NULL)
  2146. return -ENOMEM;
  2147. strcpy(card->driver, "ICE1724");
  2148. strcpy(card->shortname, "ICEnsemble ICE1724");
  2149. if ((err = snd_vt1724_create(card, pci, model[dev], &ice)) < 0) {
  2150. snd_card_free(card);
  2151. return err;
  2152. }
  2153. for (tbl = card_tables; *tbl; tbl++) {
  2154. for (c = *tbl; c->subvendor; c++) {
  2155. if (c->subvendor == ice->eeprom.subvendor) {
  2156. strcpy(card->shortname, c->name);
  2157. if (c->driver) /* specific driver? */
  2158. strcpy(card->driver, c->driver);
  2159. if (c->chip_init) {
  2160. if ((err = c->chip_init(ice)) < 0) {
  2161. snd_card_free(card);
  2162. return err;
  2163. }
  2164. }
  2165. goto __found;
  2166. }
  2167. }
  2168. }
  2169. c = &no_matched;
  2170. __found:
  2171. /*
  2172. * VT1724 has separate DMAs for the analog and the SPDIF streams while
  2173. * ICE1712 has only one for both (mixed up).
  2174. *
  2175. * Confusingly the analog PCM is named "professional" here because it
  2176. * was called so in ice1712 driver, and vt1724 driver is derived from
  2177. * ice1712 driver.
  2178. */
  2179. ice->pro_rate_default = PRO_RATE_DEFAULT;
  2180. if (!ice->is_spdif_master)
  2181. ice->is_spdif_master = stdclock_is_spdif_master;
  2182. if (!ice->get_rate)
  2183. ice->get_rate = stdclock_get_rate;
  2184. if (!ice->set_rate)
  2185. ice->set_rate = stdclock_set_rate;
  2186. if (!ice->set_mclk)
  2187. ice->set_mclk = stdclock_set_mclk;
  2188. if (!ice->set_spdif_clock)
  2189. ice->set_spdif_clock = stdclock_set_spdif_clock;
  2190. if (!ice->hw_rates)
  2191. set_std_hw_rates(ice);
  2192. if ((err = snd_vt1724_pcm_profi(ice, pcm_dev++)) < 0) {
  2193. snd_card_free(card);
  2194. return err;
  2195. }
  2196. if ((err = snd_vt1724_pcm_spdif(ice, pcm_dev++)) < 0) {
  2197. snd_card_free(card);
  2198. return err;
  2199. }
  2200. if ((err = snd_vt1724_pcm_indep(ice, pcm_dev++)) < 0) {
  2201. snd_card_free(card);
  2202. return err;
  2203. }
  2204. if ((err = snd_vt1724_ac97_mixer(ice)) < 0) {
  2205. snd_card_free(card);
  2206. return err;
  2207. }
  2208. if ((err = snd_vt1724_build_controls(ice)) < 0) {
  2209. snd_card_free(card);
  2210. return err;
  2211. }
  2212. if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
  2213. if ((err = snd_vt1724_spdif_build_controls(ice)) < 0) {
  2214. snd_card_free(card);
  2215. return err;
  2216. }
  2217. }
  2218. if (c->build_controls) {
  2219. if ((err = c->build_controls(ice)) < 0) {
  2220. snd_card_free(card);
  2221. return err;
  2222. }
  2223. }
  2224. if (! c->no_mpu401) {
  2225. if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
  2226. struct snd_rawmidi *rmidi;
  2227. err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
  2228. if (err < 0) {
  2229. snd_card_free(card);
  2230. return err;
  2231. }
  2232. ice->rmidi[0] = rmidi;
  2233. rmidi->private_data = ice;
  2234. strcpy(rmidi->name, "ICE1724 MIDI");
  2235. rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
  2236. SNDRV_RAWMIDI_INFO_INPUT |
  2237. SNDRV_RAWMIDI_INFO_DUPLEX;
  2238. snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
  2239. &vt1724_midi_output_ops);
  2240. snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
  2241. &vt1724_midi_input_ops);
  2242. /* set watermarks */
  2243. outb(VT1724_MPU_RX_FIFO | 0x1,
  2244. ICEREG1724(ice, MPU_FIFO_WM));
  2245. outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
  2246. /* set UART mode */
  2247. outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
  2248. }
  2249. }
  2250. sprintf(card->longname, "%s at 0x%lx, irq %i",
  2251. card->shortname, ice->port, ice->irq);
  2252. if ((err = snd_card_register(card)) < 0) {
  2253. snd_card_free(card);
  2254. return err;
  2255. }
  2256. pci_set_drvdata(pci, card);
  2257. dev++;
  2258. return 0;
  2259. }
  2260. static void __devexit snd_vt1724_remove(struct pci_dev *pci)
  2261. {
  2262. snd_card_free(pci_get_drvdata(pci));
  2263. pci_set_drvdata(pci, NULL);
  2264. }
  2265. static struct pci_driver driver = {
  2266. .name = "ICE1724",
  2267. .id_table = snd_vt1724_ids,
  2268. .probe = snd_vt1724_probe,
  2269. .remove = __devexit_p(snd_vt1724_remove),
  2270. };
  2271. static int __init alsa_card_ice1724_init(void)
  2272. {
  2273. return pci_register_driver(&driver);
  2274. }
  2275. static void __exit alsa_card_ice1724_exit(void)
  2276. {
  2277. pci_unregister_driver(&driver);
  2278. }
  2279. module_init(alsa_card_ice1724_init)
  2280. module_exit(alsa_card_ice1724_exit)