2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
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.
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
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/>.
21 #include <linux/reservation.h>
24 struct msm_gem_object
{
25 struct drm_gem_object base
;
29 /* And object is either:
30 * inactive - on priv->inactive_list
31 * active - on one one of the gpu's active_list.. well, at
32 * least for now we don't have (I don't think) hw sync between
33 * 2d and 3d one devices which have both, meaning we need to
34 * block on submit if a bo is already on other ring
37 struct list_head mm_list
;
38 struct msm_gpu
*gpu
; /* non-null if active */
39 uint32_t read_fence
, write_fence
;
41 /* Transiently in the process of submit ioctl, objects associated
42 * with the submit are on submit->bo_list.. this only lasts for
43 * the duration of the ioctl, so one bo can never be on multiple
46 struct list_head submit_entry
;
55 } domain
[NUM_DOMAINS
];
57 /* normally (resv == &_resv) except for imported bo's */
58 struct reservation_object
*resv
;
59 struct reservation_object _resv
;
61 /* For physically contiguous buffers. Used when we don't have
64 struct drm_mm_node
*vram_node
;
66 #define to_msm_bo(x) container_of(x, struct msm_gem_object, base)
68 static inline bool is_active(struct msm_gem_object
*msm_obj
)
70 return msm_obj
->gpu
!= NULL
;
73 static inline uint32_t msm_gem_fence(struct msm_gem_object
*msm_obj
,
78 if (op
& MSM_PREP_READ
)
79 fence
= msm_obj
->write_fence
;
80 if (op
& MSM_PREP_WRITE
)
81 fence
= max(fence
, msm_obj
->read_fence
);
88 /* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
89 * associated with the cmdstream submission for synchronization (and
90 * make it easier to unwind when things go wrong, etc). This only
91 * lasts for the duration of the submit-ioctl.
93 struct msm_gem_submit
{
94 struct drm_device
*dev
;
96 struct list_head bo_list
;
97 struct ww_acquire_ctx ticket
;
100 unsigned int nr_cmds
;
104 uint32_t size
; /* in dwords */
106 uint32_t idx
; /* cmdstream buffer idx in bos[] */
110 struct msm_gem_object
*obj
;
115 #endif /* __MSM_GEM_H__ */