Kconfig 1.0 KB

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