rpmsg_internal.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * remote processor messaging bus internals
  3. *
  4. * Copyright (C) 2011 Texas Instruments, Inc.
  5. * Copyright (C) 2011 Google, Inc.
  6. *
  7. * Ohad Ben-Cohen <ohad@wizery.com>
  8. * Brian Swetland <swetland@google.com>
  9. *
  10. * This software is licensed under the terms of the GNU General Public
  11. * License version 2, as published by the Free Software Foundation, and
  12. * may be copied, distributed, and modified under those terms.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. */
  19. #ifndef __RPMSG_INTERNAL_H__
  20. #define __RPMSG_INTERNAL_H__
  21. #include <linux/rpmsg.h>
  22. #include <linux/poll.h>
  23. #define to_rpmsg_device(d) container_of(d, struct rpmsg_device, dev)
  24. #define to_rpmsg_driver(d) container_of(d, struct rpmsg_driver, drv)
  25. /**
  26. * struct rpmsg_device_ops - indirection table for the rpmsg_device operations
  27. * @create_ept: create backend-specific endpoint, requried
  28. * @announce_create: announce presence of new channel, optional
  29. * @announce_destroy: announce destruction of channel, optional
  30. *
  31. * Indirection table for the operations that a rpmsg backend should implement.
  32. * @announce_create and @announce_destroy are optional as the backend might
  33. * advertise new channels implicitly by creating the endpoints.
  34. */
  35. struct rpmsg_device_ops {
  36. struct rpmsg_endpoint *(*create_ept)(struct rpmsg_device *rpdev,
  37. rpmsg_rx_cb_t cb, void *priv,
  38. struct rpmsg_channel_info chinfo);
  39. int (*announce_create)(struct rpmsg_device *ept);
  40. int (*announce_destroy)(struct rpmsg_device *ept);
  41. };
  42. /**
  43. * struct rpmsg_endpoint_ops - indirection table for rpmsg_endpoint operations
  44. * @destroy_ept: destroy the given endpoint, required
  45. * @send: see @rpmsg_send(), required
  46. * @sendto: see @rpmsg_sendto(), optional
  47. * @send_offchannel: see @rpmsg_send_offchannel(), optional
  48. * @trysend: see @rpmsg_trysend(), required
  49. * @trysendto: see @rpmsg_trysendto(), optional
  50. * @trysend_offchannel: see @rpmsg_trysend_offchannel(), optional
  51. *
  52. * Indirection table for the operations that a rpmsg backend should implement.
  53. * In addition to @destroy_ept, the backend must at least implement @send and
  54. * @trysend, while the variants sending data off-channel are optional.
  55. */
  56. struct rpmsg_endpoint_ops {
  57. void (*destroy_ept)(struct rpmsg_endpoint *ept);
  58. int (*send)(struct rpmsg_endpoint *ept, void *data, int len);
  59. int (*sendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
  60. int (*send_offchannel)(struct rpmsg_endpoint *ept, u32 src, u32 dst,
  61. void *data, int len);
  62. int (*trysend)(struct rpmsg_endpoint *ept, void *data, int len);
  63. int (*trysendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
  64. int (*trysend_offchannel)(struct rpmsg_endpoint *ept, u32 src, u32 dst,
  65. void *data, int len);
  66. unsigned int (*poll)(struct rpmsg_endpoint *ept, struct file *filp,
  67. poll_table *wait);
  68. };
  69. int rpmsg_register_device(struct rpmsg_device *rpdev);
  70. int rpmsg_unregister_device(struct device *parent,
  71. struct rpmsg_channel_info *chinfo);
  72. struct device *rpmsg_find_device(struct device *parent,
  73. struct rpmsg_channel_info *chinfo);
  74. /**
  75. * rpmsg_chrdev_register_device() - register chrdev device based on rpdev
  76. * @rpdev: prepared rpdev to be used for creating endpoints
  77. *
  78. * This function wraps rpmsg_register_device() preparing the rpdev for use as
  79. * basis for the rpmsg chrdev.
  80. */
  81. static inline int rpmsg_chrdev_register_device(struct rpmsg_device *rpdev)
  82. {
  83. strcpy(rpdev->id.name, "rpmsg_chrdev");
  84. rpdev->driver_override = "rpmsg_chrdev";
  85. return rpmsg_register_device(rpdev);
  86. }
  87. #endif