Kconfig 1.8 KB

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