hw-me.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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/mei.h>
  19. #include <linux/irqreturn.h>
  20. #include "mei_dev.h"
  21. #include "client.h"
  22. #define MEI_ME_RPM_TIMEOUT 500 /* ms */
  23. struct mei_me_hw {
  24. void __iomem *mem_addr;
  25. /*
  26. * hw states of host and fw(ME)
  27. */
  28. u32 host_hw_state;
  29. u32 me_hw_state;
  30. enum mei_pg_state pg_state;
  31. };
  32. #define to_me_hw(dev) (struct mei_me_hw *)((dev)->hw)
  33. extern const struct mei_cfg mei_me_legacy_cfg;
  34. extern const struct mei_cfg mei_me_ich_cfg;
  35. extern const struct mei_cfg mei_me_pch_cfg;
  36. extern const struct mei_cfg mei_me_pch_cpt_pbg_cfg;
  37. extern const struct mei_cfg mei_me_lpt_cfg;
  38. struct mei_device *mei_me_dev_init(struct pci_dev *pdev,
  39. const struct mei_cfg *cfg);
  40. int mei_me_pg_set_sync(struct mei_device *dev);
  41. int mei_me_pg_unset_sync(struct mei_device *dev);
  42. irqreturn_t mei_me_irq_quick_handler(int irq, void *dev_id);
  43. irqreturn_t mei_me_irq_thread_handler(int irq, void *dev_id);
  44. #endif /* _MEI_INTERFACE_H_ */