interface.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 "mei_dev.h"
  20. #define AMT_WD_DEFAULT_TIMEOUT 120 /* seconds */
  21. #define AMT_WD_MIN_TIMEOUT 120 /* seconds */
  22. #define AMT_WD_MAX_TIMEOUT 65535 /* seconds */
  23. #define MEI_WATCHDOG_DATA_SIZE 16
  24. #define MEI_START_WD_DATA_SIZE 20
  25. #define MEI_WD_PARAMS_SIZE 4
  26. void mei_read_slots(struct mei_device *dev,
  27. unsigned char *buffer,
  28. unsigned long buffer_length);
  29. int mei_write_message(struct mei_device *dev,
  30. struct mei_msg_hdr *header,
  31. unsigned char *write_buffer,
  32. unsigned long write_length);
  33. bool mei_hbuf_is_empty(struct mei_device *dev);
  34. int mei_hbuf_empty_slots(struct mei_device *dev);
  35. static inline size_t mei_hbuf_max_data(const struct mei_device *dev)
  36. {
  37. return dev->hbuf_depth * sizeof(u32) - sizeof(struct mei_msg_hdr);
  38. }
  39. /* get slots (dwords) from a message length + header (bytes) */
  40. static inline unsigned char mei_data2slots(size_t length)
  41. {
  42. return DIV_ROUND_UP(sizeof(struct mei_msg_hdr) + length, 4);
  43. }
  44. int mei_count_full_read_slots(struct mei_device *dev);
  45. int mei_flow_ctrl_creds(struct mei_device *dev, struct mei_cl *cl);
  46. int mei_wd_send(struct mei_device *dev);
  47. int mei_wd_stop(struct mei_device *dev, bool preserve);
  48. int mei_wd_host_init(struct mei_device *dev);
  49. /*
  50. * mei_watchdog_register - Registering watchdog interface
  51. * once we got connection to the WD Client
  52. * @dev - mei device
  53. */
  54. void mei_watchdog_register(struct mei_device *dev);
  55. /*
  56. * mei_watchdog_unregister - Unregistering watchdog interface
  57. * @dev - mei device
  58. */
  59. void mei_watchdog_unregister(struct mei_device *dev);
  60. int mei_flow_ctrl_reduce(struct mei_device *dev, struct mei_cl *cl);
  61. int mei_send_flow_control(struct mei_device *dev, struct mei_cl *cl);
  62. int mei_disconnect(struct mei_device *dev, struct mei_cl *cl);
  63. int mei_other_client_is_connecting(struct mei_device *dev, struct mei_cl *cl);
  64. int mei_connect(struct mei_device *dev, struct mei_cl *cl);
  65. #endif /* _MEI_INTERFACE_H_ */