blob: 07d668b02e3da1bc3cdeeeaf03b70b55059a4dba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_GUC_TLB_INVAL_H_
#define _XE_GUC_TLB_INVAL_H_
#include <linux/types.h>
struct xe_guc;
struct xe_tlb_inval;
void xe_guc_tlb_inval_init_early(struct xe_guc *guc,
struct xe_tlb_inval *tlb_inval);
int xe_guc_tlb_inval_done_handler(struct xe_guc *guc, u32 *msg, u32 len);
#endif
|