Kconfig 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. #
  2. # Drm device configuration
  3. #
  4. # This driver provides support for the
  5. # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
  6. #
  7. menuconfig DRM
  8. tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)"
  9. depends on (AGP || AGP=n) && !EMULATED_CMPXCHG && MMU && HAS_DMA
  10. select HDMI
  11. select I2C
  12. select I2C_ALGOBIT
  13. select DMA_SHARED_BUFFER
  14. help
  15. Kernel-level support for the Direct Rendering Infrastructure (DRI)
  16. introduced in XFree86 4.0. If you say Y here, you need to select
  17. the module that's right for your graphics card from the list below.
  18. These modules provide support for synchronization, security, and
  19. DMA transfers. Please see <http://dri.sourceforge.net/> for more
  20. details. You should also select and configure AGP
  21. (/dev/agpgart) support if it is available for your platform.
  22. config DRM_MIPI_DSI
  23. bool
  24. depends on DRM
  25. config DRM_USB
  26. tristate
  27. depends on DRM
  28. depends on USB_SUPPORT && USB_ARCH_HAS_HCD
  29. select USB
  30. config DRM_KMS_HELPER
  31. tristate
  32. depends on DRM
  33. help
  34. CRTC helpers for KMS drivers.
  35. config DRM_KMS_FB_HELPER
  36. bool
  37. depends on DRM_KMS_HELPER
  38. select FB
  39. select FRAMEBUFFER_CONSOLE if !EXPERT
  40. select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
  41. help
  42. FBDEV helpers for KMS drivers.
  43. config DRM_LOAD_EDID_FIRMWARE
  44. bool "Allow to specify an EDID data set instead of probing for it"
  45. depends on DRM_KMS_HELPER
  46. help
  47. Say Y here, if you want to use EDID data to be loaded from the
  48. /lib/firmware directory or one of the provided built-in
  49. data sets. This may be necessary, if the graphics adapter or
  50. monitor are unable to provide appropriate EDID data. Since this
  51. feature is provided as a workaround for broken hardware, the
  52. default case is N. Details and instructions how to build your own
  53. EDID data are given in Documentation/EDID/HOWTO.txt.
  54. config DRM_TTM
  55. tristate
  56. depends on DRM
  57. help
  58. GPU memory management subsystem for devices with multiple
  59. GPU memory types. Will be enabled automatically if a device driver
  60. uses it.
  61. config DRM_GEM_CMA_HELPER
  62. bool
  63. depends on DRM
  64. help
  65. Choose this if you need the GEM CMA helper functions
  66. config DRM_KMS_CMA_HELPER
  67. bool
  68. select DRM_GEM_CMA_HELPER
  69. select DRM_KMS_FB_HELPER
  70. select FB_SYS_FILLRECT
  71. select FB_SYS_COPYAREA
  72. select FB_SYS_IMAGEBLIT
  73. help
  74. Choose this if you need the KMS CMA helper functions
  75. source "drivers/gpu/drm/i2c/Kconfig"
  76. source "drivers/gpu/drm/bridge/Kconfig"
  77. config DRM_TDFX
  78. tristate "3dfx Banshee/Voodoo3+"
  79. depends on DRM && PCI
  80. help
  81. Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
  82. graphics card. If M is selected, the module will be called tdfx.
  83. config DRM_R128
  84. tristate "ATI Rage 128"
  85. depends on DRM && PCI
  86. select FW_LOADER
  87. help
  88. Choose this option if you have an ATI Rage 128 graphics card. If M
  89. is selected, the module will be called r128. AGP support for
  90. this card is strongly suggested (unless you have a PCI version).
  91. config DRM_RADEON
  92. tristate "ATI Radeon"
  93. depends on DRM && PCI
  94. select FB_CFB_FILLRECT
  95. select FB_CFB_COPYAREA
  96. select FB_CFB_IMAGEBLIT
  97. select FW_LOADER
  98. select DRM_KMS_HELPER
  99. select DRM_KMS_FB_HELPER
  100. select DRM_TTM
  101. select POWER_SUPPLY
  102. select HWMON
  103. select BACKLIGHT_CLASS_DEVICE
  104. help
  105. Choose this option if you have an ATI Radeon graphics card. There
  106. are both PCI and AGP versions. You don't need to choose this to
  107. run the Radeon in plain VGA mode.
  108. If M is selected, the module will be called radeon.
  109. source "drivers/gpu/drm/radeon/Kconfig"
  110. source "drivers/gpu/drm/nouveau/Kconfig"
  111. config DRM_I810
  112. tristate "Intel I810"
  113. # !PREEMPT because of missing ioctl locking
  114. depends on DRM && AGP && AGP_INTEL && (!PREEMPT || BROKEN)
  115. help
  116. Choose this option if you have an Intel I810 graphics card. If M is
  117. selected, the module will be called i810. AGP support is required
  118. for this driver to work.
  119. source "drivers/gpu/drm/i915/Kconfig"
  120. config DRM_MGA
  121. tristate "Matrox g200/g400"
  122. depends on DRM && PCI
  123. select FW_LOADER
  124. help
  125. Choose this option if you have a Matrox G200, G400 or G450 graphics
  126. card. If M is selected, the module will be called mga. AGP
  127. support is required for this driver to work.
  128. config DRM_SIS
  129. tristate "SiS video cards"
  130. depends on DRM && AGP
  131. depends on FB_SIS || FB_SIS=n
  132. help
  133. Choose this option if you have a SiS 630 or compatible video
  134. chipset. If M is selected the module will be called sis. AGP
  135. support is required for this driver to work.
  136. config DRM_VIA
  137. tristate "Via unichrome video cards"
  138. depends on DRM && PCI
  139. help
  140. Choose this option if you have a Via unichrome or compatible video
  141. chipset. If M is selected the module will be called via.
  142. config DRM_SAVAGE
  143. tristate "Savage video cards"
  144. depends on DRM && PCI
  145. help
  146. Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
  147. chipset. If M is selected the module will be called savage.
  148. source "drivers/gpu/drm/exynos/Kconfig"
  149. source "drivers/gpu/drm/vmwgfx/Kconfig"
  150. source "drivers/gpu/drm/gma500/Kconfig"
  151. source "drivers/gpu/drm/udl/Kconfig"
  152. source "drivers/gpu/drm/ast/Kconfig"
  153. source "drivers/gpu/drm/mgag200/Kconfig"
  154. source "drivers/gpu/drm/cirrus/Kconfig"
  155. source "drivers/gpu/drm/armada/Kconfig"
  156. source "drivers/gpu/drm/rcar-du/Kconfig"
  157. source "drivers/gpu/drm/shmobile/Kconfig"
  158. source "drivers/gpu/drm/omapdrm/Kconfig"
  159. source "drivers/gpu/drm/tilcdc/Kconfig"
  160. source "drivers/gpu/drm/qxl/Kconfig"
  161. source "drivers/gpu/drm/bochs/Kconfig"
  162. source "drivers/gpu/drm/msm/Kconfig"
  163. source "drivers/gpu/drm/tegra/Kconfig"
  164. source "drivers/gpu/drm/panel/Kconfig"