Merge tag 'pci-v6.16-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
[linux-2.6-block.git] / drivers / misc / mei / hw-me.h
CommitLineData
9fff0425 1/* SPDX-License-Identifier: GPL-2.0 */
9dc64d6a 2/*
5b063995 3 * Copyright (c) 2012-2022, Intel Corporation. All rights reserved.
9dc64d6a 4 * Intel Management Engine Interface (Intel MEI) Linux driver
66ef5ea9 5 */
66ef5ea9 6
9dc64d6a
TW
7#ifndef _MEI_INTERFACE_H_
8#define _MEI_INTERFACE_H_
66ef5ea9 9
81ec5502 10#include <linux/irqreturn.h>
4ad96db6
TW
11#include <linux/pci.h>
12#include <linux/mei.h>
13
9dc64d6a 14#include "mei_dev.h"
52c34561 15#include "client.h"
66ef5ea9 16
4ad96db6
TW
17/*
18 * mei_cfg - mei device configuration
19 *
20 * @fw_status: FW status
21 * @quirk_probe: device exclusion quirk
2f79d3d1 22 * @kind: MEI head kind
7026a5fd 23 * @dma_size: device DMA buffers size
f8204f0d 24 * @fw_ver_supported: is fw version retrievable from FW
52f6efdf 25 * @hw_trc_supported: does the hw support trc register
4ad96db6
TW
26 */
27struct mei_cfg {
28 const struct mei_fw_status fw_status;
45a2c762 29 bool (*quirk_probe)(const struct pci_dev *pdev);
2f79d3d1 30 const char *kind;
7026a5fd 31 size_t dma_size[DMA_DSCR_NUM];
f8204f0d 32 u32 fw_ver_supported:1;
52f6efdf 33 u32 hw_trc_supported:1;
4ad96db6
TW
34};
35
36
37#define MEI_PCI_DEVICE(dev, cfg) \
38 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
39 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, \
f5ac3c49 40 .driver_data = (kernel_ulong_t)(cfg),
4ad96db6 41
180ea05b
TW
42#define MEI_ME_RPM_TIMEOUT 500 /* ms */
43
4ad96db6 44/**
ce23139c
AU
45 * struct mei_me_hw - me hw specific data
46 *
4ad96db6 47 * @cfg: per device generation config and ops
bb9f4d26 48 * @mem_addr: io memory address
261b3e1f 49 * @irq: irq number
bb9f4d26
AU
50 * @pg_state: power gating state
51 * @d0i3_supported: di03 support
8c8d964c 52 * @hbuf_depth: depth of hardware host/write buffer in slots
261e071a 53 * @read_fws: read FW status register handler
5b063995
TW
54 * @polling_thread: interrupt polling thread
55 * @wait_active: the polling thread activity wait queue
56 * @is_active: the device is active
4ad96db6 57 */
52c34561 58struct mei_me_hw {
4ad96db6 59 const struct mei_cfg *cfg;
52c34561 60 void __iomem *mem_addr;
261b3e1f 61 int irq;
ba9cdd0e 62 enum mei_pg_state pg_state;
bb9f4d26 63 bool d0i3_supported;
8c8d964c 64 u8 hbuf_depth;
261e071a 65 int (*read_fws)(const struct mei_device *dev, int where, u32 *val);
5b063995
TW
66 /* polling */
67 struct task_struct *polling_thread;
68 wait_queue_head_t wait_active;
69 bool is_active;
52c34561 70};
66ef5ea9 71
52c34561
TW
72#define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)
73
5b063995
TW
74static inline bool mei_me_hw_use_polling(const struct mei_me_hw *hw)
75{
76 return hw->irq < 0;
77}
78
f5ac3c49
TW
79/**
80 * enum mei_cfg_idx - indices to platform specific configurations.
81 *
82 * Note: has to be synchronized with mei_cfg_list[]
83 *
84 * @MEI_ME_UNDEF_CFG: Lower sentinel.
85 * @MEI_ME_ICH_CFG: I/O Controller Hub legacy devices.
86 * @MEI_ME_ICH10_CFG: I/O Controller Hub platforms Gen10
f8204f0d
AU
87 * @MEI_ME_PCH6_CFG: Platform Controller Hub platforms (Gen6).
88 * @MEI_ME_PCH7_CFG: Platform Controller Hub platforms (Gen7).
f5ac3c49
TW
89 * @MEI_ME_PCH_CPT_PBG_CFG:Platform Controller Hub workstations
90 * with quirk for Node Manager exclusion.
91 * @MEI_ME_PCH8_CFG: Platform Controller Hub Gen8 and newer
92 * client platforms.
2f79d3d1
AU
93 * @MEI_ME_PCH8_ITOUCH_CFG:Platform Controller Hub Gen8 and newer
94 * client platforms (iTouch).
f76d77f5 95 * @MEI_ME_PCH8_SPS_4_CFG: Platform Controller Hub Gen8 and newer
f5ac3c49
TW
96 * servers platforms with quirk for
97 * SPS firmware exclusion.
7026a5fd 98 * @MEI_ME_PCH12_CFG: Platform Controller Hub Gen12 and newer
f76d77f5
TW
99 * @MEI_ME_PCH12_SPS_4_CFG:Platform Controller Hub Gen12 up to 4.0
100 * servers platforms with quirk for
101 * SPS firmware exclusion.
102 * @MEI_ME_PCH12_SPS_CFG: Platform Controller Hub Gen12 5.0 and newer
d76bc820
TW
103 * servers platforms with quirk for
104 * SPS firmware exclusion.
d37b59c7
TW
105 * @MEI_ME_PCH12_SPS_ITOUCH_CFG: Platform Controller Hub Gen12
106 * client platforms (iTouch)
52f6efdf 107 * @MEI_ME_PCH15_CFG: Platform Controller Hub Gen15 and newer
8c289ea0
AU
108 * @MEI_ME_PCH15_SPS_CFG: Platform Controller Hub Gen15 and newer
109 * servers platforms with quirk for
110 * SPS firmware exclusion.
d37b59c7
TW
111 * @MEI_ME_GSC_CFG: Graphics System Controller
112 * @MEI_ME_GSCFI_CFG: Graphics System Controller Firmware Interface
f5ac3c49
TW
113 * @MEI_ME_NUM_CFG: Upper Sentinel.
114 */
115enum mei_cfg_idx {
116 MEI_ME_UNDEF_CFG,
117 MEI_ME_ICH_CFG,
118 MEI_ME_ICH10_CFG,
f8204f0d
AU
119 MEI_ME_PCH6_CFG,
120 MEI_ME_PCH7_CFG,
f5ac3c49
TW
121 MEI_ME_PCH_CPT_PBG_CFG,
122 MEI_ME_PCH8_CFG,
2f79d3d1 123 MEI_ME_PCH8_ITOUCH_CFG,
f76d77f5 124 MEI_ME_PCH8_SPS_4_CFG,
7026a5fd 125 MEI_ME_PCH12_CFG,
f76d77f5 126 MEI_ME_PCH12_SPS_4_CFG,
d76bc820 127 MEI_ME_PCH12_SPS_CFG,
2f79d3d1 128 MEI_ME_PCH12_SPS_ITOUCH_CFG,
52f6efdf 129 MEI_ME_PCH15_CFG,
8c289ea0 130 MEI_ME_PCH15_SPS_CFG,
a98c30fd
TW
131 MEI_ME_GSC_CFG,
132 MEI_ME_GSCFI_CFG,
f5ac3c49
TW
133 MEI_ME_NUM_CFG,
134};
135
136const struct mei_cfg *mei_me_get_cfg(kernel_ulong_t idx);
8d929d48 137
907b471c 138struct mei_device *mei_me_dev_init(struct device *parent,
95953618 139 const struct mei_cfg *cfg, bool slow_fw);
66ef5ea9 140
2d1995fc
AU
141int mei_me_pg_enter_sync(struct mei_device *dev);
142int mei_me_pg_exit_sync(struct mei_device *dev);
ba9cdd0e 143
06ecd645
TW
144irqreturn_t mei_me_irq_quick_handler(int irq, void *dev_id);
145irqreturn_t mei_me_irq_thread_handler(int irq, void *dev_id);
5b063995 146int mei_me_polling_thread(void *_dev);
06ecd645 147
9dc64d6a 148#endif /* _MEI_INTERFACE_H_ */