kgsl_bo.c revision 857b0bc6
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
33static 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
44static 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
70static 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
80static 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
84	if (op & DRM_FREEDRENO_PREP_NOSYNC) {
85		uint32_t current;
86		int ret;
87
88		/* special case for is_idle().. we can't really handle that
89		 * properly in kgsl (perhaps we need a way to just disable
90		 * the bo-cache for kgsl?)
91		 */
92		if (!pipe)
93			return -EBUSY;
94
95		ret = kgsl_pipe_timestamp(to_kgsl_pipe(pipe), &current);
96		if (ret)
97			return ret;
98
99		if (timestamp > current)
100			return -EBUSY;
101
102		return 0;
103	}
104
105	if (timestamp)
106		fd_pipe_wait(pipe, timestamp);
107
108	return 0;
109}
110
111static void kgsl_bo_cpu_fini(struct fd_bo *bo)
112{
113}
114
115static void kgsl_bo_destroy(struct fd_bo *bo)
116{
117	struct kgsl_bo *kgsl_bo = to_kgsl_bo(bo);
118	free(kgsl_bo);
119
120}
121
122static struct fd_bo_funcs funcs = {
123		.offset = kgsl_bo_offset,
124		.cpu_prep = kgsl_bo_cpu_prep,
125		.cpu_fini = kgsl_bo_cpu_fini,
126		.destroy = kgsl_bo_destroy,
127};
128
129/* allocate a buffer handle: */
130int kgsl_bo_new_handle(struct fd_device *dev,
131		uint32_t size, uint32_t flags, uint32_t *handle)
132{
133	struct drm_kgsl_gem_create req = {
134			.size = size,
135	};
136	int ret;
137
138	ret = drmCommandWriteRead(dev->fd, DRM_KGSL_GEM_CREATE,
139			&req, sizeof(req));
140	if (ret)
141		return ret;
142
143	// TODO make flags match msm driver, since kgsl is legacy..
144	// translate flags in kgsl..
145
146	set_memtype(dev, req.handle, flags);
147
148	*handle = req.handle;
149
150	return 0;
151}
152
153/* allocate a new buffer object */
154struct fd_bo * kgsl_bo_from_handle(struct fd_device *dev,
155		uint32_t size, uint32_t handle)
156{
157	struct kgsl_bo *kgsl_bo;
158	struct fd_bo *bo;
159	unsigned i;
160
161	kgsl_bo = calloc(1, sizeof(*kgsl_bo));
162	if (!kgsl_bo)
163		return NULL;
164
165	bo = &kgsl_bo->base;
166	bo->funcs = &funcs;
167
168	for (i = 0; i < ARRAY_SIZE(kgsl_bo->list); i++)
169		list_inithead(&kgsl_bo->list[i]);
170
171	return bo;
172}
173
174struct fd_bo * fd_bo_from_fbdev(struct fd_pipe *pipe,
175		int fbfd, uint32_t size)
176{
177	struct fd_bo *bo;
178
179	if (!is_kgsl_pipe(pipe))
180		return NULL;
181
182	bo = fd_bo_new(pipe->dev, 1, 0);
183
184	/* this is fugly, but works around a bug in the kernel..
185	 * priv->memdesc.size never gets set, so getbufinfo ioctl
186	 * thinks the buffer hasn't be allocate and fails
187	 */
188	if (bo) {
189		void *fbmem = mmap(NULL, size, PROT_READ | PROT_WRITE,
190				MAP_SHARED, fbfd, 0);
191		struct kgsl_map_user_mem req = {
192				.memtype = KGSL_USER_MEM_TYPE_ADDR,
193				.len     = size,
194				.offset  = 0,
195				.hostptr = (unsigned long)fbmem,
196		};
197		struct kgsl_bo *kgsl_bo = to_kgsl_bo(bo);
198		int ret;
199
200		ret = ioctl(to_kgsl_pipe(pipe)->fd, IOCTL_KGSL_MAP_USER_MEM, &req);
201		if (ret) {
202			ERROR_MSG("mapping user mem failed: %s",
203					strerror(errno));
204			goto fail;
205		}
206		kgsl_bo->gpuaddr = req.gpuaddr;
207		bo->map = fbmem;
208	}
209
210	return bo;
211fail:
212	if (bo)
213		fd_bo_del(bo);
214	return NULL;
215}
216
217uint32_t kgsl_bo_gpuaddr(struct kgsl_bo *kgsl_bo, uint32_t offset)
218{
219	struct fd_bo *bo = &kgsl_bo->base;
220	if (!kgsl_bo->gpuaddr) {
221		struct drm_kgsl_gem_bufinfo req = {
222				.handle = bo->handle,
223		};
224		int ret;
225
226		ret = bo_alloc(kgsl_bo);
227		if (ret) {
228			return ret;
229		}
230
231		ret = drmCommandWriteRead(bo->dev->fd, DRM_KGSL_GEM_GET_BUFINFO,
232				&req, sizeof(req));
233		if (ret) {
234			ERROR_MSG("get bufinfo failed: %s", strerror(errno));
235			return 0;
236		}
237
238		kgsl_bo->gpuaddr = req.gpuaddr[0];
239	}
240	return kgsl_bo->gpuaddr + offset;
241}
242
243/*
244 * Super-cheezy way to synchronization between mesa and ddx..  the
245 * SET_ACTIVE ioctl gives us a way to stash a 32b # w/ a GEM bo, and
246 * GET_BUFINFO gives us a way to retrieve it.  We use this to stash
247 * the timestamp of the last ISSUEIBCMDS on the buffer.
248 *
249 * To avoid an obscene amount of syscalls, we:
250 *  1) Only set the timestamp for buffers w/ an flink name, ie.
251 *     only buffers shared across processes.  This is enough to
252 *     catch the DRI2 buffers.
253 *  2) Only set the timestamp for buffers submitted to the 3d ring
254 *     and only check the timestamps on buffers submitted to the
255 *     2d ring.  This should be enough to handle synchronizing of
256 *     presentation blit.  We could do synchronization in the other
257 *     direction too, but that would be problematic if we are using
258 *     the 3d ring from DDX, since client side wouldn't know this.
259 *
260 * The waiting on timestamp happens before flush, and setting of
261 * timestamp happens after flush.  It is transparent to the user
262 * of libdrm_freedreno as all the tracking of buffers happens via
263 * _emit_reloc()..
264 */
265
266void kgsl_bo_set_timestamp(struct kgsl_bo *kgsl_bo, uint32_t timestamp)
267{
268	struct fd_bo *bo = &kgsl_bo->base;
269	if (bo->name) {
270		struct drm_kgsl_gem_active req = {
271				.handle = bo->handle,
272				.active = timestamp,
273		};
274		int ret;
275
276		ret = drmCommandWrite(bo->dev->fd, DRM_KGSL_GEM_SET_ACTIVE,
277				&req, sizeof(req));
278		if (ret) {
279			ERROR_MSG("set active failed: %s", strerror(errno));
280		}
281	}
282}
283
284uint32_t kgsl_bo_get_timestamp(struct kgsl_bo *kgsl_bo)
285{
286	struct fd_bo *bo = &kgsl_bo->base;
287	uint32_t timestamp = 0;
288	if (bo->name) {
289		struct drm_kgsl_gem_bufinfo req = {
290				.handle = bo->handle,
291		};
292		int ret;
293
294		ret = drmCommandWriteRead(bo->dev->fd, DRM_KGSL_GEM_GET_BUFINFO,
295				&req, sizeof(req));
296		if (ret) {
297			ERROR_MSG("get bufinfo failed: %s", strerror(errno));
298			return 0;
299		}
300
301		timestamp = req.active;
302	}
303	return timestamp;
304}
305