mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 15:24:02 -04:00
Reload late binding fw during runtime resume. Signed-off-by: Badal Nilawar <badal.nilawar@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://lore.kernel.org/r/20250905154953.3974335-7-badal.nilawar@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
18 lines
386 B
C
18 lines
386 B
C
/* 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
|