Kconfig 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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
  10. select I2C
  11. select I2C_ALGOBIT
  12. help
  13. Kernel-level support for the Direct Rendering Infrastructure (DRI)
  14. introduced in XFree86 4.0. If you say Y here, you need to select
  15. the module that's right for your graphics card from the list below.
  16. These modules provide support for synchronization, security, and
  17. DMA transfers. Please see <http://dri.sourceforge.net/> for more
  18. details. You should also select and configure AGP
  19. (/dev/agpgart) support if it is available for your platform.
  20. config DRM_USB
  21. tristate
  22. depends on DRM
  23. select USB
  24. config DRM_KMS_HELPER
  25. tristate
  26. depends on DRM
  27. select FB
  28. select FRAMEBUFFER_CONSOLE if !EXPERT
  29. select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
  30. help
  31. FB and CRTC helpers for KMS drivers.
  32. config DRM_LOAD_EDID_FIRMWARE
  33. bool "Allow to specify an EDID data set instead of probing for it"
  34. depends on DRM_KMS_HELPER
  35. help
  36. Say Y here, if you want to use EDID data to be loaded from the
  37. /lib/firmware directory or one of the provided built-in
  38. data sets. This may be necessary, if the graphics adapter or
  39. monitor are unable to provide appropriate EDID data. Since this
  40. feature is provided as a workaround for broken hardware, the
  41. default case is N. Details and instructions how to build your own
  42. EDID data are given in Documentation/EDID/HOWTO.txt.
  43. config DRM_TTM
  44. tristate
  45. depends on DRM
  46. help
  47. GPU memory management subsystem for devices with multiple
  48. GPU memory types. Will be enabled automatically if a device driver
  49. uses it.
  50. config DRM_TDFX
  51. tristate "3dfx Banshee/Voodoo3+"
  52. depends on DRM && PCI
  53. help
  54. Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
  55. graphics card. If M is selected, the module will be called tdfx.
  56. config DRM_R128
  57. tristate "ATI Rage 128"
  58. depends on DRM && PCI
  59. select FW_LOADER
  60. help
  61. Choose this option if you have an ATI Rage 128 graphics card. If M
  62. is selected, the module will be called r128. AGP support for
  63. this card is strongly suggested (unless you have a PCI version).
  64. config DRM_RADEON
  65. tristate "ATI Radeon"
  66. depends on DRM && PCI
  67. select FB_CFB_FILLRECT
  68. select FB_CFB_COPYAREA
  69. select FB_CFB_IMAGEBLIT
  70. select FW_LOADER
  71. select DRM_KMS_HELPER
  72. select DRM_TTM
  73. select POWER_SUPPLY
  74. select HWMON
  75. help
  76. Choose this option if you have an ATI Radeon graphics card. There
  77. are both PCI and AGP versions. You don't need to choose this to
  78. run the Radeon in plain VGA mode.
  79. If M is selected, the module will be called radeon.
  80. source "drivers/gpu/drm/radeon/Kconfig"
  81. source "drivers/gpu/drm/nouveau/Kconfig"
  82. config DRM_I810
  83. tristate "Intel I810"
  84. # !PREEMPT because of missing ioctl locking
  85. depends on DRM && AGP && AGP_INTEL && (!PREEMPT || BROKEN)
  86. help
  87. Choose this option if you have an Intel I810 graphics card. If M is
  88. selected, the module will be called i810. AGP support is required
  89. for this driver to work.
  90. config DRM_I915
  91. tristate "Intel 8xx/9xx/G3x/G4x/HD Graphics"
  92. depends on DRM
  93. depends on AGP
  94. depends on AGP_INTEL
  95. # we need shmfs for the swappable backing store, and in particular
  96. # the shmem_readpage() which depends upon tmpfs
  97. select SHMEM
  98. select TMPFS
  99. select DRM_KMS_HELPER
  100. select FB_CFB_FILLRECT
  101. select FB_CFB_COPYAREA
  102. select FB_CFB_IMAGEBLIT
  103. # i915 depends on ACPI_VIDEO when ACPI is enabled
  104. # but for select to work, need to select ACPI_VIDEO's dependencies, ick
  105. select BACKLIGHT_LCD_SUPPORT if ACPI
  106. select BACKLIGHT_CLASS_DEVICE if ACPI
  107. select VIDEO_OUTPUT_CONTROL if ACPI
  108. select INPUT if ACPI
  109. select ACPI_VIDEO if ACPI
  110. select ACPI_BUTTON if ACPI
  111. help
  112. Choose this option if you have a system that has "Intel Graphics
  113. Media Accelerator" or "HD Graphics" integrated graphics,
  114. including 830M, 845G, 852GM, 855GM, 865G, 915G, 945G, 965G,
  115. G35, G41, G43, G45 chipsets and Celeron, Pentium, Core i3,
  116. Core i5, Core i7 as well as Atom CPUs with integrated graphics.
  117. If M is selected, the module will be called i915. AGP support
  118. is required for this driver to work. This driver is used by
  119. the Intel driver in X.org 6.8 and XFree86 4.4 and above. It
  120. replaces the older i830 module that supported a subset of the
  121. hardware in older X.org releases.
  122. Note that the older i810/i815 chipsets require the use of the
  123. i810 driver instead, and the Atom z5xx series has an entirely
  124. different implementation.
  125. config DRM_I915_KMS
  126. bool "Enable modesetting on intel by default"
  127. depends on DRM_I915
  128. help
  129. Choose this option if you want kernel modesetting enabled by default,
  130. and you have a new enough userspace to support this. Running old
  131. userspaces with this enabled will cause pain. Note that this causes
  132. the driver to bind to PCI devices, which precludes loading things
  133. like intelfb.
  134. config DRM_MGA
  135. tristate "Matrox g200/g400"
  136. depends on DRM && PCI
  137. select FW_LOADER
  138. help
  139. Choose this option if you have a Matrox G200, G400 or G450 graphics
  140. card. If M is selected, the module will be called mga. AGP
  141. support is required for this driver to work.
  142. config DRM_SIS
  143. tristate "SiS video cards"
  144. depends on DRM && AGP
  145. depends on FB_SIS || FB_SIS=n
  146. help
  147. Choose this option if you have a SiS 630 or compatible video
  148. chipset. If M is selected the module will be called sis. AGP
  149. support is required for this driver to work.
  150. config DRM_VIA
  151. tristate "Via unichrome video cards"
  152. depends on DRM && PCI
  153. help
  154. Choose this option if you have a Via unichrome or compatible video
  155. chipset. If M is selected the module will be called via.
  156. config DRM_SAVAGE
  157. tristate "Savage video cards"
  158. depends on DRM && PCI
  159. help
  160. Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
  161. chipset. If M is selected the module will be called savage.
  162. source "drivers/gpu/drm/exynos/Kconfig"
  163. source "drivers/gpu/drm/vmwgfx/Kconfig"
  164. source "drivers/gpu/drm/gma500/Kconfig"
  165. source "drivers/gpu/drm/udl/Kconfig"