xref: /linux/drivers/gpu/drm/xe/xe_late_bind_fw.h (revision ec2e0fb07d789976c601bec19ecced7a501c3705)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2025 Intel Corporation
4  */
5 
6 #ifndef _XE_LATE_BIND_FW_H_
7 #define _XE_LATE_BIND_FW_H_
8 
9 #include <linux/types.h>
10 
11 struct xe_late_bind;
12 
13 int xe_late_bind_init(struct xe_late_bind *late_bind);
14 int xe_late_bind_fw_load(struct xe_late_bind *late_bind);
15 void xe_late_bind_wait_for_worker_completion(struct xe_late_bind *late_bind);
16 
17 #endif
18