rpmsg_internal.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * remote processor messaging bus internals
  4. *
  5. * Copyright (C) 2011 Texas Instruments, Inc.
  6. * Copyright (C) 2011 Google, Inc.
  7. *
  8. * Ohad Ben-Cohen <[email protected]>
  9. * Brian Swetland <[email protected]>
  10. */
  11. #ifndef __RPMSG_INTERNAL_H__
  12. #define __RPMSG_INTERNAL_H__
  13. #include <linux/rpmsg.h>
  14. #include <linux/poll.h>
  15. #define to_rpmsg_device(d) container_of(d, struct rpmsg_device, dev)
  16. #define to_rpmsg_driver(d) container_of(d, struct rpmsg_driver, drv)
  17. extern struct class *rpmsg_class;
  18. /**
  19. * struct rpmsg_device_ops - indirection table for the rpmsg_device operations
  20. * @create_channel: create backend-specific channel, optional
  21. * @release_channel: release backend-specific channel, optional
  22. * @create_ept: create backend-specific endpoint, required
  23. * @announce_create: announce presence of new channel, optional
  24. * @announce_destroy: announce destruction of channel, optional
  25. *
  26. * Indirection table for the operations that a rpmsg backend should implement.
  27. * @announce_create and @announce_destroy are optional as the backend might
  28. * advertise new channels implicitly by creating the endpoints.
  29. */
  30. struct rpmsg_device_ops {
  31. struct rpmsg_device *(*create_channel)(struct rpmsg_device *rpdev,
  32. struct rpmsg_channel_info *chinfo);
  33. int (*release_channel)(struct rpmsg_device *rpdev,
  34. struct rpmsg_channel_info *chinfo);
  35. struct rpmsg_endpoint *(*create_ept)(struct rpmsg_device *rpdev,
  36. rpmsg_rx_cb_t cb, void *priv,
  37. struct rpmsg_channel_info chinfo);
  38. int (*announce_create)(struct rpmsg_device *rpdev);
  39. int (*announce_destroy)(struct rpmsg_device *rpdev);
  40. };
  41. /**
  42. * struct rpmsg_endpoint_ops - indirection table for rpmsg_endpoint operations
  43. * @destroy_ept: see @rpmsg_destroy_ept(), required
  44. * @send: see @rpmsg_send(), required
  45. * @sendto: see @rpmsg_sendto(), optional
  46. * @send_offchannel: see @rpmsg_send_offchannel(), optional
  47. * @trysend: see @rpmsg_trysend(), required
  48. * @trysendto: see @rpmsg_trysendto(), optional
  49. * @trysend_offchannel: see @rpmsg_trysend_offchannel(), optional
  50. * @poll: see @rpmsg_poll(), optional
  51. * @get_mtu: see @rpmsg_get_mtu(), optional
  52. *
  53. * Indirection table for the operations that a rpmsg backend should implement.
  54. * In addition to @destroy_ept, the backend must at least implement @send and
  55. * @trysend, while the variants sending data off-channel are optional.
  56. */
  57. struct rpmsg_endpoint_ops {
  58. void (*destroy_ept)(struct rpmsg_endpoint *ept);
  59. int (*send)(struct rpmsg_endpoint *ept, void *data, int len);
  60. int (*sendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
  61. int (*send_offchannel)(struct rpmsg_endpoint *ept, u32 src, u32 dst,
  62. void *data, int len);
  63. int (*trysend)(struct rpmsg_endpoint *ept, void *data, int len);
  64. int (*trysendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
  65. int (*trysend_offchannel)(struct rpmsg_endpoint *ept, u32 src, u32 dst,
  66. void *data, int len);
  67. __poll_t (*poll)(struct rpmsg_endpoint *ept, struct file *filp,
  68. poll_table *wait);
  69. ssize_t (*get_mtu)(struct rpmsg_endpoint *ept);
  70. };
  71. struct device *rpmsg_find_device(struct device *parent,
  72. struct rpmsg_channel_info *chinfo);
  73. struct rpmsg_device *rpmsg_create_channel(struct rpmsg_device *rpdev,
  74. struct rpmsg_channel_info *chinfo);
  75. int rpmsg_release_channel(struct rpmsg_device *rpdev,
  76. struct rpmsg_channel_info *chinfo);
  77. /**
  78. * rpmsg_ctrldev_register_device() - register a char device for control based on rpdev
  79. * @rpdev: prepared rpdev to be used for creating endpoints
  80. *
  81. * This function wraps rpmsg_register_device() preparing the rpdev for use as
  82. * basis for the rpmsg chrdev.
  83. */
  84. static inline int rpmsg_ctrldev_register_device(struct rpmsg_device *rpdev)
  85. {
  86. return rpmsg_register_device_override(rpdev, "rpmsg_ctrl");
  87. }
  88. #endif