/drivers/staging/vc04_services/interface/vchi/vchi.h

https://github.com/ThomasHabets/linux · C Header · 159 lines · 74 code · 34 blank · 51 comment · 1 complexity · 986202358f1507beadb0905cbe35c64a MD5 · raw file

  1. /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
  2. /* Copyright (c) 2010-2012 Broadcom. All rights reserved. */
  3. #ifndef VCHI_H_
  4. #define VCHI_H_
  5. #include "vchi_cfg.h"
  6. #include "vchi_common.h"
  7. /******************************************************************************
  8. * Global defs
  9. *****************************************************************************/
  10. #define VCHI_BULK_ROUND_UP(x) ((((unsigned long)(x)) + VCHI_BULK_ALIGN - 1) & ~(VCHI_BULK_ALIGN - 1))
  11. #define VCHI_BULK_ROUND_DOWN(x) (((unsigned long)(x)) & ~(VCHI_BULK_ALIGN - 1))
  12. #define VCHI_BULK_ALIGN_NBYTES(x) (VCHI_BULK_ALIGNED(x) ? 0 : (VCHI_BULK_ALIGN - ((unsigned long)(x) & (VCHI_BULK_ALIGN - 1))))
  13. #ifdef USE_VCHIQ_ARM
  14. #define VCHI_BULK_ALIGNED(x) 1
  15. #else
  16. #define VCHI_BULK_ALIGNED(x) (((unsigned long)(x) & (VCHI_BULK_ALIGN - 1)) == 0)
  17. #endif
  18. struct vchi_version {
  19. uint32_t version;
  20. uint32_t version_min;
  21. };
  22. #define VCHI_VERSION(v_) { v_, v_ }
  23. #define VCHI_VERSION_EX(v_, m_) { v_, m_ }
  24. // Macros to manipulate 'FOURCC' values
  25. #define MAKE_FOURCC(x) ((int32_t)((x[0] << 24) | (x[1] << 16) | (x[2] << 8) | x[3]))
  26. // Opaque service information
  27. struct opaque_vchi_service_t;
  28. // Descriptor for a held message. Allocated by client, initialised by vchi_msg_hold,
  29. // vchi_msg_iter_hold or vchi_msg_iter_hold_next. Fields are for internal VCHI use only.
  30. struct vchi_held_msg {
  31. struct opaque_vchi_service_t *service;
  32. void *message;
  33. };
  34. // structure used to provide the information needed to open a server or a client
  35. struct service_creation {
  36. struct vchi_version version;
  37. int32_t service_id;
  38. vchi_callback callback;
  39. void *callback_param;
  40. };
  41. // Opaque handle for a VCHI instance
  42. struct vchi_instance_handle;
  43. // Opaque handle for a server or client
  44. struct vchi_service_handle;
  45. /******************************************************************************
  46. * Global funcs - implementation is specific to which side you are on
  47. * (local / remote)
  48. *****************************************************************************/
  49. // Routine used to initialise the vchi on both local + remote connections
  50. extern int32_t vchi_initialise(struct vchi_instance_handle **instance_handle);
  51. extern int32_t vchi_connect(struct vchi_instance_handle *instance_handle);
  52. //When this is called, ensure that all services have no data pending.
  53. //Bulk transfers can remain 'queued'
  54. extern int32_t vchi_disconnect(struct vchi_instance_handle *instance_handle);
  55. /******************************************************************************
  56. * Global service API
  57. *****************************************************************************/
  58. // Routine to open a named service
  59. extern int32_t vchi_service_open(struct vchi_instance_handle *instance_handle,
  60. struct service_creation *setup,
  61. struct vchi_service_handle **handle);
  62. extern int32_t vchi_get_peer_version(const struct vchi_service_handle *handle,
  63. short *peer_version);
  64. // Routine to close a named service
  65. extern int32_t vchi_service_close(const struct vchi_service_handle *handle);
  66. // Routine to increment ref count on a named service
  67. extern int32_t vchi_service_use(const struct vchi_service_handle *handle);
  68. // Routine to decrement ref count on a named service
  69. extern int32_t vchi_service_release(const struct vchi_service_handle *handle);
  70. /* Routine to send a message from kernel memory across a service */
  71. extern int
  72. vchi_queue_kernel_message(struct vchi_service_handle *handle,
  73. void *data,
  74. unsigned int size);
  75. // Routine to receive a msg from a service
  76. // Dequeue is equivalent to hold, copy into client buffer, release
  77. extern int32_t vchi_msg_dequeue(struct vchi_service_handle *handle,
  78. void *data,
  79. uint32_t max_data_size_to_read,
  80. uint32_t *actual_msg_size,
  81. enum vchi_flags flags);
  82. // Routine to look at a message in place.
  83. // The message is not dequeued, so a subsequent call to peek or dequeue
  84. // will return the same message.
  85. extern int32_t vchi_msg_peek(struct vchi_service_handle *handle,
  86. void **data,
  87. uint32_t *msg_size,
  88. enum vchi_flags flags);
  89. // Routine to remove a message after it has been read in place with peek
  90. // The first message on the queue is dequeued.
  91. extern int32_t vchi_msg_remove(struct vchi_service_handle *handle);
  92. // Routine to look at a message in place.
  93. // The message is dequeued, so the caller is left holding it; the descriptor is
  94. // filled in and must be released when the user has finished with the message.
  95. extern int32_t vchi_msg_hold(struct vchi_service_handle *handle,
  96. void **data, // } may be NULL, as info can be
  97. uint32_t *msg_size, // } obtained from HELD_MSG_T
  98. enum vchi_flags flags,
  99. struct vchi_held_msg *message_descriptor);
  100. /*******************************************************************************
  101. * Global service support API - operations on held messages
  102. * and message iterators
  103. ******************************************************************************/
  104. // Routine to release a held message after it has been processed
  105. extern int32_t vchi_held_msg_release(struct vchi_held_msg *message);
  106. /******************************************************************************
  107. * Global bulk API
  108. *****************************************************************************/
  109. // Routine to prepare interface for a transfer from the other side
  110. extern int32_t vchi_bulk_queue_receive(struct vchi_service_handle *handle,
  111. void *data_dst,
  112. uint32_t data_size,
  113. enum vchi_flags flags,
  114. void *transfer_handle);
  115. // Routine to queue up data ready for transfer to the other (once they have signalled they are ready)
  116. extern int32_t vchi_bulk_queue_transmit(struct vchi_service_handle *handle,
  117. const void *data_src,
  118. uint32_t data_size,
  119. enum vchi_flags flags,
  120. void *transfer_handle);
  121. /******************************************************************************
  122. * Configuration plumbing
  123. *****************************************************************************/
  124. #endif /* VCHI_H_ */
  125. /****************************** End of file **********************************/