1
2
3
4
5
6
7 #ifndef _MEI_INTERFACE_H_
8 #define _MEI_INTERFACE_H_
9
10 #include <linux/irqreturn.h>
11 #include <linux/pci.h>
12 #include <linux/mei.h>
13
14 #include "mei_dev.h"
15 #include "client.h"
16
17
18
19
20
21
22
23
24
25 struct mei_cfg {
26 const struct mei_fw_status fw_status;
27 bool (*quirk_probe)(struct pci_dev *pdev);
28 size_t dma_size[DMA_DSCR_NUM];
29 u32 fw_ver_supported:1;
30 };
31
32
33 #define MEI_PCI_DEVICE(dev, cfg) \
34 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
35 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, \
36 .driver_data = (kernel_ulong_t)(cfg),
37
38 #define MEI_ME_RPM_TIMEOUT 500
39
40
41
42
43
44
45
46
47
48
49 struct mei_me_hw {
50 const struct mei_cfg *cfg;
51 void __iomem *mem_addr;
52 enum mei_pg_state pg_state;
53 bool d0i3_supported;
54 u8 hbuf_depth;
55 };
56
57 #define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79 enum mei_cfg_idx {
80 MEI_ME_UNDEF_CFG,
81 MEI_ME_ICH_CFG,
82 MEI_ME_ICH10_CFG,
83 MEI_ME_PCH6_CFG,
84 MEI_ME_PCH7_CFG,
85 MEI_ME_PCH_CPT_PBG_CFG,
86 MEI_ME_PCH8_CFG,
87 MEI_ME_PCH8_SPS_CFG,
88 MEI_ME_PCH12_CFG,
89 MEI_ME_NUM_CFG,
90 };
91
92 const struct mei_cfg *mei_me_get_cfg(kernel_ulong_t idx);
93
94 struct mei_device *mei_me_dev_init(struct pci_dev *pdev,
95 const struct mei_cfg *cfg);
96
97 int mei_me_pg_enter_sync(struct mei_device *dev);
98 int mei_me_pg_exit_sync(struct mei_device *dev);
99
100 irqreturn_t mei_me_irq_quick_handler(int irq, void *dev_id);
101 irqreturn_t mei_me_irq_thread_handler(int irq, void *dev_id);
102
103 #endif