drm_buffer.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /**************************************************************************
  2. *
  3. * Copyright 2010 Pauli Nieminen.
  4. * All Rights Reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sub license, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice (including the
  15. * next paragraph) shall be included in all copies or substantial portions
  16. * of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
  21. * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
  22. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  23. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  24. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. *
  27. **************************************************************************/
  28. /*
  29. * Multipart buffer for coping data which is larger than the page size.
  30. *
  31. * Authors:
  32. * Pauli Nieminen <suokkos-at-gmail-dot-com>
  33. */
  34. #ifndef _DRM_BUFFER_H_
  35. #define _DRM_BUFFER_H_
  36. #include <drm/drmP.h>
  37. struct drm_buffer {
  38. int iterator;
  39. int size;
  40. char *data[];
  41. };
  42. /**
  43. * Return the index of page that buffer is currently pointing at.
  44. */
  45. static inline int drm_buffer_page(struct drm_buffer *buf)
  46. {
  47. return buf->iterator / PAGE_SIZE;
  48. }
  49. /**
  50. * Return the index of the current byte in the page
  51. */
  52. static inline int drm_buffer_index(struct drm_buffer *buf)
  53. {
  54. return buf->iterator & (PAGE_SIZE - 1);
  55. }
  56. /**
  57. * Return number of bytes that is left to process
  58. */
  59. static inline int drm_buffer_unprocessed(struct drm_buffer *buf)
  60. {
  61. return buf->size - buf->iterator;
  62. }
  63. /**
  64. * Advance the buffer iterator number of bytes that is given.
  65. */
  66. static inline void drm_buffer_advance(struct drm_buffer *buf, int bytes)
  67. {
  68. buf->iterator += bytes;
  69. }
  70. /**
  71. * Allocate the drm buffer object.
  72. *
  73. * buf: A pointer to a pointer where the object is stored.
  74. * size: The number of bytes to allocate.
  75. */
  76. extern int drm_buffer_alloc(struct drm_buffer **buf, int size);
  77. /**
  78. * Copy the user data to the begin of the buffer and reset the processing
  79. * iterator.
  80. *
  81. * user_data: A pointer the data that is copied to the buffer.
  82. * size: The Number of bytes to copy.
  83. */
  84. extern int drm_buffer_copy_from_user(struct drm_buffer *buf,
  85. void __user *user_data, int size);
  86. /**
  87. * Free the drm buffer object
  88. */
  89. extern void drm_buffer_free(struct drm_buffer *buf);
  90. /**
  91. * Read an object from buffer that may be split to multiple parts. If object
  92. * is not split function just returns the pointer to object in buffer. But in
  93. * case of split object data is copied to given stack object that is suplied
  94. * by caller.
  95. *
  96. * The processing location of the buffer is also advanced to the next byte
  97. * after the object.
  98. *
  99. * objsize: The size of the objet in bytes.
  100. * stack_obj: A pointer to a memory location where object can be copied.
  101. */
  102. extern void *drm_buffer_read_object(struct drm_buffer *buf,
  103. int objsize, void *stack_obj);
  104. /**
  105. * Returns the pointer to the dword which is offset number of elements from the
  106. * current processing location.
  107. *
  108. * Caller must make sure that dword is not split in the buffer. This
  109. * requirement is easily met if all the sizes of objects in buffer are
  110. * multiples of dword and PAGE_SIZE is multiple dword.
  111. *
  112. * Call to this function doesn't change the processing location.
  113. *
  114. * offset: The index of the dword relative to the internat iterator.
  115. */
  116. static inline void *drm_buffer_pointer_to_dword(struct drm_buffer *buffer,
  117. int offset)
  118. {
  119. int iter = buffer->iterator + offset * 4;
  120. return &buffer->data[iter / PAGE_SIZE][iter & (PAGE_SIZE - 1)];
  121. }
  122. /**
  123. * Returns the pointer to the dword which is offset number of elements from
  124. * the current processing location.
  125. *
  126. * Call to this function doesn't change the processing location.
  127. *
  128. * offset: The index of the byte relative to the internat iterator.
  129. */
  130. static inline void *drm_buffer_pointer_to_byte(struct drm_buffer *buffer,
  131. int offset)
  132. {
  133. int iter = buffer->iterator + offset;
  134. return &buffer->data[iter / PAGE_SIZE][iter & (PAGE_SIZE - 1)];
  135. }
  136. #endif