2 bool "Force GCC to throw an error instead of a warning when compiling"
3 # As this may inadvertently break the build, only allow the user
4 # to shoot oneself in the foot iff they aim really hard
6 # We use the dependency on !COMPILE_TEST to not be enabled in
7 # allmodconfig or allyesconfig configurations
8 depends on !COMPILE_TEST
11 Add -Werror to the build flags for (and only for) i915.ko.
12 Do not enable this unless you are writing code for the i915.ko module.
14 Recommended for driver developers only.
19 bool "Enable additional driver debugging"
24 select DRM_DP_AUX_CHARDEV
25 select X86_MSR # used by igt/pm_rpm
26 select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks)
27 select DRM_DEBUG_MM if DRM=y
28 select STACKDEPOT if DRM=y # for DRM_DEBUG_MM
29 select DRM_DEBUG_SELFTEST
30 select SW_SYNC # signaling validation framework (igt/syncobj*)
31 select DRM_I915_SW_FENCE_DEBUG_OBJECTS
32 select DRM_I915_SELFTEST
35 Choose this option to turn on extra driver debugging that may affect
36 performance but will catch some internal issues.
38 Recommended for driver developers only.
42 config DRM_I915_DEBUG_GEM
43 bool "Insert extra checks into the GEM internals"
45 depends on DRM_I915_WERROR
47 Enable extra sanity checks (including BUGs) along the GEM driver
48 paths that may slow the system down and if hit hang the machine.
50 Recommended for driver developers only.
54 config DRM_I915_ERRLOG_GEM
55 bool "Insert extra logging (very verbose) for common GEM errors"
57 depends on DRM_I915_DEBUG_GEM
59 Enable additional logging that may help track down the cause of
60 principally userspace errors.
62 Recommended for driver developers only.
66 config DRM_I915_TRACE_GEM
67 bool "Insert extra ftrace output from the GEM internals"
68 depends on DRM_I915_DEBUG_GEM
72 Enable additional and verbose debugging output that will spam
73 ordinary tests, but may be vital for post-mortem debugging when
74 used with /proc/sys/kernel/ftrace_dump_on_oops
76 Recommended for driver developers only.
80 config DRM_I915_SW_FENCE_DEBUG_OBJECTS
81 bool "Enable additional driver debugging for fence objects"
86 Choose this option to turn on extra driver debugging that may affect
87 performance but will catch some internal issues.
89 Recommended for driver developers only.
93 config DRM_I915_SW_FENCE_CHECK_DAG
94 bool "Enable additional driver debugging for detecting dependency cycles"
98 Choose this option to turn on extra driver debugging that may affect
99 performance but will catch some internal issues.
101 Recommended for driver developers only.
103 If in doubt, say "N".
105 config DRM_I915_DEBUG_GUC
106 bool "Enable additional driver debugging for GuC"
110 Choose this option to turn on extra driver debugging that may affect
111 performance but will help resolve GuC related issues.
113 Recommended for driver developers only.
115 If in doubt, say "N".
117 config DRM_I915_SELFTEST
118 bool "Enable selftests upon driver load"
121 select FAULT_INJECTION
124 Choose this option to allow the driver to perform selftests upon
125 loading; also requires the i915.selftest=1 module parameter. To
126 exit the module after running the selftests (i.e. to prevent normal
127 module initialisation afterwards) use i915.selftest=-1.
129 Recommended for driver developers only.
131 If in doubt, say "N".
133 config DRM_I915_SELFTEST_BROKEN
134 bool "Enable broken and dangerous selftests"
135 depends on DRM_I915_SELFTEST
139 This option enables the execution of selftests that are "dangerous"
140 and may trigger unintended HW side-effects as they break strict
141 rules given in the HW specification. For science.
143 Recommended for masochistic driver developers only.
145 If in doubt, say "N".
147 config DRM_I915_LOW_LEVEL_TRACEPOINTS
148 bool "Enable low level request tracing events"
152 Choose this option to turn on low level request tracing events.
153 This provides the ability to precisely monitor engine utilisation
154 and also analyze the request dependency resolving timeline.
156 If in doubt, say "N".
158 config DRM_I915_DEBUG_VBLANK_EVADE
159 bool "Enable extra debug warnings for vblank evasion"
163 Choose this option to turn on extra debug warnings for the
164 vblank evade mechanism. This gives a warning every time the
165 the deadline allotted for the vblank evade critical section
166 is exceeded, even if there isn't an actual risk of missing
169 If in doubt, say "N".