drm/i915/tracepoints: Add request submit and execute tracepoints
[sfrench/cifs-2.6.git] / drivers / gpu / drm / i915 / Kconfig.debug
index 51ba630a134b8e047a4fe79ba2681812e4f875ac..e091809a9a9ecb227b1194cf81e06b5f5fd061ae 100644 (file)
@@ -19,9 +19,14 @@ config DRM_I915_DEBUG
         bool "Enable additional driver debugging"
         depends on DRM_I915
         select PREEMPT_COUNT
+        select I2C_CHARDEV
+        select DRM_DP_AUX_CHARDEV
         select X86_MSR # used by igt/pm_rpm
         select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks)
         select DRM_DEBUG_MM if DRM=y
+       select DRM_DEBUG_MM_SELFTEST
+       select DRM_I915_SW_FENCE_DEBUG_OBJECTS
+       select DRM_I915_SELFTEST
         default n
         help
           Choose this option to turn on extra driver debugging that may affect
@@ -43,3 +48,42 @@ config DRM_I915_DEBUG_GEM
 
           If in doubt, say "N".
 
+config DRM_I915_SW_FENCE_DEBUG_OBJECTS
+        bool "Enable additional driver debugging for fence objects"
+        depends on DRM_I915
+        select DEBUG_OBJECTS
+        default n
+        help
+          Choose this option to turn on extra driver debugging that may affect
+          performance but will catch some internal issues.
+
+          Recommended for driver developers only.
+
+          If in doubt, say "N".
+
+config DRM_I915_SELFTEST
+       bool "Enable selftests upon driver load"
+       depends on DRM_I915
+       default n
+       select FAULT_INJECTION
+       select PRIME_NUMBERS
+       help
+         Choose this option to allow the driver to perform selftests upon
+         loading; also requires the i915.selftest=1 module parameter. To
+         exit the module after running the selftests (i.e. to prevent normal
+         module initialisation afterwards) use i915.selftest=-1.
+
+         Recommended for driver developers only.
+
+         If in doubt, say "N".
+
+config DRM_I915_LOW_LEVEL_TRACEPOINTS
+        bool "Enable low level request tracing events"
+        depends on DRM_I915
+        default n
+        help
+          Choose this option to turn on low level request tracing events.
+          This provides the ability to precisely monitor engine utilisation
+          and also analyze the request dependency resolving timeline.
+
+          If in doubt, say "N".