1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2023 Intel Corporation 4 */ 5 6 #ifndef _XE_GSC_H_ 7 #define _XE_GSC_H_ 8 9 #include "xe_gsc_types.h" 10 11 int xe_gsc_init(struct xe_gsc *gsc); 12 int xe_gsc_init_post_hwconfig(struct xe_gsc *gsc); 13 void xe_gsc_wait_for_worker_completion(struct xe_gsc *gsc); 14 void xe_gsc_load_start(struct xe_gsc *gsc); 15 16 #endif 17