Kconfig 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. menu "Macintosh device drivers"
  2. depends on PPC || MAC
  3. config ADB
  4. bool "Apple Desktop Bus (ADB) support"
  5. depends on MAC || (PPC_PMAC && PPC32)
  6. help
  7. Apple Desktop Bus (ADB) support is for support of devices which
  8. are connected to an ADB port. ADB devices tend to have 4 pins.
  9. If you have an Apple Macintosh prior to the iMac, an iBook or
  10. PowerBook, or a "Blue and White G3", you probably want to say Y
  11. here. Otherwise say N.
  12. config ADB_MACII
  13. bool "Include Mac II ADB driver"
  14. depends on ADB && MAC
  15. help
  16. Say Y here if want your kernel to support Macintosh systems that use
  17. the Mac II style ADB. This includes the II, IIx, IIcx, SE/30, IIci,
  18. Quadra 610, Quadra 650, Quadra 700, Quadra 800, Centris 610 and
  19. Centris 650.
  20. config ADB_MACIISI
  21. bool "Include Mac IIsi ADB driver"
  22. depends on ADB && MAC
  23. help
  24. Say Y here if want your kernel to support Macintosh systems that use
  25. the Mac IIsi style ADB. This includes the IIsi, IIvi, IIvx, Classic
  26. II, LC, LC II, LC III, Performa 460, and the Performa 600.
  27. config ADB_IOP
  28. bool "Include IOP (IIfx/Quadra 9x0) ADB driver"
  29. depends on ADB && MAC
  30. help
  31. The I/O Processor (IOP) is an Apple custom IC designed to provide
  32. intelligent support for I/O controllers. It is described at
  33. <http://www.angelfire.com/ca2/dev68k/iopdesc.html> to enable direct
  34. support for it, say 'Y' here.
  35. config ADB_PMU68K
  36. bool "Include PMU (Powerbook) ADB driver"
  37. depends on ADB && MAC
  38. help
  39. Say Y here if want your kernel to support the m68k based Powerbooks.
  40. This includes the PowerBook 140, PowerBook 145, PowerBook 150,
  41. PowerBook 160, PowerBook 165, PowerBook 165c, PowerBook 170,
  42. PowerBook 180, PowerBook, 180c, PowerBook 190cs, PowerBook 520,
  43. PowerBook Duo 210, PowerBook Duo 230, PowerBook Duo 250,
  44. PowerBook Duo 270c, PowerBook Duo 280 and PowerBook Duo 280c.
  45. # we want to change this to something like CONFIG_SYSCTRL_CUDA/PMU
  46. config ADB_CUDA
  47. bool "Support for CUDA based Macs and PowerMacs"
  48. depends on (ADB || PPC_PMAC) && !PPC_PMAC64
  49. help
  50. This provides support for CUDA based Macintosh and Power Macintosh
  51. systems. This includes many m68k based Macs (Color Classic, Mac TV,
  52. Performa 475, Performa 520, Performa 550, Performa 575,
  53. Performa 588, Quadra 605, Quadra 630, Quadra/Centris 660AV, and
  54. Quadra 840AV), most OldWorld PowerMacs, the first generation iMacs,
  55. the Blue&White G3 and the "Yikes" G4 (PCI Graphics). All later
  56. models should use CONFIG_ADB_PMU instead. It is safe to say Y here
  57. even if your machine doesn't have a CUDA.
  58. If unsure say Y.
  59. config ADB_PMU
  60. bool "Support for PMU based PowerMacs"
  61. depends on PPC_PMAC
  62. help
  63. On PowerBooks, iBooks, and recent iMacs and Power Macintoshes, the
  64. PMU is an embedded microprocessor whose primary function is to
  65. control system power, and battery charging on the portable models.
  66. The PMU also controls the ADB (Apple Desktop Bus) which connects to
  67. the keyboard and mouse on some machines, as well as the non-volatile
  68. RAM and the RTC (real time clock) chip. Say Y to enable support for
  69. this device; you should do so if your machine is one of those
  70. mentioned above.
  71. config PMAC_SMU
  72. bool "Support for SMU based PowerMacs"
  73. depends on PPC_PMAC64
  74. help
  75. This option adds support for the newer G5 iMacs and PowerMacs based
  76. on the "SMU" system control chip which replaces the old PMU.
  77. If you don't know, say Y.
  78. config PMAC_APM_EMU
  79. tristate "APM emulation"
  80. depends on PPC_PMAC && PPC32 && PM
  81. config PMAC_MEDIABAY
  82. bool "Support PowerBook hotswap media bay"
  83. depends on PPC_PMAC && PPC32
  84. help
  85. This option adds support for older PowerBook's hotswap media bay
  86. that can contains batteries, floppy drives, or IDE devices. PCI
  87. devices are not fully supported in the bay as I never had one to
  88. try with
  89. # made a separate option since backlight may end up beeing used
  90. # on non-powerbook machines (but only on PMU based ones AFAIK)
  91. config PMAC_BACKLIGHT
  92. bool "Backlight control for LCD screens"
  93. depends on ADB_PMU && (BROKEN || !PPC64)
  94. help
  95. Say Y here to build in code to manage the LCD backlight on a
  96. Macintosh PowerBook. With this code, the backlight will be turned
  97. on and off appropriately on power-management and lid-open/lid-closed
  98. events; also, the PowerBook button device will be enabled so you can
  99. change the screen brightness.
  100. config ADB_MACIO
  101. bool "Include MacIO (CHRP) ADB driver"
  102. depends on ADB && PPC_CHRP && !PPC_PMAC64
  103. help
  104. Say Y here to include direct support for the ADB controller in the
  105. Hydra chip used on PowerPC Macintoshes of the CHRP type. (The Hydra
  106. also includes a MESH II SCSI controller, DBDMA controller, VIA chip,
  107. OpenPIC controller and two RS422/Geoports.)
  108. config INPUT_ADBHID
  109. bool "Support for ADB input devices (keyboard, mice, ...)"
  110. depends on ADB && INPUT=y
  111. help
  112. Say Y here if you want to have ADB (Apple Desktop Bus) HID devices
  113. such as keyboards, mice, joysticks, trackpads or graphic tablets
  114. handled by the input layer. If you say Y here, make sure to say Y to
  115. the corresponding drivers "Keyboard support" (CONFIG_INPUT_KEYBDEV),
  116. "Mouse Support" (CONFIG_INPUT_MOUSEDEV) and "Event interface
  117. support" (CONFIG_INPUT_EVDEV) as well.
  118. If unsure, say Y.
  119. config MAC_EMUMOUSEBTN
  120. bool "Support for mouse button 2+3 emulation"
  121. depends on INPUT_ADBHID
  122. help
  123. This provides generic support for emulating the 2nd and 3rd mouse
  124. button with keypresses. If you say Y here, the emulation is still
  125. disabled by default. The emulation is controlled by these sysctl
  126. entries:
  127. /proc/sys/dev/mac_hid/mouse_button_emulation
  128. /proc/sys/dev/mac_hid/mouse_button2_keycode
  129. /proc/sys/dev/mac_hid/mouse_button3_keycode
  130. If you have an Apple machine with a 1-button mouse, say Y here.
  131. config THERM_WINDTUNNEL
  132. tristate "Support for thermal management on Windtunnel G4s"
  133. depends on I2C && I2C_POWERMAC && PPC_PMAC && !PPC_PMAC64
  134. help
  135. This driver provides some thermostat and fan control for the desktop
  136. G4 "Windtunnel"
  137. config THERM_ADT746X
  138. tristate "Support for thermal mgmnt on laptops with ADT 746x chipset"
  139. depends on I2C && I2C_POWERMAC && PPC_PMAC && !PPC_PMAC64
  140. help
  141. This driver provides some thermostat and fan control for the
  142. iBook G4, and the ATI based aluminium PowerBooks, allowing slighlty
  143. better fan behaviour by default, and some manual control.
  144. config THERM_PM72
  145. tristate "Support for thermal management on PowerMac G5"
  146. depends on I2C && I2C_POWERMAC && PPC_PMAC64
  147. help
  148. This driver provides thermostat and fan control for the desktop
  149. G5 machines.
  150. config WINDFARM
  151. tristate "New PowerMac thermal control infrastructure"
  152. config WINDFARM_PM81
  153. tristate "Support for thermal management on iMac G5"
  154. depends on WINDFARM && I2C && CPU_FREQ_PMAC64 && PMAC_SMU
  155. select I2C_POWERMAC
  156. help
  157. This driver provides thermal control for the iMacG5
  158. config WINDFARM_PM91
  159. tristate "Support for thermal management on PowerMac9,1"
  160. depends on WINDFARM && I2C && CPU_FREQ_PMAC64 && PMAC_SMU
  161. select I2C_POWERMAC
  162. help
  163. This driver provides thermal control for the PowerMac9,1
  164. which is the recent (SMU based) single CPU desktop G5
  165. config WINDFARM_PM112
  166. tristate "Support for thermal management on PowerMac11,2"
  167. depends on WINDFARM && I2C && PMAC_SMU
  168. select I2C_POWERMAC
  169. help
  170. This driver provides thermal control for the PowerMac11,2
  171. which are the recent dual and quad G5 machines using the
  172. 970MP dual-core processor.
  173. config ANSLCD
  174. tristate "Support for ANS LCD display"
  175. depends on ADB_CUDA && PPC_PMAC
  176. endmenu