huangcm
2024-08-23 d76fb8c8c6d079a3cee81da7072347dcb8bbbc70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
 * Copyright (c) 2003-2012, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */
 
 
 
#ifndef _MEI_INTERFACE_H_
#define _MEI_INTERFACE_H_
 
#include <linux/irqreturn.h>
#include <linux/pci.h>
#include <linux/mei.h>
 
#include "mei_dev.h"
#include "client.h"
 
/*
 * mei_cfg - mei device configuration
 *
 * @fw_status: FW status
 * @quirk_probe: device exclusion quirk
 */
struct mei_cfg {
   const struct mei_fw_status fw_status;
   bool (*quirk_probe)(struct pci_dev *pdev);
};
 
 
#define MEI_PCI_DEVICE(dev, cfg) \
   .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
   .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, \
   .driver_data = (kernel_ulong_t)&(cfg)
 
 
#define MEI_ME_RPM_TIMEOUT    500 /* ms */
 
/**
 * struct mei_me_hw - me hw specific data
 *
 * @cfg: per device generation config and ops
 * @mem_addr: io memory address
 * @intr_source: interrupt source
 * @pg_state: power gating state
 * @d0i3_supported: di03 support
 */
struct mei_me_hw {
   const struct mei_cfg *cfg;
   void __iomem *mem_addr;
   u32 intr_source;
   enum mei_pg_state pg_state;
   bool d0i3_supported;
};
 
#define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)
 
extern const struct mei_cfg mei_me_legacy_cfg;
extern const struct mei_cfg mei_me_ich_cfg;
extern const struct mei_cfg mei_me_pch_cfg;
extern const struct mei_cfg mei_me_pch_cpt_pbg_cfg;
extern const struct mei_cfg mei_me_pch8_cfg;
extern const struct mei_cfg mei_me_pch8_sps_cfg;
 
struct mei_device *mei_me_dev_init(struct pci_dev *pdev,
                  const struct mei_cfg *cfg);
 
int mei_me_pg_enter_sync(struct mei_device *dev);
int mei_me_pg_exit_sync(struct mei_device *dev);
 
irqreturn_t mei_me_irq_quick_handler(int irq, void *dev_id);
irqreturn_t mei_me_irq_thread_handler(int irq, void *dev_id);
 
#endif /* _MEI_INTERFACE_H_ */