xref: /linux/drivers/gpu/drm/xe/xe_heci_gsc.h (revision 3a39d672e7f48b8d6b91a09afa4b55352773b4b5)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright(c) 2023, Intel Corporation. All rights reserved.
4  */
5 #ifndef __XE_HECI_GSC_DEV_H__
6 #define __XE_HECI_GSC_DEV_H__
7 
8 #include <linux/types.h>
9 
10 struct xe_device;
11 struct mei_aux_device;
12 
13 /*
14  * GSC HECI1 bit corresponds to bit15 and HECI2 to bit14.
15  * The reason for this is to allow growth for more interfaces in the future.
16  */
17 #define GSC_IRQ_INTF(_x) BIT(15 - (_x))
18 
19 /*
20  * CSC HECI1 bit corresponds to bit9 and HECI2 to bit10.
21  */
22 #define CSC_IRQ_INTF(_x) BIT(9 + (_x))
23 
24 /**
25  * struct xe_heci_gsc - graphics security controller for xe, HECI interface
26  *
27  * @adev : pointer to mei auxiliary device structure
28  * @irq : irq number
29  *
30  */
31 struct xe_heci_gsc {
32 	struct mei_aux_device *adev;
33 	int irq;
34 };
35 
36 void xe_heci_gsc_init(struct xe_device *xe);
37 void xe_heci_gsc_fini(struct xe_device *xe);
38 void xe_heci_gsc_irq_handler(struct xe_device *xe, u32 iir);
39 void xe_heci_csc_irq_handler(struct xe_device *xe, u32 iir);
40 
41 #endif /* __XE_HECI_GSC_DEV_H__ */
42