freedreno: support either kgsl or msm
[platform/upstream/libdrm.git] / freedreno / kgsl / kgsl_bo.c
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4  * Copyright (C) 2013 Rob Clark <robclark@freedesktop.org>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the next
14  * paragraph) shall be included in all copies or substantial portions of the
15  * Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  *
25  * Authors:
26  *    Rob Clark <robclark@freedesktop.org>
27  */
28
29 #include "kgsl_priv.h"
30
31 #include <linux/fb.h>
32
33 static int set_memtype(struct fd_device *dev, uint32_t handle, uint32_t flags)
34 {
35         struct drm_kgsl_gem_memtype req = {
36                         .handle = handle,
37                         .type = flags & DRM_FREEDRENO_GEM_TYPE_MEM_MASK,
38         };
39
40         return drmCommandWrite(dev->fd, DRM_KGSL_GEM_SETMEMTYPE,
41                         &req, sizeof(req));
42 }
43
44 static int bo_alloc(struct kgsl_bo *kgsl_bo)
45 {
46         struct fd_bo *bo = &kgsl_bo->base;
47         if (!kgsl_bo->offset) {
48                 struct drm_kgsl_gem_alloc req = {
49                                 .handle = bo->handle,
50                 };
51                 int ret;
52
53                 /* if the buffer is already backed by pages then this
54                  * doesn't actually do anything (other than giving us
55                  * the offset)
56                  */
57                 ret = drmCommandWriteRead(bo->dev->fd, DRM_KGSL_GEM_ALLOC,
58                                 &req, sizeof(req));
59                 if (ret) {
60                         ERROR_MSG("alloc failed: %s", strerror(errno));
61                         return ret;
62                 }
63
64                 kgsl_bo->offset = req.offset;
65         }
66
67         return 0;
68 }
69
70 static int kgsl_bo_offset(struct fd_bo *bo, uint64_t *offset)
71 {
72         struct kgsl_bo *kgsl_bo = to_kgsl_bo(bo);
73         int ret = bo_alloc(kgsl_bo);
74         if (ret)
75                 return ret;
76         *offset = kgsl_bo->offset;
77         return 0;
78 }
79
80 static int kgsl_bo_cpu_prep(struct fd_bo *bo, struct fd_pipe *pipe, uint32_t op)
81 {
82         uint32_t timestamp = kgsl_bo_get_timestamp(to_kgsl_bo(bo));
83         if (timestamp) {
84                 fd_pipe_wait(pipe, timestamp);
85         }
86         return 0;
87 }
88
89 static void kgsl_bo_cpu_fini(struct fd_bo *bo)
90 {
91 }
92
93 static void kgsl_bo_destroy(struct fd_bo *bo)
94 {
95         struct kgsl_bo *kgsl_bo = to_kgsl_bo(bo);
96         free(kgsl_bo);
97
98 }
99
100 static struct fd_bo_funcs funcs = {
101                 .offset = kgsl_bo_offset,
102                 .cpu_prep = kgsl_bo_cpu_prep,
103                 .cpu_fini = kgsl_bo_cpu_fini,
104                 .destroy = kgsl_bo_destroy,
105 };
106
107 /* allocate a buffer handle: */
108 int kgsl_bo_new_handle(struct fd_device *dev,
109                 uint32_t size, uint32_t flags, uint32_t *handle)
110 {
111         struct drm_kgsl_gem_create req = {
112                         .size = size,
113         };
114         int ret;
115
116         ret = drmCommandWriteRead(dev->fd, DRM_KGSL_GEM_CREATE,
117                         &req, sizeof(req));
118         if (ret)
119                 return ret;
120
121         // TODO make flags match msm driver, since kgsl is legacy..
122         // translate flags in kgsl..
123
124         set_memtype(dev, req.handle, flags);
125
126         *handle = req.handle;
127
128         return 0;
129 }
130
131 /* allocate a new buffer object */
132 struct fd_bo * kgsl_bo_from_handle(struct fd_device *dev,
133                 uint32_t size, uint32_t handle)
134 {
135         struct kgsl_bo *kgsl_bo;
136         struct fd_bo *bo;
137         unsigned i;
138
139         kgsl_bo = calloc(1, sizeof(*kgsl_bo));
140         if (!kgsl_bo)
141                 return NULL;
142
143         bo = &kgsl_bo->base;
144         bo->funcs = &funcs;
145
146         for (i = 0; i < ARRAY_SIZE(kgsl_bo->list); i++)
147                 list_inithead(&kgsl_bo->list[i]);
148
149         return bo;
150 }
151
152 struct fd_bo * fd_bo_from_fbdev(struct fd_pipe *pipe,
153                 int fbfd, uint32_t size)
154 {
155         struct drm_kgsl_gem_create_fd req = {
156                         .fd = fbfd,
157         };
158         struct fd_bo *bo;
159         struct kgsl_bo *kgsl_bo;
160
161         if (!is_kgsl_pipe(pipe))
162                 return NULL;
163
164         if (drmCommandWriteRead(pipe->dev->fd, DRM_KGSL_GEM_CREATE_FD,
165                         &req, sizeof(req))) {
166                 return NULL;
167         }
168
169         bo = fd_bo_from_handle(pipe->dev, req.handle, size);
170         kgsl_bo = to_kgsl_bo(bo);
171
172         /* this is fugly, but works around a bug in the kernel..
173          * priv->memdesc.size never gets set, so getbufinfo ioctl
174          * thinks the buffer hasn't be allocate and fails
175          */
176         if (bo && !kgsl_bo_gpuaddr(kgsl_bo, 0)) {
177                 void *fbmem = mmap(NULL, size, PROT_READ | PROT_WRITE,
178                                 MAP_SHARED, fbfd, 0);
179                 struct kgsl_map_user_mem req = {
180                                 .memtype = KGSL_USER_MEM_TYPE_ADDR,
181                                 .len     = size,
182                                 .offset  = 0,
183                                 .hostptr = (unsigned long)fbmem,
184                 };
185                 int ret;
186                 ret = ioctl(to_kgsl_pipe(pipe)->fd, IOCTL_KGSL_MAP_USER_MEM, &req);
187                 if (ret) {
188                         ERROR_MSG("mapping user mem failed: %s",
189                                         strerror(errno));
190                         goto fail;
191                 }
192                 kgsl_bo->gpuaddr = req.gpuaddr;
193                 bo->map = fbmem;
194         }
195
196         return bo;
197 fail:
198         if (bo)
199                 fd_bo_del(bo);
200         return NULL;
201 }
202
203
204 uint32_t kgsl_bo_gpuaddr(struct kgsl_bo *kgsl_bo, uint32_t offset)
205 {
206         struct fd_bo *bo = &kgsl_bo->base;
207         if (!kgsl_bo->gpuaddr) {
208                 struct drm_kgsl_gem_bufinfo req = {
209                                 .handle = bo->handle,
210                 };
211                 int ret;
212
213                 ret = bo_alloc(kgsl_bo);
214                 if (ret) {
215                         return ret;
216                 }
217
218                 ret = drmCommandWriteRead(bo->dev->fd, DRM_KGSL_GEM_GET_BUFINFO,
219                                 &req, sizeof(req));
220                 if (ret) {
221                         ERROR_MSG("get bufinfo failed: %s", strerror(errno));
222                         return 0;
223                 }
224
225                 kgsl_bo->gpuaddr = req.gpuaddr[0];
226         }
227         return kgsl_bo->gpuaddr + offset;
228 }
229
230 /*
231  * Super-cheezy way to synchronization between mesa and ddx..  the
232  * SET_ACTIVE ioctl gives us a way to stash a 32b # w/ a GEM bo, and
233  * GET_BUFINFO gives us a way to retrieve it.  We use this to stash
234  * the timestamp of the last ISSUEIBCMDS on the buffer.
235  *
236  * To avoid an obscene amount of syscalls, we:
237  *  1) Only set the timestamp for buffers w/ an flink name, ie.
238  *     only buffers shared across processes.  This is enough to
239  *     catch the DRI2 buffers.
240  *  2) Only set the timestamp for buffers submitted to the 3d ring
241  *     and only check the timestamps on buffers submitted to the
242  *     2d ring.  This should be enough to handle synchronizing of
243  *     presentation blit.  We could do synchronization in the other
244  *     direction too, but that would be problematic if we are using
245  *     the 3d ring from DDX, since client side wouldn't know this.
246  *
247  * The waiting on timestamp happens before flush, and setting of
248  * timestamp happens after flush.  It is transparent to the user
249  * of libdrm_freedreno as all the tracking of buffers happens via
250  * _emit_reloc()..
251  */
252
253 void kgsl_bo_set_timestamp(struct kgsl_bo *kgsl_bo, uint32_t timestamp)
254 {
255         struct fd_bo *bo = &kgsl_bo->base;
256         if (bo->name) {
257                 struct drm_kgsl_gem_active req = {
258                                 .handle = bo->handle,
259                                 .active = timestamp,
260                 };
261                 int ret;
262
263                 ret = drmCommandWrite(bo->dev->fd, DRM_KGSL_GEM_SET_ACTIVE,
264                                 &req, sizeof(req));
265                 if (ret) {
266                         ERROR_MSG("set active failed: %s", strerror(errno));
267                 }
268         }
269 }
270
271 uint32_t kgsl_bo_get_timestamp(struct kgsl_bo *kgsl_bo)
272 {
273         struct fd_bo *bo = &kgsl_bo->base;
274         uint32_t timestamp = 0;
275         if (bo->name) {
276                 struct drm_kgsl_gem_bufinfo req = {
277                                 .handle = bo->handle,
278                 };
279                 int ret;
280
281                 ret = drmCommandWriteRead(bo->dev->fd, DRM_KGSL_GEM_GET_BUFINFO,
282                                 &req, sizeof(req));
283                 if (ret) {
284                         ERROR_MSG("get bufinfo failed: %s", strerror(errno));
285                         return 0;
286                 }
287
288                 timestamp = req.active;
289         }
290         return timestamp;
291 }