Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_CFB_FILLRECT
  8. select FB_CFB_COPYAREA
  9. select FB_CFB_IMAGEBLIT
  10. select FB
  11. select FRAMEBUFFER_CONSOLE if !EXPERT
  12. select FB_BACKLIGHT if DRM_NOUVEAU_BACKLIGHT
  13. select ACPI_VIDEO if ACPI && X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL && INPUT
  14. select X86_PLATFORM_DEVICES if ACPI && X86
  15. select ACPI_WMI if ACPI && X86
  16. select MXM_WMI if ACPI && X86
  17. select POWER_SUPPLY
  18. help
  19. Choose this option for open-source nVidia support.
  20. config NOUVEAU_DEBUG
  21. int "Maximum debug level"
  22. depends on DRM_NOUVEAU
  23. range 0 7
  24. default 5
  25. help
  26. Selects the maximum debug level to compile support for.
  27. 0 - fatal
  28. 1 - error
  29. 2 - warning
  30. 3 - info
  31. 4 - debug
  32. 5 - trace (recommended)
  33. 6 - paranoia
  34. 7 - spam
  35. The paranoia and spam levels will add a lot of extra checks which
  36. may potentially slow down driver operation.
  37. config NOUVEAU_DEBUG_DEFAULT
  38. int "Default debug level"
  39. depends on DRM_NOUVEAU
  40. range 0 7
  41. default 3
  42. help
  43. Selects the default debug level
  44. config DRM_NOUVEAU_BACKLIGHT
  45. bool "Support for backlight control"
  46. depends on DRM_NOUVEAU
  47. default y
  48. help
  49. Say Y here if you want to control the backlight of your display
  50. (e.g. a laptop panel).
  51. menu "I2C encoder or helper chips"
  52. depends on DRM && DRM_KMS_HELPER && I2C
  53. config DRM_I2C_CH7006
  54. tristate "Chrontel ch7006 TV encoder"
  55. default m if DRM_NOUVEAU
  56. help
  57. Support for Chrontel ch7006 and similar TV encoders, found
  58. on some nVidia video cards.
  59. This driver is currently only useful if you're also using
  60. the nouveau driver.
  61. config DRM_I2C_SIL164
  62. tristate "Silicon Image sil164 TMDS transmitter"
  63. default m if DRM_NOUVEAU
  64. help
  65. Support for sil164 and similar single-link (or dual-link
  66. when used in pairs) TMDS transmitters, used in some nVidia
  67. video cards.
  68. endmenu