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 {
14 u8 graphics_step; /* Represents the compute tile on Xe_HPC */
20 #define STEP_ENUM_VAL(name) STEP_##name,
22 #define STEP_NAME_LIST(func) \
43 * Symbolic steppings that do not match the hardware. These are valid both as gt
44 * and display steppings as symbolic names.
48 STEP_NAME_LIST(STEP_ENUM_VAL)
53 void intel_step_init(struct drm_i915_private *i915);
54 const char *intel_step_name(enum intel_step step);
56 #endif /* __INTEL_STEP_H__ */