xref: /linux/drivers/gpu/drm/xe/xe_pagefault.h (revision 6dfafbd0299a60bfb5d5e277fdf100037c7ded07)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2025 Intel Corporation
4  */
5 
6 #ifndef _XE_PAGEFAULT_H_
7 #define _XE_PAGEFAULT_H_
8 
9 struct xe_device;
10 struct xe_gt;
11 struct xe_pagefault;
12 
13 int xe_pagefault_init(struct xe_device *xe);
14 
15 void xe_pagefault_reset(struct xe_device *xe, struct xe_gt *gt);
16 
17 int xe_pagefault_handler(struct xe_device *xe, struct xe_pagefault *pf);
18 
19 #endif
20