Loading...
Note: File does not exist in v5.4.
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2022 Intel Corporation
4 */
5
6#ifndef _XE_IRQ_H_
7#define _XE_IRQ_H_
8
9#define XE_IRQ_DEFAULT_MSIX 1
10
11struct xe_device;
12struct xe_tile;
13struct xe_gt;
14
15int xe_irq_init(struct xe_device *xe);
16int xe_irq_install(struct xe_device *xe);
17void xe_irq_suspend(struct xe_device *xe);
18void xe_irq_resume(struct xe_device *xe);
19void xe_irq_enable_hwe(struct xe_gt *gt);
20
21#endif