ESS1868 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Documentation for the ESS1868F AudioDrive PnP sound card
  2. The ESS1868 sound card is a PnP ESS1688-compatible 16-bit sound card.
  3. It should be automatically detected by the Linux Kernel isapnp support when you
  4. load the sb.o module. Otherwise you should take care of:
  5. * The ESS1868 does not allow use of a 16-bit DMA, thus DMA 0, 1, 2, and 3
  6. may only be used.
  7. * isapnptools version 1.14 does work with ESS1868. Earlier versions might
  8. not.
  9. * Sound support MUST be compiled as MODULES, not statically linked
  10. into the kernel.
  11. NOTE: this is only needed when not using the kernel isapnp support!
  12. For configuring the sound card's I/O addresses, IRQ and DMA, here is a
  13. sample copy of the isapnp.conf directives regarding the ESS1868:
  14. (CONFIGURE ESS1868/-1 (LD 1
  15. (IO 0 (BASE 0x0220))
  16. (IO 1 (BASE 0x0388))
  17. (IO 2 (BASE 0x0330))
  18. (DMA 0 (CHANNEL 1))
  19. (INT 0 (IRQ 5 (MODE +E)))
  20. (ACT Y)
  21. ))
  22. (for a full working isapnp.conf file, remember the
  23. (ISOLATE)
  24. (IDENTIFY *)
  25. at the beginning and the
  26. (WAITFORKEY)
  27. at the end.)
  28. In this setup, the main card I/O is 0x0220, FM synthesizer is 0x0388, and
  29. the MPU-401 MIDI port is located at 0x0330. IRQ is IRQ 5, DMA is channel 1.
  30. After configuring the sound card via isapnp, to use the card you must load
  31. the sound modules with the proper I/O information. Here is my setup:
  32. # ESS1868F AudioDrive initialization
  33. /sbin/modprobe sound
  34. /sbin/insmod uart401
  35. /sbin/insmod sb io=0x220 irq=5 dma=1 dma16=-1
  36. /sbin/insmod mpu401 io=0x330
  37. /sbin/insmod opl3 io=0x388
  38. /sbin/insmod v_midi
  39. opl3 is the FM synthesizer
  40. /sbin/insmod opl3 io=0x388