Kconfig 4.6 KB

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