Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # ALSA generic drivers
  2. menu "Generic devices"
  3. depends on SND!=n
  4. config SND_PCSP
  5. tristate "PC-Speaker support (READ HELP!)"
  6. depends on PCSPKR_PLATFORM && X86_PC && HIGH_RES_TIMERS
  7. depends on INPUT
  8. depends on EXPERIMENTAL
  9. depends on SND
  10. select SND_PCM
  11. help
  12. If you don't have a sound card in your computer, you can include a
  13. driver for the PC speaker which allows it to act like a primitive
  14. sound card.
  15. This driver also replaces the pcspkr driver for beeps.
  16. You can compile this as a module which will be called snd-pcsp.
  17. WARNING: if you already have a soundcard, enabling this
  18. driver may lead to a problem. Namely, it may get loaded
  19. before the other sound driver of yours, making the
  20. pc-speaker a default sound device. Which is likely not
  21. what you want. To make this driver play nicely with other
  22. sound driver, you can add this into your /etc/modprobe.conf:
  23. options snd-pcsp index=2
  24. You don't need this driver if you only want your pc-speaker to beep.
  25. You don't need this driver if you have a tablet piezo beeper
  26. in your PC instead of the real speaker.
  27. Say N if you have a sound card.
  28. Say M if you don't.
  29. Say Y only if you really know what you do.
  30. config SND_MPU401_UART
  31. tristate
  32. select SND_RAWMIDI
  33. config SND_OPL3_LIB
  34. tristate
  35. select SND_TIMER
  36. select SND_HWDEP
  37. config SND_OPL4_LIB
  38. tristate
  39. select SND_TIMER
  40. select SND_HWDEP
  41. config SND_VX_LIB
  42. tristate
  43. select SND_HWDEP
  44. select SND_PCM
  45. config SND_AC97_CODEC
  46. tristate
  47. select SND_PCM
  48. select AC97_BUS
  49. select SND_VMASTER
  50. config SND_DUMMY
  51. tristate "Dummy (/dev/null) soundcard"
  52. depends on SND
  53. select SND_PCM
  54. help
  55. Say Y here to include the dummy driver. This driver does
  56. nothing, but emulates various mixer controls and PCM devices.
  57. You don't need this unless you're testing the hardware support
  58. of programs using the ALSA API.
  59. To compile this driver as a module, choose M here: the module
  60. will be called snd-dummy.
  61. config SND_VIRMIDI
  62. tristate "Virtual MIDI soundcard"
  63. depends on SND_SEQUENCER
  64. select SND_TIMER
  65. select SND_RAWMIDI
  66. help
  67. Say Y here to include the virtual MIDI driver. This driver
  68. allows to connect applications using raw MIDI devices to
  69. sequencer clients.
  70. If you don't know what MIDI is, say N here.
  71. To compile this driver as a module, choose M here: the module
  72. will be called snd-virmidi.
  73. config SND_MTPAV
  74. tristate "MOTU MidiTimePiece AV multiport MIDI"
  75. depends on SND
  76. select SND_RAWMIDI
  77. help
  78. To use a MOTU MidiTimePiece AV multiport MIDI adapter
  79. connected to the parallel port, say Y here and make sure that
  80. the standard parallel port driver isn't used for the port.
  81. To compile this driver as a module, choose M here: the module
  82. will be called snd-mtpav.
  83. config SND_MTS64
  84. tristate "ESI Miditerminal 4140 driver"
  85. depends on SND && PARPORT
  86. select SND_RAWMIDI
  87. help
  88. The ESI Miditerminal 4140 is a 4 In 4 Out MIDI Interface with
  89. additional SMPTE Timecode capabilities for the parallel port.
  90. Say 'Y' to include support for this device.
  91. To compile this driver as a module, chose 'M' here: the module
  92. will be called snd-mts64.
  93. config SND_SERIAL_U16550
  94. tristate "UART16550 serial MIDI driver"
  95. depends on SND
  96. select SND_RAWMIDI
  97. help
  98. To include support for MIDI serial port interfaces, say Y here
  99. and read <file:Documentation/sound/alsa/serial-u16550.txt>.
  100. This driver works with serial UARTs 16550 and better.
  101. This driver accesses the serial port hardware directly, so
  102. make sure that the standard serial driver isn't used or
  103. deactivated with setserial before loading this driver.
  104. To compile this driver as a module, choose M here: the module
  105. will be called snd-serial-u16550.
  106. config SND_MPU401
  107. tristate "Generic MPU-401 UART driver"
  108. depends on SND
  109. select SND_MPU401_UART
  110. help
  111. Say Y here to include support for MIDI ports compatible with
  112. the Roland MPU-401 interface in UART mode.
  113. To compile this driver as a module, choose M here: the module
  114. will be called snd-mpu401.
  115. config SND_PORTMAN2X4
  116. tristate "Portman 2x4 driver"
  117. depends on SND && PARPORT
  118. select SND_RAWMIDI
  119. help
  120. Say Y here to include support for Midiman Portman 2x4 parallel
  121. port MIDI device.
  122. To compile this driver as a module, choose M here: the module
  123. will be called snd-portman2x4.
  124. config SND_ML403_AC97CR
  125. tristate "Xilinx ML403 AC97 Controller Reference"
  126. depends on SND && XILINX_VIRTEX
  127. select SND_AC97_CODEC
  128. help
  129. Say Y here to include support for the
  130. opb_ac97_controller_ref_v1_00_a ip core found in Xilinx' ML403
  131. reference design.
  132. To compile this driver as a module, choose M here: the module
  133. will be called snd-ml403_ac97cr.
  134. endmenu