Kconfig 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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) && PCI && !EMULATED_CMPXCHG && MMU
  10. select I2C
  11. select I2C_ALGOBIT
  12. select SLOW_WORK
  13. help
  14. Kernel-level support for the Direct Rendering Infrastructure (DRI)
  15. introduced in XFree86 4.0. If you say Y here, you need to select
  16. the module that's right for your graphics card from the list below.
  17. These modules provide support for synchronization, security, and
  18. DMA transfers. Please see <http://dri.sourceforge.net/> for more
  19. details. You should also select and configure AGP
  20. (/dev/agpgart) support.
  21. config DRM_KMS_HELPER
  22. tristate
  23. depends on DRM
  24. select FB
  25. select FRAMEBUFFER_CONSOLE if !EMBEDDED
  26. help
  27. FB and CRTC helpers for KMS drivers.
  28. config DRM_TTM
  29. tristate
  30. depends on DRM
  31. help
  32. GPU memory management subsystem for devices with multiple
  33. GPU memory types. Will be enabled automatically if a device driver
  34. uses it.
  35. config DRM_TDFX
  36. tristate "3dfx Banshee/Voodoo3+"
  37. depends on DRM && PCI
  38. help
  39. Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
  40. graphics card. If M is selected, the module will be called tdfx.
  41. config DRM_R128
  42. tristate "ATI Rage 128"
  43. depends on DRM && PCI
  44. select FW_LOADER
  45. help
  46. Choose this option if you have an ATI Rage 128 graphics card. If M
  47. is selected, the module will be called r128. AGP support for
  48. this card is strongly suggested (unless you have a PCI version).
  49. config DRM_RADEON
  50. tristate "ATI Radeon"
  51. depends on DRM && PCI
  52. select FB_CFB_FILLRECT
  53. select FB_CFB_COPYAREA
  54. select FB_CFB_IMAGEBLIT
  55. select FW_LOADER
  56. select DRM_KMS_HELPER
  57. select DRM_TTM
  58. select POWER_SUPPLY
  59. help
  60. Choose this option if you have an ATI Radeon graphics card. There
  61. are both PCI and AGP versions. You don't need to choose this to
  62. run the Radeon in plain VGA mode.
  63. If M is selected, the module will be called radeon.
  64. source "drivers/gpu/drm/radeon/Kconfig"
  65. config DRM_I810
  66. tristate "Intel I810"
  67. depends on DRM && AGP && AGP_INTEL
  68. help
  69. Choose this option if you have an Intel I810 graphics card. If M is
  70. selected, the module will be called i810. AGP support is required
  71. for this driver to work.
  72. choice
  73. prompt "Intel 830M, 845G, 852GM, 855GM, 865G"
  74. depends on DRM && AGP && AGP_INTEL
  75. optional
  76. config DRM_I830
  77. tristate "i830 driver"
  78. help
  79. Choose this option if you have a system that has Intel 830M, 845G,
  80. 852GM, 855GM or 865G integrated graphics. If M is selected, the
  81. module will be called i830. AGP support is required for this driver
  82. to work. This driver is used by the older X releases X.org 6.7 and
  83. XFree86 4.3. If unsure, build this and i915 as modules and the X server
  84. will load the correct one.
  85. config DRM_I915
  86. tristate "i915 driver"
  87. depends on AGP_INTEL
  88. select SHMEM
  89. select DRM_KMS_HELPER
  90. select FB_CFB_FILLRECT
  91. select FB_CFB_COPYAREA
  92. select FB_CFB_IMAGEBLIT
  93. # i915 depends on ACPI_VIDEO when ACPI is enabled
  94. # but for select to work, need to select ACPI_VIDEO's dependencies, ick
  95. select VIDEO_OUTPUT_CONTROL if ACPI
  96. select BACKLIGHT_CLASS_DEVICE if ACPI
  97. select INPUT if ACPI
  98. select ACPI_VIDEO if ACPI
  99. select ACPI_BUTTON if ACPI
  100. help
  101. Choose this option if you have a system that has Intel 830M, 845G,
  102. 852GM, 855GM 865G or 915G integrated graphics. If M is selected, the
  103. module will be called i915. AGP support is required for this driver
  104. to work. This driver is used by the Intel driver in X.org 6.8 and
  105. XFree86 4.4 and above. If unsure, build this and i830 as modules and
  106. the X server will load the correct one.
  107. config DRM_I915_KMS
  108. bool "Enable modesetting on intel by default"
  109. depends on DRM_I915
  110. help
  111. Choose this option if you want kernel modesetting enabled by default,
  112. and you have a new enough userspace to support this. Running old
  113. userspaces with this enabled will cause pain. Note that this causes
  114. the driver to bind to PCI devices, which precludes loading things
  115. like intelfb.
  116. endchoice
  117. config DRM_MGA
  118. tristate "Matrox g200/g400"
  119. depends on DRM
  120. select FW_LOADER
  121. help
  122. Choose this option if you have a Matrox G200, G400 or G450 graphics
  123. card. If M is selected, the module will be called mga. AGP
  124. support is required for this driver to work.
  125. config DRM_SIS
  126. tristate "SiS video cards"
  127. depends on DRM && AGP
  128. depends on FB_SIS || FB_SIS=n
  129. help
  130. Choose this option if you have a SiS 630 or compatible video
  131. chipset. If M is selected the module will be called sis. AGP
  132. support is required for this driver to work.
  133. config DRM_VIA
  134. tristate "Via unichrome video cards"
  135. depends on DRM
  136. help
  137. Choose this option if you have a Via unichrome or compatible video
  138. chipset. If M is selected the module will be called via.
  139. config DRM_SAVAGE
  140. tristate "Savage video cards"
  141. depends on DRM
  142. help
  143. Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
  144. chipset. If M is selected the module will be called savage.