blob: b0328b0c36f567b0ecc154c3a68e06d3795b17c0 [file] [log] [blame]
Chia-I Wu2ec32d42011-06-12 16:21:30 +08001/*
2 * Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
3 * Copyright (C) 2010-2011 LunarG Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24#define LOG_TAG "GRALLOC-DRM"
25
26#include <cutils/log.h>
27#include <cutils/atomic.h>
Sean Paul879cc4e2015-02-09 02:39:09 -050028#include <cutils/properties.h>
Chia-I Wu2ec32d42011-06-12 16:21:30 +080029#include <stdlib.h>
30#include <errno.h>
31#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34
35#include "gralloc_drm.h"
36#include "gralloc_drm_priv.h"
37
38#define unlikely(x) __builtin_expect(!!(x), 0)
39
Chia-I Wu2ec32d42011-06-12 16:21:30 +080040static int32_t gralloc_drm_pid = 0;
41
42/*
43 * Return the pid of the process.
44 */
45static int gralloc_drm_get_pid(void)
46{
47 if (unlikely(!gralloc_drm_pid))
48 android_atomic_write((int32_t) getpid(), &gralloc_drm_pid);
49
50 return gralloc_drm_pid;
51}
52
53/*
54 * Create the driver for a DRM fd.
55 */
56static struct gralloc_drm_drv_t *
57init_drv_from_fd(int fd)
58{
59 struct gralloc_drm_drv_t *drv = NULL;
60 drmVersionPtr version;
61
62 /* get the kernel module name */
63 version = drmGetVersion(fd);
64 if (!version) {
Charles Johnsonb56dc922012-07-10 17:51:32 -070065 ALOGE("invalid DRM fd");
Chia-I Wu2ec32d42011-06-12 16:21:30 +080066 return NULL;
67 }
68
69 if (version->name) {
Chia-I Wua020bfa2011-06-13 08:48:44 +080070#ifdef ENABLE_PIPE
71 drv = gralloc_drm_drv_create_for_pipe(fd, version->name);
72#endif
73
Chia-I Wu2ec32d42011-06-12 16:21:30 +080074#ifdef ENABLE_INTEL
75 if (!drv && !strcmp(version->name, "i915"))
76 drv = gralloc_drm_drv_create_for_intel(fd);
77#endif
78#ifdef ENABLE_RADEON
79 if (!drv && !strcmp(version->name, "radeon"))
80 drv = gralloc_drm_drv_create_for_radeon(fd);
81#endif
Tomasz Figa47e7aba2015-05-07 02:17:46 +090082#ifdef ENABLE_ROCKCHIP
83 if (!drv && !strcmp(version->name, "rockchip"))
84 drv = gralloc_drm_drv_create_for_rockchip(fd);
85#endif
Chia-I Wu64345b42011-06-12 18:43:33 +080086#ifdef ENABLE_NOUVEAU
87 if (!drv && !strcmp(version->name, "nouveau"))
88 drv = gralloc_drm_drv_create_for_nouveau(fd);
89#endif
Chia-I Wu2ec32d42011-06-12 16:21:30 +080090 }
91
92 if (!drv) {
Charles Johnsonb56dc922012-07-10 17:51:32 -070093 ALOGE("unsupported driver: %s", (version->name) ?
Chia-I Wu2ec32d42011-06-12 16:21:30 +080094 version->name : "NULL");
95 }
96
97 drmFreeVersion(version);
98
99 return drv;
100}
101
102/*
103 * Create a DRM device object.
104 */
105struct gralloc_drm_t *gralloc_drm_create(void)
106{
Sean Paul879cc4e2015-02-09 02:39:09 -0500107 char path[PROPERTY_VALUE_MAX];
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800108 struct gralloc_drm_t *drm;
109 int err;
110
Sean Pauld225ab02015-02-09 02:31:58 -0500111 drm = new gralloc_drm_t;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800112 if (!drm)
113 return NULL;
114
Sean Paul879cc4e2015-02-09 02:39:09 -0500115 property_get("gralloc.drm.device", path, "/dev/dri/renderD128");
116 drm->fd = open(path, O_RDWR);
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800117 if (drm->fd < 0) {
Sean Paul879cc4e2015-02-09 02:39:09 -0500118 ALOGE("failed to open %s", path);
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800119 return NULL;
120 }
121
122 drm->drv = init_drv_from_fd(drm->fd);
123 if (!drm->drv) {
124 close(drm->fd);
Sean Pauld225ab02015-02-09 02:31:58 -0500125 delete drm;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800126 return NULL;
127 }
128
129 return drm;
130}
131
132/*
133 * Destroy a DRM device object.
134 */
135void gralloc_drm_destroy(struct gralloc_drm_t *drm)
136{
137 if (drm->drv)
138 drm->drv->destroy(drm->drv);
139 close(drm->fd);
Sean Pauld225ab02015-02-09 02:31:58 -0500140 delete drm;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800141}
142
143/*
144 * Get the file descriptor of a DRM device object.
145 */
146int gralloc_drm_get_fd(struct gralloc_drm_t *drm)
147{
148 return drm->fd;
149}
150
151/*
Chia-I Wu8542de32011-07-31 16:35:21 +0900152 * Validate a buffer handle and return the associated bo.
153 */
154static struct gralloc_drm_bo_t *validate_handle(buffer_handle_t _handle,
155 struct gralloc_drm_t *drm)
156{
157 struct gralloc_drm_handle_t *handle = gralloc_drm_handle(_handle);
158
159 if (!handle)
160 return NULL;
161
162 /* the buffer handle is passed to a new process */
Sean Paul879cc4e2015-02-09 02:39:09 -0500163 ALOGE("data_owner=%d gralloc_pid=%d data=%p\n", handle->data_owner, gralloc_drm_get_pid(), handle->data);
Chia-I Wu8542de32011-07-31 16:35:21 +0900164 if (unlikely(handle->data_owner != gralloc_drm_pid)) {
165 struct gralloc_drm_bo_t *bo;
166
167 /* check only */
168 if (!drm)
169 return NULL;
170
Sean Paul879cc4e2015-02-09 02:39:09 -0500171 ALOGE("handle: name=%d pfd=%d\n", handle->name,
172 handle->prime_fd);
Chia-I Wu8542de32011-07-31 16:35:21 +0900173 /* create the struct gralloc_drm_bo_t locally */
Sean Paul879cc4e2015-02-09 02:39:09 -0500174 if (handle->name || handle->prime_fd >= 0)
Chia-I Wu8542de32011-07-31 16:35:21 +0900175 bo = drm->drv->alloc(drm->drv, handle);
176 else /* an invalid handle */
177 bo = NULL;
178 if (bo) {
179 bo->drm = drm;
180 bo->imported = 1;
181 bo->handle = handle;
Andy Ross8ab337a2013-06-04 11:32:29 -0700182 bo->refcount = 1;
Chia-I Wu8542de32011-07-31 16:35:21 +0900183 }
184
185 handle->data_owner = gralloc_drm_get_pid();
Chih-Wei Huang68a74eb2014-12-01 01:46:20 +0800186 handle->data = bo;
Chia-I Wu8542de32011-07-31 16:35:21 +0900187 }
188
Chih-Wei Huang68a74eb2014-12-01 01:46:20 +0800189 return handle->data;
Chia-I Wu8542de32011-07-31 16:35:21 +0900190}
191
192/*
193 * Register a buffer handle.
194 */
195int gralloc_drm_handle_register(buffer_handle_t handle, struct gralloc_drm_t *drm)
196{
Mark Yao99e2a212016-06-26 21:49:21 -0400197 struct gralloc_drm_bo_t *bo;
198
199 bo = validate_handle(handle, drm);
200 if (!bo)
201 return -EINVAL;
202
203 bo->refcount++;
204
205 return 0;
Chia-I Wu8542de32011-07-31 16:35:21 +0900206}
207
208/*
209 * Unregister a buffer handle. It is no-op for handles created locally.
210 */
211int gralloc_drm_handle_unregister(buffer_handle_t handle)
212{
213 struct gralloc_drm_bo_t *bo;
214
215 bo = validate_handle(handle, NULL);
216 if (!bo)
217 return -EINVAL;
218
Mark Yao99e2a212016-06-26 21:49:21 -0400219 gralloc_drm_bo_decref(bo);
Chia-I Wu8542de32011-07-31 16:35:21 +0900220 if (bo->imported)
Tapani Pällia86ecd92012-08-01 16:06:00 +0300221 gralloc_drm_bo_decref(bo);
Chia-I Wu8542de32011-07-31 16:35:21 +0900222
223 return 0;
224}
225
226/*
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800227 * Create a buffer handle.
228 */
229static struct gralloc_drm_handle_t *create_bo_handle(int width,
230 int height, int format, int usage)
231{
232 struct gralloc_drm_handle_t *handle;
233
Sean Pauld225ab02015-02-09 02:31:58 -0500234 handle = new gralloc_drm_handle_t;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800235 if (!handle)
236 return NULL;
237
238 handle->base.version = sizeof(handle->base);
239 handle->base.numInts = GRALLOC_DRM_HANDLE_NUM_INTS;
240 handle->base.numFds = GRALLOC_DRM_HANDLE_NUM_FDS;
241
242 handle->magic = GRALLOC_DRM_HANDLE_MAGIC;
243 handle->width = width;
244 handle->height = height;
245 handle->format = format;
246 handle->usage = usage;
Sean Paul879cc4e2015-02-09 02:39:09 -0500247 handle->prime_fd = -1;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800248
249 return handle;
250}
251
252/*
253 * Create a bo.
254 */
255struct gralloc_drm_bo_t *gralloc_drm_bo_create(struct gralloc_drm_t *drm,
256 int width, int height, int format, int usage)
257{
258 struct gralloc_drm_bo_t *bo;
259 struct gralloc_drm_handle_t *handle;
260
261 handle = create_bo_handle(width, height, format, usage);
262 if (!handle)
263 return NULL;
264
265 bo = drm->drv->alloc(drm->drv, handle);
266 if (!bo) {
Sean Pauld225ab02015-02-09 02:31:58 -0500267 delete handle;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800268 return NULL;
269 }
270
271 bo->drm = drm;
272 bo->imported = 0;
273 bo->handle = handle;
Tapani Pällia86ecd92012-08-01 16:06:00 +0300274 bo->fb_id = 0;
275 bo->refcount = 1;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800276
277 handle->data_owner = gralloc_drm_get_pid();
Chih-Wei Huang68a74eb2014-12-01 01:46:20 +0800278 handle->data = bo;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800279
280 return bo;
281}
282
283/*
Chia-I Wu2fc5da42011-07-29 19:57:04 +0900284 * Destroy a bo.
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800285 */
Tapani Pällia86ecd92012-08-01 16:06:00 +0300286static void gralloc_drm_bo_destroy(struct gralloc_drm_bo_t *bo)
Chia-I Wu2fc5da42011-07-29 19:57:04 +0900287{
288 struct gralloc_drm_handle_t *handle = bo->handle;
289 int imported = bo->imported;
290
Tapani Pällia86ecd92012-08-01 16:06:00 +0300291 /* gralloc still has a reference */
292 if (bo->refcount)
293 return;
294
Chia-I Wu2fc5da42011-07-29 19:57:04 +0900295 bo->drm->drv->free(bo->drm->drv, bo);
296 if (imported) {
297 handle->data_owner = 0;
298 handle->data = 0;
299 }
300 else {
Sean Pauld225ab02015-02-09 02:31:58 -0500301 delete handle;
Chia-I Wu2fc5da42011-07-29 19:57:04 +0900302 }
303}
304
305/*
Tapani Pällia86ecd92012-08-01 16:06:00 +0300306 * Decrease refcount, if no refs anymore then destroy.
307 */
308void gralloc_drm_bo_decref(struct gralloc_drm_bo_t *bo)
309{
310 if (!--bo->refcount)
311 gralloc_drm_bo_destroy(bo);
312}
313
314/*
Chia-I Wu8542de32011-07-31 16:35:21 +0900315 * Return the bo of a registered handle.
Chia-I Wu2fc5da42011-07-29 19:57:04 +0900316 */
Chia-I Wu8542de32011-07-31 16:35:21 +0900317struct gralloc_drm_bo_t *gralloc_drm_bo_from_handle(buffer_handle_t handle)
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800318{
Chia-I Wu8542de32011-07-31 16:35:21 +0900319 return validate_handle(handle, NULL);
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800320}
321
322/*
Chia-I Wu8542de32011-07-31 16:35:21 +0900323 * Get the buffer handle and stride of a bo.
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800324 */
Chia-I Wu8542de32011-07-31 16:35:21 +0900325buffer_handle_t gralloc_drm_bo_get_handle(struct gralloc_drm_bo_t *bo, int *stride)
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800326{
Chia-I Wu8542de32011-07-31 16:35:21 +0900327 if (stride)
328 *stride = bo->handle->stride;
329 return &bo->handle->base;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800330}
331
332/*
Tapani Pällia8f03342013-01-18 15:01:43 +0200333 * Query YUV component offsets for a buffer handle
334 */
335void gralloc_drm_resolve_format(buffer_handle_t _handle,
336 uint32_t *pitches, uint32_t *offsets, uint32_t *handles)
337{
338 struct gralloc_drm_handle_t *handle = gralloc_drm_handle(_handle);
Chih-Wei Huang68a74eb2014-12-01 01:46:20 +0800339 struct gralloc_drm_bo_t *bo = handle->data;
Tapani Pällia8f03342013-01-18 15:01:43 +0200340 struct gralloc_drm_t *drm = bo->drm;
341
342 /* if handle exists and driver implements resolve_format */
343 if (handle && drm->drv->resolve_format)
344 drm->drv->resolve_format(drm->drv, bo,
345 pitches, offsets, handles);
346}
347
348/*
Chia-I Wu25e04132011-07-29 20:43:12 +0900349 * Lock a bo. XXX thread-safety?
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800350 */
Chia-I Wu25e04132011-07-29 20:43:12 +0900351int gralloc_drm_bo_lock(struct gralloc_drm_bo_t *bo,
352 int usage, int x, int y, int w, int h,
353 void **addr)
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800354{
Chia-I Wu92eac932011-07-30 16:29:54 +0900355 if ((bo->handle->usage & usage) != usage) {
356 /* make FB special for testing software renderer with */
Adrian Marius Negreanu65a831d2013-01-18 15:12:19 +0200357
358 if (!(bo->handle->usage & GRALLOC_USAGE_HW_FB)
359 && !(bo->handle->usage & GRALLOC_USAGE_HW_TEXTURE)) {
360 ALOGE("bo.usage:x%X/usage:x%X is not GRALLOC_USAGE_HW_FB or GRALLOC_USAGE_HW_TEXTURE"
361 ,bo->handle->usage,usage);
Chia-I Wu92eac932011-07-30 16:29:54 +0900362 return -EINVAL;
Adrian Marius Negreanu65a831d2013-01-18 15:12:19 +0200363 }
Chia-I Wu92eac932011-07-30 16:29:54 +0900364 }
Chia-I Wu25e04132011-07-29 20:43:12 +0900365
366 /* allow multiple locks with compatible usages */
367 if (bo->lock_count && (bo->locked_for & usage) != usage)
368 return -EINVAL;
369
370 usage |= bo->locked_for;
371
372 if (usage & (GRALLOC_USAGE_SW_WRITE_MASK |
373 GRALLOC_USAGE_SW_READ_MASK)) {
374 /* the driver is supposed to wait for the bo */
375 int write = !!(usage & GRALLOC_USAGE_SW_WRITE_MASK);
376 int err = bo->drm->drv->map(bo->drm->drv, bo,
377 x, y, w, h, write, addr);
378 if (err)
379 return err;
380 }
381 else {
382 /* kernel handles the synchronization here */
383 }
384
385 bo->lock_count++;
386 bo->locked_for |= usage;
387
388 return 0;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800389}
390
391/*
Chia-I Wu25e04132011-07-29 20:43:12 +0900392 * Unlock a bo.
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800393 */
Chia-I Wu25e04132011-07-29 20:43:12 +0900394void gralloc_drm_bo_unlock(struct gralloc_drm_bo_t *bo)
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800395{
Chia-I Wu25e04132011-07-29 20:43:12 +0900396 int mapped = bo->locked_for &
397 (GRALLOC_USAGE_SW_WRITE_MASK | GRALLOC_USAGE_SW_READ_MASK);
398
399 if (!bo->lock_count)
400 return;
401
402 if (mapped)
403 bo->drm->drv->unmap(bo->drm->drv, bo);
404
405 bo->lock_count--;
406 if (!bo->lock_count)
407 bo->locked_for = 0;
Chia-I Wu2ec32d42011-06-12 16:21:30 +0800408}