3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 #ifndef _MEI_INTERFACE_H_
20 #define _MEI_INTERFACE_H_
22 #include <linux/irqreturn.h>
23 #include <linux/pci.h>
24 #include <linux/mei.h>
30 * mei_cfg - mei device configuration
32 * @fw_status: FW status
33 * @quirk_probe: device exclusion quirk
36 const struct mei_fw_status fw_status
;
37 bool (*quirk_probe
)(struct pci_dev
*pdev
);
41 #define MEI_PCI_DEVICE(dev, cfg) \
42 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
43 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, \
44 .driver_data = (kernel_ulong_t)(cfg),
46 #define MEI_ME_RPM_TIMEOUT 500 /* ms */
49 * struct mei_me_hw - me hw specific data
51 * @cfg: per device generation config and ops
52 * @mem_addr: io memory address
53 * @pg_state: power gating state
54 * @d0i3_supported: di03 support
57 const struct mei_cfg
*cfg
;
58 void __iomem
*mem_addr
;
59 enum mei_pg_state pg_state
;
63 #define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)
66 * enum mei_cfg_idx - indices to platform specific configurations.
68 * Note: has to be synchronized with mei_cfg_list[]
70 * @MEI_ME_UNDEF_CFG: Lower sentinel.
71 * @MEI_ME_ICH_CFG: I/O Controller Hub legacy devices.
72 * @MEI_ME_ICH10_CFG: I/O Controller Hub platforms Gen10
73 * @MEI_ME_PCH_CFG: Platform Controller Hub platforms (Up to Gen8).
74 * @MEI_ME_PCH_CPT_PBG_CFG:Platform Controller Hub workstations
75 * with quirk for Node Manager exclusion.
76 * @MEI_ME_PCH8_CFG: Platform Controller Hub Gen8 and newer
78 * @MEI_ME_PCH8_SPS_CFG: Platform Controller Hub Gen8 and newer
79 * servers platforms with quirk for
80 * SPS firmware exclusion.
81 * @MEI_ME_NUM_CFG: Upper Sentinel.
88 MEI_ME_PCH_CPT_PBG_CFG
,
94 const struct mei_cfg
*mei_me_get_cfg(kernel_ulong_t idx
);
96 struct mei_device
*mei_me_dev_init(struct pci_dev
*pdev
,
97 const struct mei_cfg
*cfg
);
99 int mei_me_pg_enter_sync(struct mei_device
*dev
);
100 int mei_me_pg_exit_sync(struct mei_device
*dev
);
102 irqreturn_t
mei_me_irq_quick_handler(int irq
, void *dev_id
);
103 irqreturn_t
mei_me_irq_thread_handler(int irq
, void *dev_id
);
105 #endif /* _MEI_INTERFACE_H_ */