Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. config SND_DUMMY
  50. tristate "Dummy (/dev/null) soundcard"
  51. depends on SND
  52. select SND_PCM
  53. help
  54. Say Y here to include the dummy driver. This driver does
  55. nothing, but emulates various mixer controls and PCM devices.
  56. You don't need this unless you're testing the hardware support
  57. of programs using the ALSA API.
  58. To compile this driver as a module, choose M here: the module
  59. will be called snd-dummy.
  60. config SND_VIRMIDI
  61. tristate "Virtual MIDI soundcard"
  62. depends on SND_SEQUENCER
  63. select SND_TIMER
  64. select SND_RAWMIDI
  65. help
  66. Say Y here to include the virtual MIDI driver. This driver
  67. allows to connect applications using raw MIDI devices to
  68. sequencer clients.
  69. If you don't know what MIDI is, say N here.
  70. To compile this driver as a module, choose M here: the module
  71. will be called snd-virmidi.
  72. config SND_MTPAV
  73. tristate "MOTU MidiTimePiece AV multiport MIDI"
  74. depends on SND
  75. select SND_RAWMIDI
  76. help
  77. To use a MOTU MidiTimePiece AV multiport MIDI adapter
  78. connected to the parallel port, say Y here and make sure that
  79. the standard parallel port driver isn't used for the port.
  80. To compile this driver as a module, choose M here: the module
  81. will be called snd-mtpav.
  82. config SND_MTS64
  83. tristate "ESI Miditerminal 4140 driver"
  84. depends on SND && PARPORT
  85. select SND_RAWMIDI
  86. help
  87. The ESI Miditerminal 4140 is a 4 In 4 Out MIDI Interface with
  88. additional SMPTE Timecode capabilities for the parallel port.
  89. Say 'Y' to include support for this device.
  90. To compile this driver as a module, chose 'M' here: the module
  91. will be called snd-mts64.
  92. config SND_SERIAL_U16550
  93. tristate "UART16550 serial MIDI driver"
  94. depends on SND
  95. select SND_RAWMIDI
  96. help
  97. To include support for MIDI serial port interfaces, say Y here
  98. and read <file:Documentation/sound/alsa/serial-u16550.txt>.
  99. This driver works with serial UARTs 16550 and better.
  100. This driver accesses the serial port hardware directly, so
  101. make sure that the standard serial driver isn't used or
  102. deactivated with setserial before loading this driver.
  103. To compile this driver as a module, choose M here: the module
  104. will be called snd-serial-u16550.
  105. config SND_MPU401
  106. tristate "Generic MPU-401 UART driver"
  107. depends on SND
  108. select SND_MPU401_UART
  109. help
  110. Say Y here to include support for MIDI ports compatible with
  111. the Roland MPU-401 interface in UART mode.
  112. To compile this driver as a module, choose M here: the module
  113. will be called snd-mpu401.
  114. config SND_PORTMAN2X4
  115. tristate "Portman 2x4 driver"
  116. depends on SND && PARPORT
  117. select SND_RAWMIDI
  118. help
  119. Say Y here to include support for Midiman Portman 2x4 parallel
  120. port MIDI device.
  121. To compile this driver as a module, choose M here: the module
  122. will be called snd-portman2x4.
  123. config SND_ML403_AC97CR
  124. tristate "Xilinx ML403 AC97 Controller Reference"
  125. depends on SND && XILINX_VIRTEX
  126. select SND_AC97_CODEC
  127. help
  128. Say Y here to include support for the
  129. opb_ac97_controller_ref_v1_00_a ip core found in Xilinx' ML403
  130. reference design.
  131. To compile this driver as a module, choose M here: the module
  132. will be called snd-ml403_ac97cr.
  133. endmenu