dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
63 lines
1003 B
C
63 lines
1003 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2026 Intel Corporation */
|
|
|
|
#ifndef __STEP_H__
|
|
#define __STEP_H__
|
|
|
|
#define STEP_ENUM_VAL(name) STEP_##name,
|
|
|
|
#define STEP_NAME_LIST(func) \
|
|
func(A0) \
|
|
func(A1) \
|
|
func(A2) \
|
|
func(A3) \
|
|
func(B0) \
|
|
func(B1) \
|
|
func(B2) \
|
|
func(B3) \
|
|
func(C0) \
|
|
func(C1) \
|
|
func(C2) \
|
|
func(C3) \
|
|
func(D0) \
|
|
func(D1) \
|
|
func(D2) \
|
|
func(D3) \
|
|
func(E0) \
|
|
func(E1) \
|
|
func(E2) \
|
|
func(E3) \
|
|
func(F0) \
|
|
func(F1) \
|
|
func(F2) \
|
|
func(F3) \
|
|
func(G0) \
|
|
func(G1) \
|
|
func(G2) \
|
|
func(G3) \
|
|
func(H0) \
|
|
func(H1) \
|
|
func(H2) \
|
|
func(H3) \
|
|
func(I0) \
|
|
func(I1) \
|
|
func(I2) \
|
|
func(I3) \
|
|
func(J0) \
|
|
func(J1) \
|
|
func(J2) \
|
|
func(J3)
|
|
|
|
/*
|
|
* 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_NAME_LIST(STEP_ENUM_VAL)
|
|
STEP_FUTURE,
|
|
STEP_FOREVER,
|
|
};
|
|
|
|
#endif /* __STEP_H__ */
|