client.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl);
  42. /*
  43. * MEI Host Client Functions
  44. */
  45. struct mei_cl *mei_cl_allocate(struct mei_device *dev);
  46. void mei_cl_init(struct mei_cl *cl, struct mei_device *dev);
  47. int mei_cl_link(struct mei_cl *cl, int id);
  48. int mei_cl_unlink(struct mei_cl *cl);
  49. int mei_cl_flush_queues(struct mei_cl *cl);
  50. struct mei_cl_cb *mei_cl_find_read_cb(struct mei_cl *cl);
  51. /**
  52. * mei_cl_cmp_id - tells if file private data have same id
  53. *
  54. * @fe1: private data of 1. file object
  55. * @fe2: private data of 2. file object
  56. *
  57. * returns true - if ids are the same and not NULL
  58. */
  59. static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
  60. const struct mei_cl *cl2)
  61. {
  62. return cl1 && cl2 &&
  63. (cl1->host_client_id == cl2->host_client_id) &&
  64. (cl1->me_client_id == cl2->me_client_id);
  65. }
  66. int mei_cl_flow_ctrl_creds(struct mei_cl *cl);
  67. int mei_cl_flow_ctrl_reduce(struct mei_cl *cl);
  68. /*
  69. * MEI input output function prototype
  70. */
  71. bool mei_cl_is_other_connecting(struct mei_cl *cl);
  72. int mei_cl_disconnect(struct mei_cl *cl);
  73. int mei_cl_read_start(struct mei_cl *cl);
  74. int mei_cl_connect(struct mei_cl *cl, struct file *file);
  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_read_wakeup(struct mei_device *dev);
  78. void mei_cl_all_write_clear(struct mei_device *dev);
  79. #endif /* _MEI_CLIENT_H_ */