Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Video configuration
  4. #
  5. menu "Graphics support"
  6. config APERTURE_HELPERS
  7. bool
  8. help
  9. Support tracking and hand-over of aperture ownership. Required
  10. by graphics drivers for firmware-provided framebuffers.
  11. config SCREEN_INFO
  12. bool
  13. default n
  14. config STI_CORE
  15. bool
  16. depends on PARISC
  17. help
  18. STI refers to the HP "Standard Text Interface" which is a set of
  19. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  20. config VIDEO
  21. bool
  22. default n
  23. source "drivers/auxdisplay/Kconfig"
  24. if HAS_IOMEM
  25. config HAVE_FB_ATMEL
  26. bool
  27. source "drivers/char/agp/Kconfig"
  28. source "drivers/gpu/vga/Kconfig"
  29. source "drivers/gpu/host1x/Kconfig"
  30. source "drivers/gpu/ipu-v3/Kconfig"
  31. source "drivers/gpu/nova-core/Kconfig"
  32. source "drivers/gpu/drm/Kconfig"
  33. menu "Frame buffer Devices"
  34. source "drivers/video/fbdev/Kconfig"
  35. endmenu
  36. source "drivers/video/backlight/Kconfig"
  37. config VGASTATE
  38. tristate
  39. default n
  40. config VIDEOMODE_HELPERS
  41. bool
  42. config HDMI
  43. bool
  44. endif # HAS_IOMEM
  45. config FIRMWARE_EDID
  46. bool "Enable firmware EDID"
  47. depends on EFI_GENERIC_STUB || X86
  48. help
  49. This enables access to the EDID transferred from the firmware.
  50. On EFI systems, the EDID comes from the same device as the
  51. primary GOP. On x86 with BIOS, it comes from the VESA BIOS.
  52. DRM display drivers will be able to export the information
  53. to userspace.
  54. Also enable this if DDC/I2C transfers do not work for your driver
  55. and if you are using nvidiafb, i810fb or savagefb.
  56. In general, choosing Y for this option is safe. If you
  57. experience extremely long delays while booting before you get
  58. something on your display, try setting this to N. Matrox cards in
  59. combination with certain motherboards and monitors are known to
  60. suffer from this problem.
  61. if VT
  62. source "drivers/video/console/Kconfig"
  63. endif
  64. if FB_CORE || SGI_NEWPORT_CONSOLE
  65. source "drivers/video/logo/Kconfig"
  66. endif
  67. source "drivers/gpu/trace/Kconfig"
  68. endmenu