blob: 85d481e29276ae63e81efbe3c08f491863a6dada [file] [log] [blame]
Rob Clarkc8afe682013-06-26 12:44:06 -04001/*
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
18#ifndef __MSM_GEM_H__
19#define __MSM_GEM_H__
20
Rob Clark7198e6b2013-07-19 12:59:32 -040021#include <linux/reservation.h>
Rob Clarkc8afe682013-06-26 12:44:06 -040022#include "msm_drv.h"
23
Rob Clark072f1f92015-03-03 15:04:25 -050024/* Additional internal-use only BO flags: */
25#define MSM_BO_STOLEN 0x10000000 /* try to use stolen/splash memory */
26
Rob Clarkc8afe682013-06-26 12:44:06 -040027struct msm_gem_object {
28 struct drm_gem_object base;
29
30 uint32_t flags;
31
Rob Clark7198e6b2013-07-19 12:59:32 -040032 /* And object is either:
33 * inactive - on priv->inactive_list
34 * active - on one one of the gpu's active_list.. well, at
35 * least for now we don't have (I don't think) hw sync between
36 * 2d and 3d one devices which have both, meaning we need to
37 * block on submit if a bo is already on other ring
38 *
39 */
Rob Clarkc8afe682013-06-26 12:44:06 -040040 struct list_head mm_list;
Rob Clark7198e6b2013-07-19 12:59:32 -040041 struct msm_gpu *gpu; /* non-null if active */
Rob Clarkbf6811f2013-09-01 13:25:09 -040042 uint32_t read_fence, write_fence;
Rob Clark7198e6b2013-07-19 12:59:32 -040043
44 /* Transiently in the process of submit ioctl, objects associated
45 * with the submit are on submit->bo_list.. this only lasts for
46 * the duration of the ioctl, so one bo can never be on multiple
47 * submit lists.
48 */
49 struct list_head submit_entry;
50
Rob Clarkc8afe682013-06-26 12:44:06 -040051 struct page **pages;
52 struct sg_table *sgt;
53 void *vaddr;
54
55 struct {
56 // XXX
57 uint32_t iova;
58 } domain[NUM_DOMAINS];
Rob Clark7198e6b2013-07-19 12:59:32 -040059
60 /* normally (resv == &_resv) except for imported bo's */
61 struct reservation_object *resv;
62 struct reservation_object _resv;
Rob Clark871d8122013-11-16 12:56:06 -050063
64 /* For physically contiguous buffers. Used when we don't have
Rob Clark072f1f92015-03-03 15:04:25 -050065 * an IOMMU. Also used for stolen/splashscreen buffer.
Rob Clark871d8122013-11-16 12:56:06 -050066 */
67 struct drm_mm_node *vram_node;
Rob Clarkc8afe682013-06-26 12:44:06 -040068};
69#define to_msm_bo(x) container_of(x, struct msm_gem_object, base)
70
Rob Clark7198e6b2013-07-19 12:59:32 -040071static inline bool is_active(struct msm_gem_object *msm_obj)
72{
73 return msm_obj->gpu != NULL;
74}
75
Rob Clark69193e52014-11-07 18:10:04 -050076static inline uint32_t msm_gem_fence(struct msm_gem_object *msm_obj,
77 uint32_t op)
78{
79 uint32_t fence = 0;
80
81 if (op & MSM_PREP_READ)
82 fence = msm_obj->write_fence;
83 if (op & MSM_PREP_WRITE)
84 fence = max(fence, msm_obj->read_fence);
85
86 return fence;
87}
88
Rob Clark7198e6b2013-07-19 12:59:32 -040089#define MAX_CMDS 4
90
91/* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
92 * associated with the cmdstream submission for synchronization (and
93 * make it easier to unwind when things go wrong, etc). This only
94 * lasts for the duration of the submit-ioctl.
95 */
96struct msm_gem_submit {
97 struct drm_device *dev;
98 struct msm_gpu *gpu;
99 struct list_head bo_list;
100 struct ww_acquire_ctx ticket;
101 uint32_t fence;
102 bool valid;
103 unsigned int nr_cmds;
104 unsigned int nr_bos;
105 struct {
106 uint32_t type;
107 uint32_t size; /* in dwords */
108 uint32_t iova;
Rob Clarka7d3c952014-05-30 14:47:38 -0400109 uint32_t idx; /* cmdstream buffer idx in bos[] */
Rob Clark7198e6b2013-07-19 12:59:32 -0400110 } cmd[MAX_CMDS];
111 struct {
112 uint32_t flags;
113 struct msm_gem_object *obj;
114 uint32_t iova;
115 } bos[0];
116};
117
Rob Clarkc8afe682013-06-26 12:44:06 -0400118#endif /* __MSM_GEM_H__ */