Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Intel Management Engine Interface (Intel MEI) Linux driver |
| 4 | * Copyright (c) 2013-2014, Intel Corporation. |
| 5 | * |
| 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. |
| 9 | * |
| 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 |
| 13 | * more details. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/fs.h> |
| 21 | #include <linux/errno.h> |
| 22 | #include <linux/types.h> |
| 23 | #include <linux/pci.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/sched.h> |
| 26 | #include <linux/uuid.h> |
| 27 | #include <linux/jiffies.h> |
| 28 | #include <linux/interrupt.h> |
| 29 | #include <linux/workqueue.h> |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 30 | #include <linux/pm_runtime.h> |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 31 | |
| 32 | #include <linux/mei.h> |
| 33 | |
| 34 | |
| 35 | #include "mei_dev.h" |
| 36 | #include "hw-txe.h" |
| 37 | |
Tomas Winkler | a05f8f8 | 2014-03-16 14:35:58 +0200 | [diff] [blame] | 38 | static const struct pci_device_id mei_txe_pci_tbl[] = { |
Tomas Winkler | 4ad96db | 2014-09-29 16:31:45 +0300 | [diff] [blame] | 39 | {PCI_VDEVICE(INTEL, 0x0F18)}, /* Baytrail */ |
Tomas Winkler | e88281e | 2014-11-18 00:13:21 +0200 | [diff] [blame] | 40 | {PCI_VDEVICE(INTEL, 0x2298)}, /* Cherrytrail */ |
Tomas Winkler | 4ad96db | 2014-09-29 16:31:45 +0300 | [diff] [blame] | 41 | |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 42 | {0, } |
| 43 | }; |
| 44 | MODULE_DEVICE_TABLE(pci, mei_txe_pci_tbl); |
| 45 | |
Rafael J. Wysocki | bbd6d050 | 2014-12-04 22:43:07 +0100 | [diff] [blame] | 46 | #ifdef CONFIG_PM |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 47 | static inline void mei_txe_set_pm_domain(struct mei_device *dev); |
| 48 | static inline void mei_txe_unset_pm_domain(struct mei_device *dev); |
| 49 | #else |
| 50 | static inline void mei_txe_set_pm_domain(struct mei_device *dev) {} |
| 51 | static inline void mei_txe_unset_pm_domain(struct mei_device *dev) {} |
Rafael J. Wysocki | bbd6d050 | 2014-12-04 22:43:07 +0100 | [diff] [blame] | 52 | #endif /* CONFIG_PM */ |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 53 | |
| 54 | static void mei_txe_pci_iounmap(struct pci_dev *pdev, struct mei_txe_hw *hw) |
| 55 | { |
| 56 | int i; |
Tomas Winkler | 92db155 | 2014-09-29 16:31:37 +0300 | [diff] [blame] | 57 | |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 58 | for (i = SEC_BAR; i < NUM_OF_MEM_BARS; i++) { |
| 59 | if (hw->mem_addr[i]) { |
| 60 | pci_iounmap(pdev, hw->mem_addr[i]); |
| 61 | hw->mem_addr[i] = NULL; |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | /** |
Alexander Usyskin | 3908be6 | 2015-02-10 10:39:35 +0200 | [diff] [blame] | 66 | * mei_txe_probe - Device Initialization Routine |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 67 | * |
| 68 | * @pdev: PCI device structure |
| 69 | * @ent: entry in mei_txe_pci_tbl |
| 70 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 71 | * Return: 0 on success, <0 on failure. |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 72 | */ |
| 73 | static int mei_txe_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
| 74 | { |
| 75 | struct mei_device *dev; |
| 76 | struct mei_txe_hw *hw; |
| 77 | int err; |
| 78 | int i; |
| 79 | |
| 80 | /* enable pci dev */ |
| 81 | err = pci_enable_device(pdev); |
| 82 | if (err) { |
| 83 | dev_err(&pdev->dev, "failed to enable pci device.\n"); |
| 84 | goto end; |
| 85 | } |
| 86 | /* set PCI host mastering */ |
| 87 | pci_set_master(pdev); |
| 88 | /* pci request regions for mei driver */ |
| 89 | err = pci_request_regions(pdev, KBUILD_MODNAME); |
| 90 | if (err) { |
| 91 | dev_err(&pdev->dev, "failed to get pci regions.\n"); |
| 92 | goto disable_device; |
| 93 | } |
| 94 | |
| 95 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36)); |
| 96 | if (err) { |
| 97 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 98 | if (err) { |
| 99 | dev_err(&pdev->dev, "No suitable DMA available.\n"); |
| 100 | goto release_regions; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | /* allocates and initializes the mei dev structure */ |
Tomas Winkler | 4ad96db | 2014-09-29 16:31:45 +0300 | [diff] [blame] | 105 | dev = mei_txe_dev_init(pdev); |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 106 | if (!dev) { |
| 107 | err = -ENOMEM; |
| 108 | goto release_regions; |
| 109 | } |
| 110 | hw = to_txe_hw(dev); |
| 111 | |
| 112 | /* mapping IO device memory */ |
| 113 | for (i = SEC_BAR; i < NUM_OF_MEM_BARS; i++) { |
| 114 | hw->mem_addr[i] = pci_iomap(pdev, i, 0); |
| 115 | if (!hw->mem_addr[i]) { |
| 116 | dev_err(&pdev->dev, "mapping I/O device memory failure.\n"); |
| 117 | err = -ENOMEM; |
| 118 | goto free_device; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | |
| 123 | pci_enable_msi(pdev); |
| 124 | |
| 125 | /* clear spurious interrupts */ |
| 126 | mei_clear_interrupts(dev); |
| 127 | |
| 128 | /* request and enable interrupt */ |
| 129 | if (pci_dev_msi_enabled(pdev)) |
| 130 | err = request_threaded_irq(pdev->irq, |
| 131 | NULL, |
| 132 | mei_txe_irq_thread_handler, |
| 133 | IRQF_ONESHOT, KBUILD_MODNAME, dev); |
| 134 | else |
| 135 | err = request_threaded_irq(pdev->irq, |
| 136 | mei_txe_irq_quick_handler, |
| 137 | mei_txe_irq_thread_handler, |
| 138 | IRQF_SHARED, KBUILD_MODNAME, dev); |
| 139 | if (err) { |
| 140 | dev_err(&pdev->dev, "mei: request_threaded_irq failure. irq = %d\n", |
| 141 | pdev->irq); |
| 142 | goto free_device; |
| 143 | } |
| 144 | |
| 145 | if (mei_start(dev)) { |
| 146 | dev_err(&pdev->dev, "init hw failure.\n"); |
| 147 | err = -ENODEV; |
| 148 | goto release_irq; |
| 149 | } |
| 150 | |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 151 | pm_runtime_set_autosuspend_delay(&pdev->dev, MEI_TXI_RPM_TIMEOUT); |
| 152 | pm_runtime_use_autosuspend(&pdev->dev); |
| 153 | |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 154 | err = mei_register(dev, &pdev->dev); |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 155 | if (err) |
| 156 | goto release_irq; |
| 157 | |
| 158 | pci_set_drvdata(pdev, dev); |
| 159 | |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 160 | /* |
| 161 | * For not wake-able HW runtime pm framework |
| 162 | * can't be used on pci device level. |
| 163 | * Use domain runtime pm callbacks instead. |
| 164 | */ |
| 165 | if (!pci_dev_run_wake(pdev)) |
| 166 | mei_txe_set_pm_domain(dev); |
| 167 | |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 168 | pm_runtime_put_noidle(&pdev->dev); |
| 169 | |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 170 | return 0; |
| 171 | |
| 172 | release_irq: |
| 173 | |
| 174 | mei_cancel_work(dev); |
| 175 | |
| 176 | /* disable interrupts */ |
| 177 | mei_disable_interrupts(dev); |
| 178 | |
| 179 | free_irq(pdev->irq, dev); |
| 180 | pci_disable_msi(pdev); |
| 181 | |
| 182 | free_device: |
| 183 | mei_txe_pci_iounmap(pdev, hw); |
| 184 | |
| 185 | kfree(dev); |
| 186 | release_regions: |
| 187 | pci_release_regions(pdev); |
| 188 | disable_device: |
| 189 | pci_disable_device(pdev); |
| 190 | end: |
| 191 | dev_err(&pdev->dev, "initialization failed.\n"); |
| 192 | return err; |
| 193 | } |
| 194 | |
| 195 | /** |
Alexander Usyskin | 3908be6 | 2015-02-10 10:39:35 +0200 | [diff] [blame] | 196 | * mei_txe_remove - Device Removal Routine |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 197 | * |
| 198 | * @pdev: PCI device structure |
| 199 | * |
| 200 | * mei_remove is called by the PCI subsystem to alert the driver |
| 201 | * that it should release a PCI device. |
| 202 | */ |
| 203 | static void mei_txe_remove(struct pci_dev *pdev) |
| 204 | { |
| 205 | struct mei_device *dev; |
| 206 | struct mei_txe_hw *hw; |
| 207 | |
| 208 | dev = pci_get_drvdata(pdev); |
| 209 | if (!dev) { |
| 210 | dev_err(&pdev->dev, "mei: dev =NULL\n"); |
| 211 | return; |
| 212 | } |
| 213 | |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 214 | pm_runtime_get_noresume(&pdev->dev); |
| 215 | |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 216 | hw = to_txe_hw(dev); |
| 217 | |
| 218 | mei_stop(dev); |
| 219 | |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 220 | if (!pci_dev_run_wake(pdev)) |
| 221 | mei_txe_unset_pm_domain(dev); |
| 222 | |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 223 | /* disable interrupts */ |
| 224 | mei_disable_interrupts(dev); |
| 225 | free_irq(pdev->irq, dev); |
| 226 | pci_disable_msi(pdev); |
| 227 | |
| 228 | pci_set_drvdata(pdev, NULL); |
| 229 | |
| 230 | mei_txe_pci_iounmap(pdev, hw); |
| 231 | |
| 232 | mei_deregister(dev); |
| 233 | |
| 234 | kfree(dev); |
| 235 | |
| 236 | pci_release_regions(pdev); |
| 237 | pci_disable_device(pdev); |
| 238 | } |
| 239 | |
| 240 | |
Tomas Winkler | e0270ad | 2014-02-18 14:31:09 +0200 | [diff] [blame] | 241 | #ifdef CONFIG_PM_SLEEP |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 242 | static int mei_txe_pci_suspend(struct device *device) |
| 243 | { |
| 244 | struct pci_dev *pdev = to_pci_dev(device); |
| 245 | struct mei_device *dev = pci_get_drvdata(pdev); |
| 246 | |
| 247 | if (!dev) |
| 248 | return -ENODEV; |
| 249 | |
| 250 | dev_dbg(&pdev->dev, "suspend\n"); |
| 251 | |
| 252 | mei_stop(dev); |
| 253 | |
| 254 | mei_disable_interrupts(dev); |
| 255 | |
| 256 | free_irq(pdev->irq, dev); |
| 257 | pci_disable_msi(pdev); |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | static int mei_txe_pci_resume(struct device *device) |
| 263 | { |
| 264 | struct pci_dev *pdev = to_pci_dev(device); |
| 265 | struct mei_device *dev; |
| 266 | int err; |
| 267 | |
| 268 | dev = pci_get_drvdata(pdev); |
| 269 | if (!dev) |
| 270 | return -ENODEV; |
| 271 | |
| 272 | pci_enable_msi(pdev); |
| 273 | |
| 274 | mei_clear_interrupts(dev); |
| 275 | |
| 276 | /* request and enable interrupt */ |
| 277 | if (pci_dev_msi_enabled(pdev)) |
| 278 | err = request_threaded_irq(pdev->irq, |
| 279 | NULL, |
| 280 | mei_txe_irq_thread_handler, |
| 281 | IRQF_ONESHOT, KBUILD_MODNAME, dev); |
| 282 | else |
| 283 | err = request_threaded_irq(pdev->irq, |
| 284 | mei_txe_irq_quick_handler, |
| 285 | mei_txe_irq_thread_handler, |
| 286 | IRQF_SHARED, KBUILD_MODNAME, dev); |
| 287 | if (err) { |
| 288 | dev_err(&pdev->dev, "request_threaded_irq failed: irq = %d.\n", |
| 289 | pdev->irq); |
| 290 | return err; |
| 291 | } |
| 292 | |
| 293 | err = mei_restart(dev); |
| 294 | |
| 295 | return err; |
| 296 | } |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 297 | #endif /* CONFIG_PM_SLEEP */ |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 298 | |
Rafael J. Wysocki | bbd6d050 | 2014-12-04 22:43:07 +0100 | [diff] [blame] | 299 | #ifdef CONFIG_PM |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 300 | static int mei_txe_pm_runtime_idle(struct device *device) |
| 301 | { |
| 302 | struct pci_dev *pdev = to_pci_dev(device); |
| 303 | struct mei_device *dev; |
| 304 | |
| 305 | dev_dbg(&pdev->dev, "rpm: txe: runtime_idle\n"); |
| 306 | |
| 307 | dev = pci_get_drvdata(pdev); |
| 308 | if (!dev) |
| 309 | return -ENODEV; |
| 310 | if (mei_write_is_idle(dev)) |
Alexander Usyskin | d5d83f8 | 2014-07-17 10:53:36 +0300 | [diff] [blame] | 311 | pm_runtime_autosuspend(device); |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 312 | |
| 313 | return -EBUSY; |
| 314 | } |
| 315 | static int mei_txe_pm_runtime_suspend(struct device *device) |
| 316 | { |
| 317 | struct pci_dev *pdev = to_pci_dev(device); |
| 318 | struct mei_device *dev; |
| 319 | int ret; |
| 320 | |
| 321 | dev_dbg(&pdev->dev, "rpm: txe: runtime suspend\n"); |
| 322 | |
| 323 | dev = pci_get_drvdata(pdev); |
| 324 | if (!dev) |
| 325 | return -ENODEV; |
| 326 | |
| 327 | mutex_lock(&dev->device_lock); |
| 328 | |
| 329 | if (mei_write_is_idle(dev)) |
| 330 | ret = mei_txe_aliveness_set_sync(dev, 0); |
| 331 | else |
| 332 | ret = -EAGAIN; |
| 333 | |
| 334 | /* |
| 335 | * If everything is okay we're about to enter PCI low |
| 336 | * power state (D3) therefor we need to disable the |
| 337 | * interrupts towards host. |
| 338 | * However if device is not wakeable we do not enter |
| 339 | * D-low state and we need to keep the interrupt kicking |
| 340 | */ |
| 341 | if (!ret && pci_dev_run_wake(pdev)) |
| 342 | mei_disable_interrupts(dev); |
| 343 | |
| 344 | dev_dbg(&pdev->dev, "rpm: txe: runtime suspend ret=%d\n", ret); |
| 345 | |
| 346 | mutex_unlock(&dev->device_lock); |
| 347 | return ret; |
| 348 | } |
| 349 | |
| 350 | static int mei_txe_pm_runtime_resume(struct device *device) |
| 351 | { |
| 352 | struct pci_dev *pdev = to_pci_dev(device); |
| 353 | struct mei_device *dev; |
| 354 | int ret; |
| 355 | |
| 356 | dev_dbg(&pdev->dev, "rpm: txe: runtime resume\n"); |
| 357 | |
| 358 | dev = pci_get_drvdata(pdev); |
| 359 | if (!dev) |
| 360 | return -ENODEV; |
| 361 | |
| 362 | mutex_lock(&dev->device_lock); |
| 363 | |
| 364 | mei_enable_interrupts(dev); |
| 365 | |
| 366 | ret = mei_txe_aliveness_set_sync(dev, 1); |
| 367 | |
| 368 | mutex_unlock(&dev->device_lock); |
| 369 | |
| 370 | dev_dbg(&pdev->dev, "rpm: txe: runtime resume ret = %d\n", ret); |
| 371 | |
| 372 | return ret; |
| 373 | } |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 374 | |
| 375 | /** |
Geert Uytterhoeven | 7efceb5 | 2014-09-16 22:00:47 +0200 | [diff] [blame] | 376 | * mei_txe_set_pm_domain - fill and set pm domain structure for device |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 377 | * |
| 378 | * @dev: mei_device |
| 379 | */ |
| 380 | static inline void mei_txe_set_pm_domain(struct mei_device *dev) |
| 381 | { |
Tomas Winkler | d08b8fc | 2014-09-29 16:31:44 +0300 | [diff] [blame] | 382 | struct pci_dev *pdev = to_pci_dev(dev->dev); |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 383 | |
| 384 | if (pdev->dev.bus && pdev->dev.bus->pm) { |
| 385 | dev->pg_domain.ops = *pdev->dev.bus->pm; |
| 386 | |
| 387 | dev->pg_domain.ops.runtime_suspend = mei_txe_pm_runtime_suspend; |
| 388 | dev->pg_domain.ops.runtime_resume = mei_txe_pm_runtime_resume; |
| 389 | dev->pg_domain.ops.runtime_idle = mei_txe_pm_runtime_idle; |
| 390 | |
| 391 | pdev->dev.pm_domain = &dev->pg_domain; |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | /** |
Geert Uytterhoeven | 7efceb5 | 2014-09-16 22:00:47 +0200 | [diff] [blame] | 396 | * mei_txe_unset_pm_domain - clean pm domain structure for device |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 397 | * |
| 398 | * @dev: mei_device |
| 399 | */ |
| 400 | static inline void mei_txe_unset_pm_domain(struct mei_device *dev) |
| 401 | { |
| 402 | /* stop using pm callbacks if any */ |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 403 | dev->dev->pm_domain = NULL; |
Alexander Usyskin | d2d56fa | 2014-03-18 22:52:06 +0200 | [diff] [blame] | 404 | } |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 405 | |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 406 | static const struct dev_pm_ops mei_txe_pm_ops = { |
| 407 | SET_SYSTEM_SLEEP_PM_OPS(mei_txe_pci_suspend, |
| 408 | mei_txe_pci_resume) |
| 409 | SET_RUNTIME_PM_OPS( |
| 410 | mei_txe_pm_runtime_suspend, |
| 411 | mei_txe_pm_runtime_resume, |
| 412 | mei_txe_pm_runtime_idle) |
| 413 | }; |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 414 | |
| 415 | #define MEI_TXE_PM_OPS (&mei_txe_pm_ops) |
| 416 | #else |
| 417 | #define MEI_TXE_PM_OPS NULL |
Alexander Usyskin | cfe5ab8 | 2014-03-18 22:52:03 +0200 | [diff] [blame] | 418 | #endif /* CONFIG_PM */ |
| 419 | |
Tomas Winkler | 795536a | 2014-01-16 00:58:35 +0200 | [diff] [blame] | 420 | /* |
| 421 | * PCI driver structure |
| 422 | */ |
| 423 | static struct pci_driver mei_txe_driver = { |
| 424 | .name = KBUILD_MODNAME, |
| 425 | .id_table = mei_txe_pci_tbl, |
| 426 | .probe = mei_txe_probe, |
| 427 | .remove = mei_txe_remove, |
| 428 | .shutdown = mei_txe_remove, |
| 429 | .driver.pm = MEI_TXE_PM_OPS, |
| 430 | }; |
| 431 | |
| 432 | module_pci_driver(mei_txe_driver); |
| 433 | |
| 434 | MODULE_AUTHOR("Intel Corporation"); |
| 435 | MODULE_DESCRIPTION("Intel(R) Trusted Execution Environment Interface"); |
| 436 | MODULE_LICENSE("GPL v2"); |