dma-buf-sharing.txt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. DMA Buffer Sharing API Guide
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. Sumit Semwal
  4. <sumit dot semwal at linaro dot org>
  5. <sumit dot semwal at ti dot com>
  6. This document serves as a guide to device-driver writers on what is the dma-buf
  7. buffer sharing API, how to use it for exporting and using shared buffers.
  8. Any device driver which wishes to be a part of DMA buffer sharing, can do so as
  9. either the 'exporter' of buffers, or the 'user' of buffers.
  10. Say a driver A wants to use buffers created by driver B, then we call B as the
  11. exporter, and A as buffer-user.
  12. The exporter
  13. - implements and manages operations[1] for the buffer
  14. - allows other users to share the buffer by using dma_buf sharing APIs,
  15. - manages the details of buffer allocation,
  16. - decides about the actual backing storage where this allocation happens,
  17. - takes care of any migration of scatterlist - for all (shared) users of this
  18. buffer,
  19. The buffer-user
  20. - is one of (many) sharing users of the buffer.
  21. - doesn't need to worry about how the buffer is allocated, or where.
  22. - needs a mechanism to get access to the scatterlist that makes up this buffer
  23. in memory, mapped into its own address space, so it can access the same area
  24. of memory.
  25. *IMPORTANT*: [see https://lkml.org/lkml/2011/12/20/211 for more details]
  26. For this first version, A buffer shared using the dma_buf sharing API:
  27. - *may* be exported to user space using "mmap" *ONLY* by exporter, outside of
  28. this framework.
  29. - may be used *ONLY* by importers that do not need CPU access to the buffer.
  30. The dma_buf buffer sharing API usage contains the following steps:
  31. 1. Exporter announces that it wishes to export a buffer
  32. 2. Userspace gets the file descriptor associated with the exported buffer, and
  33. passes it around to potential buffer-users based on use case
  34. 3. Each buffer-user 'connects' itself to the buffer
  35. 4. When needed, buffer-user requests access to the buffer from exporter
  36. 5. When finished with its use, the buffer-user notifies end-of-DMA to exporter
  37. 6. when buffer-user is done using this buffer completely, it 'disconnects'
  38. itself from the buffer.
  39. 1. Exporter's announcement of buffer export
  40. The buffer exporter announces its wish to export a buffer. In this, it
  41. connects its own private buffer data, provides implementation for operations
  42. that can be performed on the exported dma_buf, and flags for the file
  43. associated with this buffer.
  44. Interface:
  45. struct dma_buf *dma_buf_export(void *priv, struct dma_buf_ops *ops,
  46. size_t size, int flags)
  47. If this succeeds, dma_buf_export allocates a dma_buf structure, and returns a
  48. pointer to the same. It also associates an anonymous file with this buffer,
  49. so it can be exported. On failure to allocate the dma_buf object, it returns
  50. NULL.
  51. 2. Userspace gets a handle to pass around to potential buffer-users
  52. Userspace entity requests for a file-descriptor (fd) which is a handle to the
  53. anonymous file associated with the buffer. It can then share the fd with other
  54. drivers and/or processes.
  55. Interface:
  56. int dma_buf_fd(struct dma_buf *dmabuf)
  57. This API installs an fd for the anonymous file associated with this buffer;
  58. returns either 'fd', or error.
  59. 3. Each buffer-user 'connects' itself to the buffer
  60. Each buffer-user now gets a reference to the buffer, using the fd passed to
  61. it.
  62. Interface:
  63. struct dma_buf *dma_buf_get(int fd)
  64. This API will return a reference to the dma_buf, and increment refcount for
  65. it.
  66. After this, the buffer-user needs to attach its device with the buffer, which
  67. helps the exporter to know of device buffer constraints.
  68. Interface:
  69. struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
  70. struct device *dev)
  71. This API returns reference to an attachment structure, which is then used
  72. for scatterlist operations. It will optionally call the 'attach' dma_buf
  73. operation, if provided by the exporter.
  74. The dma-buf sharing framework does the bookkeeping bits related to managing
  75. the list of all attachments to a buffer.
  76. Until this stage, the buffer-exporter has the option to choose not to actually
  77. allocate the backing storage for this buffer, but wait for the first buffer-user
  78. to request use of buffer for allocation.
  79. 4. When needed, buffer-user requests access to the buffer
  80. Whenever a buffer-user wants to use the buffer for any DMA, it asks for
  81. access to the buffer using dma_buf_map_attachment API. At least one attach to
  82. the buffer must have happened before map_dma_buf can be called.
  83. Interface:
  84. struct sg_table * dma_buf_map_attachment(struct dma_buf_attachment *,
  85. enum dma_data_direction);
  86. This is a wrapper to dma_buf->ops->map_dma_buf operation, which hides the
  87. "dma_buf->ops->" indirection from the users of this interface.
  88. In struct dma_buf_ops, map_dma_buf is defined as
  89. struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *,
  90. enum dma_data_direction);
  91. It is one of the buffer operations that must be implemented by the exporter.
  92. It should return the sg_table containing scatterlist for this buffer, mapped
  93. into caller's address space.
  94. If this is being called for the first time, the exporter can now choose to
  95. scan through the list of attachments for this buffer, collate the requirements
  96. of the attached devices, and choose an appropriate backing storage for the
  97. buffer.
  98. Based on enum dma_data_direction, it might be possible to have multiple users
  99. accessing at the same time (for reading, maybe), or any other kind of sharing
  100. that the exporter might wish to make available to buffer-users.
  101. map_dma_buf() operation can return -EINTR if it is interrupted by a signal.
  102. 5. When finished, the buffer-user notifies end-of-DMA to exporter
  103. Once the DMA for the current buffer-user is over, it signals 'end-of-DMA' to
  104. the exporter using the dma_buf_unmap_attachment API.
  105. Interface:
  106. void dma_buf_unmap_attachment(struct dma_buf_attachment *,
  107. struct sg_table *);
  108. This is a wrapper to dma_buf->ops->unmap_dma_buf() operation, which hides the
  109. "dma_buf->ops->" indirection from the users of this interface.
  110. In struct dma_buf_ops, unmap_dma_buf is defined as
  111. void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *);
  112. unmap_dma_buf signifies the end-of-DMA for the attachment provided. Like
  113. map_dma_buf, this API also must be implemented by the exporter.
  114. 6. when buffer-user is done using this buffer, it 'disconnects' itself from the
  115. buffer.
  116. After the buffer-user has no more interest in using this buffer, it should
  117. disconnect itself from the buffer:
  118. - it first detaches itself from the buffer.
  119. Interface:
  120. void dma_buf_detach(struct dma_buf *dmabuf,
  121. struct dma_buf_attachment *dmabuf_attach);
  122. This API removes the attachment from the list in dmabuf, and optionally calls
  123. dma_buf->ops->detach(), if provided by exporter, for any housekeeping bits.
  124. - Then, the buffer-user returns the buffer reference to exporter.
  125. Interface:
  126. void dma_buf_put(struct dma_buf *dmabuf);
  127. This API then reduces the refcount for this buffer.
  128. If, as a result of this call, the refcount becomes 0, the 'release' file
  129. operation related to this fd is called. It calls the dmabuf->ops->release()
  130. operation in turn, and frees the memory allocated for dmabuf when exported.
  131. NOTES:
  132. - Importance of attach-detach and {map,unmap}_dma_buf operation pairs
  133. The attach-detach calls allow the exporter to figure out backing-storage
  134. constraints for the currently-interested devices. This allows preferential
  135. allocation, and/or migration of pages across different types of storage
  136. available, if possible.
  137. Bracketing of DMA access with {map,unmap}_dma_buf operations is essential
  138. to allow just-in-time backing of storage, and migration mid-way through a
  139. use-case.
  140. - Migration of backing storage if needed
  141. If after
  142. - at least one map_dma_buf has happened,
  143. - and the backing storage has been allocated for this buffer,
  144. another new buffer-user intends to attach itself to this buffer, it might
  145. be allowed, if possible for the exporter.
  146. In case it is allowed by the exporter:
  147. if the new buffer-user has stricter 'backing-storage constraints', and the
  148. exporter can handle these constraints, the exporter can just stall on the
  149. map_dma_buf until all outstanding access is completed (as signalled by
  150. unmap_dma_buf).
  151. Once all users have finished accessing and have unmapped this buffer, the
  152. exporter could potentially move the buffer to the stricter backing-storage,
  153. and then allow further {map,unmap}_dma_buf operations from any buffer-user
  154. from the migrated backing-storage.
  155. If the exporter cannot fulfil the backing-storage constraints of the new
  156. buffer-user device as requested, dma_buf_attach() would return an error to
  157. denote non-compatibility of the new buffer-sharing request with the current
  158. buffer.
  159. If the exporter chooses not to allow an attach() operation once a
  160. map_dma_buf() API has been called, it simply returns an error.
  161. Miscellaneous notes:
  162. - Any exporters or users of the dma-buf buffer sharing framework must have
  163. a 'select DMA_SHARED_BUFFER' in their respective Kconfigs.
  164. References:
  165. [1] struct dma_buf_ops in include/linux/dma-buf.h
  166. [2] All interfaces mentioned above defined in include/linux/dma-buf.h