1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2013-2020, Intel Corporation. All rights reserved.
4 * Intel Management Engine Interface (Intel MEI) Linux driver
7 #include <linux/module.h>
8 #include <linux/kernel.h>
9 #include <linux/device.h>
10 #include <linux/errno.h>
11 #include <linux/types.h>
12 #include <linux/pci.h>
13 #include <linux/init.h>
14 #include <linux/sched.h>
15 #include <linux/interrupt.h>
16 #include <linux/workqueue.h>
17 #include <linux/pm_domain.h>
18 #include <linux/pm_runtime.h>
20 #include <linux/mei.h>
26 static const struct pci_device_id mei_txe_pci_tbl
[] = {
27 {PCI_VDEVICE(INTEL
, 0x0F18)}, /* Baytrail */
28 {PCI_VDEVICE(INTEL
, 0x2298)}, /* Cherrytrail */
32 MODULE_DEVICE_TABLE(pci
, mei_txe_pci_tbl
);
35 static inline void mei_txe_set_pm_domain(struct mei_device
*dev
);
36 static inline void mei_txe_unset_pm_domain(struct mei_device
*dev
);
38 static inline void mei_txe_set_pm_domain(struct mei_device
*dev
) {}
39 static inline void mei_txe_unset_pm_domain(struct mei_device
*dev
) {}
40 #endif /* CONFIG_PM */
43 * mei_txe_probe - Device Initialization Routine
45 * @pdev: PCI device structure
46 * @ent: entry in mei_txe_pci_tbl
48 * Return: 0 on success, <0 on failure.
50 static int mei_txe_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
52 struct mei_device
*dev
;
53 struct mei_txe_hw
*hw
;
54 const int mask
= BIT(SEC_BAR
) | BIT(BRIDGE_BAR
);
58 err
= pcim_enable_device(pdev
);
60 dev_err(&pdev
->dev
, "failed to enable pci device.\n");
63 /* set PCI host mastering */
65 /* pci request regions and mapping IO device memory for mei driver */
66 err
= pcim_iomap_regions(pdev
, mask
, KBUILD_MODNAME
);
68 dev_err(&pdev
->dev
, "failed to get pci regions.\n");
72 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(36));
74 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
76 dev_err(&pdev
->dev
, "No suitable DMA available.\n");
81 /* allocates and initializes the mei dev structure */
82 dev
= mei_txe_dev_init(pdev
);
88 hw
->mem_addr
= pcim_iomap_table(pdev
);
92 /* clear spurious interrupts */
93 mei_clear_interrupts(dev
);
95 /* request and enable interrupt */
96 if (pci_dev_msi_enabled(pdev
))
97 err
= request_threaded_irq(pdev
->irq
,
99 mei_txe_irq_thread_handler
,
100 IRQF_ONESHOT
, KBUILD_MODNAME
, dev
);
102 err
= request_threaded_irq(pdev
->irq
,
103 mei_txe_irq_quick_handler
,
104 mei_txe_irq_thread_handler
,
105 IRQF_SHARED
, KBUILD_MODNAME
, dev
);
107 dev_err(&pdev
->dev
, "mei: request_threaded_irq failure. irq = %d\n",
112 if (mei_start(dev
)) {
113 dev_err(&pdev
->dev
, "init hw failure.\n");
118 pm_runtime_set_autosuspend_delay(&pdev
->dev
, MEI_TXI_RPM_TIMEOUT
);
119 pm_runtime_use_autosuspend(&pdev
->dev
);
121 err
= mei_register(dev
, &pdev
->dev
);
125 pci_set_drvdata(pdev
, dev
);
128 * MEI requires to resume from runtime suspend mode
129 * in order to perform link reset flow upon system suspend.
131 dev_pm_set_driver_flags(&pdev
->dev
, DPM_FLAG_NO_DIRECT_COMPLETE
);
134 * TXE maps runtime suspend/resume to own power gating states,
135 * hence we need to go around native PCI runtime service which
136 * eventually brings the device into D3cold/hot state.
137 * But the TXE device cannot wake up from D3 unlike from own
138 * power gating. To get around PCI device native runtime pm,
139 * TXE uses runtime pm domain handlers which take precedence.
141 mei_txe_set_pm_domain(dev
);
143 pm_runtime_put_noidle(&pdev
->dev
);
150 mei_cancel_work(dev
);
151 mei_disable_interrupts(dev
);
152 free_irq(pdev
->irq
, dev
);
154 dev_err(&pdev
->dev
, "initialization failed.\n");
159 * mei_txe_remove - Device Shutdown Routine
161 * @pdev: PCI device structure
163 * mei_txe_shutdown is called from the reboot notifier
164 * it's a simplified version of remove so we go down
167 static void mei_txe_shutdown(struct pci_dev
*pdev
)
169 struct mei_device
*dev
;
171 dev
= pci_get_drvdata(pdev
);
175 dev_dbg(&pdev
->dev
, "shutdown\n");
178 mei_txe_unset_pm_domain(dev
);
180 mei_disable_interrupts(dev
);
181 free_irq(pdev
->irq
, dev
);
185 * mei_txe_remove - Device Removal Routine
187 * @pdev: PCI device structure
189 * mei_remove is called by the PCI subsystem to alert the driver
190 * that it should release a PCI device.
192 static void mei_txe_remove(struct pci_dev
*pdev
)
194 struct mei_device
*dev
;
196 dev
= pci_get_drvdata(pdev
);
198 dev_err(&pdev
->dev
, "mei: dev == NULL\n");
202 pm_runtime_get_noresume(&pdev
->dev
);
206 mei_txe_unset_pm_domain(dev
);
208 mei_disable_interrupts(dev
);
209 free_irq(pdev
->irq
, dev
);
215 #ifdef CONFIG_PM_SLEEP
216 static int mei_txe_pci_suspend(struct device
*device
)
218 struct pci_dev
*pdev
= to_pci_dev(device
);
219 struct mei_device
*dev
= pci_get_drvdata(pdev
);
224 dev_dbg(&pdev
->dev
, "suspend\n");
228 mei_disable_interrupts(dev
);
230 free_irq(pdev
->irq
, dev
);
231 pci_disable_msi(pdev
);
236 static int mei_txe_pci_resume(struct device
*device
)
238 struct pci_dev
*pdev
= to_pci_dev(device
);
239 struct mei_device
*dev
;
242 dev
= pci_get_drvdata(pdev
);
246 pci_enable_msi(pdev
);
248 mei_clear_interrupts(dev
);
250 /* request and enable interrupt */
251 if (pci_dev_msi_enabled(pdev
))
252 err
= request_threaded_irq(pdev
->irq
,
254 mei_txe_irq_thread_handler
,
255 IRQF_ONESHOT
, KBUILD_MODNAME
, dev
);
257 err
= request_threaded_irq(pdev
->irq
,
258 mei_txe_irq_quick_handler
,
259 mei_txe_irq_thread_handler
,
260 IRQF_SHARED
, KBUILD_MODNAME
, dev
);
262 dev_err(&pdev
->dev
, "request_threaded_irq failed: irq = %d.\n",
267 err
= mei_restart(dev
);
271 #endif /* CONFIG_PM_SLEEP */
274 static int mei_txe_pm_runtime_idle(struct device
*device
)
276 struct mei_device
*dev
;
278 dev_dbg(device
, "rpm: txe: runtime_idle\n");
280 dev
= dev_get_drvdata(device
);
283 if (mei_write_is_idle(dev
))
284 pm_runtime_autosuspend(device
);
288 static int mei_txe_pm_runtime_suspend(struct device
*device
)
290 struct mei_device
*dev
;
293 dev_dbg(device
, "rpm: txe: runtime suspend\n");
295 dev
= dev_get_drvdata(device
);
299 mutex_lock(&dev
->device_lock
);
301 if (mei_write_is_idle(dev
))
302 ret
= mei_txe_aliveness_set_sync(dev
, 0);
306 /* keep irq on we are staying in D0 */
308 dev_dbg(device
, "rpm: txe: runtime suspend ret=%d\n", ret
);
310 mutex_unlock(&dev
->device_lock
);
312 if (ret
&& ret
!= -EAGAIN
)
313 schedule_work(&dev
->reset_work
);
318 static int mei_txe_pm_runtime_resume(struct device
*device
)
320 struct mei_device
*dev
;
323 dev_dbg(device
, "rpm: txe: runtime resume\n");
325 dev
= dev_get_drvdata(device
);
329 mutex_lock(&dev
->device_lock
);
331 mei_enable_interrupts(dev
);
333 ret
= mei_txe_aliveness_set_sync(dev
, 1);
335 mutex_unlock(&dev
->device_lock
);
337 dev_dbg(device
, "rpm: txe: runtime resume ret = %d\n", ret
);
340 schedule_work(&dev
->reset_work
);
346 * mei_txe_set_pm_domain - fill and set pm domain structure for device
350 static inline void mei_txe_set_pm_domain(struct mei_device
*dev
)
352 struct pci_dev
*pdev
= to_pci_dev(dev
->dev
);
354 if (pdev
->dev
.bus
&& pdev
->dev
.bus
->pm
) {
355 dev
->pg_domain
.ops
= *pdev
->dev
.bus
->pm
;
357 dev
->pg_domain
.ops
.runtime_suspend
= mei_txe_pm_runtime_suspend
;
358 dev
->pg_domain
.ops
.runtime_resume
= mei_txe_pm_runtime_resume
;
359 dev
->pg_domain
.ops
.runtime_idle
= mei_txe_pm_runtime_idle
;
361 dev_pm_domain_set(&pdev
->dev
, &dev
->pg_domain
);
366 * mei_txe_unset_pm_domain - clean pm domain structure for device
370 static inline void mei_txe_unset_pm_domain(struct mei_device
*dev
)
372 /* stop using pm callbacks if any */
373 dev_pm_domain_set(dev
->dev
, NULL
);
376 static const struct dev_pm_ops mei_txe_pm_ops
= {
377 SET_SYSTEM_SLEEP_PM_OPS(mei_txe_pci_suspend
,
380 mei_txe_pm_runtime_suspend
,
381 mei_txe_pm_runtime_resume
,
382 mei_txe_pm_runtime_idle
)
385 #define MEI_TXE_PM_OPS (&mei_txe_pm_ops)
387 #define MEI_TXE_PM_OPS NULL
388 #endif /* CONFIG_PM */
391 * PCI driver structure
393 static struct pci_driver mei_txe_driver
= {
394 .name
= KBUILD_MODNAME
,
395 .id_table
= mei_txe_pci_tbl
,
396 .probe
= mei_txe_probe
,
397 .remove
= mei_txe_remove
,
398 .shutdown
= mei_txe_shutdown
,
399 .driver
.pm
= MEI_TXE_PM_OPS
,
402 module_pci_driver(mei_txe_driver
);
404 MODULE_AUTHOR("Intel Corporation");
405 MODULE_DESCRIPTION("Intel(R) Trusted Execution Environment Interface");
406 MODULE_LICENSE("GPL v2");