Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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/drm/Kconfig"
  32. menu "Frame buffer Devices"
  33. source "drivers/video/fbdev/Kconfig"
  34. endmenu
  35. source "drivers/video/backlight/Kconfig"
  36. config VGASTATE
  37. tristate
  38. default n
  39. config VIDEOMODE_HELPERS
  40. bool
  41. config HDMI
  42. bool
  43. endif # HAS_IOMEM
  44. if VT
  45. source "drivers/video/console/Kconfig"
  46. endif
  47. if FB_CORE || SGI_NEWPORT_CONSOLE
  48. source "drivers/video/logo/Kconfig"
  49. endif
  50. endmenu