radeon_object.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright 2008 Advanced Micro Devices, Inc.
  3. * Copyright 2008 Red Hat Inc.
  4. * Copyright 2009 Jerome Glisse.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  20. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  21. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  22. * OTHER DEALINGS IN THE SOFTWARE.
  23. *
  24. * Authors: Dave Airlie
  25. * Alex Deucher
  26. * Jerome Glisse
  27. */
  28. #ifndef __RADEON_OBJECT_H__
  29. #define __RADEON_OBJECT_H__
  30. #include <drm/radeon_drm.h>
  31. #include "radeon.h"
  32. /**
  33. * radeon_mem_type_to_domain - return domain corresponding to mem_type
  34. * @mem_type: ttm memory type
  35. *
  36. * Returns corresponding domain of the ttm mem_type
  37. */
  38. static inline unsigned radeon_mem_type_to_domain(u32 mem_type)
  39. {
  40. switch (mem_type) {
  41. case TTM_PL_VRAM:
  42. return RADEON_GEM_DOMAIN_VRAM;
  43. case TTM_PL_TT:
  44. return RADEON_GEM_DOMAIN_GTT;
  45. case TTM_PL_SYSTEM:
  46. return RADEON_GEM_DOMAIN_CPU;
  47. default:
  48. break;
  49. }
  50. return 0;
  51. }
  52. /**
  53. * radeon_bo_reserve - reserve bo
  54. * @bo: bo structure
  55. * @no_wait: don't sleep while trying to reserve (return -EBUSY)
  56. *
  57. * Returns:
  58. * -EBUSY: buffer is busy and @no_wait is true
  59. * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
  60. * a signal. Release all buffer reservations and return to user-space.
  61. */
  62. static inline int radeon_bo_reserve(struct radeon_bo *bo, bool no_wait)
  63. {
  64. int r;
  65. r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
  66. if (unlikely(r != 0)) {
  67. if (r != -ERESTARTSYS)
  68. dev_err(bo->rdev->dev, "%p reserve failed\n", bo);
  69. return r;
  70. }
  71. return 0;
  72. }
  73. static inline void radeon_bo_unreserve(struct radeon_bo *bo)
  74. {
  75. ttm_bo_unreserve(&bo->tbo);
  76. }
  77. /**
  78. * radeon_bo_gpu_offset - return GPU offset of bo
  79. * @bo: radeon object for which we query the offset
  80. *
  81. * Returns current GPU offset of the object.
  82. *
  83. * Note: object should either be pinned or reserved when calling this
  84. * function, it might be usefull to add check for this for debugging.
  85. */
  86. static inline u64 radeon_bo_gpu_offset(struct radeon_bo *bo)
  87. {
  88. return bo->tbo.offset;
  89. }
  90. static inline unsigned long radeon_bo_size(struct radeon_bo *bo)
  91. {
  92. return bo->tbo.num_pages << PAGE_SHIFT;
  93. }
  94. static inline bool radeon_bo_is_reserved(struct radeon_bo *bo)
  95. {
  96. return !!atomic_read(&bo->tbo.reserved);
  97. }
  98. /**
  99. * radeon_bo_mmap_offset - return mmap offset of bo
  100. * @bo: radeon object for which we query the offset
  101. *
  102. * Returns mmap offset of the object.
  103. *
  104. * Note: addr_space_offset is constant after ttm bo init thus isn't protected
  105. * by any lock.
  106. */
  107. static inline u64 radeon_bo_mmap_offset(struct radeon_bo *bo)
  108. {
  109. return bo->tbo.addr_space_offset;
  110. }
  111. static inline int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type,
  112. bool no_wait)
  113. {
  114. int r;
  115. r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
  116. if (unlikely(r != 0)) {
  117. if (r != -ERESTARTSYS)
  118. dev_err(bo->rdev->dev, "%p reserve failed for wait\n", bo);
  119. return r;
  120. }
  121. spin_lock(&bo->tbo.lock);
  122. if (mem_type)
  123. *mem_type = bo->tbo.mem.mem_type;
  124. if (bo->tbo.sync_obj)
  125. r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
  126. spin_unlock(&bo->tbo.lock);
  127. ttm_bo_unreserve(&bo->tbo);
  128. return r;
  129. }
  130. extern int radeon_bo_create(struct radeon_device *rdev,
  131. struct drm_gem_object *gobj, unsigned long size,
  132. bool kernel, u32 domain,
  133. struct radeon_bo **bo_ptr);
  134. extern int radeon_bo_kmap(struct radeon_bo *bo, void **ptr);
  135. extern void radeon_bo_kunmap(struct radeon_bo *bo);
  136. extern void radeon_bo_unref(struct radeon_bo **bo);
  137. extern int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr);
  138. extern int radeon_bo_unpin(struct radeon_bo *bo);
  139. extern int radeon_bo_evict_vram(struct radeon_device *rdev);
  140. extern void radeon_bo_force_delete(struct radeon_device *rdev);
  141. extern int radeon_bo_init(struct radeon_device *rdev);
  142. extern void radeon_bo_fini(struct radeon_device *rdev);
  143. extern void radeon_bo_list_add_object(struct radeon_bo_list *lobj,
  144. struct list_head *head);
  145. extern int radeon_bo_list_reserve(struct list_head *head);
  146. extern void radeon_bo_list_unreserve(struct list_head *head);
  147. extern int radeon_bo_list_validate(struct list_head *head, void *fence);
  148. extern void radeon_bo_list_unvalidate(struct list_head *head, void *fence);
  149. extern int radeon_bo_fbdev_mmap(struct radeon_bo *bo,
  150. struct vm_area_struct *vma);
  151. extern int radeon_bo_set_tiling_flags(struct radeon_bo *bo,
  152. u32 tiling_flags, u32 pitch);
  153. extern void radeon_bo_get_tiling_flags(struct radeon_bo *bo,
  154. u32 *tiling_flags, u32 *pitch);
  155. extern int radeon_bo_check_tiling(struct radeon_bo *bo, bool has_moved,
  156. bool force_drop);
  157. extern void radeon_bo_move_notify(struct ttm_buffer_object *bo,
  158. struct ttm_mem_reg *mem);
  159. extern void radeon_bo_fault_reserve_notify(struct ttm_buffer_object *bo);
  160. extern int radeon_bo_get_surface_reg(struct radeon_bo *bo);
  161. #endif