Lines Matching refs:guc_log_level
72 int guc_log_level; in __get_default_guc_log_level() local
75 guc_log_level = GUC_LOG_LEVEL_DISABLED; in __get_default_guc_log_level()
78 guc_log_level = GUC_LOG_LEVEL_MAX; in __get_default_guc_log_level()
80 guc_log_level = GUC_LOG_LEVEL_NON_VERBOSE; in __get_default_guc_log_level()
84 return guc_log_level; in __get_default_guc_log_level()
135 if (i915_modparams.guc_log_level < 0) in sanitize_options_early()
136 i915_modparams.guc_log_level = in sanitize_options_early()
139 if (i915_modparams.guc_log_level > 0 && !intel_uc_is_using_guc()) { in sanitize_options_early()
141 "guc_log_level", i915_modparams.guc_log_level, in sanitize_options_early()
144 i915_modparams.guc_log_level = 0; in sanitize_options_early()
147 if (i915_modparams.guc_log_level > GUC_LOG_LEVEL_MAX) { in sanitize_options_early()
149 "guc_log_level", i915_modparams.guc_log_level, in sanitize_options_early()
151 i915_modparams.guc_log_level = GUC_LOG_LEVEL_MAX; in sanitize_options_early()
155 i915_modparams.guc_log_level, in sanitize_options_early()
156 yesno(i915_modparams.guc_log_level), in sanitize_options_early()
157 yesno(GUC_LOG_LEVEL_IS_VERBOSE(i915_modparams.guc_log_level)), in sanitize_options_early()
158 GUC_LOG_LEVEL_TO_VERBOSITY(i915_modparams.guc_log_level)); in sanitize_options_early()
162 GEM_BUG_ON(i915_modparams.guc_log_level < 0); in sanitize_options_early()