Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. config DRM_NOUVEAU
  2. tristate "Nouveau (NVIDIA) cards"
  3. depends on DRM && PCI && MMU
  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. select DRM_VM
  20. help
  21. Choose this option for open-source NVIDIA support.
  22. config NOUVEAU_PLATFORM_DRIVER
  23. bool "Nouveau (NVIDIA) SoC GPUs"
  24. depends on DRM_NOUVEAU && ARCH_TEGRA
  25. default y
  26. help
  27. Support for Nouveau platform driver, used for SoC GPUs as found
  28. on NVIDIA Tegra K1.
  29. config NOUVEAU_DEBUG
  30. int "Maximum debug level"
  31. depends on DRM_NOUVEAU
  32. range 0 7
  33. default 5
  34. help
  35. Selects the maximum debug level to compile support for.
  36. 0 - fatal
  37. 1 - error
  38. 2 - warning
  39. 3 - info
  40. 4 - debug
  41. 5 - trace (recommended)
  42. 6 - paranoia
  43. 7 - spam
  44. The paranoia and spam levels will add a lot of extra checks which
  45. may potentially slow down driver operation.
  46. config NOUVEAU_DEBUG_DEFAULT
  47. int "Default debug level"
  48. depends on DRM_NOUVEAU
  49. range 0 7
  50. default 3
  51. help
  52. Selects the default debug level
  53. config DRM_NOUVEAU_BACKLIGHT
  54. bool "Support for backlight control"
  55. depends on DRM_NOUVEAU
  56. default y
  57. help
  58. Say Y here if you want to control the backlight of your display
  59. (e.g. a laptop panel).