msm_gem.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright (C) 2013 Red Hat
  3. * Author: Rob Clark <robdclark@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published by
  7. * the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __MSM_GEM_H__
  18. #define __MSM_GEM_H__
  19. #include <linux/kref.h>
  20. #include <linux/reservation.h>
  21. #include "msm_drv.h"
  22. /* Additional internal-use only BO flags: */
  23. #define MSM_BO_STOLEN 0x10000000 /* try to use stolen/splash memory */
  24. struct msm_gem_address_space {
  25. const char *name;
  26. /* NOTE: mm managed at the page level, size is in # of pages
  27. * and position mm_node->start is in # of pages:
  28. */
  29. struct drm_mm mm;
  30. struct msm_mmu *mmu;
  31. struct kref kref;
  32. };
  33. struct msm_gem_vma {
  34. struct drm_mm_node node;
  35. uint64_t iova;
  36. };
  37. struct msm_gem_object {
  38. struct drm_gem_object base;
  39. uint32_t flags;
  40. /**
  41. * Advice: are the backing pages purgeable?
  42. */
  43. uint8_t madv;
  44. /**
  45. * count of active vmap'ing
  46. */
  47. uint8_t vmap_count;
  48. /* And object is either:
  49. * inactive - on priv->inactive_list
  50. * active - on one one of the gpu's active_list.. well, at
  51. * least for now we don't have (I don't think) hw sync between
  52. * 2d and 3d one devices which have both, meaning we need to
  53. * block on submit if a bo is already on other ring
  54. *
  55. */
  56. struct list_head mm_list;
  57. struct msm_gpu *gpu; /* non-null if active */
  58. /* Transiently in the process of submit ioctl, objects associated
  59. * with the submit are on submit->bo_list.. this only lasts for
  60. * the duration of the ioctl, so one bo can never be on multiple
  61. * submit lists.
  62. */
  63. struct list_head submit_entry;
  64. struct page **pages;
  65. struct sg_table *sgt;
  66. void *vaddr;
  67. struct msm_gem_vma domain[NUM_DOMAINS];
  68. /* normally (resv == &_resv) except for imported bo's */
  69. struct reservation_object *resv;
  70. struct reservation_object _resv;
  71. /* For physically contiguous buffers. Used when we don't have
  72. * an IOMMU. Also used for stolen/splashscreen buffer.
  73. */
  74. struct drm_mm_node *vram_node;
  75. };
  76. #define to_msm_bo(x) container_of(x, struct msm_gem_object, base)
  77. static inline bool is_active(struct msm_gem_object *msm_obj)
  78. {
  79. return msm_obj->gpu != NULL;
  80. }
  81. static inline bool is_purgeable(struct msm_gem_object *msm_obj)
  82. {
  83. return (msm_obj->madv == MSM_MADV_DONTNEED) && msm_obj->sgt &&
  84. !msm_obj->base.dma_buf && !msm_obj->base.import_attach;
  85. }
  86. static inline bool is_vunmapable(struct msm_gem_object *msm_obj)
  87. {
  88. return (msm_obj->vmap_count == 0) && msm_obj->vaddr;
  89. }
  90. /* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
  91. * associated with the cmdstream submission for synchronization (and
  92. * make it easier to unwind when things go wrong, etc). This only
  93. * lasts for the duration of the submit-ioctl.
  94. */
  95. struct msm_gem_submit {
  96. struct drm_device *dev;
  97. struct msm_gpu *gpu;
  98. struct list_head node; /* node in gpu submit_list */
  99. struct list_head bo_list;
  100. struct ww_acquire_ctx ticket;
  101. struct dma_fence *fence;
  102. struct pid *pid; /* submitting process */
  103. bool valid; /* true if no cmdstream patching needed */
  104. unsigned int nr_cmds;
  105. unsigned int nr_bos;
  106. struct {
  107. uint32_t type;
  108. uint32_t size; /* in dwords */
  109. uint64_t iova;
  110. uint32_t idx; /* cmdstream buffer idx in bos[] */
  111. } *cmd; /* array of size nr_cmds */
  112. struct {
  113. uint32_t flags;
  114. struct msm_gem_object *obj;
  115. uint64_t iova;
  116. } bos[0];
  117. };
  118. #endif /* __MSM_GEM_H__ */