Kconfig 1.6 KB

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