via82xx_modem.c 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243
  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. snd_assert(viadev->tbl_entries, return 0);
  546. if (!(inb(VIADEV_REG(viadev, OFFSET_STATUS)) & VIA_REG_STAT_ACTIVE))
  547. return 0;
  548. spin_lock(&chip->reg_lock);
  549. count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT)) & 0xffffff;
  550. /* The via686a does not have the current index register,
  551. * so we need to calculate the index from CURR_PTR.
  552. */
  553. ptr = inl(VIADEV_REG(viadev, OFFSET_CURR_PTR));
  554. if (ptr <= (unsigned int)viadev->table.addr)
  555. idx = 0;
  556. else /* CURR_PTR holds the address + 8 */
  557. idx = ((ptr - (unsigned int)viadev->table.addr) / 8 - 1) %
  558. viadev->tbl_entries;
  559. res = calc_linear_pos(viadev, idx, count);
  560. spin_unlock(&chip->reg_lock);
  561. return bytes_to_frames(substream->runtime, res);
  562. }
  563. /*
  564. * hw_params callback:
  565. * allocate the buffer and build up the buffer description table
  566. */
  567. static int snd_via82xx_hw_params(struct snd_pcm_substream *substream,
  568. struct snd_pcm_hw_params *hw_params)
  569. {
  570. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  571. struct viadev *viadev = substream->runtime->private_data;
  572. int err;
  573. err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
  574. if (err < 0)
  575. return err;
  576. err = build_via_table(viadev, substream, chip->pci,
  577. params_periods(hw_params),
  578. params_period_bytes(hw_params));
  579. if (err < 0)
  580. return err;
  581. snd_ac97_write(chip->ac97, AC97_LINE1_RATE, params_rate(hw_params));
  582. snd_ac97_write(chip->ac97, AC97_LINE1_LEVEL, 0);
  583. return 0;
  584. }
  585. /*
  586. * hw_free callback:
  587. * clean up the buffer description table and release the buffer
  588. */
  589. static int snd_via82xx_hw_free(struct snd_pcm_substream *substream)
  590. {
  591. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  592. struct viadev *viadev = substream->runtime->private_data;
  593. clean_via_table(viadev, substream, chip->pci);
  594. snd_pcm_lib_free_pages(substream);
  595. return 0;
  596. }
  597. /*
  598. * set up the table pointer
  599. */
  600. static void snd_via82xx_set_table_ptr(struct via82xx_modem *chip, struct viadev *viadev)
  601. {
  602. snd_via82xx_codec_ready(chip, chip->ac97_secondary);
  603. outl((u32)viadev->table.addr, VIADEV_REG(viadev, OFFSET_TABLE_PTR));
  604. udelay(20);
  605. snd_via82xx_codec_ready(chip, chip->ac97_secondary);
  606. }
  607. /*
  608. * prepare callback for playback and capture
  609. */
  610. static int snd_via82xx_pcm_prepare(struct snd_pcm_substream *substream)
  611. {
  612. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  613. struct viadev *viadev = substream->runtime->private_data;
  614. snd_via82xx_channel_reset(chip, viadev);
  615. /* this must be set after channel_reset */
  616. snd_via82xx_set_table_ptr(chip, viadev);
  617. outb(VIA_REG_TYPE_AUTOSTART|VIA_REG_TYPE_INT_EOL|VIA_REG_TYPE_INT_FLAG,
  618. VIADEV_REG(viadev, OFFSET_TYPE));
  619. return 0;
  620. }
  621. /*
  622. * pcm hardware definition, identical for both playback and capture
  623. */
  624. static struct snd_pcm_hardware snd_via82xx_hw =
  625. {
  626. .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  627. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  628. SNDRV_PCM_INFO_MMAP_VALID |
  629. /* SNDRV_PCM_INFO_RESUME | */
  630. SNDRV_PCM_INFO_PAUSE),
  631. .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
  632. .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_KNOT,
  633. .rate_min = 8000,
  634. .rate_max = 16000,
  635. .channels_min = 1,
  636. .channels_max = 1,
  637. .buffer_bytes_max = 128 * 1024,
  638. .period_bytes_min = 32,
  639. .period_bytes_max = 128 * 1024,
  640. .periods_min = 2,
  641. .periods_max = VIA_TABLE_SIZE / 2,
  642. .fifo_size = 0,
  643. };
  644. /*
  645. * open callback skeleton
  646. */
  647. static int snd_via82xx_modem_pcm_open(struct via82xx_modem *chip, struct viadev *viadev,
  648. struct snd_pcm_substream *substream)
  649. {
  650. struct snd_pcm_runtime *runtime = substream->runtime;
  651. int err;
  652. static unsigned int rates[] = { 8000, 9600, 12000, 16000 };
  653. static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
  654. .count = ARRAY_SIZE(rates),
  655. .list = rates,
  656. .mask = 0,
  657. };
  658. runtime->hw = snd_via82xx_hw;
  659. if ((err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
  660. &hw_constraints_rates)) < 0)
  661. return err;
  662. /* we may remove following constaint when we modify table entries
  663. in interrupt */
  664. if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
  665. return err;
  666. runtime->private_data = viadev;
  667. viadev->substream = substream;
  668. return 0;
  669. }
  670. /*
  671. * open callback for playback
  672. */
  673. static int snd_via82xx_playback_open(struct snd_pcm_substream *substream)
  674. {
  675. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  676. struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number];
  677. return snd_via82xx_modem_pcm_open(chip, viadev, substream);
  678. }
  679. /*
  680. * open callback for capture
  681. */
  682. static int snd_via82xx_capture_open(struct snd_pcm_substream *substream)
  683. {
  684. struct via82xx_modem *chip = snd_pcm_substream_chip(substream);
  685. struct viadev *viadev = &chip->devs[chip->capture_devno + substream->pcm->device];
  686. return snd_via82xx_modem_pcm_open(chip, viadev, substream);
  687. }
  688. /*
  689. * close callback
  690. */
  691. static int snd_via82xx_pcm_close(struct snd_pcm_substream *substream)
  692. {
  693. struct viadev *viadev = substream->runtime->private_data;
  694. viadev->substream = NULL;
  695. return 0;
  696. }
  697. /* via686 playback callbacks */
  698. static struct snd_pcm_ops snd_via686_playback_ops = {
  699. .open = snd_via82xx_playback_open,
  700. .close = snd_via82xx_pcm_close,
  701. .ioctl = snd_pcm_lib_ioctl,
  702. .hw_params = snd_via82xx_hw_params,
  703. .hw_free = snd_via82xx_hw_free,
  704. .prepare = snd_via82xx_pcm_prepare,
  705. .trigger = snd_via82xx_pcm_trigger,
  706. .pointer = snd_via686_pcm_pointer,
  707. .page = snd_pcm_sgbuf_ops_page,
  708. };
  709. /* via686 capture callbacks */
  710. static struct snd_pcm_ops snd_via686_capture_ops = {
  711. .open = snd_via82xx_capture_open,
  712. .close = snd_via82xx_pcm_close,
  713. .ioctl = snd_pcm_lib_ioctl,
  714. .hw_params = snd_via82xx_hw_params,
  715. .hw_free = snd_via82xx_hw_free,
  716. .prepare = snd_via82xx_pcm_prepare,
  717. .trigger = snd_via82xx_pcm_trigger,
  718. .pointer = snd_via686_pcm_pointer,
  719. .page = snd_pcm_sgbuf_ops_page,
  720. };
  721. static void init_viadev(struct via82xx_modem *chip, int idx, unsigned int reg_offset,
  722. int direction)
  723. {
  724. chip->devs[idx].reg_offset = reg_offset;
  725. chip->devs[idx].direction = direction;
  726. chip->devs[idx].port = chip->port + reg_offset;
  727. }
  728. /*
  729. * create a pcm instance for via686a/b
  730. */
  731. static int __devinit snd_via686_pcm_new(struct via82xx_modem *chip)
  732. {
  733. struct snd_pcm *pcm;
  734. int err;
  735. chip->playback_devno = 0;
  736. chip->capture_devno = 1;
  737. chip->num_devs = 2;
  738. chip->intr_mask = 0x330000; /* FLAGS | EOL for MR, MW */
  739. err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
  740. if (err < 0)
  741. return err;
  742. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via686_playback_ops);
  743. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via686_capture_ops);
  744. pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
  745. pcm->private_data = chip;
  746. strcpy(pcm->name, chip->card->shortname);
  747. chip->pcms[0] = pcm;
  748. init_viadev(chip, 0, VIA_REG_MO_STATUS, 0);
  749. init_viadev(chip, 1, VIA_REG_MI_STATUS, 1);
  750. if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
  751. snd_dma_pci_data(chip->pci),
  752. 64*1024, 128*1024)) < 0)
  753. return err;
  754. return 0;
  755. }
  756. /*
  757. * Mixer part
  758. */
  759. static void snd_via82xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
  760. {
  761. struct via82xx_modem *chip = bus->private_data;
  762. chip->ac97_bus = NULL;
  763. }
  764. static void snd_via82xx_mixer_free_ac97(struct snd_ac97 *ac97)
  765. {
  766. struct via82xx_modem *chip = ac97->private_data;
  767. chip->ac97 = NULL;
  768. }
  769. static int __devinit snd_via82xx_mixer_new(struct via82xx_modem *chip)
  770. {
  771. struct snd_ac97_template ac97;
  772. int err;
  773. static struct snd_ac97_bus_ops ops = {
  774. .write = snd_via82xx_codec_write,
  775. .read = snd_via82xx_codec_read,
  776. .wait = snd_via82xx_codec_wait,
  777. };
  778. if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)
  779. return err;
  780. chip->ac97_bus->private_free = snd_via82xx_mixer_free_ac97_bus;
  781. chip->ac97_bus->clock = chip->ac97_clock;
  782. memset(&ac97, 0, sizeof(ac97));
  783. ac97.private_data = chip;
  784. ac97.private_free = snd_via82xx_mixer_free_ac97;
  785. ac97.pci = chip->pci;
  786. ac97.scaps = AC97_SCAP_SKIP_AUDIO | AC97_SCAP_POWER_SAVE;
  787. ac97.num = chip->ac97_secondary;
  788. if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)
  789. return err;
  790. return 0;
  791. }
  792. /*
  793. * proc interface
  794. */
  795. static void snd_via82xx_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
  796. {
  797. struct via82xx_modem *chip = entry->private_data;
  798. int i;
  799. snd_iprintf(buffer, "%s\n\n", chip->card->longname);
  800. for (i = 0; i < 0xa0; i += 4) {
  801. snd_iprintf(buffer, "%02x: %08x\n", i, inl(chip->port + i));
  802. }
  803. }
  804. static void __devinit snd_via82xx_proc_init(struct via82xx_modem *chip)
  805. {
  806. struct snd_info_entry *entry;
  807. if (! snd_card_proc_new(chip->card, "via82xx", &entry))
  808. snd_info_set_text_ops(entry, chip, snd_via82xx_proc_read);
  809. }
  810. /*
  811. *
  812. */
  813. static int snd_via82xx_chip_init(struct via82xx_modem *chip)
  814. {
  815. unsigned int val;
  816. unsigned long end_time;
  817. unsigned char pval;
  818. pci_read_config_byte(chip->pci, VIA_MC97_CTRL, &pval);
  819. if((pval & VIA_MC97_CTRL_INIT) != VIA_MC97_CTRL_INIT) {
  820. pci_write_config_byte(chip->pci, 0x44, pval|VIA_MC97_CTRL_INIT);
  821. udelay(100);
  822. }
  823. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  824. if (! (pval & VIA_ACLINK_C00_READY)) { /* codec not ready? */
  825. /* deassert ACLink reset, force SYNC */
  826. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  827. VIA_ACLINK_CTRL_ENABLE |
  828. VIA_ACLINK_CTRL_RESET |
  829. VIA_ACLINK_CTRL_SYNC);
  830. udelay(100);
  831. #if 1 /* FIXME: should we do full reset here for all chip models? */
  832. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, 0x00);
  833. udelay(100);
  834. #else
  835. /* deassert ACLink reset, force SYNC (warm AC'97 reset) */
  836. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
  837. VIA_ACLINK_CTRL_RESET|VIA_ACLINK_CTRL_SYNC);
  838. udelay(2);
  839. #endif
  840. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  841. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  842. udelay(100);
  843. }
  844. pci_read_config_byte(chip->pci, VIA_ACLINK_CTRL, &pval);
  845. if ((pval & VIA_ACLINK_CTRL_INIT) != VIA_ACLINK_CTRL_INIT) {
  846. /* ACLink on, deassert ACLink reset, VSR, SGD data out */
  847. pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
  848. udelay(100);
  849. }
  850. /* wait until codec ready */
  851. end_time = jiffies + msecs_to_jiffies(750);
  852. do {
  853. pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
  854. if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */
  855. break;
  856. schedule_timeout_uninterruptible(1);
  857. } while (time_before(jiffies, end_time));
  858. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY)
  859. snd_printk(KERN_ERR "AC'97 codec is not ready [0x%x]\n", val);
  860. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  861. VIA_REG_AC97_SECONDARY_VALID |
  862. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  863. end_time = jiffies + msecs_to_jiffies(750);
  864. snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
  865. VIA_REG_AC97_SECONDARY_VALID |
  866. (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
  867. do {
  868. if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_SECONDARY_VALID) {
  869. chip->ac97_secondary = 1;
  870. goto __ac97_ok2;
  871. }
  872. schedule_timeout_uninterruptible(1);
  873. } while (time_before(jiffies, end_time));
  874. /* This is ok, the most of motherboards have only one codec */
  875. __ac97_ok2:
  876. /* route FM trap to IRQ, disable FM trap */
  877. // pci_write_config_byte(chip->pci, VIA_FM_NMI_CTRL, 0);
  878. /* disable all GPI interrupts */
  879. outl(0, VIAREG(chip, GPI_INTR));
  880. return 0;
  881. }
  882. #ifdef CONFIG_PM
  883. /*
  884. * power management
  885. */
  886. static int snd_via82xx_suspend(struct pci_dev *pci, pm_message_t state)
  887. {
  888. struct snd_card *card = pci_get_drvdata(pci);
  889. struct via82xx_modem *chip = card->private_data;
  890. int i;
  891. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  892. for (i = 0; i < 2; i++)
  893. snd_pcm_suspend_all(chip->pcms[i]);
  894. for (i = 0; i < chip->num_devs; i++)
  895. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  896. synchronize_irq(chip->irq);
  897. snd_ac97_suspend(chip->ac97);
  898. pci_disable_device(pci);
  899. pci_save_state(pci);
  900. pci_set_power_state(pci, pci_choose_state(pci, state));
  901. return 0;
  902. }
  903. static int snd_via82xx_resume(struct pci_dev *pci)
  904. {
  905. struct snd_card *card = pci_get_drvdata(pci);
  906. struct via82xx_modem *chip = card->private_data;
  907. int i;
  908. pci_set_power_state(pci, PCI_D0);
  909. pci_restore_state(pci);
  910. if (pci_enable_device(pci) < 0) {
  911. printk(KERN_ERR "via82xx-modem: pci_enable_device failed, "
  912. "disabling device\n");
  913. snd_card_disconnect(card);
  914. return -EIO;
  915. }
  916. pci_set_master(pci);
  917. snd_via82xx_chip_init(chip);
  918. snd_ac97_resume(chip->ac97);
  919. for (i = 0; i < chip->num_devs; i++)
  920. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  921. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  922. return 0;
  923. }
  924. #endif /* CONFIG_PM */
  925. static int snd_via82xx_free(struct via82xx_modem *chip)
  926. {
  927. unsigned int i;
  928. if (chip->irq < 0)
  929. goto __end_hw;
  930. /* disable interrupts */
  931. for (i = 0; i < chip->num_devs; i++)
  932. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  933. __end_hw:
  934. if (chip->irq >= 0)
  935. free_irq(chip->irq, chip);
  936. pci_release_regions(chip->pci);
  937. pci_disable_device(chip->pci);
  938. kfree(chip);
  939. return 0;
  940. }
  941. static int snd_via82xx_dev_free(struct snd_device *device)
  942. {
  943. struct via82xx_modem *chip = device->device_data;
  944. return snd_via82xx_free(chip);
  945. }
  946. static int __devinit snd_via82xx_create(struct snd_card *card,
  947. struct pci_dev *pci,
  948. int chip_type,
  949. int revision,
  950. unsigned int ac97_clock,
  951. struct via82xx_modem ** r_via)
  952. {
  953. struct via82xx_modem *chip;
  954. int err;
  955. static struct snd_device_ops ops = {
  956. .dev_free = snd_via82xx_dev_free,
  957. };
  958. if ((err = pci_enable_device(pci)) < 0)
  959. return err;
  960. if ((chip = kzalloc(sizeof(*chip), GFP_KERNEL)) == NULL) {
  961. pci_disable_device(pci);
  962. return -ENOMEM;
  963. }
  964. spin_lock_init(&chip->reg_lock);
  965. chip->card = card;
  966. chip->pci = pci;
  967. chip->irq = -1;
  968. if ((err = pci_request_regions(pci, card->driver)) < 0) {
  969. kfree(chip);
  970. pci_disable_device(pci);
  971. return err;
  972. }
  973. chip->port = pci_resource_start(pci, 0);
  974. if (request_irq(pci->irq, snd_via82xx_interrupt, IRQF_SHARED,
  975. card->driver, chip)) {
  976. snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
  977. snd_via82xx_free(chip);
  978. return -EBUSY;
  979. }
  980. chip->irq = pci->irq;
  981. if (ac97_clock >= 8000 && ac97_clock <= 48000)
  982. chip->ac97_clock = ac97_clock;
  983. synchronize_irq(chip->irq);
  984. if ((err = snd_via82xx_chip_init(chip)) < 0) {
  985. snd_via82xx_free(chip);
  986. return err;
  987. }
  988. if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  989. snd_via82xx_free(chip);
  990. return err;
  991. }
  992. /* The 8233 ac97 controller does not implement the master bit
  993. * in the pci command register. IMHO this is a violation of the PCI spec.
  994. * We call pci_set_master here because it does not hurt. */
  995. pci_set_master(pci);
  996. snd_card_set_dev(card, &pci->dev);
  997. *r_via = chip;
  998. return 0;
  999. }
  1000. static int __devinit snd_via82xx_probe(struct pci_dev *pci,
  1001. const struct pci_device_id *pci_id)
  1002. {
  1003. struct snd_card *card;
  1004. struct via82xx_modem *chip;
  1005. int chip_type = 0, card_type;
  1006. unsigned int i;
  1007. int err;
  1008. card = snd_card_new(index, id, THIS_MODULE, 0);
  1009. if (card == NULL)
  1010. return -ENOMEM;
  1011. card_type = pci_id->driver_data;
  1012. switch (card_type) {
  1013. case TYPE_CARD_VIA82XX_MODEM:
  1014. strcpy(card->driver, "VIA82XX-MODEM");
  1015. sprintf(card->shortname, "VIA 82XX modem");
  1016. break;
  1017. default:
  1018. snd_printk(KERN_ERR "invalid card type %d\n", card_type);
  1019. err = -EINVAL;
  1020. goto __error;
  1021. }
  1022. if ((err = snd_via82xx_create(card, pci, chip_type, pci->revision,
  1023. ac97_clock, &chip)) < 0)
  1024. goto __error;
  1025. card->private_data = chip;
  1026. if ((err = snd_via82xx_mixer_new(chip)) < 0)
  1027. goto __error;
  1028. if ((err = snd_via686_pcm_new(chip)) < 0 )
  1029. goto __error;
  1030. /* disable interrupts */
  1031. for (i = 0; i < chip->num_devs; i++)
  1032. snd_via82xx_channel_reset(chip, &chip->devs[i]);
  1033. sprintf(card->longname, "%s at 0x%lx, irq %d",
  1034. card->shortname, chip->port, chip->irq);
  1035. snd_via82xx_proc_init(chip);
  1036. if ((err = snd_card_register(card)) < 0) {
  1037. snd_card_free(card);
  1038. return err;
  1039. }
  1040. pci_set_drvdata(pci, card);
  1041. return 0;
  1042. __error:
  1043. snd_card_free(card);
  1044. return err;
  1045. }
  1046. static void __devexit snd_via82xx_remove(struct pci_dev *pci)
  1047. {
  1048. snd_card_free(pci_get_drvdata(pci));
  1049. pci_set_drvdata(pci, NULL);
  1050. }
  1051. static struct pci_driver driver = {
  1052. .name = "VIA 82xx Modem",
  1053. .id_table = snd_via82xx_modem_ids,
  1054. .probe = snd_via82xx_probe,
  1055. .remove = __devexit_p(snd_via82xx_remove),
  1056. #ifdef CONFIG_PM
  1057. .suspend = snd_via82xx_suspend,
  1058. .resume = snd_via82xx_resume,
  1059. #endif
  1060. };
  1061. static int __init alsa_card_via82xx_init(void)
  1062. {
  1063. return pci_register_driver(&driver);
  1064. }
  1065. static void __exit alsa_card_via82xx_exit(void)
  1066. {
  1067. pci_unregister_driver(&driver);
  1068. }
  1069. module_init(alsa_card_via82xx_init)
  1070. module_exit(alsa_card_via82xx_exit)