soundcard.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/sound/soundcard.c
  3.  *
  4.  * Sound card driver for Linux
  5.  *
  6.  *
  7.  * Copyright (C) by Hannu Savolainen 1993-1997
  8.  *
  9.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  10.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  11.  * for more info.
  12.  *
  13.  *
  14.  * Thomas Sailer     : ioctl code reworked (vmalloc/vfree removed)
  15.  *                   integrated sound_switch.c
  16.  * Stefan Reinauer   : integrated /proc/sound (equals to /dev/sndstat,
  17.  *                   which should disappear in the near future)
  18.  * Eric Dumas      : devfs support (22-Jan-98) <dumas@linux.eu.org> with
  19.  *                   fixups by C. Scott Ananian <cananian@alumni.princeton.edu>
  20.  * Richard Gooch     : moved common (non OSS-specific) devices to sound_core.c
  21.  * Rob Riggs      : Added persistent DMA buffers support (1998/10/17)
  22.  * Christoph Hellwig : Some cleanup work (2000/03/01)
  23.  */
  24. #include <linux/config.h>
  25. #include "sound_config.h"
  26. #include <linux/init.h>
  27. #include <linux/types.h>
  28. #include <linux/errno.h>
  29. #include <linux/signal.h>
  30. #include <linux/fcntl.h>
  31. #include <linux/ctype.h>
  32. #include <linux/stddef.h>
  33. #include <linux/kmod.h>
  34. #include <asm/dma.h>
  35. #include <asm/io.h>
  36. #include <asm/segment.h>
  37. #include <linux/wait.h>
  38. #include <linux/slab.h>
  39. #include <linux/ioport.h>
  40. #include <linux/devfs_fs_kernel.h>
  41. #include <linux/major.h>
  42. #include <linux/delay.h>
  43. #include <linux/proc_fs.h>
  44. #include <linux/smp_lock.h>
  45. #include <linux/module.h>
  46. /*
  47.  * This ought to be moved into include/asm/dma.h
  48.  */
  49. #ifndef valid_dma
  50. #define valid_dma(n) ((n) >= 0 && (n) < MAX_DMA_CHANNELS && (n) != 4)
  51. #endif
  52. /*
  53.  * Table for permanently allocated memory (used when unloading the module)
  54.  */
  55. caddr_t         sound_mem_blocks[1024];
  56. int             sound_nblocks = 0;
  57. /* Persistent DMA buffers */
  58. #ifdef CONFIG_SOUND_DMAP
  59. int             sound_dmap_flag = 1;
  60. #else
  61. int             sound_dmap_flag = 0;
  62. #endif
  63. static char     dma_alloc_map[MAX_DMA_CHANNELS] = {0};
  64. #define DMA_MAP_UNAVAIL 0
  65. #define DMA_MAP_FREE 1
  66. #define DMA_MAP_BUSY 2
  67. unsigned long seq_time = 0; /* Time for /dev/sequencer */
  68. /*
  69.  * Table for configurable mixer volume handling
  70.  */
  71. static mixer_vol_table mixer_vols[MAX_MIXER_DEV];
  72. static int num_mixer_volumes = 0;
  73. int *load_mixer_volumes(char *name, int *levels, int present)
  74. {
  75. int             i, n;
  76. for (i = 0; i < num_mixer_volumes; i++) {
  77. if (strcmp(name, mixer_vols[i].name) == 0) {
  78. if (present)
  79. mixer_vols[i].num = i;
  80. return mixer_vols[i].levels;
  81. }
  82. }
  83. if (num_mixer_volumes >= MAX_MIXER_DEV) {
  84. printk(KERN_ERR "Sound: Too many mixers (%s)n", name);
  85. return levels;
  86. }
  87. n = num_mixer_volumes++;
  88. strcpy(mixer_vols[n].name, name);
  89. if (present)
  90. mixer_vols[n].num = n;
  91. else
  92. mixer_vols[n].num = -1;
  93. for (i = 0; i < 32; i++)
  94. mixer_vols[n].levels[i] = levels[i];
  95. return mixer_vols[n].levels;
  96. }
  97. static int set_mixer_levels(caddr_t arg)
  98. {
  99.         /* mixer_vol_table is 174 bytes, so IMHO no reason to not allocate it on the stack */
  100. mixer_vol_table buf;   
  101. if (__copy_from_user(&buf, arg, sizeof(buf)))
  102. return -EFAULT;
  103. load_mixer_volumes(buf.name, buf.levels, 0);
  104. if (__copy_to_user(arg, &buf, sizeof(buf)))
  105. return -EFAULT;
  106. return 0;
  107. }
  108. static int get_mixer_levels(caddr_t arg)
  109. {
  110. int n;
  111. if (__get_user(n, (int *)(&(((mixer_vol_table *)arg)->num))))
  112. return -EFAULT;
  113. if (n < 0 || n >= num_mixer_volumes)
  114. return -EINVAL;
  115. if (__copy_to_user(arg, &mixer_vols[n], sizeof(mixer_vol_table)))
  116. return -EFAULT;
  117. return 0;
  118. }
  119. #ifndef MIN
  120. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  121. #endif
  122. /* 4K page size but our output routines use some slack for overruns */
  123. #define PROC_BLOCK_SIZE (3*1024)
  124. static ssize_t sound_read(struct file *file, char *buf, size_t count, loff_t *ppos)
  125. {
  126. int dev = MINOR(file->f_dentry->d_inode->i_rdev);
  127. int ret = -EINVAL;
  128. /*
  129.  * The OSS drivers aren't remotely happy without this locking,
  130.  * and unless someone fixes them when they are about to bite the
  131.  * big one anyway, we might as well bandage here..
  132.  */
  133.  
  134. lock_kernel();
  135. DEB(printk("sound_read(dev=%d, count=%d)n", dev, count));
  136. switch (dev & 0x0f) {
  137. case SND_DEV_DSP:
  138. case SND_DEV_DSP16:
  139. case SND_DEV_AUDIO:
  140. ret = audio_read(dev, file, buf, count);
  141. break;
  142. case SND_DEV_SEQ:
  143. case SND_DEV_SEQ2:
  144. ret = sequencer_read(dev, file, buf, count);
  145. break;
  146. case SND_DEV_MIDIN:
  147. ret = MIDIbuf_read(dev, file, buf, count);
  148. }
  149. unlock_kernel();
  150. return ret;
  151. }
  152. static ssize_t sound_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
  153. {
  154. int dev = MINOR(file->f_dentry->d_inode->i_rdev);
  155. int ret = -EINVAL;
  156. lock_kernel();
  157. DEB(printk("sound_write(dev=%d, count=%d)n", dev, count));
  158. switch (dev & 0x0f) {
  159. case SND_DEV_SEQ:
  160. case SND_DEV_SEQ2:
  161. ret =  sequencer_write(dev, file, buf, count);
  162. break;
  163. case SND_DEV_DSP:
  164. case SND_DEV_DSP16:
  165. case SND_DEV_AUDIO:
  166. ret = audio_write(dev, file, buf, count);
  167. break;
  168. case SND_DEV_MIDIN:
  169. ret =  MIDIbuf_write(dev, file, buf, count);
  170. break;
  171. }
  172. unlock_kernel();
  173. return ret;
  174. }
  175. static int sound_open(struct inode *inode, struct file *file)
  176. {
  177. int dev = MINOR(inode->i_rdev);
  178. int retval;
  179. DEB(printk("sound_open(dev=%d)n", dev));
  180. if ((dev >= SND_NDEVS) || (dev < 0)) {
  181. printk(KERN_ERR "Invalid minor device %dn", dev);
  182. return -ENXIO;
  183. }
  184. switch (dev & 0x0f) {
  185. case SND_DEV_CTL:
  186. dev >>= 4;
  187. if (dev >= 0 && dev < MAX_MIXER_DEV && mixer_devs[dev] == NULL) {
  188. char modname[20];
  189. sprintf(modname, "mixer%d", dev);
  190. request_module(modname);
  191. }
  192. if (dev && (dev >= num_mixers || mixer_devs[dev] == NULL))
  193. return -ENXIO;
  194. if (mixer_devs[dev]->owner)
  195. __MOD_INC_USE_COUNT (mixer_devs[dev]->owner);
  196. break;
  197. case SND_DEV_SEQ:
  198. case SND_DEV_SEQ2:
  199. if ((retval = sequencer_open(dev, file)) < 0)
  200. return retval;
  201. break;
  202. case SND_DEV_MIDIN:
  203. if ((retval = MIDIbuf_open(dev, file)) < 0)
  204. return retval;
  205. break;
  206. case SND_DEV_DSP:
  207. case SND_DEV_DSP16:
  208. case SND_DEV_AUDIO:
  209. if ((retval = audio_open(dev, file)) < 0)
  210. return retval;
  211. break;
  212. default:
  213. printk(KERN_ERR "Invalid minor device %dn", dev);
  214. return -ENXIO;
  215. }
  216. return 0;
  217. }
  218. static int sound_release(struct inode *inode, struct file *file)
  219. {
  220. int dev = MINOR(inode->i_rdev);
  221. lock_kernel();
  222. DEB(printk("sound_release(dev=%d)n", dev));
  223. switch (dev & 0x0f) {
  224. case SND_DEV_CTL:
  225. dev >>= 4;
  226. if (mixer_devs[dev]->owner)
  227. __MOD_DEC_USE_COUNT (mixer_devs[dev]->owner);
  228. break;
  229. case SND_DEV_SEQ:
  230. case SND_DEV_SEQ2:
  231. sequencer_release(dev, file);
  232. break;
  233. case SND_DEV_MIDIN:
  234. MIDIbuf_release(dev, file);
  235. break;
  236. case SND_DEV_DSP:
  237. case SND_DEV_DSP16:
  238. case SND_DEV_AUDIO:
  239. audio_release(dev, file);
  240. break;
  241. default:
  242. printk(KERN_ERR "Sound error: Releasing unknown device 0x%02xn", dev);
  243. }
  244. unlock_kernel();
  245. return 0;
  246. }
  247. static int get_mixer_info(int dev, caddr_t arg)
  248. {
  249. mixer_info info;
  250. strncpy(info.id, mixer_devs[dev]->id, sizeof(info.id));
  251. strncpy(info.name, mixer_devs[dev]->name, sizeof(info.name));
  252. info.name[sizeof(info.name)-1] = 0;
  253. info.modify_counter = mixer_devs[dev]->modify_counter;
  254. if (__copy_to_user(arg, &info,  sizeof(info)))
  255. return -EFAULT;
  256. return 0;
  257. }
  258. static int get_old_mixer_info(int dev, caddr_t arg)
  259. {
  260. _old_mixer_info info;
  261.   strncpy(info.id, mixer_devs[dev]->id, sizeof(info.id));
  262.   strncpy(info.name, mixer_devs[dev]->name, sizeof(info.name));
  263.   info.name[sizeof(info.name)-1] = 0;
  264.   if (copy_to_user(arg, &info,  sizeof(info)))
  265. return -EFAULT;
  266. return 0;
  267. }
  268. static int sound_mixer_ioctl(int mixdev, unsigned int cmd, caddr_t arg)
  269. {
  270.   if (mixdev < 0 || mixdev >= MAX_MIXER_DEV)
  271.   return -ENXIO;
  272.   /* Try to load the mixer... */
  273.   if (mixer_devs[mixdev] == NULL) {
  274.   char modname[20];
  275.   sprintf(modname, "mixer%d", mixdev);
  276.   request_module(modname);
  277.   }
  278.   if (mixdev >= num_mixers || !mixer_devs[mixdev])
  279.   return -ENXIO;
  280. if (cmd == SOUND_MIXER_INFO)
  281. return get_mixer_info(mixdev, arg);
  282. if (cmd == SOUND_OLD_MIXER_INFO)
  283. return get_old_mixer_info(mixdev, arg);
  284. if (_SIOC_DIR(cmd) & _SIOC_WRITE)
  285. mixer_devs[mixdev]->modify_counter++;
  286. if (!mixer_devs[mixdev]->ioctl)
  287. return -EINVAL;
  288. return mixer_devs[mixdev]->ioctl(mixdev, cmd, arg);
  289. }
  290. static int sound_ioctl(struct inode *inode, struct file *file,
  291.        unsigned int cmd, unsigned long arg)
  292. {
  293. int err, len = 0, dtype;
  294. int dev = MINOR(inode->i_rdev);
  295. if (_SIOC_DIR(cmd) != _SIOC_NONE && _SIOC_DIR(cmd) != 0) {
  296. /*
  297.  * Have to validate the address given by the process.
  298.  */
  299. len = _SIOC_SIZE(cmd);
  300. if (len < 1 || len > 65536 || arg == 0)
  301. return -EFAULT;
  302. if (_SIOC_DIR(cmd) & _SIOC_WRITE)
  303. if ((err = verify_area(VERIFY_READ, (void *)arg, len)) < 0)
  304. return err;
  305. if (_SIOC_DIR(cmd) & _SIOC_READ)
  306. if ((err = verify_area(VERIFY_WRITE, (void *)arg, len)) < 0)
  307. return err;
  308. }
  309. DEB(printk("sound_ioctl(dev=%d, cmd=0x%x, arg=0x%x)n", dev, cmd, arg));
  310. if (cmd == OSS_GETVERSION)
  311. return __put_user(SOUND_VERSION, (int *)arg);
  312. if (_IOC_TYPE(cmd) == 'M' && num_mixers > 0 &&   /* Mixer ioctl */
  313.     (dev & 0x0f) != SND_DEV_CTL) {              
  314. dtype = dev & 0x0f;
  315. switch (dtype) {
  316. case SND_DEV_DSP:
  317. case SND_DEV_DSP16:
  318. case SND_DEV_AUDIO:
  319. return sound_mixer_ioctl(audio_devs[dev >> 4]->mixer_dev,
  320.  cmd, (caddr_t)arg);
  321. default:
  322. return sound_mixer_ioctl(dev >> 4, cmd, (caddr_t)arg);
  323. }
  324. }
  325. switch (dev & 0x0f) {
  326. case SND_DEV_CTL:
  327. if (cmd == SOUND_MIXER_GETLEVELS)
  328. return get_mixer_levels((caddr_t)arg);
  329. if (cmd == SOUND_MIXER_SETLEVELS)
  330. return set_mixer_levels((caddr_t)arg);
  331. return sound_mixer_ioctl(dev >> 4, cmd, (caddr_t)arg);
  332. case SND_DEV_SEQ:
  333. case SND_DEV_SEQ2:
  334. return sequencer_ioctl(dev, file, cmd, (caddr_t)arg);
  335. case SND_DEV_DSP:
  336. case SND_DEV_DSP16:
  337. case SND_DEV_AUDIO:
  338. return audio_ioctl(dev, file, cmd, (caddr_t)arg);
  339. break;
  340. case SND_DEV_MIDIN:
  341. return MIDIbuf_ioctl(dev, file, cmd, (caddr_t)arg);
  342. break;
  343. }
  344. return -EINVAL;
  345. }
  346. static unsigned int sound_poll(struct file *file, poll_table * wait)
  347. {
  348. struct inode *inode = file->f_dentry->d_inode;
  349. int dev = MINOR(inode->i_rdev);
  350. DEB(printk("sound_poll(dev=%d)n", dev));
  351. switch (dev & 0x0f) {
  352. case SND_DEV_SEQ:
  353. case SND_DEV_SEQ2:
  354. return sequencer_poll(dev, file, wait);
  355. case SND_DEV_MIDIN:
  356. return MIDIbuf_poll(dev, file, wait);
  357. case SND_DEV_DSP:
  358. case SND_DEV_DSP16:
  359. case SND_DEV_AUDIO:
  360. return DMAbuf_poll(file, dev >> 4, wait);
  361. }
  362. return 0;
  363. }
  364. static int sound_mmap(struct file *file, struct vm_area_struct *vma)
  365. {
  366. int dev_class;
  367. unsigned long size;
  368. struct dma_buffparms *dmap = NULL;
  369. int dev = MINOR(file->f_dentry->d_inode->i_rdev);
  370. dev_class = dev & 0x0f;
  371. dev >>= 4;
  372. if (dev_class != SND_DEV_DSP && dev_class != SND_DEV_DSP16 && dev_class != SND_DEV_AUDIO) {
  373. printk(KERN_ERR "Sound: mmap() not supported for other than audio devicesn");
  374. return -EINVAL;
  375. }
  376. lock_kernel();
  377. if (vma->vm_flags & VM_WRITE) /* Map write and read/write to the output buf */
  378. dmap = audio_devs[dev]->dmap_out;
  379. else if (vma->vm_flags & VM_READ)
  380. dmap = audio_devs[dev]->dmap_in;
  381. else {
  382. printk(KERN_ERR "Sound: Undefined mmap() accessn");
  383. unlock_kernel();
  384. return -EINVAL;
  385. }
  386. if (dmap == NULL) {
  387. printk(KERN_ERR "Sound: mmap() error. dmap == NULLn");
  388. unlock_kernel();
  389. return -EIO;
  390. }
  391. if (dmap->raw_buf == NULL) {
  392. printk(KERN_ERR "Sound: mmap() called when raw_buf == NULLn");
  393. unlock_kernel();
  394. return -EIO;
  395. }
  396. if (dmap->mapping_flags) {
  397. printk(KERN_ERR "Sound: mmap() called twice for the same DMA buffern");
  398. unlock_kernel();
  399. return -EIO;
  400. }
  401. if (vma->vm_pgoff != 0) {
  402. printk(KERN_ERR "Sound: mmap() offset must be 0.n");
  403. unlock_kernel();
  404. return -EINVAL;
  405. }
  406. size = vma->vm_end - vma->vm_start;
  407. if (size != dmap->bytes_in_use) {
  408. printk(KERN_WARNING "Sound: mmap() size = %ld. Should be %dn", size, dmap->bytes_in_use);
  409. }
  410. if (remap_page_range(vma->vm_start, virt_to_phys(dmap->raw_buf),
  411. vma->vm_end - vma->vm_start,
  412. vma->vm_page_prot)) {
  413. unlock_kernel();
  414. return -EAGAIN;
  415. }
  416. dmap->mapping_flags |= DMA_MAP_MAPPED;
  417. if( audio_devs[dev]->d->mmap)
  418. audio_devs[dev]->d->mmap(dev);
  419. memset(dmap->raw_buf,
  420.        dmap->neutral_byte,
  421.        dmap->bytes_in_use);
  422. unlock_kernel();
  423. return 0;
  424. }
  425. struct file_operations oss_sound_fops = {
  426. owner: THIS_MODULE,
  427. llseek: no_llseek,
  428. read: sound_read,
  429. write: sound_write,
  430. poll: sound_poll,
  431. ioctl: sound_ioctl,
  432. mmap: sound_mmap,
  433. open: sound_open,
  434. release: sound_release,
  435. };
  436. /*
  437.  * Create the required special subdevices
  438.  */
  439.  
  440. static int create_special_devices(void)
  441. {
  442. int seq1,seq2;
  443. seq1=register_sound_special(&oss_sound_fops, 1);
  444. if(seq1==-1)
  445. goto bad;
  446. seq2=register_sound_special(&oss_sound_fops, 8);
  447. if(seq2!=-1)
  448. return 0;
  449. unregister_sound_special(1);
  450. bad:
  451. return -1;
  452. }
  453. /* These device names follow the official Linux device list,
  454.  * Documentation/devices.txt.  Let us know if there are other
  455.  * common names we should support for compatibility.
  456.  * Only those devices not created by the generic code in sound_core.c are
  457.  * registered here.
  458.  */
  459. static const struct {
  460. unsigned short minor;
  461. char *name;
  462. umode_t mode;
  463. int *num;
  464. } dev_list[] = { /* list of minor devices */
  465. /* seems to be some confusion here -- this device is not in the device list */
  466. {SND_DEV_DSP16,     "dspW",  S_IWUGO | S_IRUSR | S_IRGRP,
  467.  &num_audiodevs},
  468. {SND_DEV_AUDIO,     "audio",  S_IWUGO | S_IRUSR | S_IRGRP,
  469.  &num_audiodevs},
  470. };
  471. static char * 
  472. soundcard_make_name(char *buf, char *name, int idx) {
  473. if (idx==0)
  474. sprintf(buf, "sound/%s", name);
  475. else
  476. sprintf(buf, "sound/%s%d", name, idx);
  477. return buf;
  478. }
  479. /* Register/unregister audio entries */
  480. static void soundcard_register_devfs (int do_register)
  481. {
  482. char name_buf[32];
  483. int i, j, num;
  484. for (i = 0; i < sizeof (dev_list) / sizeof *dev_list; i++) {
  485. num = (dev_list[i].num == NULL) ? 0 : *dev_list[i].num;
  486. for (j = 0; j < num || j == 0; j++) {
  487. soundcard_make_name (name_buf, dev_list[i].name, j);
  488. if (do_register)
  489. devfs_register (NULL, name_buf, DEVFS_FL_NONE,
  490. SOUND_MAJOR, dev_list[i].minor+ (j* 0x10),
  491. S_IFCHR | dev_list[i].mode,
  492. &oss_sound_fops, NULL);
  493. else {
  494. devfs_handle_t de;
  495. de = devfs_find_handle (NULL, name_buf, 0, 0,
  496. DEVFS_SPECIAL_CHR, 0);
  497. devfs_unregister (de);
  498. }
  499. }
  500. }
  501. }
  502. static int dmabuf = 0;
  503. static int dmabug = 0;
  504. MODULE_PARM(dmabuf, "i");
  505. MODULE_PARM(dmabug, "i");
  506. static int __init oss_init(void)
  507. {
  508. int             err;
  509. /* drag in sound_syms.o */
  510. {
  511. extern char sound_syms_symbol;
  512. sound_syms_symbol = 0;
  513. }
  514. #ifdef CONFIG_PCI
  515. if(dmabug)
  516. isa_dma_bridge_buggy = dmabug;
  517. #endif
  518. err = create_special_devices();
  519. if (err) {
  520. printk(KERN_ERR "sound: driver already loaded/included in kerneln");
  521. return err;
  522. }
  523. /* Protecting the innocent */
  524. sound_dmap_flag = (dmabuf > 0 ? 1 : 0);
  525. soundcard_register_devfs(1);
  526. if (sound_nblocks >= 1024)
  527. printk(KERN_ERR "Sound warning: Deallocation table was too small.n");
  528. return 0;
  529. }
  530. static void __exit oss_cleanup(void)
  531. {
  532. int i;
  533. if (MOD_IN_USE)
  534. return;
  535. soundcard_register_devfs (0);
  536. unregister_sound_special(1);
  537. unregister_sound_special(8);
  538. sound_stop_timer();
  539. sequencer_unload();
  540. for (i = 0; i < MAX_DMA_CHANNELS; i++)
  541. if (dma_alloc_map[i] != DMA_MAP_UNAVAIL) {
  542. printk(KERN_ERR "Sound: Hmm, DMA%d was left allocated - fixedn", i);
  543. sound_free_dma(i);
  544. }
  545. for (i = 0; i < sound_nblocks; i++)
  546. vfree(sound_mem_blocks[i]);
  547. }
  548. module_init(oss_init);
  549. module_exit(oss_cleanup);
  550. MODULE_LICENSE("GPL");
  551. int sound_alloc_dma(int chn, char *deviceID)
  552. {
  553. int err;
  554. if ((err = request_dma(chn, deviceID)) != 0)
  555. return err;
  556. dma_alloc_map[chn] = DMA_MAP_FREE;
  557. return 0;
  558. }
  559. int sound_open_dma(int chn, char *deviceID)
  560. {
  561. unsigned long   flags;
  562. if (!valid_dma(chn)) {
  563. printk(KERN_ERR "sound_open_dma: Invalid DMA channel %dn", chn);
  564. return 1;
  565. }
  566. save_flags(flags);
  567. cli();
  568. if (dma_alloc_map[chn] != DMA_MAP_FREE) {
  569. printk("sound_open_dma: DMA channel %d busy or not allocated (%d)n", chn, dma_alloc_map[chn]);
  570. restore_flags(flags);
  571. return 1;
  572. }
  573. dma_alloc_map[chn] = DMA_MAP_BUSY;
  574. restore_flags(flags);
  575. return 0;
  576. }
  577. void sound_free_dma(int chn)
  578. {
  579. if (dma_alloc_map[chn] == DMA_MAP_UNAVAIL) {
  580. /* printk( "sound_free_dma: Bad access to DMA channel %dn",  chn); */
  581. return;
  582. }
  583. free_dma(chn);
  584. dma_alloc_map[chn] = DMA_MAP_UNAVAIL;
  585. }
  586. void sound_close_dma(int chn)
  587. {
  588. unsigned long   flags;
  589. save_flags(flags);
  590. cli();
  591. if (dma_alloc_map[chn] != DMA_MAP_BUSY) {
  592. printk(KERN_ERR "sound_close_dma: Bad access to DMA channel %dn", chn);
  593. restore_flags(flags);
  594. return;
  595. }
  596. dma_alloc_map[chn] = DMA_MAP_FREE;
  597. restore_flags(flags);
  598. }
  599. static void do_sequencer_timer(unsigned long dummy)
  600. {
  601. sequencer_timer(0);
  602. }
  603. static struct timer_list seq_timer =
  604. {function: do_sequencer_timer};
  605. void request_sound_timer(int count)
  606. {
  607. extern unsigned long seq_time;
  608. if (count < 0) {
  609. seq_timer.expires = (-count) + jiffies;
  610. add_timer(&seq_timer);
  611. return;
  612. }
  613. count += seq_time;
  614. count -= jiffies;
  615. if (count < 1)
  616. count = 1;
  617. seq_timer.expires = (count) + jiffies;
  618. add_timer(&seq_timer);
  619. }
  620. void sound_stop_timer(void)
  621. {
  622. del_timer(&seq_timer);;
  623. }
  624. void conf_printf(char *name, struct address_info *hw_config)
  625. {
  626. #ifndef CONFIG_SOUND_TRACEINIT
  627. return;
  628. #else
  629. printk("<%s> at 0x%03x", name, hw_config->io_base);
  630. if (hw_config->irq)
  631. printk(" irq %d", (hw_config->irq > 0) ? hw_config->irq : -hw_config->irq);
  632. if (hw_config->dma != -1 || hw_config->dma2 != -1)
  633. {
  634. printk(" dma %d", hw_config->dma);
  635. if (hw_config->dma2 != -1)
  636. printk(",%d", hw_config->dma2);
  637. }
  638. printk("n");
  639. #endif
  640. }
  641. void conf_printf2(char *name, int base, int irq, int dma, int dma2)
  642. {
  643. #ifndef CONFIG_SOUND_TRACEINIT
  644. return;
  645. #else
  646. printk("<%s> at 0x%03x", name, base);
  647. if (irq)
  648. printk(" irq %d", (irq > 0) ? irq : -irq);
  649. if (dma != -1 || dma2 != -1)
  650. {
  651.   printk(" dma %d", dma);
  652.   if (dma2 != -1)
  653.   printk(",%d", dma2);
  654. }
  655. printk("n");
  656. #endif
  657. }