hw-me.h 3.4 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
T
Tomas Winkler 已提交
2
/*
3
 * Copyright (c) 2012-2019, Intel Corporation. All rights reserved.
T
Tomas Winkler 已提交
4
 * Intel Management Engine Interface (Intel MEI) Linux driver
5 6
 */

T
Tomas Winkler 已提交
7 8
#ifndef _MEI_INTERFACE_H_
#define _MEI_INTERFACE_H_
9

10
#include <linux/irqreturn.h>
11 12 13
#include <linux/pci.h>
#include <linux/mei.h>

T
Tomas Winkler 已提交
14
#include "mei_dev.h"
15
#include "client.h"
16

17 18 19 20 21
/*
 * mei_cfg - mei device configuration
 *
 * @fw_status: FW status
 * @quirk_probe: device exclusion quirk
22
 * @dma_size: device DMA buffers size
23
 * @fw_ver_supported: is fw version retrievable from FW
24
 * @hw_trc_supported: does the hw support trc register
25 26 27 28
 */
struct mei_cfg {
	const struct mei_fw_status fw_status;
	bool (*quirk_probe)(struct pci_dev *pdev);
29
	size_t dma_size[DMA_DSCR_NUM];
30
	u32 fw_ver_supported:1;
31
	u32 hw_trc_supported:1;
32 33 34 35 36 37
};


#define MEI_PCI_DEVICE(dev, cfg) \
	.vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
	.subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, \
38
	.driver_data = (kernel_ulong_t)(cfg),
39

40 41
#define MEI_ME_RPM_TIMEOUT    500 /* ms */

42
/**
A
Alexander Usyskin 已提交
43 44
 * struct mei_me_hw - me hw specific data
 *
45
 * @cfg: per device generation config and ops
46
 * @mem_addr: io memory address
47
 * @irq: irq number
48 49
 * @pg_state: power gating state
 * @d0i3_supported: di03 support
50
 * @hbuf_depth: depth of hardware host/write buffer in slots
51
 * @read_fws: read FW status register handler
52
 */
53
struct mei_me_hw {
54
	const struct mei_cfg *cfg;
55
	void __iomem *mem_addr;
56
	int irq;
57
	enum mei_pg_state pg_state;
58
	bool d0i3_supported;
59
	u8 hbuf_depth;
60
	int (*read_fws)(const struct mei_device *dev, int where, u32 *val);
61
};
62

63 64
#define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)

65 66 67 68 69 70 71 72
/**
 * enum mei_cfg_idx - indices to platform specific configurations.
 *
 * Note: has to be synchronized with mei_cfg_list[]
 *
 * @MEI_ME_UNDEF_CFG:      Lower sentinel.
 * @MEI_ME_ICH_CFG:        I/O Controller Hub legacy devices.
 * @MEI_ME_ICH10_CFG:      I/O Controller Hub platforms Gen10
73 74
 * @MEI_ME_PCH6_CFG:       Platform Controller Hub platforms (Gen6).
 * @MEI_ME_PCH7_CFG:       Platform Controller Hub platforms (Gen7).
75 76 77 78 79 80 81
 * @MEI_ME_PCH_CPT_PBG_CFG:Platform Controller Hub workstations
 *                         with quirk for Node Manager exclusion.
 * @MEI_ME_PCH8_CFG:       Platform Controller Hub Gen8 and newer
 *                         client platforms.
 * @MEI_ME_PCH8_SPS_CFG:   Platform Controller Hub Gen8 and newer
 *                         servers platforms with quirk for
 *                         SPS firmware exclusion.
82
 * @MEI_ME_PCH12_CFG:      Platform Controller Hub Gen12 and newer
83 84 85
 * @MEI_ME_PCH12_SPS_CFG:  Platform Controller Hub Gen12 and newer
 *                         servers platforms with quirk for
 *                         SPS firmware exclusion.
86
 * @MEI_ME_PCH15_CFG:      Platform Controller Hub Gen15 and newer
87 88 89 90 91 92
 * @MEI_ME_NUM_CFG:        Upper Sentinel.
 */
enum mei_cfg_idx {
	MEI_ME_UNDEF_CFG,
	MEI_ME_ICH_CFG,
	MEI_ME_ICH10_CFG,
93 94
	MEI_ME_PCH6_CFG,
	MEI_ME_PCH7_CFG,
95 96 97
	MEI_ME_PCH_CPT_PBG_CFG,
	MEI_ME_PCH8_CFG,
	MEI_ME_PCH8_SPS_CFG,
98
	MEI_ME_PCH12_CFG,
99
	MEI_ME_PCH12_SPS_CFG,
100
	MEI_ME_PCH15_CFG,
101 102 103 104
	MEI_ME_NUM_CFG,
};

const struct mei_cfg *mei_me_get_cfg(kernel_ulong_t idx);
105

106
struct mei_device *mei_me_dev_init(struct device *parent,
107
				   const struct mei_cfg *cfg);
108

109 110
int mei_me_pg_enter_sync(struct mei_device *dev);
int mei_me_pg_exit_sync(struct mei_device *dev);
111

112 113 114
irqreturn_t mei_me_irq_quick_handler(int irq, void *dev_id);
irqreturn_t mei_me_irq_thread_handler(int irq, void *dev_id);

T
Tomas Winkler 已提交
115
#endif /* _MEI_INTERFACE_H_ */