Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config DRM_TEGRA
  2. tristate "NVIDIA Tegra DRM"
  3. depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
  4. depends on DRM
  5. depends on RESET_CONTROLLER
  6. select DRM_KMS_HELPER
  7. select DRM_MIPI_DSI
  8. select DRM_PANEL
  9. select TEGRA_HOST1X
  10. help
  11. Choose this option if you have an NVIDIA Tegra SoC.
  12. To compile this driver as a module, choose M here: the module
  13. will be called tegra-drm.
  14. if DRM_TEGRA
  15. config DRM_TEGRA_FBDEV
  16. bool "Enable legacy fbdev support"
  17. select DRM_KMS_FB_HELPER
  18. select FB_SYS_FILLRECT
  19. select FB_SYS_COPYAREA
  20. select FB_SYS_IMAGEBLIT
  21. default y
  22. help
  23. Choose this option if you have a need for the legacy fbdev support.
  24. Note that this support also provides the Linux console on top of
  25. the Tegra modesetting driver.
  26. config DRM_TEGRA_DEBUG
  27. bool "NVIDIA Tegra DRM debug support"
  28. help
  29. Say yes here to enable debugging support.
  30. config DRM_TEGRA_STAGING
  31. bool "Enable HOST1X interface"
  32. depends on STAGING
  33. help
  34. Say yes if HOST1X should be available for userspace DRM users.
  35. If unsure, choose N.
  36. endif