blob: 8521beabe50aa7c48f4085a305d436b98274bfcc [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 */
Clarence Ip24b7c362017-05-14 17:03:50 -040026#define MSM_BO_KEEPATTRS 0x20000000 /* keep h/w bus attributes */
Rob Clark072f1f92015-03-03 15:04:25 -050027
Abhijit Kulkarnif4657b12017-06-28 18:40:19 -070028struct msm_gem_object;
29
Jordan Crouse12bf3622017-02-13 10:14:11 -070030struct msm_gem_aspace_ops {
31 int (*map)(struct msm_gem_address_space *, struct msm_gem_vma *,
32 struct sg_table *sgt, void *priv, unsigned int flags);
33
34 void (*unmap)(struct msm_gem_address_space *, struct msm_gem_vma *,
35 struct sg_table *sgt, void *priv);
36
37 void (*destroy)(struct msm_gem_address_space *);
Abhijit Kulkarnif4657b12017-06-28 18:40:19 -070038 void (*add_to_active)(struct msm_gem_address_space *,
39 struct msm_gem_object *);
40 void (*remove_from_active)(struct msm_gem_address_space *,
41 struct msm_gem_object *);
42 int (*register_cb)(struct msm_gem_address_space *,
43 void (*cb)(void *, bool),
44 void *);
45 int (*unregister_cb)(struct msm_gem_address_space *,
46 void (*cb)(void *, bool),
47 void *);
Jordan Crouse12bf3622017-02-13 10:14:11 -070048};
49
Abhijit Kulkarnif4657b12017-06-28 18:40:19 -070050struct aspace_client {
51 void (*cb)(void *, bool);
52 void *cb_data;
53 struct list_head list;
54};
55
56
Rob Clarke22a2fb2017-02-13 10:14:11 -070057struct msm_gem_address_space {
58 const char *name;
Rob Clarke22a2fb2017-02-13 10:14:11 -070059 struct msm_mmu *mmu;
Jordan Crouse12bf3622017-02-13 10:14:11 -070060 const struct msm_gem_aspace_ops *ops;
Abhijit Kulkarni329a94d2017-06-20 17:07:08 -070061 bool domain_attached;
Abhijit Kulkarnif4657b12017-06-28 18:40:19 -070062 struct drm_device *dev;
63 /* list of mapped objects */
64 struct list_head active_list;
65 /* list of clients */
66 struct list_head clients;
Rob Clarke22a2fb2017-02-13 10:14:11 -070067};
68
69struct msm_gem_vma {
Jordan Crouse12bf3622017-02-13 10:14:11 -070070 /* Node used by the GPU address space, but not the SDE address space */
Rob Clarke22a2fb2017-02-13 10:14:11 -070071 struct drm_mm_node node;
Jordan Croused8e96522017-02-13 10:14:16 -070072 struct msm_gem_address_space *aspace;
Rob Clarke22a2fb2017-02-13 10:14:11 -070073 uint64_t iova;
Jordan Croused8e96522017-02-13 10:14:16 -070074 struct list_head list;
Rob Clarke22a2fb2017-02-13 10:14:11 -070075};
76
Rob Clarkc8afe682013-06-26 12:44:06 -040077struct msm_gem_object {
78 struct drm_gem_object base;
79
80 uint32_t flags;
81
Rob Clark4cd33c42016-05-17 15:44:49 -040082 /**
83 * Advice: are the backing pages purgeable?
84 */
85 uint8_t madv;
86
Rob Clarke1e9db22016-05-27 11:16:28 -040087 /**
88 * count of active vmap'ing
89 */
90 uint8_t vmap_count;
91
Rob Clark7198e6b2013-07-19 12:59:32 -040092 /* And object is either:
93 * inactive - on priv->inactive_list
94 * active - on one one of the gpu's active_list.. well, at
95 * least for now we don't have (I don't think) hw sync between
96 * 2d and 3d one devices which have both, meaning we need to
97 * block on submit if a bo is already on other ring
98 *
99 */
Rob Clarkc8afe682013-06-26 12:44:06 -0400100 struct list_head mm_list;
Rob Clark7198e6b2013-07-19 12:59:32 -0400101 struct msm_gpu *gpu; /* non-null if active */
Rob Clark7198e6b2013-07-19 12:59:32 -0400102
103 /* Transiently in the process of submit ioctl, objects associated
104 * with the submit are on submit->bo_list.. this only lasts for
105 * the duration of the ioctl, so one bo can never be on multiple
106 * submit lists.
107 */
108 struct list_head submit_entry;
109
Rob Clarkc8afe682013-06-26 12:44:06 -0400110 struct page **pages;
111 struct sg_table *sgt;
112 void *vaddr;
113
Jordan Croused8e96522017-02-13 10:14:16 -0700114 struct list_head domains;
Rob Clark7198e6b2013-07-19 12:59:32 -0400115
116 /* normally (resv == &_resv) except for imported bo's */
117 struct reservation_object *resv;
118 struct reservation_object _resv;
Rob Clark871d8122013-11-16 12:56:06 -0500119
120 /* For physically contiguous buffers. Used when we don't have
Rob Clark072f1f92015-03-03 15:04:25 -0500121 * an IOMMU. Also used for stolen/splashscreen buffer.
Rob Clark871d8122013-11-16 12:56:06 -0500122 */
123 struct drm_mm_node *vram_node;
Abhijit Kulkarnif4657b12017-06-28 18:40:19 -0700124 struct list_head iova_list;
Abhijit Kulkarni75c31e72017-07-25 17:31:33 -0700125
126 struct msm_gem_address_space *aspace;
Rob Clarkc8afe682013-06-26 12:44:06 -0400127};
128#define to_msm_bo(x) container_of(x, struct msm_gem_object, base)
129
Rob Clark7198e6b2013-07-19 12:59:32 -0400130static inline bool is_active(struct msm_gem_object *msm_obj)
131{
132 return msm_obj->gpu != NULL;
133}
134
Rob Clark68209392016-05-17 16:19:32 -0400135static inline bool is_purgeable(struct msm_gem_object *msm_obj)
136{
137 return (msm_obj->madv == MSM_MADV_DONTNEED) && msm_obj->sgt &&
138 !msm_obj->base.dma_buf && !msm_obj->base.import_attach;
139}
140
Rob Clarke1e9db22016-05-27 11:16:28 -0400141static inline bool is_vunmapable(struct msm_gem_object *msm_obj)
142{
143 return (msm_obj->vmap_count == 0) && msm_obj->vaddr;
144}
145
Rob Clark7198e6b2013-07-19 12:59:32 -0400146/* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
147 * associated with the cmdstream submission for synchronization (and
148 * make it easier to unwind when things go wrong, etc). This only
149 * lasts for the duration of the submit-ioctl.
150 */
151struct msm_gem_submit {
152 struct drm_device *dev;
153 struct msm_gpu *gpu;
Rob Clark1a370be2015-06-07 13:46:04 -0400154 struct list_head node; /* node in gpu submit_list */
Rob Clark7198e6b2013-07-19 12:59:32 -0400155 struct list_head bo_list;
156 struct ww_acquire_ctx ticket;
Rob Clarkb6295f92016-03-15 18:26:28 -0400157 struct fence *fence;
Rob Clark4816b622016-05-03 10:10:15 -0400158 struct pid *pid; /* submitting process */
Rob Clark340faef2016-03-14 13:56:37 -0400159 bool valid; /* true if no cmdstream patching needed */
Rob Clark7198e6b2013-07-19 12:59:32 -0400160 unsigned int nr_cmds;
161 unsigned int nr_bos;
162 struct {
163 uint32_t type;
164 uint32_t size; /* in dwords */
165 uint32_t iova;
Rob Clarka7d3c952014-05-30 14:47:38 -0400166 uint32_t idx; /* cmdstream buffer idx in bos[] */
Rob Clark6b597ce2016-06-01 14:17:40 -0400167 } *cmd; /* array of size nr_cmds */
Rob Clark7198e6b2013-07-19 12:59:32 -0400168 struct {
169 uint32_t flags;
170 struct msm_gem_object *obj;
171 uint32_t iova;
172 } bos[0];
173};
174
Rob Clarkc8afe682013-06-26 12:44:06 -0400175#endif /* __MSM_GEM_H__ */