hw-me.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. *
  3. * Intel Management Engine Interface (Intel MEI) Linux driver
  4. * Copyright (c) 2003-2012, 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. #ifndef _MEI_INTERFACE_H_
  17. #define _MEI_INTERFACE_H_
  18. #include <linux/irqreturn.h>
  19. #include <linux/pci.h>
  20. #include <linux/mei.h>
  21. #include "mei_dev.h"
  22. #include "client.h"
  23. /*
  24. * mei_cfg - mei device configuration
  25. *
  26. * @fw_status: FW status
  27. * @quirk_probe: device exclusion quirk
  28. * @dma_size: device DMA buffers size
  29. * @fw_ver_supported: is fw version retrievable from FW
  30. */
  31. struct mei_cfg {
  32. const struct mei_fw_status fw_status;
  33. bool (*quirk_probe)(struct pci_dev *pdev);
  34. size_t dma_size[DMA_DSCR_NUM];
  35. u32 fw_ver_supported:1;
  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, \
  40. .driver_data = (kernel_ulong_t)(cfg),
  41. #define MEI_ME_RPM_TIMEOUT 500 /* ms */
  42. /**
  43. * struct mei_me_hw - me hw specific data
  44. *
  45. * @cfg: per device generation config and ops
  46. * @mem_addr: io memory address
  47. * @pg_state: power gating state
  48. * @d0i3_supported: di03 support
  49. * @hbuf_depth: depth of hardware host/write buffer in slots
  50. */
  51. struct mei_me_hw {
  52. const struct mei_cfg *cfg;
  53. void __iomem *mem_addr;
  54. enum mei_pg_state pg_state;
  55. bool d0i3_supported;
  56. u8 hbuf_depth;
  57. };
  58. #define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)
  59. /**
  60. * enum mei_cfg_idx - indices to platform specific configurations.
  61. *
  62. * Note: has to be synchronized with mei_cfg_list[]
  63. *
  64. * @MEI_ME_UNDEF_CFG: Lower sentinel.
  65. * @MEI_ME_ICH_CFG: I/O Controller Hub legacy devices.
  66. * @MEI_ME_ICH10_CFG: I/O Controller Hub platforms Gen10
  67. * @MEI_ME_PCH6_CFG: Platform Controller Hub platforms (Gen6).
  68. * @MEI_ME_PCH7_CFG: Platform Controller Hub platforms (Gen7).
  69. * @MEI_ME_PCH_CPT_PBG_CFG:Platform Controller Hub workstations
  70. * with quirk for Node Manager exclusion.
  71. * @MEI_ME_PCH8_CFG: Platform Controller Hub Gen8 and newer
  72. * client platforms.
  73. * @MEI_ME_PCH8_SPS_CFG: Platform Controller Hub Gen8 and newer
  74. * servers platforms with quirk for
  75. * SPS firmware exclusion.
  76. * @MEI_ME_PCH12_CFG: Platform Controller Hub Gen12 and newer
  77. * @MEI_ME_NUM_CFG: Upper Sentinel.
  78. */
  79. enum mei_cfg_idx {
  80. MEI_ME_UNDEF_CFG,
  81. MEI_ME_ICH_CFG,
  82. MEI_ME_ICH10_CFG,
  83. MEI_ME_PCH6_CFG,
  84. MEI_ME_PCH7_CFG,
  85. MEI_ME_PCH_CPT_PBG_CFG,
  86. MEI_ME_PCH8_CFG,
  87. MEI_ME_PCH8_SPS_CFG,
  88. MEI_ME_PCH12_CFG,
  89. MEI_ME_NUM_CFG,
  90. };
  91. const struct mei_cfg *mei_me_get_cfg(kernel_ulong_t idx);
  92. struct mei_device *mei_me_dev_init(struct pci_dev *pdev,
  93. const struct mei_cfg *cfg);
  94. int mei_me_pg_enter_sync(struct mei_device *dev);
  95. int mei_me_pg_exit_sync(struct mei_device *dev);
  96. irqreturn_t mei_me_irq_quick_handler(int irq, void *dev_id);
  97. irqreturn_t mei_me_irq_thread_handler(int irq, void *dev_id);
  98. #endif /* _MEI_INTERFACE_H_ */