blob: 07e437390539591dd05c442cc586d477e6bb8b23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_LATE_BIND_FW_H_
#define _XE_LATE_BIND_FW_H_
#include <linux/types.h>
struct xe_late_bind;
int xe_late_bind_init(struct xe_late_bind *late_bind);
int xe_late_bind_fw_load(struct xe_late_bind *late_bind);
void xe_late_bind_wait_for_worker_completion(struct xe_late_bind *late_bind);
#endif
|