Kconfig 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. # Parport configuration.
  6. #
  7. menu "Parallel port support"
  8. config PARPORT
  9. tristate "Parallel port support"
  10. ---help---
  11. If you want to use devices connected to your machine's parallel port
  12. (the connector at the computer with 25 holes), e.g. printer, ZIP
  13. drive, PLIP link (Parallel Line Internet Protocol is mainly used to
  14. create a mini network by connecting the parallel ports of two local
  15. machines) etc., then you need to say Y here; please read
  16. <file:Documentation/parport.txt> and
  17. <file:drivers/parport/BUGS-parport>.
  18. For extensive information about drivers for many devices attaching
  19. to the parallel port see <http://www.torque.net/linux-pp.html> on
  20. the WWW.
  21. It is possible to share a single parallel port among several devices
  22. and it is safe to compile all the corresponding drivers into the
  23. kernel. To compile parallel port support as a module, choose M here:
  24. the module will be called parport.
  25. If you have more than one parallel port and want to specify which
  26. port and IRQ to be used by this driver at module load time, take a
  27. look at <file:Documentation/parport.txt>.
  28. If unsure, say Y.
  29. config PARPORT_PC
  30. tristate "PC-style hardware"
  31. depends on PARPORT && (!SPARC64 || PCI) && !SPARC32 && !M32R && !FRV
  32. ---help---
  33. You should say Y here if you have a PC-style parallel port. All
  34. IBM PC compatible computers and some Alphas have PC-style
  35. parallel ports. PA-RISC owners should only say Y here if they
  36. have a SuperIO parallel port.
  37. To compile this driver as a module, choose M here: the
  38. module will be called parport_pc.
  39. If unsure, say Y.
  40. config PARPORT_SERIAL
  41. tristate "Multi-IO cards (parallel and serial)"
  42. depends on SERIAL_8250 && PARPORT_PC && PCI
  43. help
  44. This adds support for multi-IO PCI cards that have parallel and
  45. serial ports. You should say Y or M here. If you say M, the module
  46. will be called parport_serial.
  47. config PARPORT_PC_FIFO
  48. bool "Use FIFO/DMA if available (EXPERIMENTAL)"
  49. depends on PARPORT_PC && EXPERIMENTAL
  50. help
  51. Many parallel port chipsets provide hardware that can speed up
  52. printing. Say Y here if you want to take advantage of that.
  53. As well as actually having a FIFO, or DMA capability, the kernel
  54. will need to know which IRQ the parallel port has. By default,
  55. parallel port interrupts will not be used, and so neither will the
  56. FIFO. See <file:Documentation/parport.txt> to find out how to
  57. specify which IRQ/DMA to use.
  58. config PARPORT_PC_SUPERIO
  59. bool "SuperIO chipset support (EXPERIMENTAL)"
  60. depends on PARPORT_PC && EXPERIMENTAL
  61. help
  62. Saying Y here enables some probes for Super-IO chipsets in order to
  63. find out things like base addresses, IRQ lines and DMA channels. It
  64. is safe to say N.
  65. config PARPORT_PC_PCMCIA
  66. tristate "Support for PCMCIA management for PC-style ports"
  67. depends on PCMCIA && PARPORT_PC
  68. help
  69. Say Y here if you need PCMCIA support for your PC-style parallel
  70. ports. If unsure, say N.
  71. config PARPORT_NOT_PC
  72. bool
  73. config PARPORT_ARC
  74. tristate "Archimedes hardware"
  75. depends on ARM && PARPORT
  76. select PARPORT_NOT_PC
  77. config PARPORT_IP32
  78. tristate "SGI IP32 builtin port (EXPERIMENTAL)"
  79. depends on SGI_IP32 && PARPORT && EXPERIMENTAL
  80. select PARPORT_NOT_PC
  81. help
  82. Say Y here if you need support for the parallel port on
  83. SGI O2 machines. This code is also available as a module (say M),
  84. called parport_ip32. If in doubt, saying N is the safe plan.
  85. config PARPORT_AMIGA
  86. tristate "Amiga builtin port"
  87. depends on AMIGA && PARPORT
  88. select PARPORT_NOT_PC
  89. help
  90. Say Y here if you need support for the parallel port hardware on
  91. Amiga machines. This code is also available as a module (say M),
  92. called parport_amiga. If in doubt, saying N is the safe plan.
  93. config PARPORT_MFC3
  94. tristate "Multiface III parallel port"
  95. depends on ZORRO && PARPORT
  96. select PARPORT_NOT_PC
  97. help
  98. Say Y here if you need parallel port support for the MFC3 card.
  99. This code is also available as a module (say M), called
  100. parport_mfc3. If in doubt, saying N is the safe plan.
  101. config PARPORT_ATARI
  102. tristate "Atari hardware"
  103. depends on ATARI && PARPORT
  104. select PARPORT_NOT_PC
  105. help
  106. Say Y here if you need support for the parallel port hardware on
  107. Atari machines. This code is also available as a module (say M),
  108. called parport_atari. If in doubt, saying N is the safe plan.
  109. config PARPORT_GSC
  110. tristate
  111. default GSC
  112. depends on PARPORT
  113. select PARPORT_NOT_PC
  114. config PARPORT_SUNBPP
  115. tristate "Sparc hardware (EXPERIMENTAL)"
  116. depends on SBUS && PARPORT && EXPERIMENTAL
  117. select PARPORT_NOT_PC
  118. help
  119. This driver provides support for the bidirectional parallel port
  120. found on many Sun machines. Note that many of the newer Ultras
  121. actually have pc style hardware instead.
  122. config PARPORT_1284
  123. bool "IEEE 1284 transfer modes"
  124. depends on PARPORT
  125. help
  126. If you have a printer that supports status readback or device ID, or
  127. want to use a device that uses enhanced parallel port transfer modes
  128. such as EPP and ECP, say Y here to enable advanced IEEE 1284
  129. transfer modes. Also say Y if you want device ID information to
  130. appear in /proc/sys/dev/parport/*/autoprobe*. It is safe to say N.
  131. endmenu