Kconfig 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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 FB_CMDLINE
  12. select I2C
  13. select I2C_ALGOBIT
  14. select DMA_SHARED_BUFFER
  15. help
  16. Kernel-level support for the Direct Rendering Infrastructure (DRI)
  17. introduced in XFree86 4.0. If you say Y here, you need to select
  18. the module that's right for your graphics card from the list below.
  19. These modules provide support for synchronization, security, and
  20. DMA transfers. Please see <http://dri.sourceforge.net/> for more
  21. details. You should also select and configure AGP
  22. (/dev/agpgart) support if it is available for your platform.
  23. config DRM_MIPI_DSI
  24. bool
  25. depends on DRM
  26. config DRM_DP_AUX_CHARDEV
  27. bool "DRM DP AUX Interface"
  28. depends on DRM
  29. help
  30. Choose this option to enable a /dev/drm_dp_auxN node that allows to
  31. read and write values to arbitrary DPCD registers on the DP aux
  32. channel.
  33. config DRM_KMS_HELPER
  34. tristate
  35. depends on DRM
  36. help
  37. CRTC helpers for KMS drivers.
  38. config DRM_KMS_FB_HELPER
  39. bool
  40. depends on DRM_KMS_HELPER
  41. select FB
  42. select FRAMEBUFFER_CONSOLE if !EXPERT
  43. select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
  44. select FB_SYS_FOPS
  45. select FB_SYS_FILLRECT
  46. select FB_SYS_COPYAREA
  47. select FB_SYS_IMAGEBLIT
  48. select FB_CFB_FILLRECT
  49. select FB_CFB_COPYAREA
  50. select FB_CFB_IMAGEBLIT
  51. help
  52. FBDEV helpers for KMS drivers.
  53. config DRM_FBDEV_EMULATION
  54. bool "Enable legacy fbdev support for your modesetting driver"
  55. depends on DRM
  56. select DRM_KMS_HELPER
  57. select DRM_KMS_FB_HELPER
  58. default y
  59. help
  60. Choose this option if you have a need for the legacy fbdev
  61. support. Note that this support also provides the linux console
  62. support on top of your modesetting driver.
  63. If in doubt, say "Y".
  64. config DRM_LOAD_EDID_FIRMWARE
  65. bool "Allow to specify an EDID data set instead of probing for it"
  66. depends on DRM_KMS_HELPER
  67. help
  68. Say Y here, if you want to use EDID data to be loaded from the
  69. /lib/firmware directory or one of the provided built-in
  70. data sets. This may be necessary, if the graphics adapter or
  71. monitor are unable to provide appropriate EDID data. Since this
  72. feature is provided as a workaround for broken hardware, the
  73. default case is N. Details and instructions how to build your own
  74. EDID data are given in Documentation/EDID/HOWTO.txt.
  75. config DRM_TTM
  76. tristate
  77. depends on DRM
  78. help
  79. GPU memory management subsystem for devices with multiple
  80. GPU memory types. Will be enabled automatically if a device driver
  81. uses it.
  82. config DRM_GEM_CMA_HELPER
  83. bool
  84. depends on DRM
  85. help
  86. Choose this if you need the GEM CMA helper functions
  87. config DRM_KMS_CMA_HELPER
  88. bool
  89. depends on DRM
  90. select DRM_GEM_CMA_HELPER
  91. select DRM_KMS_FB_HELPER
  92. select FB_SYS_FILLRECT
  93. select FB_SYS_COPYAREA
  94. select FB_SYS_IMAGEBLIT
  95. help
  96. Choose this if you need the KMS CMA helper functions
  97. source "drivers/gpu/drm/i2c/Kconfig"
  98. config DRM_TDFX
  99. tristate "3dfx Banshee/Voodoo3+"
  100. depends on DRM && PCI
  101. help
  102. Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
  103. graphics card. If M is selected, the module will be called tdfx.
  104. source "drivers/gpu/drm/arm/Kconfig"
  105. config DRM_R128
  106. tristate "ATI Rage 128"
  107. depends on DRM && PCI
  108. select FW_LOADER
  109. help
  110. Choose this option if you have an ATI Rage 128 graphics card. If M
  111. is selected, the module will be called r128. AGP support for
  112. this card is strongly suggested (unless you have a PCI version).
  113. config DRM_RADEON
  114. tristate "ATI Radeon"
  115. depends on DRM && PCI
  116. select FB_CFB_FILLRECT
  117. select FB_CFB_COPYAREA
  118. select FB_CFB_IMAGEBLIT
  119. select FW_LOADER
  120. select DRM_KMS_HELPER
  121. select DRM_KMS_FB_HELPER
  122. select DRM_TTM
  123. select POWER_SUPPLY
  124. select HWMON
  125. select BACKLIGHT_CLASS_DEVICE
  126. select BACKLIGHT_LCD_SUPPORT
  127. select INTERVAL_TREE
  128. help
  129. Choose this option if you have an ATI Radeon graphics card. There
  130. are both PCI and AGP versions. You don't need to choose this to
  131. run the Radeon in plain VGA mode.
  132. If M is selected, the module will be called radeon.
  133. source "drivers/gpu/drm/radeon/Kconfig"
  134. config DRM_AMDGPU
  135. tristate "AMD GPU"
  136. depends on DRM && PCI
  137. select FB_CFB_FILLRECT
  138. select FB_CFB_COPYAREA
  139. select FB_CFB_IMAGEBLIT
  140. select FW_LOADER
  141. select DRM_KMS_HELPER
  142. select DRM_KMS_FB_HELPER
  143. select DRM_TTM
  144. select POWER_SUPPLY
  145. select HWMON
  146. select BACKLIGHT_CLASS_DEVICE
  147. select BACKLIGHT_LCD_SUPPORT
  148. select INTERVAL_TREE
  149. help
  150. Choose this option if you have a recent AMD Radeon graphics card.
  151. If M is selected, the module will be called amdgpu.
  152. source "drivers/gpu/drm/amd/amdgpu/Kconfig"
  153. source "drivers/gpu/drm/amd/powerplay/Kconfig"
  154. source "drivers/gpu/drm/amd/acp/Kconfig"
  155. source "drivers/gpu/drm/nouveau/Kconfig"
  156. config DRM_I810
  157. tristate "Intel I810"
  158. # !PREEMPT because of missing ioctl locking
  159. depends on DRM && AGP && AGP_INTEL && (!PREEMPT || BROKEN)
  160. help
  161. Choose this option if you have an Intel I810 graphics card. If M is
  162. selected, the module will be called i810. AGP support is required
  163. for this driver to work.
  164. source "drivers/gpu/drm/i915/Kconfig"
  165. config DRM_MGA
  166. tristate "Matrox g200/g400"
  167. depends on DRM && PCI
  168. select FW_LOADER
  169. help
  170. Choose this option if you have a Matrox G200, G400 or G450 graphics
  171. card. If M is selected, the module will be called mga. AGP
  172. support is required for this driver to work.
  173. config DRM_SIS
  174. tristate "SiS video cards"
  175. depends on DRM && AGP
  176. depends on FB_SIS || FB_SIS=n
  177. help
  178. Choose this option if you have a SiS 630 or compatible video
  179. chipset. If M is selected the module will be called sis. AGP
  180. support is required for this driver to work.
  181. config DRM_VIA
  182. tristate "Via unichrome video cards"
  183. depends on DRM && PCI
  184. help
  185. Choose this option if you have a Via unichrome or compatible video
  186. chipset. If M is selected the module will be called via.
  187. config DRM_SAVAGE
  188. tristate "Savage video cards"
  189. depends on DRM && PCI
  190. help
  191. Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
  192. chipset. If M is selected the module will be called savage.
  193. config DRM_VGEM
  194. tristate "Virtual GEM provider"
  195. depends on DRM
  196. help
  197. Choose this option to get a virtual graphics memory manager,
  198. as used by Mesa's software renderer for enhanced performance.
  199. If M is selected the module will be called vgem.
  200. source "drivers/gpu/drm/exynos/Kconfig"
  201. source "drivers/gpu/drm/rockchip/Kconfig"
  202. source "drivers/gpu/drm/vmwgfx/Kconfig"
  203. source "drivers/gpu/drm/gma500/Kconfig"
  204. source "drivers/gpu/drm/udl/Kconfig"
  205. source "drivers/gpu/drm/ast/Kconfig"
  206. source "drivers/gpu/drm/mgag200/Kconfig"
  207. source "drivers/gpu/drm/cirrus/Kconfig"
  208. source "drivers/gpu/drm/armada/Kconfig"
  209. source "drivers/gpu/drm/atmel-hlcdc/Kconfig"
  210. source "drivers/gpu/drm/rcar-du/Kconfig"
  211. source "drivers/gpu/drm/shmobile/Kconfig"
  212. source "drivers/gpu/drm/omapdrm/Kconfig"
  213. source "drivers/gpu/drm/tilcdc/Kconfig"
  214. source "drivers/gpu/drm/qxl/Kconfig"
  215. source "drivers/gpu/drm/bochs/Kconfig"
  216. source "drivers/gpu/drm/virtio/Kconfig"
  217. source "drivers/gpu/drm/msm/Kconfig"
  218. source "drivers/gpu/drm/fsl-dcu/Kconfig"
  219. source "drivers/gpu/drm/tegra/Kconfig"
  220. source "drivers/gpu/drm/panel/Kconfig"
  221. source "drivers/gpu/drm/bridge/Kconfig"
  222. source "drivers/gpu/drm/sti/Kconfig"
  223. source "drivers/gpu/drm/amd/amdkfd/Kconfig"
  224. source "drivers/gpu/drm/imx/Kconfig"
  225. source "drivers/gpu/drm/vc4/Kconfig"
  226. source "drivers/gpu/drm/etnaviv/Kconfig"