msm_gem.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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/reservation.h>
  20. #include "msm_drv.h"
  21. struct msm_gem_object {
  22. struct drm_gem_object base;
  23. uint32_t flags;
  24. /* And object is either:
  25. * inactive - on priv->inactive_list
  26. * active - on one one of the gpu's active_list.. well, at
  27. * least for now we don't have (I don't think) hw sync between
  28. * 2d and 3d one devices which have both, meaning we need to
  29. * block on submit if a bo is already on other ring
  30. *
  31. */
  32. struct list_head mm_list;
  33. struct msm_gpu *gpu; /* non-null if active */
  34. uint32_t read_fence, write_fence;
  35. /* Transiently in the process of submit ioctl, objects associated
  36. * with the submit are on submit->bo_list.. this only lasts for
  37. * the duration of the ioctl, so one bo can never be on multiple
  38. * submit lists.
  39. */
  40. struct list_head submit_entry;
  41. struct page **pages;
  42. struct sg_table *sgt;
  43. void *vaddr;
  44. struct {
  45. // XXX
  46. uint32_t iova;
  47. } domain[NUM_DOMAINS];
  48. /* normally (resv == &_resv) except for imported bo's */
  49. struct reservation_object *resv;
  50. struct reservation_object _resv;
  51. };
  52. #define to_msm_bo(x) container_of(x, struct msm_gem_object, base)
  53. static inline bool is_active(struct msm_gem_object *msm_obj)
  54. {
  55. return msm_obj->gpu != NULL;
  56. }
  57. #define MAX_CMDS 4
  58. /* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
  59. * associated with the cmdstream submission for synchronization (and
  60. * make it easier to unwind when things go wrong, etc). This only
  61. * lasts for the duration of the submit-ioctl.
  62. */
  63. struct msm_gem_submit {
  64. struct drm_device *dev;
  65. struct msm_gpu *gpu;
  66. struct list_head bo_list;
  67. struct ww_acquire_ctx ticket;
  68. uint32_t fence;
  69. bool valid;
  70. unsigned int nr_cmds;
  71. unsigned int nr_bos;
  72. struct {
  73. uint32_t type;
  74. uint32_t size; /* in dwords */
  75. uint32_t iova;
  76. } cmd[MAX_CMDS];
  77. struct {
  78. uint32_t flags;
  79. struct msm_gem_object *obj;
  80. uint32_t iova;
  81. } bos[0];
  82. };
  83. #endif /* __MSM_GEM_H__ */