README.modules
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Building a modular sound driver
  2. ================================
  3.   The following information is current as of linux-2.1.85. Check the other
  4. readme files, especially README.OSS, for information not specific to
  5. making sound modular.
  6.   First, configure your kernel. This is an idea of what you should be
  7. setting in the sound section:
  8. <M> Sound card support 
  9. <M> 100% Sound Blaster compatibles (SB16/32/64, ESS, Jazz16) support 
  10.   I have SoundBlaster. Select your card from the list.
  11. <M> Generic OPL2/OPL3 FM synthesizer support 
  12. <M> FM synthesizer (YM3812/OPL-3) support 
  13.   If you don't set these, you will probably find you can play .wav files
  14. but not .midi. As the help for them says, set them unless you know your
  15. card does not use one of these chips for FM support.
  16.   Once you are configured, make zlilo, modules, modules_install; reboot.
  17. Note that it is no longer necessary or possible to configure sound in the
  18. drivers/sound dir. Now one simply configures and makes one's kernel and
  19. modules in the usual way.
  20.  Then, add to your /etc/modules.conf something like:
  21. alias char-major-14 sb
  22. post-install sb /sbin/modprobe "-k" "adlib_card"
  23. options sb io=0x220 irq=7 dma=1 dma16=5 mpu_io=0x330
  24. options adlib_card io=0x388     # FM synthesizer
  25.  Alternatively, if you have compiled in kernel level ISAPnP support:
  26. alias char-major-14 sb
  27. post-install sb /sbin/modprobe "-k" "adlib_card"
  28. options adlib_card io=0x388
  29.   The effect of this is that the sound driver and all necessary bits and
  30. pieces autoload on demand, assuming you use kerneld (a sound choice) and
  31. autoclean when not in use. Also, options for the device drivers are
  32. set. They will not work without them. Change as appropriate for your card.
  33. If you are not yet using the very cool kerneld, you will have to "modprobe
  34. -k sb" yourself to get things going. Eventually things may be fixed so
  35. that this kludgery is not necessary; for the time being, it seems to work
  36. well.
  37.   Replace 'sb' with the driver for your card, and give it the right
  38. options. To find the filename of the driver, look in
  39. /lib/modules/<kernel-version>/misc. Mine looks like:
  40. adlib_card.o # This is the generic OPLx driver
  41. opl3.o # The OPL3 driver
  42. sb.o # <<The SoundBlaster driver. Yours may differ.>>
  43. sound.o # The sound driver
  44. uart401.o # Used by sb, maybe other cards
  45.  Whichever card you have, try feeding it the options that would be the
  46. default if you were making the driver wired, not as modules. You can look
  47. at the init_module() code for the card to see what args are expected.
  48.  Note that at present there is no way to configure the io, irq and other
  49. parameters for the modular drivers as one does for the wired drivers.. One
  50. needs to pass the modules the necessary parameters as arguments, either
  51. with /etc/modules.conf or with command-line args to modprobe, e.g.
  52. modprobe -k sb io=0x220 irq=7 dma=1 dma16=5 mpu_io=0x330
  53. modprobe -k adlib_card io=0x388
  54.  recommend using /etc/modules.conf.
  55. Persistent DMA Buffers:
  56. The sound modules normally allocate DMA buffers during open() and
  57. deallocate them during close(). Linux can often have problems allocating
  58. DMA buffers for ISA cards on machines with more than 16MB RAM. This is
  59. because ISA DMA buffers must exist below the 16MB boundary and it is quite
  60. possible that we can't find a large enough free block in this region after
  61. the machine has been running for any amount of time. The way to avoid this
  62. problem is to allocate the DMA buffers during module load and deallocate
  63. them when the module is unloaded. For this to be effective we need to load
  64. the sound modules right after the kernel boots, either manually or by an
  65. init script, and keep them around until we shut down. This is a little
  66. wasteful of RAM, but it guarantees that sound always works.
  67. To make the sound driver use persistent DMA buffers we need to pass the
  68. sound.o module a "dmabuf=1" command-line argument. This is normally done
  69. in /etc/modules.conf like so:
  70. options sound dmabuf=1
  71. If you have 16MB or less RAM or a PCI sound card, this is wasteful and
  72. unnecessary. It is possible that machine with 16MB or less RAM will find
  73. this option useful, but if your machine is so memory-starved that it
  74. cannot find a 64K block free, you will be wasting even more RAM by keeping
  75. the sound modules loaded and the DMA buffers allocated when they are not
  76. needed. The proper solution is to upgrade your RAM. But you do also have
  77. this improper solution as well. Use it wisely.
  78.   I'm afraid I know nothing about anything but my setup, being more of a
  79. text-mode guy anyway. If you have options for other cards or other helpful
  80. hints, send them to me, Jim Bray, jb@as220.org, http://as220.org/jb.