via82xx_modem.c 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244
  1. /*
  2. * ALSA modem driver for VIA VT82xx (South Bridge)
  3. *
  4. * VT82C686A/B/C, VT8233A/C, VT8235
  5. *
  6. * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
  7. * Tjeerd.Mulder <Tjeerd.Mulder@fujitsu-siemens.com>
  8. * 2002 Takashi Iwai <tiwai@suse.de>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. */
  25. /*
  26. * Changes:
  27. *
  28. * Sep. 2, 2004 Sasha Khapyorsky <sashak@alsa-project.org>
  29. * Modified from original audio driver 'via82xx.c' to support AC97
  30. * modems.
  31. */
  32. #include <asm/io.h>
  33. #include <linux/delay.h>
  34. #include <linux/interrupt.h>
  35. #include <linux/init.h>
  36. #include <linux/pci.h>
  37. #include <linux/slab.h>
  38. #include <linux/moduleparam.h>
  39. #include <sound/core.h>
  40. #include <sound/pcm.h>
  41. #include <sound/pcm_params.h>
  42. #include <sound/info.h>
  43. #include <sound/ac97_codec.h>
  44. #include <sound/initval.h>
  45. #if 0
  46. #define POINTER_DEBUG
  47. #endif
  48. MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
  49. MODULE_DESCRIPTION("VIA VT82xx modem");
  50. MODULE_LICENSE("GPL");
  51. MODULE_SUPPORTED_DEVICE("{{VIA,VT82C686A/B/C modem,pci}}");
  52. static int index = -2; /* Exclude the first card */
  53. static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
  54. static int ac97_clock = 48000;
  55. module_param(index, int, 0444);
  56. MODULE_PARM_DESC(index, "Index value for VIA 82xx bridge.");
  57. module_param(id, charp, 0444);
  58. MODULE_PARM_DESC(id, "ID string for VIA 82xx bridge.");
  59. module_param(ac97_clock, int, 0444);
  60. MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (default 48000Hz).");
  61. /* just for backward compatibility */
  62. static int enable;
  63. module_param(enable, bool, 0444);
  64. /*
  65. * Direct registers
  66. */
  67. #define VIAREG(via, x) ((via)->port + VIA_REG_##x)
  68. #define VIADEV_REG(viadev, x) ((viadev)->port + VIA_REG_##x)
  69. /* common offsets */
  70. #define VIA_REG_OFFSET_STATUS 0x00 /* byte - channel status */
  71. #define VIA_REG_STAT_ACTIVE 0x80 /* RO */
  72. #define VIA_REG_STAT_PAUSED 0x40 /* RO */
  73. #define VIA_REG_STAT_TRIGGER_QUEUED 0x08 /* RO */
  74. #define VIA_REG_STAT_STOPPED 0x04 /* RWC */
  75. #define VIA_REG_STAT_EOL 0x02 /* RWC */
  76. #define VIA_REG_STAT_FLAG 0x01 /* RWC */
  77. #define VIA_REG_OFFSET_CONTROL 0x01 /* byte - channel control */
  78. #define VIA_REG_CTRL_START 0x80 /* WO */
  79. #define VIA_REG_CTRL_TERMINATE 0x40 /* WO */
  80. #define VIA_REG_CTRL_AUTOSTART 0x20
  81. #define VIA_REG_CTRL_PAUSE 0x08 /* RW */
  82. #define VIA_REG_CTRL_INT_STOP 0x04
  83. #define VIA_REG_CTRL_INT_EOL 0x02
  84. #define VIA_REG_CTRL_INT_FLAG 0x01
  85. #define VIA_REG_CTRL_RESET 0x01 /* RW - probably reset? undocumented */
  86. #define VIA_REG_CTRL_INT (VIA_REG_CTRL_INT_FLAG | VIA_REG_CTRL_INT_EOL | VIA_REG_CTRL_AUTOSTART)
  87. #define VIA_REG_OFFSET_TYPE 0x02 /* byte - channel type (686 only) */
  88. #define VIA_REG_TYPE_AUTOSTART 0x80 /* RW - autostart at EOL */
  89. #define VIA_REG_TYPE_16BIT 0x20 /* RW */
  90. #define VIA_REG_TYPE_STEREO 0x10 /* RW */
  91. #define VIA_REG_TYPE_INT_LLINE 0x00
  92. #define VIA_REG_TYPE_INT_LSAMPLE 0x04
  93. #define VIA_REG_TYPE_INT_LESSONE 0x08
  94. #define VIA_REG_TYPE_INT_MASK 0x0c
  95. #define VIA_REG_TYPE_INT_EOL 0x02
  96. #define VIA_REG_TYPE_INT_FLAG 0x01
  97. #define VIA_REG_OFFSET_TABLE_PTR 0x04 /* dword - channel table pointer */
  98. #define VIA_REG_OFFSET_CURR_PTR 0x04 /* dword - channel current pointer */
  99. #define VIA_REG_OFFSET_STOP_IDX 0x08 /* dword - stop index, channel type, sample rate */
  100. #define VIA_REG_OFFSET_CURR_COUNT 0x0c /* dword - channel current count (24 bit) */
  101. #define VIA_REG_OFFSET_CURR_INDEX 0x0f /* byte - channel current index (for via8233 only) */
  102. #define DEFINE_VIA_REGSET(name,val) \
  103. enum {\
  104. VIA_REG_##name##_STATUS = (val),\
  105. VIA_REG_##name##_CONTROL = (val) + 0x01,\
  106. VIA_REG_##name##_TYPE = (val) + 0x02,\
  107. VIA_REG_##name##_TABLE_PTR = (val) + 0x04,\
  108. VIA_REG_##name##_CURR_PTR = (val) + 0x04,\
  109. VIA_REG_##name##_STOP_IDX = (val) + 0x08,\
  110. VIA_REG_##name##_CURR_COUNT = (val) + 0x0c,\
  111. }
  112. /* modem block */
  113. DEFINE_VIA_REGSET(MO, 0x40);
  114. DEFINE_VIA_REGSET(MI, 0x50);
  115. /* AC'97 */
  116. #define VIA_REG_AC97 0x80 /* dword */
  117. #define VIA_REG_AC97_CODEC_ID_MASK (3<<30)
  118. #define VIA_REG_AC97_CODEC_ID_SHIFT 30
  119. #define VIA_REG_AC97_CODEC_ID_PRIMARY 0x00
  120. #define VIA_REG_AC97_CODEC_ID_SECONDARY 0x01
  121. #define VIA_REG_AC97_SECONDARY_VALID (1<<27)
  122. #define VIA_REG_AC97_PRIMARY_VALID (1<<25)
  123. #define VIA_REG_AC97_BUSY (1<<24)
  124. #define VIA_REG_AC97_READ (1<<23)
  125. #define VIA_REG_AC97_CMD_SHIFT 16
  126. #define VIA_REG_AC97_CMD_MASK 0x7e
  127. #define VIA_REG_AC97_DATA_SHIFT 0
  128. #define VIA_REG_AC97_DATA_MASK 0xffff
  129. #define VIA_REG_SGD_SHADOW 0x84 /* dword */
  130. #define VIA_REG_SGD_STAT_PB_FLAG (1<<0)
  131. #define VIA_REG_SGD_STAT_CP_FLAG (1<<1)
  132. #define VIA_REG_SGD_STAT_FM_FLAG (1<<2)
  133. #define VIA_REG_SGD_STAT_PB_EOL (1<<4)
  134. #define VIA_REG_SGD_STAT_CP_EOL (1<<5)
  135. #define VIA_REG_SGD_STAT_FM_EOL (1<<6)
  136. #define VIA_REG_SGD_STAT_PB_STOP (1<<8)
  137. #define VIA_REG_SGD_STAT_CP_STOP (1<<9)
  138. #define VIA_REG_SGD_STAT_FM_STOP (1<<10)
  139. #define VIA_REG_SGD_STAT_PB_ACTIVE (1<<12)
  140. #define VIA_REG_SGD_STAT_CP_ACTIVE (1<<13)
  141. #define VIA_REG_SGD_STAT_FM_ACTIVE (1<<14)
  142. #define VIA_REG_SGD_STAT_MR_FLAG (1<<16)
  143. #define VIA_REG_SGD_STAT_MW_FLAG (1<<17)
  144. #define VIA_REG_SGD_STAT_MR_EOL (1<<20)
  145. #define VIA_REG_SGD_STAT_MW_EOL (1<<21)
  146. #define VIA_REG_SGD_STAT_MR_STOP (1<<24)
  147. #define VIA_REG_SGD_STAT_MW_STOP (1<<25)
  148. #define VIA_REG_SGD_STAT_MR_ACTIVE (1<<28)
  149. #define VIA_REG_SGD_STAT_MW_ACTIVE (1<<29)
  150. #define VIA_REG_GPI_STATUS 0x88
  151. #define VIA_REG_GPI_INTR 0x8c
  152. #define VIA_TBL_BIT_FLAG 0x40000000
  153. #define VIA_TBL_BIT_EOL 0x80000000
  154. /* pci space */
  155. #define VIA_ACLINK_STAT 0x40
  156. #define VIA_ACLINK_C11_READY 0x20
  157. #define VIA_ACLINK_C10_READY 0x10
  158. #define VIA_ACLINK_C01_READY 0x04 /* secondary codec ready */
  159. #define VIA_ACLINK_LOWPOWER 0x02 /* low-power state */
  160. #define VIA_ACLINK_C00_READY 0x01 /* primary codec ready */
  161. #define VIA_ACLINK_CTRL 0x41
  162. #define VIA_ACLINK_CTRL_ENABLE 0x80 /* 0: disable, 1: enable */
  163. #define VIA_ACLINK_CTRL_RESET 0x40 /* 0: assert, 1: de-assert */
  164. #define VIA_ACLINK_CTRL_SYNC 0x20 /* 0: release SYNC, 1: force SYNC hi */
  165. #define VIA_ACLINK_CTRL_SDO 0x10 /* 0: release SDO, 1: force SDO hi */
  166. #define VIA_ACLINK_CTRL_VRA 0x08 /* 0: disable VRA, 1: enable VRA */
  167. #define VIA_ACLINK_CTRL_PCM 0x04 /* 0: disable PCM, 1: enable PCM */
  168. #define VIA_ACLINK_CTRL_FM 0x02 /* via686 only */
  169. #define VIA_ACLINK_CTRL_SB 0x01 /* via686 only */
  170. #define VIA_ACLINK_CTRL_INIT (VIA_ACLINK_CTRL_ENABLE|\
  171. VIA_ACLINK_CTRL_RESET|\
  172. VIA_ACLINK_CTRL_PCM)
  173. #define VIA_FUNC_ENABLE 0x42
  174. #define VIA_FUNC_MIDI_PNP 0x80 /* FIXME: it's 0x40 in the datasheet! */
  175. #define VIA_FUNC_MIDI_IRQMASK 0x40 /* FIXME: not documented! */
  176. #define VIA_FUNC_RX2C_WRITE 0x20
  177. #define VIA_FUNC_SB_FIFO_EMPTY 0x10
  178. #define VIA_FUNC_ENABLE_GAME 0x08
  179. #define VIA_FUNC_ENABLE_FM 0x04
  180. #define VIA_FUNC_ENABLE_MIDI 0x02
  181. #define VIA_FUNC_ENABLE_SB 0x01
  182. #define VIA_PNP_CONTROL 0x43
  183. #define VIA_MC97_CTRL 0x44
  184. #define VIA_MC97_CTRL_ENABLE 0x80
  185. #define VIA_MC97_CTRL_SECONDARY 0x40
  186. #define VIA_MC97_CTRL_INIT (VIA_MC97_CTRL_ENABLE|\
  187. VIA_MC97_CTRL_SECONDARY)
  188. /*
  189. * pcm stream
  190. */
  191. struct snd_via_sg_table {
  192. unsigned int offset;
  193. unsigned int size;
  194. } ;
  195. #define VIA_TABLE_SIZE 255
  196. struct viadev {
  197. unsigned int reg_offset;
  198. unsigned long port;
  199. int direction; /* playback = 0, capture = 1 */
  200. struct snd_pcm_substream *substream;
  201. int running;
  202. unsigned int tbl_entries; /* # descriptors */
  203. struct snd_dma_buffer table;
  204. struct snd_via_sg_table *idx_table;
  205. /* for recovery from the unexpected pointer */
  206. unsigned int lastpos;
  207. unsigned int bufsize;
  208. unsigned int bufsize2;
  209. };
  210. enum { TYPE_CARD_VIA82XX_MODEM = 1 };
  211. #define VIA_MAX_MODEM_DEVS 2
  212. struct via82xx_modem {
  213. int irq;
  214. unsigned long port;
  215. unsigned int intr_mask; /* SGD_SHADOW mask to check interrupts */
  216. struct pci_dev *pci;
  217. struct snd_card *card;
  218. unsigned int num_devs;
  219. unsigned int playback_devno, capture_devno;
  220. struct viadev devs[VIA_MAX_MODEM_DEVS];
  221. struct snd_pcm *pcms[2];
  222. struct snd_ac97_bus *ac97_bus;
  223. struct snd_ac97 *ac97;
  224. unsigned int ac97_clock;
  225. unsigned int ac97_secondary; /* secondary AC'97 codec is present */
  226. spinlock_t reg_lock;
  227. struct snd_info_entry *proc_entry;
  228. };
  229. static struct pci_device_id snd_via82xx_modem_ids[] = {
  230. { 0x1106, 0x3068, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA82XX_MODEM, },
  231. { 0, }
  232. };
  233. MODULE_DEVICE_TABLE(pci, snd_via82xx_modem_ids);
  234. /*
  235. */
  236. /*
  237. * allocate and initialize the descriptor buffers
  238. * periods = number of periods
  239. * fragsize = period size in bytes
  240. */
  241. static int build_via_table(struct viadev *dev, struct snd_pcm_substream *substream,
  242. struct pci_dev *pci,
  243. unsigned int periods, unsigned int fragsize)
  244. {
  245. unsigned int i, idx, ofs, rest;
  246. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  247. struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
  248. if (dev->table.area == NULL) {
  249. /* the start of each lists must be aligned to 8 bytes,
  250. * but the kernel pages are much bigger, so we don't care
  251. */
  252. if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
  253. PAGE_ALIGN(VIA_TABLE_SIZE * 2 * 8),
  254. &dev->table) < 0)
  255. return -ENOMEM;
  256. }
  257. if (! dev->idx_table) {
  258. dev->idx_table = kmalloc(sizeof(*dev->idx_table) * VIA_TABLE_SIZE, GFP_KERNEL);
  259. if (! dev->idx_table)
  260. return -ENOMEM;
  261. }
  262. /* fill the entries */
  263. idx = 0;
  264. ofs = 0;
  265. for (i = 0; i < periods; i++) {
  266. rest = fragsize;
  267. /* fill descriptors for a period.
  268. * a period can be split to several descriptors if it's
  269. * over page boundary.
  270. */
  271. do {
  272. unsigned int r;
  273. unsigned int flag;
  274. if (idx >= VIA_TABLE_SIZE) {
  275. snd_printk(KERN_ERR "via82xx: too much table size!\n");
  276. return -EINVAL;
  277. }
  278. ((u32 *)dev->table.area)[idx << 1] = cpu_to_le32((u32)snd_pcm_sgbuf_get_addr(sgbuf, ofs));
  279. r = PAGE_SIZE - (ofs % PAGE_SIZE);
  280. if (rest < r)
  281. r = rest;
  282. rest -= r;
  283. if (! rest) {
  284. if (i == periods - 1)
  285. flag = VIA_TBL_BIT_EOL; /* buffer boundary */
  286. else
  287. flag = VIA_TBL_BIT_FLAG; /* period boundary */
  288. } else
  289. flag = 0; /* period continues to the next */
  290. // printk("via: tbl %d: at %d size %d (rest %d)\n", idx, ofs, r, rest);
  291. ((u32 *)dev->table.area)[(idx<<1) + 1] = cpu_to_le32(r | flag);
  292. dev->idx_table[idx].offset = ofs;
  293. dev->idx_table[idx].size = r;
  294. ofs += r;
  295. idx++;
  296. } while (rest > 0);
  297. }
  298. dev->tbl_entries = idx;
  299. dev->bufsize = periods * fragsize;
  300. dev->bufsize2 = dev->bufsize / 2;
  301. return 0;
  302. }
  303. static int clean_via_table(struct viadev *dev, struct snd_pcm_substream *substream,
  304. struct pci_dev *pci)
  305. {
  306. if (dev->table.area) {
  307. snd_dma_free_pages(&dev->table);
  308. dev->table.area = NULL;
  309. }
  310. kfree(dev->idx_table);
  311. dev->idx_table = NULL;
  312. return 0;
  313. }
  314. /*
  315. * Basic I/O
  316. */
  317. static inline unsigned int snd_via82xx_codec_xread(struct via82xx_modem *chip)
  318. {
  319. return inl(VIAREG(chip, AC97));
  320. }
  321. static inline void snd_via82xx_codec_xwrite(struct via82xx_modem *chip, unsigned int val)
  322. {
  323. outl(val, VIAREG(chip, AC97));
  324. }
  325. static int snd_via82xx_codec_ready(struct via82xx_modem *chip, int secondary)
  326. {
  327. unsigned int timeout = 1000; /* 1ms */
  328. unsigned int val;
  329. while (timeout-- > 0) {
  330. udelay(1);
  331. if (!((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY))
  332. return val & 0xffff;
  333. }
  334. snd_printk(KERN_ERR "codec_ready: codec %i is not ready [0x%x]\n",
  335. secondary, snd_via82xx_codec_xread(chip));
  336. return -EIO;
  337. }
  338. static int snd_via82xx_codec_valid(struct via82xx_modem *chip, int secondary)
  339. {
  340. unsigned int timeout = 1000; /* 1ms */
  341. unsigned int val, val1;
  342. unsigned int stat = !secondary ? VIA_REG_AC97_PRIMARY_VALID :
  343. VIA_REG_AC97_SECONDARY_VALID;
  344. while (timeout-- > 0) {
  345. val = snd_via82xx_codec_xread(chip);
  346. val1 = val & (VIA_REG_AC97_BUSY | stat);
  347. if (val1 == stat)
  348. return val & 0xffff;
  349. udelay(1);
  350. }
  351. return -EIO;
  352. }
  353. static void snd_via82xx_codec_wait(struct snd_ac97 *ac97)
  354. {
  355. struct via82xx_modem *chip = ac97->private_data;
  356. int err;
  357. err = snd_via82xx_codec_ready(chip, ac97->num);
  358. /* here we need to wait fairly for long time.. */
  359. msleep(500);
  360. }
  361. static void snd_via82xx_codec_write(struct snd_ac97 *ac97,
  362. unsigned short reg,
  363. unsigned short val)
  364. {
  365. struct via82xx_modem *chip = ac97->private_data;
  366. unsigned int xval;
  367. if(reg == AC97_GPIO_STATUS) {
  368. outl(val, VIAREG(chip, GPI_STATUS));
  369. return;
  370. }
  371. xval = !ac97->num ? VIA_REG_AC97_CODEC_ID_PRIMARY : VIA_REG_AC97_CODEC_ID_SECONDARY;
  372. xval <<= VIA_REG_AC97_CODEC_ID_SHIFT;
  373. xval |= reg << VIA_REG_AC97_CMD_SHIFT;
  374. xval |= val << VIA_REG_AC97_DATA_SHIFT;
  375. snd_via82xx_codec_xwrite(chip, xval);
  376. snd_via82xx_codec_ready(chip, ac97->num);
  377. }
  378. static unsigned short snd_via82xx_codec_read(struct snd_ac97 *ac97, unsigned short reg)
  379. {
  380. struct via82xx_modem *chip = ac97->private_data;
  381. unsigned int xval, val = 0xffff;
  382. int again = 0;
  383. xval = ac97->num << VIA_REG_AC97_CODEC_ID_SHIFT;
  384. xval |= ac97->num ? VIA_REG_AC97_SECONDARY_VALID : VIA_REG_AC97_PRIMARY_VALID;
  385. xval |= VIA_REG_AC97_READ;
  386. xval |= (reg & 0x7f) << VIA_REG_AC97_CMD_SHIFT;
  387. while (1) {
  388. if (again++ > 3) {
  389. snd_printk(KERN_ERR "codec_read: codec %i is not valid [0x%x]\n",
  390. ac97->num, snd_via82xx_codec_xread(chip));
  391. return 0xffff;
  392. }
  393. snd_via82xx_codec_xwrite(chip, xval);
  394. udelay (20);
  395. if (snd_via82xx_codec_valid(chip, ac97->num) >= 0) {
  396. udelay(25);
  397. val = snd_via82xx_codec_xread(chip);
  398. break;
  399. }
  400. }
  401. return val & 0xffff;
  402. }
  403. static void snd_via82xx_channel_reset(struct via82xx_modem *chip, struct viadev *viadev)
  404. {
  405. outb(VIA_REG_CTRL_PAUSE | VIA_REG_CTRL_TERMINATE | VIA_REG_CTRL_RESET,
  406. VIADEV_REG(viadev, OFFSET_CONTROL));
  407. inb(VIADEV_REG(viadev, OFFSET_CONTROL));
  408. udelay(50);
  409. /* disable interrupts */
  410. outb(0x00, VIADEV_REG(viadev, OFFSET_CONTROL));
  411. /* clear interrupts */
  412. outb(0x03, VIADEV_REG(viadev, OFFSET_STATUS));
  413. outb(0x00, VIADEV_REG(viadev, OFFSET_TYPE)); /* for via686 */
  414. // outl(0, VIADEV_REG(viadev, OFFSET_CURR_PTR));
  415. viadev->lastpos = 0;
  416. }
  417. /*
  418. * Interrupt handler
  419. */
  420. static irqreturn_t snd_via82xx_interrupt(int irq, void *dev_id)
  421. {
  422. struct via82xx_modem *chip = dev_id;
  423. unsigned int status;
  424. unsigned int i;
  425. status = inl(VIAREG(chip, SGD_SHADOW));
  426. if (! (status & chip->intr_mask)) {
  427. return IRQ_NONE;
  428. }
  429. // _skip_sgd:
  430. /* check status for each stream */
  431. spin_lock(&chip->reg_lock);
  432. for (i = 0; i < chip->num_devs; i++) {
  433. struct viadev *viadev = &chip->devs[i];
  434. unsigned char c_status = inb(VIADEV_REG(viadev, OFFSET_STATUS));
  435. c_status &= (VIA_REG_STAT_EOL|VIA_REG_STAT_FLAG|VIA_REG_STAT_STOPPED);
  436. if (! c_status)
  437. continue;
  438. if (viadev->substream && viadev->running) {
  439. spin_unlock(&chip->reg_lock);
  440. snd_pcm_period_elapsed(viadev->substream);
  441. spin_lock(&chip->reg_lock);
  442. }
  443. outb(c_status, VIADEV_REG(viadev, OFFSET_STATUS)); /* ack */
  444. }
  445. spin_unlock(&chip->reg_lock);
  446. return IRQ_HANDLED;
  447. }
  448. /*
  449. * PCM callbacks
  450. */
  451. /*
  452. * trigger callback
  453. */
  454. static int snd_via82xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  455. {
  456. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  457. struct viadev *viadev = substream->runtime->private_data;
  458. unsigned char val = 0;
  459. switch (cmd) {
  460. case SNDRV_PCM_TRIGGER_START:
  461. case SNDRV_PCM_TRIGGER_SUSPEND:
  462. val |= VIA_REG_CTRL_START;
  463. viadev->running = 1;
  464. break;
  465. case SNDRV_PCM_TRIGGER_STOP:
  466. val = VIA_REG_CTRL_TERMINATE;
  467. viadev->running = 0;
  468. break;
  469. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  470. val |= VIA_REG_CTRL_PAUSE;
  471. viadev->running = 0;
  472. break;
  473. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  474. viadev->running = 1;
  475. break;
  476. default:
  477. return -EINVAL;
  478. }
  479. outb(val, VIADEV_REG(viadev, OFFSET_CONTROL));
  480. if (cmd == SNDRV_PCM_TRIGGER_STOP)
  481. snd_via82xx_channel_reset(chip, viadev);
  482. return 0;
  483. }
  484. /*
  485. * pointer callbacks
  486. */
  487. /*
  488. * calculate the linear position at the given sg-buffer index and the rest count
  489. */
  490. #define check_invalid_pos(viadev,pos) \
  491. ((pos) < viadev->lastpos && ((pos) >= viadev->bufsize2 ||\
  492. viadev->lastpos < viadev->bufsize2))
  493. static inline unsigned int calc_linear_pos(struct viadev *viadev, unsigned int idx,
  494. unsigned int count)
  495. {
  496. unsigned int size, res;
  497. size = viadev->idx_table[idx].size;
  498. res = viadev->idx_table[idx].offset + size - count;
  499. /* check the validity of the calculated position */
  500. if (size < count) {
  501. snd_printd(KERN_ERR "invalid via82xx_cur_ptr (size = %d, count = %d)\n",
  502. (int)size, (int)count);
  503. res = viadev->lastpos;
  504. } else if (check_invalid_pos(viadev, res)) {
  505. #ifdef POINTER_DEBUG
  506. printk(KERN_DEBUG "fail: idx = %i/%i, lastpos = 0x%x, "
  507. "bufsize2 = 0x%x, offsize = 0x%x, size = 0x%x, "
  508. "count = 0x%x\n", idx, viadev->tbl_entries, viadev->lastpos,
  509. viadev->bufsize2, viadev->idx_table[idx].offset,
  510. viadev->idx_table[idx].size, count);
  511. #endif
  512. if (count && size < count) {
  513. snd_printd(KERN_ERR "invalid via82xx_cur_ptr, "
  514. "using last valid pointer\n");
  515. res = viadev->lastpos;
  516. } else {
  517. if (! count)
  518. /* bogus count 0 on the DMA boundary? */
  519. res = viadev->idx_table[idx].offset;
  520. else
  521. /* count register returns full size
  522. * when end of buffer is reached
  523. */
  524. res = viadev->idx_table[idx].offset + size;
  525. if (check_invalid_pos(viadev, res)) {
  526. snd_printd(KERN_ERR "invalid via82xx_cur_ptr (2), "
  527. "using last valid pointer\n");
  528. res = viadev->lastpos;
  529. }
  530. }
  531. }
  532. viadev->lastpos = res; /* remember the last position */
  533. if (res >= viadev->bufsize)
  534. res -= viadev->bufsize;
  535. return res;
  536. }
  537. /*
  538. * get the current pointer on via686
  539. */
  540. static snd_pcm_uframes_t snd_via686_pcm_pointer(struct snd_pcm_substream *substream)
  541. {
  542. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  543. struct viadev *viadev = substream->runtime->private_data;
  544. unsigned int idx, ptr, count, res;
  545. if (snd_BUG_ON(!viadev->tbl_entries))
  546. return 0;
  547. if (!(inb(VIADEV_REG(viadev, OFFSET_STATUS)) & VIA_REG_STAT_ACTIVE))
  548. return 0;
  549. spin_lock(&chip->reg_lock);
  550. count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT)) & 0xffffff;
  551. /* The via686a does not have the current index register,
  552. * so we need to calculate the index from CURR_PTR.
  553. */
  554. ptr = inl(VIADEV_REG(viadev, OFFSET_CURR_PTR));
  555. if (ptr <= (unsigned int)viadev->table.addr)
  556. idx = 0;
  557. else /* CURR_PTR holds the address + 8 */
  558. idx = ((ptr - (unsigned int)viadev->table.addr) / 8 - 1) %
  559. viadev->tbl_entries;
  560. res = calc_linear_pos(viadev, idx, count);
  561. spin_unlock(&chip->reg_lock);
  562. return bytes_to_frames(substream->runtime, res);
  563. }
  564. /*
  565. * hw_params callback:
  566. * allocate the buffer and build up the buffer description table
  567. */
  568. static int snd_via82xx_hw_params(struct snd_pcm_substream *substream,
  569. struct snd_pcm_hw_params *hw_params)
  570. {
  571. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  572. struct viadev *viadev = substream->runtime->private_data;
  573. int err;
  574. err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
  575. if (err < 0)
  576. return err;
  577. err = build_via_table(viadev, substream, chip->pci,
  578. params_periods(hw_params),
  579. params_period_bytes(hw_params));
  580. if (err < 0)
  581. return err;
  582. snd_ac97_write(chip->ac97, AC97_LINE1_RATE, params_rate(hw_params));
  583. snd_ac97_write(chip->ac97, AC97_LINE1_LEVEL, 0);
  584. return 0;
  585. }
  586. /*
  587. * hw_free callback:
  588. * clean up the buffer description table and release the buffer
  589. */
  590. static int snd_via82xx_hw_free(struct snd_pcm_substream *substream)
  591. {
  592. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  593. struct viadev *viadev = substream->runtime->private_data;
  594. clean_via_table(viadev, substream, chip->pci);
  595. snd_pcm_lib_free_pages(substream);
  596. return 0;
  597. }
  598. /*
  599. * set up the table pointer
  600. */
  601. static void snd_via82xx_set_table_ptr(struct via82xx_modem *chip, struct viadev *viadev)
  602. {
  603. snd_via82xx_codec_ready(chip, chip->ac97_secondary);
  604. outl((u32)viadev->table.addr, VIADEV_REG(viadev, OFFSET_TABLE_PTR));
  605. udelay(20);
  606. snd_via82xx_codec_ready(chip, chip->ac97_secondary);
  607. }
  608. /*
  609. * prepare callback for playback and capture
  610. */
  611. static int snd_via82xx_pcm_prepare(struct snd_pcm_substream *substream)
  612. {
  613. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  614. struct viadev *viadev = substream->runtime->private_data;
  615. snd_via82xx_channel_reset(chip, viadev);
  616. /* this must be set after channel_reset */
  617. snd_via82xx_set_table_ptr(chip, viadev);
  618. outb(VIA_REG_TYPE_AUTOSTART|VIA_REG_TYPE_INT_EOL|VIA_REG_TYPE_INT_FLAG,
  619. VIADEV_REG(viadev, OFFSET_TYPE));
  620. return 0;
  621. }
  622. /*
  623. * pcm hardware definition, identical for both playback and capture
  624. */
  625. static struct snd_pcm_hardware snd_via82xx_hw =
  626. {
  627. .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  628. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  629. SNDRV_PCM_INFO_MMAP_VALID |
  630. /* SNDRV_PCM_INFO_RESUME | */
  631. SNDRV_PCM_INFO_PAUSE),
  632. .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
  633. .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_KNOT,
  634. .rate_min = 8000,
  635. .rate_max = 16000,
  636. .channels_min = 1,
  637. .channels_max = 1,
  638. .buffer_bytes_max = 128 * 1024,
  639. .period_bytes_min = 32,
  640. .period_bytes_max = 128 * 1024,
  641. .periods_min = 2,
  642. .periods_max = VIA_TABLE_SIZE / 2,
  643. .fifo_size = 0,
  644. };
  645. /*
  646. * open callback skeleton
  647. */
  648. static int snd_via82xx_modem_pcm_open(struct via82xx_modem *chip, struct viadev *viadev,
  649. struct snd_pcm_substream *substream)
  650. {
  651. struct snd_pcm_runtime *runtime = substream->runtime;
  652. int err;
  653. static unsigned int rates[] = { 8000, 9600, 12000, 16000 };
  654. static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
  655. .count = ARRAY_SIZE(rates),
  656. .list = rates,
  657. .mask = 0,
  658. };
  659. runtime->hw = snd_via82xx_hw;
  660. if ((err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
  661. &hw_constraints_rates)) < 0)
  662. return err;
  663. /* we may remove following constaint when we modify table entries
  664. in interrupt */
  665. if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
  666. return err;
  667. runtime->private_data = viadev;
  668. viadev->substream = substream;
  669. return 0;
  670. }
  671. /*
  672. * open callback for playback
  673. */
  674. static int snd_via82xx_playback_open(struct snd_pcm_substream *substream)
  675. {
  676. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  677. struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number];
  678. return snd_via82xx_modem_pcm_open(chip, viadev, substream);
  679. }
  680. /*
  681. * open callback for capture
  682. */
  683. static int snd_via82xx_capture_open(struct snd_pcm_substream *substream)
  684. {
  685. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  686. struct viadev *viadev = &chip->devs[chip->capture_devno + substream->pcm->device];
  687. return snd_via82xx_modem_pcm_open(chip, viadev, substream);
  688. }
  689. /*
  690. * close callback
  691. */
  692. static int snd_via82xx_pcm_close(struct snd_pcm_substream *substream)
  693. {
  694. struct viadev *viadev = substream->runtime->private_data;
  695. viadev->substream = NULL;
  696. return 0;
  697. }
  698. /* via686 playback callbacks */
  699. static struct snd_pcm_ops snd_via686_playback_ops = {
  700. .open = snd_via82xx_playback_open,
  701. .close = snd_via82xx_pcm_close,
  702. .ioctl = snd_pcm_lib_ioctl,
  703. .hw_params = snd_via82xx_hw_params,
  704. .hw_free = snd_via82xx_hw_free,
  705. .prepare = snd_via82xx_pcm_prepare,
  706. .trigger = snd_via82xx_pcm_trigger,
  707. .pointer = snd_via686_pcm_pointer,
  708. .page = snd_pcm_sgbuf_ops_page,
  709. };
  710. /* via686 capture callbacks */
  711. static struct snd_pcm_ops snd_via686_capture_ops = {
  712. .open = snd_via82xx_capture_open,
  713. .close = snd_via82xx_pcm_close,
  714. .ioctl = snd_pcm_lib_ioctl,
  715. .hw_params = snd_via82xx_hw_params,
  716. .hw_free = snd_via82xx_hw_free,
  717. .prepare = snd_via82xx_pcm_prepare,
  718. .trigger = snd_via82xx_pcm_trigger,
  719. .pointer = snd_via686_pcm_pointer,
  720. .page = snd_pcm_sgbuf_ops_page,
  721. };
  722. static void init_viadev(struct via82xx_modem *chip, int idx, unsigned int reg_offset,
  723. int direction)
  724. {
  725. chip->devs[idx].reg_offset = reg_offset;
  726. chip->devs[idx].direction = direction;
  727. chip->devs[idx].port = chip->port + reg_offset;
  728. }
  729. /*
  730. * create a pcm instance for via686a/b
  731. */
  732. static int __devinit snd_via686_pcm_new(struct via82xx_modem *chip)
  733. {
  734. struct snd_pcm *pcm;
  735. int err;
  736. chip->playback_devno = 0;
  737. chip->capture_devno = 1;
  738. chip->num_devs = 2;
  739. chip->intr_mask = 0x330000; /* FLAGS | EOL for MR, MW */
  740. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
  741. if (err < 0)
  742. return err;
  743. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via686_playback_ops);
  744. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via686_capture_ops);
  745. pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
  746. pcm->private_data = chip;
  747. strcpy(pcm->name, chip->card->shortname);
  748. chip->pcms[0] = pcm;
  749. init_viadev(chip, 0, VIA_REG_MO_STATUS, 0);
  750. init_viadev(chip, 1, VIA_REG_MI_STATUS, 1);
  751. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  752. snd_dma_pci_data(chip->pci),
  753. 64*1024, 128*1024)) < 0)
  754. return err;
  755. return 0;
  756. }
  757. /*
  758. * Mixer part
  759. */
  760. static void snd_via82xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
  761. {
  762. struct via82xx_modem *chip = bus->private_data;
  763. chip->ac97_bus = NULL;
  764. }
  765. static void snd_via82xx_mixer_free_ac97(struct snd_ac97 *ac97)
  766. {
  767. struct via82xx_modem *chip = ac97->private_data;
  768. chip->ac97 = NULL;
  769. }
  770. static int __devinit snd_via82xx_mixer_new(struct via82xx_modem *chip)
  771. {
  772. struct snd_ac97_template ac97;
  773. int err;
  774. static struct snd_ac97_bus_ops ops = {
  775. .write = snd_via82xx_codec_write,
  776. .read = snd_via82xx_codec_read,
  777. .wait = snd_via82xx_codec_wait,
  778. };
  779. if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)
  780. return err;
  781. chip->ac97_bus->private_free = snd_via82xx_mixer_free_ac97_bus;
  782. chip->ac97_bus->clock = chip->ac97_clock;
  783. memset(&ac97, 0, sizeof(ac97));
  784. ac97.private_data = chip;
  785. ac97.private_free = snd_via82xx_mixer_free_ac97;
  786. ac97.pci = chip->pci;
  787. ac97.scaps = AC97_SCAP_SKIP_AUDIO | AC97_SCAP_POWER_SAVE;
  788. ac97.num = chip->ac97_secondary;
  789. if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)
  790. return err;
  791. return 0;
  792. }
  793. /*
  794. * proc interface
  795. */
  796. static void snd_via82xx_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
  797. {
  798. struct via82xx_modem *chip = entry->private_data;
  799. int i;
  800. snd_iprintf(buffer, "%s\n\n", chip->card->longname);
  801. for (i = 0; i < 0xa0; i += 4) {
  802. snd_iprintf(buffer, "%02x: %08x\n", i, inl(chip->port + i));
  803. }
  804. }
  805. static void __devinit snd_via82xx_proc_init(struct via82xx_modem *chip)
  806. {
  807. struct snd_info_entry *entry;
  808. if (! snd_card_proc_new(chip->card, "via82xx", &entry))
  809. snd_info_set_text_ops(entry, chip, snd_via82xx_proc_read);
  810. }
  811. /*
  812. *
  813. */
  814. static int snd_via82xx_chip_init(struct via82xx_modem *chip)
  815. {
  816. unsigned int val;
  817. unsigned long end_time;
  818. unsigned char pval;
  819. pci_read_config_byte(chip->pci, VIA_MC97_CTRL, &pval);
  820. if((pval & VIA_MC97_CTRL_INIT) != VIA_MC97_CTRL_INIT) {
  821. pci_write_config_byte(chip->pci, 0x44, pval|VIA_MC97_CTRL_INIT);
  822. udelay(100);
  823. }
  824. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  825. if (! (pval & VIA_ACLINK_C00_READY)) { /* codec not ready? */
  826. /* deassert ACLink reset, force SYNC */
  827. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  828. VIA_ACLINK_CTRL_ENABLE |
  829. VIA_ACLINK_CTRL_RESET |
  830. VIA_ACLINK_CTRL_SYNC);
  831. udelay(100);
  832. #if 1 /* FIXME: should we do full reset here for all chip models? */
  833. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, 0x00);
  834. udelay(100);
  835. #else
  836. /* deassert ACLink reset, force SYNC (warm AC'97 reset) */
  837. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  838. VIA_ACLINK_CTRL_RESET|VIA_ACLINK_CTRL_SYNC);
  839. udelay(2);
  840. #endif
  841. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  842. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  843. udelay(100);
  844. }
  845. pci_read_config_byte(chip->pci, VIA_ACLINK_CTRL, &pval);
  846. if ((pval & VIA_ACLINK_CTRL_INIT) != VIA_ACLINK_CTRL_INIT) {
  847. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  848. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  849. udelay(100);
  850. }
  851. /* wait until codec ready */
  852. end_time = jiffies + msecs_to_jiffies(750);
  853. do {
  854. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  855. if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */
  856. break;
  857. schedule_timeout_uninterruptible(1);
  858. } while (time_before(jiffies, end_time));
  859. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY)
  860. snd_printk(KERN_ERR "AC'97 codec is not ready [0x%x]\n", val);
  861. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  862. VIA_REG_AC97_SECONDARY_VALID |
  863. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  864. end_time = jiffies + msecs_to_jiffies(750);
  865. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  866. VIA_REG_AC97_SECONDARY_VALID |
  867. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  868. do {
  869. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_SECONDARY_VALID) {
  870. chip->ac97_secondary = 1;
  871. goto __ac97_ok2;
  872. }
  873. schedule_timeout_uninterruptible(1);
  874. } while (time_before(jiffies, end_time));
  875. /* This is ok, the most of motherboards have only one codec */
  876. __ac97_ok2:
  877. /* route FM trap to IRQ, disable FM trap */
  878. // pci_write_config_byte(chip->pci, VIA_FM_NMI_CTRL, 0);
  879. /* disable all GPI interrupts */
  880. outl(0, VIAREG(chip, GPI_INTR));
  881. return 0;
  882. }
  883. #ifdef CONFIG_PM
  884. /*
  885. * power management
  886. */
  887. static int snd_via82xx_suspend(struct pci_dev *pci, pm_message_t state)
  888. {
  889. struct snd_card *card = pci_get_drvdata(pci);
  890. struct via82xx_modem *chip = card->private_data;
  891. int i;
  892. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  893. for (i = 0; i < 2; i++)
  894. snd_pcm_suspend_all(chip->pcms[i]);
  895. for (i = 0; i < chip->num_devs; i++)
  896. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  897. synchronize_irq(chip->irq);
  898. snd_ac97_suspend(chip->ac97);
  899. pci_disable_device(pci);
  900. pci_save_state(pci);
  901. pci_set_power_state(pci, pci_choose_state(pci, state));
  902. return 0;
  903. }
  904. static int snd_via82xx_resume(struct pci_dev *pci)
  905. {
  906. struct snd_card *card = pci_get_drvdata(pci);
  907. struct via82xx_modem *chip = card->private_data;
  908. int i;
  909. pci_set_power_state(pci, PCI_D0);
  910. pci_restore_state(pci);
  911. if (pci_enable_device(pci) < 0) {
  912. printk(KERN_ERR "via82xx-modem: pci_enable_device failed, "
  913. "disabling device\n");
  914. snd_card_disconnect(card);
  915. return -EIO;
  916. }
  917. pci_set_master(pci);
  918. snd_via82xx_chip_init(chip);
  919. snd_ac97_resume(chip->ac97);
  920. for (i = 0; i < chip->num_devs; i++)
  921. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  922. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  923. return 0;
  924. }
  925. #endif /* CONFIG_PM */
  926. static int snd_via82xx_free(struct via82xx_modem *chip)
  927. {
  928. unsigned int i;
  929. if (chip->irq < 0)
  930. goto __end_hw;
  931. /* disable interrupts */
  932. for (i = 0; i < chip->num_devs; i++)
  933. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  934. __end_hw:
  935. if (chip->irq >= 0)
  936. free_irq(chip->irq, chip);
  937. pci_release_regions(chip->pci);
  938. pci_disable_device(chip->pci);
  939. kfree(chip);
  940. return 0;
  941. }
  942. static int snd_via82xx_dev_free(struct snd_device *device)
  943. {
  944. struct via82xx_modem *chip = device->device_data;
  945. return snd_via82xx_free(chip);
  946. }
  947. static int __devinit snd_via82xx_create(struct snd_card *card,
  948. struct pci_dev *pci,
  949. int chip_type,
  950. int revision,
  951. unsigned int ac97_clock,
  952. struct via82xx_modem ** r_via)
  953. {
  954. struct via82xx_modem *chip;
  955. int err;
  956. static struct snd_device_ops ops = {
  957. .dev_free = snd_via82xx_dev_free,
  958. };
  959. if ((err = pci_enable_device(pci)) < 0)
  960. return err;
  961. if ((chip = kzalloc(sizeof(*chip), GFP_KERNEL)) == NULL) {
  962. pci_disable_device(pci);
  963. return -ENOMEM;
  964. }
  965. spin_lock_init(&chip->reg_lock);
  966. chip->card = card;
  967. chip->pci = pci;
  968. chip->irq = -1;
  969. if ((err = pci_request_regions(pci, card->driver)) < 0) {
  970. kfree(chip);
  971. pci_disable_device(pci);
  972. return err;
  973. }
  974. chip->port = pci_resource_start(pci, 0);
  975. if (request_irq(pci->irq, snd_via82xx_interrupt, IRQF_SHARED,
  976. card->driver, chip)) {
  977. snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
  978. snd_via82xx_free(chip);
  979. return -EBUSY;
  980. }
  981. chip->irq = pci->irq;
  982. if (ac97_clock >= 8000 && ac97_clock <= 48000)
  983. chip->ac97_clock = ac97_clock;
  984. synchronize_irq(chip->irq);
  985. if ((err = snd_via82xx_chip_init(chip)) < 0) {
  986. snd_via82xx_free(chip);
  987. return err;
  988. }
  989. if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  990. snd_via82xx_free(chip);
  991. return err;
  992. }
  993. /* The 8233 ac97 controller does not implement the master bit
  994. * in the pci command register. IMHO this is a violation of the PCI spec.
  995. * We call pci_set_master here because it does not hurt. */
  996. pci_set_master(pci);
  997. snd_card_set_dev(card, &pci->dev);
  998. *r_via = chip;
  999. return 0;
  1000. }
  1001. static int __devinit snd_via82xx_probe(struct pci_dev *pci,
  1002. const struct pci_device_id *pci_id)
  1003. {
  1004. struct snd_card *card;
  1005. struct via82xx_modem *chip;
  1006. int chip_type = 0, card_type;
  1007. unsigned int i;
  1008. int err;
  1009. card = snd_card_new(index, id, THIS_MODULE, 0);
  1010. if (card == NULL)
  1011. return -ENOMEM;
  1012. card_type = pci_id->driver_data;
  1013. switch (card_type) {
  1014. case TYPE_CARD_VIA82XX_MODEM:
  1015. strcpy(card->driver, "VIA82XX-MODEM");
  1016. sprintf(card->shortname, "VIA 82XX modem");
  1017. break;
  1018. default:
  1019. snd_printk(KERN_ERR "invalid card type %d\n", card_type);
  1020. err = -EINVAL;
  1021. goto __error;
  1022. }
  1023. if ((err = snd_via82xx_create(card, pci, chip_type, pci->revision,
  1024. ac97_clock, &chip)) < 0)
  1025. goto __error;
  1026. card->private_data = chip;
  1027. if ((err = snd_via82xx_mixer_new(chip)) < 0)
  1028. goto __error;
  1029. if ((err = snd_via686_pcm_new(chip)) < 0 )
  1030. goto __error;
  1031. /* disable interrupts */
  1032. for (i = 0; i < chip->num_devs; i++)
  1033. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1034. sprintf(card->longname, "%s at 0x%lx, irq %d",
  1035. card->shortname, chip->port, chip->irq);
  1036. snd_via82xx_proc_init(chip);
  1037. if ((err = snd_card_register(card)) < 0) {
  1038. snd_card_free(card);
  1039. return err;
  1040. }
  1041. pci_set_drvdata(pci, card);
  1042. return 0;
  1043. __error:
  1044. snd_card_free(card);
  1045. return err;
  1046. }
  1047. static void __devexit snd_via82xx_remove(struct pci_dev *pci)
  1048. {
  1049. snd_card_free(pci_get_drvdata(pci));
  1050. pci_set_drvdata(pci, NULL);
  1051. }
  1052. static struct pci_driver driver = {
  1053. .name = "VIA 82xx Modem",
  1054. .id_table = snd_via82xx_modem_ids,
  1055. .probe = snd_via82xx_probe,
  1056. .remove = __devexit_p(snd_via82xx_remove),
  1057. #ifdef CONFIG_PM
  1058. .suspend = snd_via82xx_suspend,
  1059. .resume = snd_via82xx_resume,
  1060. #endif
  1061. };
  1062. static int __init alsa_card_via82xx_init(void)
  1063. {
  1064. return pci_register_driver(&driver);
  1065. }
  1066. static void __exit alsa_card_via82xx_exit(void)
  1067. {
  1068. pci_unregister_driver(&driver);
  1069. }
  1070. module_init(alsa_card_via82xx_init)
  1071. module_exit(alsa_card_via82xx_exit)