client.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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_CLIENT_H_
  17. #define _MEI_CLIENT_H_
  18. #include <linux/types.h>
  19. #include <linux/watchdog.h>
  20. #include <linux/poll.h>
  21. #include <linux/mei.h>
  22. #include "mei_dev.h"
  23. int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid);
  24. int mei_me_cl_by_id(struct mei_device *dev, u8 client_id);
  25. /*
  26. * MEI IO Functions
  27. */
  28. struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, struct file *fp);
  29. void mei_io_cb_free(struct mei_cl_cb *priv_cb);
  30. int mei_io_cb_alloc_req_buf(struct mei_cl_cb *cb, size_t length);
  31. int mei_io_cb_alloc_resp_buf(struct mei_cl_cb *cb, size_t length);
  32. /**
  33. * mei_io_list_init - Sets up a queue list.
  34. *
  35. * @list: An instance cl callback structure
  36. */
  37. static inline void mei_io_list_init(struct mei_cl_cb *list)
  38. {
  39. INIT_LIST_HEAD(&list->list);
  40. }
  41. /*
  42. * MEI Host Client Functions
  43. */
  44. struct mei_cl *mei_cl_allocate(struct mei_device *dev);
  45. void mei_cl_init(struct mei_cl *cl, struct mei_device *dev);
  46. int mei_cl_link(struct mei_cl *cl, int id);
  47. int mei_cl_unlink(struct mei_cl *cl);
  48. int mei_cl_flush_queues(struct mei_cl *cl);
  49. struct mei_cl_cb *mei_cl_find_read_cb(struct mei_cl *cl);
  50. int mei_cl_flow_ctrl_creds(struct mei_cl *cl);
  51. int mei_cl_flow_ctrl_reduce(struct mei_cl *cl);
  52. /*
  53. * MEI input output function prototype
  54. */
  55. static inline bool mei_cl_is_connected(struct mei_cl *cl)
  56. {
  57. return cl->dev &&
  58. cl->dev->dev_state == MEI_DEV_ENABLED &&
  59. cl->state == MEI_FILE_CONNECTED;
  60. }
  61. static inline bool mei_cl_is_transitioning(struct mei_cl *cl)
  62. {
  63. return MEI_FILE_INITIALIZING == cl->state ||
  64. MEI_FILE_DISCONNECTED == cl->state ||
  65. MEI_FILE_DISCONNECTING == cl->state;
  66. }
  67. bool mei_cl_is_other_connecting(struct mei_cl *cl);
  68. int mei_cl_disconnect(struct mei_cl *cl);
  69. int mei_cl_connect(struct mei_cl *cl, struct file *file);
  70. int mei_cl_read_start(struct mei_cl *cl, size_t length);
  71. int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb, bool blocking);
  72. int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
  73. struct mei_cl_cb *cmpl_list);
  74. void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb);
  75. void mei_host_client_init(struct work_struct *work);
  76. void mei_cl_all_disconnect(struct mei_device *dev);
  77. void mei_cl_all_wakeup(struct mei_device *dev);
  78. void mei_cl_all_write_clear(struct mei_device *dev);
  79. #define MEI_CL_FMT "cl:host=%02d me=%02d "
  80. #define MEI_CL_PRM(cl) (cl)->host_client_id, (cl)->me_client_id
  81. #define cl_dbg(dev, cl, format, arg...) \
  82. dev_dbg(&(dev)->pdev->dev, MEI_CL_FMT format, MEI_CL_PRM(cl), ##arg)
  83. #define cl_err(dev, cl, format, arg...) \
  84. dev_err(&(dev)->pdev->dev, MEI_CL_FMT format, MEI_CL_PRM(cl), ##arg)
  85. #endif /* _MEI_CLIENT_H_ */