mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-30 14:34:51 +08:00
5644dc0a75
Matter of taste. Match the prefix for everything else related to steppings. No functional changes. Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/d3ba7c448e596fd2425a29bcc7ea8493505a30f9.1616764798.git.jani.nikula@intel.com
41 lines
633 B
C
41 lines
633 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020,2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_STEP_H__
|
|
#define __INTEL_STEP_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct drm_i915_private;
|
|
|
|
struct intel_step_info {
|
|
u8 gt_step;
|
|
u8 display_step;
|
|
};
|
|
|
|
/*
|
|
* Symbolic steppings that do not match the hardware. These are valid both as gt
|
|
* and display steppings as symbolic names.
|
|
*/
|
|
enum intel_step {
|
|
STEP_NONE = 0,
|
|
STEP_A0,
|
|
STEP_A2,
|
|
STEP_B0,
|
|
STEP_B1,
|
|
STEP_C0,
|
|
STEP_D0,
|
|
STEP_D1,
|
|
STEP_E0,
|
|
STEP_F0,
|
|
STEP_G0,
|
|
STEP_FUTURE,
|
|
STEP_FOREVER,
|
|
};
|
|
|
|
void intel_step_init(struct drm_i915_private *i915);
|
|
|
|
#endif /* __INTEL_STEP_H__ */
|