Kconfig 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. # drivers/sound/Config.in
  2. #
  3. # 18 Apr 1998, Michael Elizabeth Chastain, <mailto:mec@shout.net>
  4. # More hacking for modularisation.
  5. #
  6. # Prompt user for primary drivers.
  7. config SOUND_BCM_CS4297A
  8. tristate "Crystal Sound CS4297a (for Swarm)"
  9. depends on SIBYTE_SWARM
  10. help
  11. The BCM91250A has a Crystal CS4297a on synchronous serial
  12. port B (in addition to the DB-9 serial port). Say Y or M
  13. here to enable the sound chip instead of the UART. Also
  14. note that CONFIG_KGDB should not be enabled at the same
  15. time, since it also attempts to use this UART port.
  16. config SOUND_VWSND
  17. tristate "SGI Visual Workstation Sound"
  18. depends on X86_VISWS
  19. help
  20. Say Y or M if you have an SGI Visual Workstation and you want to be
  21. able to use its on-board audio. Read
  22. <file:Documentation/sound/oss/vwsnd> for more info on this driver's
  23. capabilities.
  24. config SOUND_AU1550_AC97
  25. tristate "Au1550/Au1200 AC97 Sound"
  26. depends on SOC_AU1550 || SOC_AU1200
  27. config SOUND_MSNDCLAS
  28. tristate "Support for Turtle Beach MultiSound Classic, Tahiti, Monterey"
  29. depends on (m || !STANDALONE) && ISA
  30. help
  31. Say M here if you have a Turtle Beach MultiSound Classic, Tahiti or
  32. Monterey (not for the Pinnacle or Fiji).
  33. See <file:Documentation/sound/oss/MultiSound> for important information
  34. about this driver. Note that it has been discontinued, but the
  35. Voyetra Turtle Beach knowledge base entry for it is still available
  36. at <http://www.turtlebeach.com/site/kb_ftp/790.asp>.
  37. comment "Compiled-in MSND Classic support requires firmware during compilation."
  38. depends on SOUND_PRIME && SOUND_MSNDCLAS=y
  39. config MSNDCLAS_HAVE_BOOT
  40. bool
  41. depends on SOUND_MSNDCLAS=y && !STANDALONE
  42. default y
  43. config MSNDCLAS_INIT_FILE
  44. string "Full pathname of MSNDINIT.BIN firmware file"
  45. depends on SOUND_MSNDCLAS
  46. default "/etc/sound/msndinit.bin"
  47. help
  48. The MultiSound cards have two firmware files which are required for
  49. operation, and are not currently included. These files can be
  50. obtained from Turtle Beach. See
  51. <file:Documentation/sound/oss/MultiSound> for information on how to
  52. obtain this.
  53. config MSNDCLAS_PERM_FILE
  54. string "Full pathname of MSNDPERM.BIN firmware file"
  55. depends on SOUND_MSNDCLAS
  56. default "/etc/sound/msndperm.bin"
  57. help
  58. The MultiSound cards have two firmware files which are required for
  59. operation, and are not currently included. These files can be
  60. obtained from Turtle Beach. See
  61. <file:Documentation/sound/oss/MultiSound> for information on how to
  62. obtain this.
  63. config MSNDCLAS_IRQ
  64. int "MSND Classic IRQ 5, 7, 9, 10, 11, 12"
  65. depends on SOUND_MSNDCLAS=y
  66. default "5"
  67. help
  68. Interrupt Request line for the MultiSound Classic and related cards.
  69. config MSNDCLAS_MEM
  70. hex "MSND Classic memory B0000, C8000, D0000, D8000, E0000, E8000"
  71. depends on SOUND_MSNDCLAS=y
  72. default "D0000"
  73. help
  74. Memory-mapped I/O base address for the MultiSound Classic and
  75. related cards.
  76. config MSNDCLAS_IO
  77. hex "MSND Classic I/O 210, 220, 230, 240, 250, 260, 290, 3E0"
  78. depends on SOUND_MSNDCLAS=y
  79. default "290"
  80. help
  81. I/O port address for the MultiSound Classic and related cards.
  82. config SOUND_MSNDPIN
  83. tristate "Support for Turtle Beach MultiSound Pinnacle, Fiji"
  84. depends on (m || !STANDALONE) && ISA
  85. help
  86. Say M here if you have a Turtle Beach MultiSound Pinnacle or Fiji.
  87. See <file:Documentation/sound/oss/MultiSound> for important information
  88. about this driver. Note that it has been discontinued, but the
  89. Voyetra Turtle Beach knowledge base entry for it is still available
  90. at <http://www.turtlebeach.com/site/kb_ftp/600.asp>.
  91. comment "Compiled-in MSND Pinnacle support requires firmware during compilation."
  92. depends on SOUND_PRIME && SOUND_MSNDPIN=y
  93. config MSNDPIN_HAVE_BOOT
  94. bool
  95. depends on SOUND_MSNDPIN=y
  96. default y
  97. config MSNDPIN_INIT_FILE
  98. string "Full pathname of PNDSPINI.BIN firmware file"
  99. depends on SOUND_MSNDPIN
  100. default "/etc/sound/pndspini.bin"
  101. help
  102. The MultiSound cards have two firmware files which are required
  103. for operation, and are not currently included. These files can be
  104. obtained from Turtle Beach. See
  105. <file:Documentation/sound/oss/MultiSound> for information on how to
  106. obtain this.
  107. config MSNDPIN_PERM_FILE
  108. string "Full pathname of PNDSPERM.BIN firmware file"
  109. depends on SOUND_MSNDPIN
  110. default "/etc/sound/pndsperm.bin"
  111. help
  112. The MultiSound cards have two firmware files which are required for
  113. operation, and are not currently included. These files can be
  114. obtained from Turtle Beach. See
  115. <file:Documentation/sound/oss/MultiSound> for information on how to
  116. obtain this.
  117. config MSNDPIN_IRQ
  118. int "MSND Pinnacle IRQ 5, 7, 9, 10, 11, 12"
  119. depends on SOUND_MSNDPIN=y
  120. default "5"
  121. help
  122. Interrupt request line for the primary synthesizer on MultiSound
  123. Pinnacle and Fiji sound cards.
  124. config MSNDPIN_MEM
  125. hex "MSND Pinnacle memory B0000, C8000, D0000, D8000, E0000, E8000"
  126. depends on SOUND_MSNDPIN=y
  127. default "D0000"
  128. help
  129. Memory-mapped I/O base address for the primary synthesizer on
  130. MultiSound Pinnacle and Fiji sound cards.
  131. config MSNDPIN_IO
  132. hex "MSND Pinnacle I/O 210, 220, 230, 240, 250, 260, 290, 3E0"
  133. depends on SOUND_MSNDPIN=y
  134. default "290"
  135. help
  136. Memory-mapped I/O base address for the primary synthesizer on
  137. MultiSound Pinnacle and Fiji sound cards.
  138. config MSNDPIN_DIGITAL
  139. bool "MSND Pinnacle has S/PDIF I/O"
  140. depends on SOUND_MSNDPIN=y
  141. help
  142. If you have the S/PDIF daughter board for the Pinnacle or Fiji,
  143. answer Y here; otherwise, say N. If you have this, you will be able
  144. to play and record from the S/PDIF port (digital signal). See
  145. <file:Documentation/sound/oss/MultiSound> for information on how to make
  146. use of this capability.
  147. config MSNDPIN_NONPNP
  148. bool "MSND Pinnacle non-PnP Mode"
  149. depends on SOUND_MSNDPIN=y
  150. help
  151. The Pinnacle and Fiji card resources can be configured either with
  152. PnP, or through a configuration port. Say Y here if your card is NOT
  153. in PnP mode. For the Pinnacle, configuration in non-PnP mode allows
  154. use of the IDE and joystick peripherals on the card as well; these
  155. do not show up when the card is in PnP mode. Specifying zero for any
  156. resource of a device will disable the device. If you are running the
  157. card in PnP mode, you must say N here and use isapnptools to
  158. configure the card's resources.
  159. comment "MSND Pinnacle DSP section will be configured to above parameters."
  160. depends on SOUND_MSNDPIN=y && MSNDPIN_NONPNP
  161. config MSNDPIN_CFG
  162. hex "MSND Pinnacle config port 250,260,270"
  163. depends on MSNDPIN_NONPNP
  164. default "250"
  165. help
  166. This is the port which the Pinnacle and Fiji uses to configure the
  167. card's resources when not in PnP mode. If your card is in PnP mode,
  168. then be sure to say N to the previous option, "MSND Pinnacle Non-PnP
  169. Mode".
  170. comment "Pinnacle-specific Device Configuration (0 disables)"
  171. depends on SOUND_MSNDPIN=y && MSNDPIN_NONPNP
  172. config MSNDPIN_MPU_IO
  173. hex "MSND Pinnacle MPU I/O (e.g. 330)"
  174. depends on MSNDPIN_NONPNP
  175. default "0"
  176. help
  177. Memory-mapped I/O base address for the Kurzweil daughterboard
  178. synthesizer on MultiSound Pinnacle and Fiji sound cards.
  179. config MSNDPIN_MPU_IRQ
  180. int "MSND Pinnacle MPU IRQ (e.g. 9)"
  181. depends on MSNDPIN_NONPNP
  182. default "0"
  183. help
  184. Interrupt request number for the Kurzweil daughterboard
  185. synthesizer on MultiSound Pinnacle and Fiji sound cards.
  186. config MSNDPIN_IDE_IO0
  187. hex "MSND Pinnacle IDE I/O 0 (e.g. 170)"
  188. depends on MSNDPIN_NONPNP
  189. default "0"
  190. help
  191. CD-ROM drive 0 memory-mapped I/O base address for the MultiSound
  192. Pinnacle and Fiji sound cards.
  193. config MSNDPIN_IDE_IO1
  194. hex "MSND Pinnacle IDE I/O 1 (e.g. 376)"
  195. depends on MSNDPIN_NONPNP
  196. default "0"
  197. help
  198. CD-ROM drive 1 memory-mapped I/O base address for the MultiSound
  199. Pinnacle and Fiji sound cards.
  200. config MSNDPIN_IDE_IRQ
  201. int "MSND Pinnacle IDE IRQ (e.g. 15)"
  202. depends on MSNDPIN_NONPNP
  203. default "0"
  204. help
  205. Interrupt request number for the IDE CD-ROM interface on the
  206. MultiSound Pinnacle and Fiji sound cards.
  207. config MSNDPIN_JOYSTICK_IO
  208. hex "MSND Pinnacle joystick I/O (e.g. 200)"
  209. depends on MSNDPIN_NONPNP
  210. default "0"
  211. help
  212. Memory-mapped I/O base address for the joystick port on MultiSound
  213. Pinnacle and Fiji sound cards.
  214. config MSND_FIFOSIZE
  215. int "MSND buffer size (kB)"
  216. depends on SOUND_MSNDPIN=y || SOUND_MSNDCLAS=y
  217. default "128"
  218. help
  219. Configures the size of each audio buffer, in kilobytes, for
  220. recording and playing in the MultiSound drivers (both the Classic
  221. and Pinnacle). Larger values reduce the chance of data overruns at
  222. the expense of overall latency. If unsure, use the default.
  223. menuconfig SOUND_OSS
  224. tristate "OSS sound modules"
  225. depends on ISA_DMA_API && VIRT_TO_BUS
  226. help
  227. OSS is the Open Sound System suite of sound card drivers. They make
  228. sound programming easier since they provide a common API. Say Y or
  229. M here (the module will be called sound) if you haven't found a
  230. driver for your sound card above, then pick your driver from the
  231. list below.
  232. if SOUND_OSS
  233. config SOUND_TRACEINIT
  234. bool "Verbose initialisation"
  235. help
  236. Verbose soundcard initialization -- affects the format of autoprobe
  237. and initialization messages at boot time.
  238. config SOUND_DMAP
  239. bool "Persistent DMA buffers"
  240. ---help---
  241. Linux can often have problems allocating DMA buffers for ISA sound
  242. cards on machines with more than 16MB of RAM. This is because ISA
  243. DMA buffers must exist below the 16MB boundary and it is quite
  244. possible that a large enough free block in this region cannot be
  245. found after the machine has been running for a while. If you say Y
  246. here the DMA buffers (64Kb) will be allocated at boot time and kept
  247. until the shutdown. This option is only useful if you said Y to
  248. "OSS sound modules", above. If you said M to "OSS sound modules"
  249. then you can get the persistent DMA buffer functionality by passing
  250. the command-line argument "dmabuf=1" to the sound module.
  251. Say Y unless you have 16MB or more RAM or a PCI sound card.
  252. config SOUND_SSCAPE
  253. tristate "Ensoniq SoundScape support"
  254. help
  255. Answer Y if you have a sound card based on the Ensoniq SoundScape
  256. chipset. Such cards are being manufactured at least by Ensoniq, Spea
  257. and Reveal (Reveal makes also other cards).
  258. If you compile the driver into the kernel, you have to add
  259. "sscape=<io>,<irq>,<dma>,<mpuio>,<mpuirq>" to the kernel command
  260. line.
  261. config SOUND_VMIDI
  262. tristate "Loopback MIDI device support"
  263. help
  264. Support for MIDI loopback on port 1 or 2.
  265. config SOUND_TRIX
  266. tristate "MediaTrix AudioTrix Pro support"
  267. help
  268. Answer Y if you have the AudioTriX Pro sound card manufactured
  269. by MediaTrix.
  270. config TRIX_HAVE_BOOT
  271. bool "Have TRXPRO.HEX firmware file"
  272. depends on SOUND_TRIX=y && !STANDALONE
  273. help
  274. The MediaTrix AudioTrix Pro has an on-board microcontroller which
  275. needs to be initialized by downloading the code from the file
  276. TRXPRO.HEX in the DOS driver directory. If you don't have the
  277. TRXPRO.HEX file handy you may skip this step. However, the SB and
  278. MPU-401 modes of AudioTrix Pro will not work without this file!
  279. config TRIX_BOOT_FILE
  280. string "Full pathname of TRXPRO.HEX firmware file"
  281. depends on TRIX_HAVE_BOOT
  282. default "/etc/sound/trxpro.hex"
  283. help
  284. Enter the full pathname of your TRXPRO.HEX file, starting from /.
  285. config SOUND_MSS
  286. tristate "Microsoft Sound System support"
  287. ---help---
  288. Again think carefully before answering Y to this question. It's
  289. safe to answer Y if you have the original Windows Sound System card
  290. made by Microsoft or Aztech SG 16 Pro (or NX16 Pro). Also you may
  291. say Y in case your card is NOT among these:
  292. ATI Stereo F/X, AdLib, Audio Excell DSP16, Cardinal DSP16,
  293. Ensoniq SoundScape (and compatibles made by Reveal and Spea),
  294. Gravis Ultrasound, Gravis Ultrasound ACE, Gravis Ultrasound Max,
  295. Gravis Ultrasound with 16 bit option, Logitech Sound Man 16,
  296. Logitech SoundMan Games, Logitech SoundMan Wave, MAD16 Pro (OPTi
  297. 82C929), Media Vision Jazz16, MediaTriX AudioTriX Pro, Microsoft
  298. Windows Sound System (MSS/WSS), Mozart (OAK OTI-601), Orchid
  299. SW32, Personal Sound System (PSS), Pro Audio Spectrum 16, Pro
  300. Audio Studio 16, Pro Sonic 16, Roland MPU-401 MIDI interface,
  301. Sound Blaster 1.0, Sound Blaster 16, Sound Blaster 16ASP, Sound
  302. Blaster 2.0, Sound Blaster AWE32, Sound Blaster Pro, TI TM4000M
  303. notebook, ThunderBoard, Turtle Beach Tropez, Yamaha FM
  304. synthesizers (OPL2, OPL3 and OPL4), 6850 UART MIDI Interface.
  305. For cards having native support in VoxWare, consult the card
  306. specific instructions in <file:Documentation/sound/oss/README.OSS>.
  307. Some drivers have their own MSS support and saying Y to this option
  308. will cause a conflict.
  309. If you compile the driver into the kernel, you have to add
  310. "ad1848=<io>,<irq>,<dma>,<dma2>[,<type>]" to the kernel command
  311. line.
  312. config SOUND_MPU401
  313. tristate "MPU-401 support (NOT for SB16)"
  314. ---help---
  315. Be careful with this question. The MPU401 interface is supported by
  316. all sound cards. However, some natively supported cards have their
  317. own driver for MPU401. Enabling this MPU401 option with these cards
  318. will cause a conflict. Also, enabling MPU401 on a system that
  319. doesn't really have a MPU401 could cause some trouble. If your card
  320. was in the list of supported cards, look at the card specific
  321. instructions in the <file:Documentation/sound/oss/README.OSS> file. It
  322. is safe to answer Y if you have a true MPU401 MIDI interface card.
  323. If you compile the driver into the kernel, you have to add
  324. "mpu401=<io>,<irq>" to the kernel command line.
  325. config SOUND_PAS
  326. tristate "ProAudioSpectrum 16 support"
  327. ---help---
  328. Answer Y only if you have a Pro Audio Spectrum 16, ProAudio Studio
  329. 16 or Logitech SoundMan 16 sound card. Answer N if you have some
  330. other card made by Media Vision or Logitech since those are not
  331. PAS16 compatible. Please read <file:Documentation/sound/oss/PAS16>.
  332. It is not necessary to add Sound Blaster support separately; it
  333. is included in PAS support.
  334. If you compile the driver into the kernel, you have to add
  335. "pas2=<io>,<irq>,<dma>,<dma2>,<sbio>,<sbirq>,<sbdma>,<sbdma2>
  336. to the kernel command line.
  337. config PAS_JOYSTICK
  338. bool "Enable PAS16 joystick port"
  339. depends on SOUND_PAS=y
  340. help
  341. Say Y here to enable the Pro Audio Spectrum 16's auxiliary joystick
  342. port.
  343. config SOUND_PSS
  344. tristate "PSS (AD1848, ADSP-2115, ESC614) support"
  345. help
  346. Answer Y or M if you have an Orchid SW32, Cardinal DSP16, Beethoven
  347. ADSP-16 or some other card based on the PSS chipset (AD1848 codec +
  348. ADSP-2115 DSP chip + Echo ESC614 ASIC CHIP). For more information on
  349. how to compile it into the kernel or as a module see the file
  350. <file:Documentation/sound/oss/PSS>.
  351. If you compile the driver into the kernel, you have to add
  352. "pss=<io>,<mssio>,<mssirq>,<mssdma>,<mpuio>,<mpuirq>" to the kernel
  353. command line.
  354. config PSS_MIXER
  355. bool "Enable PSS mixer (Beethoven ADSP-16 and other compatible)"
  356. depends on SOUND_PSS
  357. help
  358. Answer Y for Beethoven ADSP-16. You may try to say Y also for other
  359. cards if they have master volume, bass, treble, and you can't
  360. control it under Linux. If you answer N for Beethoven ADSP-16, you
  361. can't control master volume, bass, treble and synth volume.
  362. If you said M to "PSS support" above, you may enable or disable this
  363. PSS mixer with the module parameter pss_mixer. For more information
  364. see the file <file:Documentation/sound/oss/PSS>.
  365. config PSS_HAVE_BOOT
  366. bool "Have DSPxxx.LD firmware file"
  367. depends on SOUND_PSS && !STANDALONE
  368. help
  369. If you have the DSPxxx.LD file or SYNTH.LD file for you card, say Y
  370. to include this file. Without this file the synth device (OPL) may
  371. not work.
  372. config PSS_BOOT_FILE
  373. string "Full pathname of DSPxxx.LD firmware file"
  374. depends on PSS_HAVE_BOOT
  375. default "/etc/sound/dsp001.ld"
  376. help
  377. Enter the full pathname of your DSPxxx.LD file or SYNTH.LD file,
  378. starting from /.
  379. config SOUND_SB
  380. tristate "100% Sound Blaster compatibles (SB16/32/64, ESS, Jazz16) support"
  381. ---help---
  382. Answer Y if you have an original Sound Blaster card made by Creative
  383. Labs or a 100% hardware compatible clone (like the Thunderboard or
  384. SM Games). For an unknown card you may answer Y if the card claims
  385. to be Sound Blaster-compatible.
  386. Please read the file <file:Documentation/sound/oss/Soundblaster>.
  387. You should also say Y here for cards based on the Avance Logic
  388. ALS-007 and ALS-1X0 chips (read <file:Documentation/sound/oss/ALS>) and
  389. for cards based on ESS chips (read
  390. <file:Documentation/sound/oss/ESS1868> and
  391. <file:Documentation/sound/oss/ESS>). If you have an SB AWE 32 or SB AWE
  392. 64, say Y here and also to "AWE32 synth" below and read
  393. <file:Documentation/sound/oss/INSTALL.awe>. If you have an IBM Mwave
  394. card, say Y here and read <file:Documentation/sound/oss/mwave>.
  395. If you compile the driver into the kernel and don't want to use
  396. isapnp, you have to add "sb=<io>,<irq>,<dma>,<dma2>" to the kernel
  397. command line.
  398. You can say M here to compile this driver as a module; the module is
  399. called sb.
  400. config SOUND_YM3812
  401. tristate "Yamaha FM synthesizer (YM3812/OPL-3) support"
  402. ---help---
  403. Answer Y if your card has a FM chip made by Yamaha (OPL2/OPL3/OPL4).
  404. Answering Y is usually a safe and recommended choice, however some
  405. cards may have software (TSR) FM emulation. Enabling FM support with
  406. these cards may cause trouble (I don't currently know of any such
  407. cards, however). Please read the file
  408. <file:Documentation/sound/oss/OPL3> if your card has an OPL3 chip.
  409. If you compile the driver into the kernel, you have to add
  410. "opl3=<io>" to the kernel command line.
  411. If unsure, say Y.
  412. config SOUND_UART6850
  413. tristate "6850 UART support"
  414. help
  415. This option enables support for MIDI interfaces based on the 6850
  416. UART chip. This interface is rarely found on sound cards. It's safe
  417. to answer N to this question.
  418. If you compile the driver into the kernel, you have to add
  419. "uart6850=<io>,<irq>" to the kernel command line.
  420. config SOUND_AEDSP16
  421. tristate "Gallant Audio Cards (SC-6000 and SC-6600 based)"
  422. ---help---
  423. Answer Y if you have a Gallant's Audio Excel DSP 16 card. This
  424. driver supports Audio Excel DSP 16 but not the III nor PnP versions
  425. of this card.
  426. The Gallant's Audio Excel DSP 16 card can emulate either an SBPro or
  427. a Microsoft Sound System card, so you should have said Y to either
  428. "100% Sound Blaster compatibles (SB16/32/64, ESS, Jazz16) support"
  429. or "Microsoft Sound System support", above, and you need to answer
  430. the "MSS emulation" and "SBPro emulation" questions below
  431. accordingly. You should say Y to one and only one of these two
  432. questions.
  433. Read the <file:Documentation/sound/oss/README.OSS> file and the head of
  434. <file:sound/oss/aedsp16.c> as well as
  435. <file:Documentation/sound/oss/AudioExcelDSP16> to get more information
  436. about this driver and its configuration.
  437. config SC6600
  438. bool "SC-6600 based audio cards (new Audio Excel DSP 16)"
  439. depends on SOUND_AEDSP16
  440. help
  441. The SC6600 is the new version of DSP mounted on the Audio Excel DSP
  442. 16 cards. Find in the manual the FCC ID of your audio card and
  443. answer Y if you have an SC6600 DSP.
  444. config SC6600_JOY
  445. bool "Activate SC-6600 Joystick Interface"
  446. depends on SC6600
  447. help
  448. Say Y here in order to use the joystick interface of the Audio Excel
  449. DSP 16 card.
  450. config SC6600_CDROM
  451. int "SC-6600 CDROM Interface (4=None, 3=IDE, 1=Panasonic, 0=?Sony?)"
  452. depends on SC6600
  453. default "4"
  454. help
  455. This is used to activate the CD-ROM interface of the Audio Excel
  456. DSP 16 card. Enter: 0 for Sony, 1 for Panasonic, 2 for IDE, 4 for no
  457. CD-ROM present.
  458. config SC6600_CDROMBASE
  459. hex "SC-6600 CDROM Interface I/O Address"
  460. depends on SC6600
  461. default "0"
  462. help
  463. Base I/O port address for the CD-ROM interface of the Audio Excel
  464. DSP 16 card.
  465. config SOUND_VIDC
  466. tristate "VIDC 16-bit sound"
  467. depends on ARM && (ARCH_ACORN || ARCH_CLPS7500)
  468. help
  469. 16-bit support for the VIDC onboard sound hardware found on Acorn
  470. machines.
  471. config SOUND_WAVEARTIST
  472. tristate "Netwinder WaveArtist"
  473. depends on ARM && ARCH_NETWINDER
  474. help
  475. Say Y here to include support for the Rockwell WaveArtist sound
  476. system. This driver is mainly for the NetWinder.
  477. config SOUND_KAHLUA
  478. tristate "XpressAudio Sound Blaster emulation"
  479. depends on SOUND_SB
  480. endif # SOUND_OSS
  481. config SOUND_SH_DAC_AUDIO
  482. tristate "SuperH DAC audio support"
  483. depends on CPU_SH3
  484. config SOUND_SH_DAC_AUDIO_CHANNEL
  485. int "DAC channel"
  486. default "1"
  487. depends on SOUND_SH_DAC_AUDIO