1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #ifndef _XE_STEP_H_ 7 #define _XE_STEP_H_ 8 9 #include <linux/types.h> 10 11 #include "xe_step_types.h" 12 13 struct xe_device; 14 15 struct xe_step_info xe_step_get(struct xe_device *xe); 16 const char *xe_step_name(enum xe_step step); 17 18 #endif 19