rpmsg_internal.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 <ohad@wizery.com>
  9. * Brian Swetland <swetland@google.com>
  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. /**
  18. * struct rpmsg_device_ops - indirection table for the rpmsg_device operations
  19. * @create_ept: create backend-specific endpoint, requried
  20. * @announce_create: announce presence of new channel, optional
  21. * @announce_destroy: announce destruction of channel, optional
  22. *
  23. * Indirection table for the operations that a rpmsg backend should implement.
  24. * @announce_create and @announce_destroy are optional as the backend might
  25. * advertise new channels implicitly by creating the endpoints.
  26. */
  27. struct rpmsg_device_ops {
  28. struct rpmsg_endpoint *(*create_ept)(struct rpmsg_device *rpdev,
  29. rpmsg_rx_cb_t cb, void *priv,
  30. struct rpmsg_channel_info chinfo);
  31. int (*announce_create)(struct rpmsg_device *ept);
  32. int (*announce_destroy)(struct rpmsg_device *ept);
  33. };
  34. /**
  35. * struct rpmsg_endpoint_ops - indirection table for rpmsg_endpoint operations
  36. * @destroy_ept: destroy the given endpoint, required
  37. * @send: see @rpmsg_send(), required
  38. * @sendto: see @rpmsg_sendto(), optional
  39. * @send_offchannel: see @rpmsg_send_offchannel(), optional
  40. * @trysend: see @rpmsg_trysend(), required
  41. * @trysendto: see @rpmsg_trysendto(), optional
  42. * @trysend_offchannel: see @rpmsg_trysend_offchannel(), optional
  43. *
  44. * Indirection table for the operations that a rpmsg backend should implement.
  45. * In addition to @destroy_ept, the backend must at least implement @send and
  46. * @trysend, while the variants sending data off-channel are optional.
  47. */
  48. struct rpmsg_endpoint_ops {
  49. void (*destroy_ept)(struct rpmsg_endpoint *ept);
  50. int (*send)(struct rpmsg_endpoint *ept, void *data, int len);
  51. int (*sendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
  52. int (*send_offchannel)(struct rpmsg_endpoint *ept, u32 src, u32 dst,
  53. void *data, int len);
  54. int (*trysend)(struct rpmsg_endpoint *ept, void *data, int len);
  55. int (*trysendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst);
  56. int (*trysend_offchannel)(struct rpmsg_endpoint *ept, u32 src, u32 dst,
  57. void *data, int len);
  58. __poll_t (*poll)(struct rpmsg_endpoint *ept, struct file *filp,
  59. poll_table *wait);
  60. };
  61. int rpmsg_register_device(struct rpmsg_device *rpdev);
  62. int rpmsg_unregister_device(struct device *parent,
  63. struct rpmsg_channel_info *chinfo);
  64. struct device *rpmsg_find_device(struct device *parent,
  65. struct rpmsg_channel_info *chinfo);
  66. /**
  67. * rpmsg_chrdev_register_device() - register chrdev device based on rpdev
  68. * @rpdev: prepared rpdev to be used for creating endpoints
  69. *
  70. * This function wraps rpmsg_register_device() preparing the rpdev for use as
  71. * basis for the rpmsg chrdev.
  72. */
  73. static inline int rpmsg_chrdev_register_device(struct rpmsg_device *rpdev)
  74. {
  75. strcpy(rpdev->id.name, "rpmsg_chrdev");
  76. rpdev->driver_override = "rpmsg_chrdev";
  77. return rpmsg_register_device(rpdev);
  78. }
  79. #endif