Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Gameport configuration
  4. #
  5. config GAMEPORT
  6. tristate "Gameport support"
  7. depends on !UML
  8. help
  9. Gameport support is for the standard 15-pin PC gameport. If you
  10. have a joystick, gamepad, gameport card, a soundcard with a gameport
  11. or anything else that uses the gameport, say Y or M here and also to
  12. at least one of the hardware specific drivers.
  13. For Ensoniq AudioPCI (ES1370), AudioPCI 97 (ES1371), ESS Solo1,
  14. S3 SonicVibes, Trident 4DWave, SiS7018, and ALi 5451 gameport
  15. support is provided by the sound drivers, so you won't need any
  16. from the below listed modules. You still need to say Y here.
  17. If unsure, say Y.
  18. To compile this driver as a module, choose M here: the
  19. module will be called gameport.
  20. if GAMEPORT
  21. config GAMEPORT_NS558
  22. tristate "Classic ISA and PnP gameport support"
  23. depends on ISA
  24. help
  25. Say Y here if you have an ISA or PnP gameport.
  26. If unsure, say Y.
  27. To compile this driver as a module, choose M here: the
  28. module will be called ns558.
  29. config GAMEPORT_L4
  30. tristate "PDPI Lightning 4 gamecard support"
  31. depends on ISA
  32. help
  33. Say Y here if you have a PDPI Lightning 4 gamecard.
  34. To compile this driver as a module, choose M here: the
  35. module will be called lightning.
  36. config GAMEPORT_EMU10K1
  37. tristate "SB Live and Audigy gameport support"
  38. depends on PCI
  39. help
  40. Say Y here if you have a SoundBlaster Live! or SoundBlaster
  41. Audigy card and want to use its gameport.
  42. To compile this driver as a module, choose M here: the
  43. module will be called emu10k1-gp.
  44. config GAMEPORT_FM801
  45. tristate "ForteMedia FM801 gameport support"
  46. depends on PCI && HAS_IOPORT
  47. help
  48. Say Y here if you have ForteMedia FM801 PCI audio controller
  49. (Abit AU10, Genius Sound Maker, HP Workstation zx2000,
  50. and others), and want to use its gameport.
  51. To compile this driver as a module, choose M here: the
  52. module will be called fm801-gp.
  53. endif