1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2020,2021 Intel Corporation
6 #ifndef __INTEL_STEP_H__
7 #define __INTEL_STEP_H__
9 #include <linux/types.h>
11 struct drm_i915_private;
13 struct intel_step_info {
18 #define STEP_ENUM_VAL(name) STEP_##name,
20 #define STEP_NAME_LIST(func) \
40 * Symbolic steppings that do not match the hardware. These are valid both as gt
41 * and display steppings as symbolic names.
45 STEP_NAME_LIST(STEP_ENUM_VAL)
50 void intel_step_init(struct drm_i915_private *i915);
51 const char *intel_step_name(enum intel_step step);
53 #endif /* __INTEL_STEP_H__ */