Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. config DRM_NOUVEAU
  2. tristate "Nouveau (NVIDIA) cards"
  3. depends on DRM && PCI
  4. select FW_LOADER
  5. select DRM_KMS_HELPER
  6. select DRM_KMS_FB_HELPER
  7. select DRM_TTM
  8. select FB_CFB_FILLRECT
  9. select FB_CFB_COPYAREA
  10. select FB_CFB_IMAGEBLIT
  11. select FB
  12. select FRAMEBUFFER_CONSOLE if !EXPERT
  13. select FB_BACKLIGHT if DRM_NOUVEAU_BACKLIGHT
  14. select ACPI_VIDEO if ACPI && X86 && BACKLIGHT_CLASS_DEVICE && INPUT
  15. select X86_PLATFORM_DEVICES if ACPI && X86
  16. select ACPI_WMI if ACPI && X86
  17. select MXM_WMI if ACPI && X86
  18. select POWER_SUPPLY
  19. # Similar to i915, we need to select ACPI_VIDEO and it's dependencies
  20. select BACKLIGHT_LCD_SUPPORT if ACPI && X86
  21. select BACKLIGHT_CLASS_DEVICE if ACPI && X86
  22. select INPUT if ACPI && X86
  23. select THERMAL if ACPI && X86
  24. select ACPI_VIDEO if ACPI && X86
  25. help
  26. Choose this option for open-source NVIDIA support.
  27. config NOUVEAU_PLATFORM_DRIVER
  28. bool "Nouveau (NVIDIA) SoC GPUs"
  29. depends on DRM_NOUVEAU && ARCH_TEGRA
  30. default y
  31. help
  32. Support for Nouveau platform driver, used for SoC GPUs as found
  33. on NVIDIA Tegra K1.
  34. config NOUVEAU_DEBUG
  35. int "Maximum debug level"
  36. depends on DRM_NOUVEAU
  37. range 0 7
  38. default 5
  39. help
  40. Selects the maximum debug level to compile support for.
  41. 0 - fatal
  42. 1 - error
  43. 2 - warning
  44. 3 - info
  45. 4 - debug
  46. 5 - trace (recommended)
  47. 6 - paranoia
  48. 7 - spam
  49. The paranoia and spam levels will add a lot of extra checks which
  50. may potentially slow down driver operation.
  51. config NOUVEAU_DEBUG_DEFAULT
  52. int "Default debug level"
  53. depends on DRM_NOUVEAU
  54. range 0 7
  55. default 3
  56. help
  57. Selects the default debug level
  58. config DRM_NOUVEAU_BACKLIGHT
  59. bool "Support for backlight control"
  60. depends on DRM_NOUVEAU
  61. default y
  62. help
  63. Say Y here if you want to control the backlight of your display
  64. (e.g. a laptop panel).