blob: 86c3a4ee9976b74396bfeb4bed7e80c931d2621e [file] [log] [blame]
Gurchetan Singhd6b8b032017-05-31 14:31:31 -07001/*
2 * Copyright 2016 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#include "../cros_gralloc_driver.h"
8
Tomasz Mikolajewskica2938a2017-11-17 20:30:56 +09009#include <cassert>
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070010#include <hardware/gralloc.h>
11#include <memory.h>
12
13struct gralloc0_module {
14 gralloc_module_t base;
15 std::unique_ptr<alloc_device_t> alloc;
16 std::unique_ptr<cros_gralloc_driver> driver;
Gurchetan Singhbcfd7582017-08-01 15:02:24 -070017 bool initialized;
18 std::mutex initialization_mutex;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070019};
20
21/* This enumeration must match the one in <gralloc_drm.h>.
22 * The functions supported by this gralloc's temporary private API are listed
23 * below. Use of these functions is highly discouraged and should only be
24 * reserved for cases where no alternative to get same information (such as
25 * querying ANativeWindow) exists.
26 */
27// clang-format off
28enum {
29 GRALLOC_DRM_GET_STRIDE,
30 GRALLOC_DRM_GET_FORMAT,
31 GRALLOC_DRM_GET_DIMENSIONS,
32 GRALLOC_DRM_GET_BACKING_STORE,
33};
34// clang-format on
35
Gurchetan Singha1892b22017-09-28 16:40:52 -070036static uint64_t gralloc0_convert_usage(int usage)
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070037{
Gurchetan Singha1892b22017-09-28 16:40:52 -070038 uint64_t use_flags = BO_USE_NONE;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070039
Gurchetan Singha1892b22017-09-28 16:40:52 -070040 if (usage & GRALLOC_USAGE_CURSOR)
41 use_flags |= BO_USE_NONE;
42 if ((usage & GRALLOC_USAGE_SW_READ_MASK) == GRALLOC_USAGE_SW_READ_RARELY)
43 use_flags |= BO_USE_SW_READ_RARELY;
44 if ((usage & GRALLOC_USAGE_SW_READ_MASK) == GRALLOC_USAGE_SW_READ_OFTEN)
45 use_flags |= BO_USE_SW_READ_OFTEN;
46 if ((usage & GRALLOC_USAGE_SW_WRITE_MASK) == GRALLOC_USAGE_SW_WRITE_RARELY)
47 use_flags |= BO_USE_SW_WRITE_RARELY;
48 if ((usage & GRALLOC_USAGE_SW_WRITE_MASK) == GRALLOC_USAGE_SW_WRITE_OFTEN)
49 use_flags |= BO_USE_SW_WRITE_OFTEN;
50 if (usage & GRALLOC_USAGE_HW_TEXTURE)
51 use_flags |= BO_USE_TEXTURE;
52 if (usage & GRALLOC_USAGE_HW_RENDER)
53 use_flags |= BO_USE_RENDERING;
54 if (usage & GRALLOC_USAGE_HW_2D)
55 use_flags |= BO_USE_RENDERING;
56 if (usage & GRALLOC_USAGE_HW_COMPOSER)
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070057 /* HWC wants to use display hardware, but can defer to OpenGL. */
Gurchetan Singha1892b22017-09-28 16:40:52 -070058 use_flags |= BO_USE_SCANOUT | BO_USE_TEXTURE;
59 if (usage & GRALLOC_USAGE_HW_FB)
60 use_flags |= BO_USE_NONE;
61 if (usage & GRALLOC_USAGE_EXTERNAL_DISP)
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070062 /*
63 * This flag potentially covers external display for the normal drivers (i915,
64 * rockchip) and usb monitors (evdi/udl). It's complicated so ignore it.
65 * */
Gurchetan Singha1892b22017-09-28 16:40:52 -070066 use_flags |= BO_USE_NONE;
67 if (usage & GRALLOC_USAGE_PROTECTED)
68 use_flags |= BO_USE_PROTECTED;
69 if (usage & GRALLOC_USAGE_HW_VIDEO_ENCODER)
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070070 /*HACK: See b/30054495 */
Gurchetan Singha1892b22017-09-28 16:40:52 -070071 use_flags |= BO_USE_SW_READ_OFTEN;
72 if (usage & GRALLOC_USAGE_HW_CAMERA_WRITE)
73 use_flags |= BO_USE_CAMERA_WRITE;
74 if (usage & GRALLOC_USAGE_HW_CAMERA_READ)
75 use_flags |= BO_USE_CAMERA_READ;
76 if (usage & GRALLOC_USAGE_RENDERSCRIPT)
77 use_flags |= BO_USE_RENDERSCRIPT;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070078
Gurchetan Singha1892b22017-09-28 16:40:52 -070079 return use_flags;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070080}
81
Gurchetan Singhf7f633a2017-09-28 17:02:12 -070082static uint32_t gralloc0_convert_map_usage(int map_usage)
83{
84 uint32_t map_flags = BO_MAP_NONE;
85
86 if (map_usage & GRALLOC_USAGE_SW_READ_MASK)
87 map_flags |= BO_MAP_READ;
88 if (map_usage & GRALLOC_USAGE_SW_WRITE_MASK)
89 map_flags |= BO_MAP_WRITE;
90
91 return map_flags;
92}
93
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070094static int gralloc0_alloc(alloc_device_t *dev, int w, int h, int format, int usage,
95 buffer_handle_t *handle, int *stride)
96{
97 int32_t ret;
98 bool supported;
99 struct cros_gralloc_buffer_descriptor descriptor;
100 auto mod = (struct gralloc0_module *)dev->common.module;
101
102 descriptor.width = w;
103 descriptor.height = h;
104 descriptor.droid_format = format;
105 descriptor.producer_usage = descriptor.consumer_usage = usage;
106 descriptor.drm_format = cros_gralloc_convert_format(format);
Gurchetan Singha1892b22017-09-28 16:40:52 -0700107 descriptor.use_flags = gralloc0_convert_usage(usage);
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700108
109 supported = mod->driver->is_supported(&descriptor);
110 if (!supported && (usage & GRALLOC_USAGE_HW_COMPOSER)) {
Gurchetan Singha1892b22017-09-28 16:40:52 -0700111 descriptor.use_flags &= ~BO_USE_SCANOUT;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700112 supported = mod->driver->is_supported(&descriptor);
113 }
114
115 if (!supported) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700116 drv_log("Unsupported combination -- HAL format: %u, HAL usage: %u, "
117 "drv_format: %4.4s, use_flags: %llu\n",
118 format, usage, reinterpret_cast<char *>(&descriptor.drm_format),
119 static_cast<unsigned long long>(descriptor.use_flags));
Tomasz Figa90bb7432017-07-21 17:54:05 +0900120 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700121 }
122
123 ret = mod->driver->allocate(&descriptor, handle);
124 if (ret)
125 return ret;
126
127 auto hnd = cros_gralloc_convert_handle(*handle);
128 *stride = hnd->pixel_stride;
129
Tomasz Figa90bb7432017-07-21 17:54:05 +0900130 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700131}
132
133static int gralloc0_free(alloc_device_t *dev, buffer_handle_t handle)
134{
135 auto mod = (struct gralloc0_module *)dev->common.module;
136 return mod->driver->release(handle);
137}
138
139static int gralloc0_close(struct hw_device_t *dev)
140{
141 /* Memory is freed by managed pointers on process close. */
Tomasz Figa90bb7432017-07-21 17:54:05 +0900142 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700143}
144
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700145static int gralloc0_init(struct gralloc0_module *mod, bool initialize_alloc)
146{
147 std::lock_guard<std::mutex> lock(mod->initialization_mutex);
148
149 if (mod->initialized)
150 return 0;
151
152 mod->driver = std::make_unique<cros_gralloc_driver>();
153 if (mod->driver->init()) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700154 drv_log("Failed to initialize driver.\n");
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700155 return -ENODEV;
156 }
157
158 if (initialize_alloc) {
159 mod->alloc = std::make_unique<alloc_device_t>();
160 mod->alloc->alloc = gralloc0_alloc;
161 mod->alloc->free = gralloc0_free;
162 mod->alloc->common.tag = HARDWARE_DEVICE_TAG;
163 mod->alloc->common.version = 0;
164 mod->alloc->common.module = (hw_module_t *)mod;
165 mod->alloc->common.close = gralloc0_close;
166 }
167
168 mod->initialized = true;
169 return 0;
170}
171
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700172static int gralloc0_open(const struct hw_module_t *mod, const char *name, struct hw_device_t **dev)
173{
174 auto module = (struct gralloc0_module *)mod;
175
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700176 if (module->initialized) {
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700177 *dev = &module->alloc->common;
Tomasz Figa90bb7432017-07-21 17:54:05 +0900178 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700179 }
180
181 if (strcmp(name, GRALLOC_HARDWARE_GPU0)) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700182 drv_log("Incorrect device name - %s.\n", name);
Tomasz Figa90bb7432017-07-21 17:54:05 +0900183 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700184 }
185
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700186 if (gralloc0_init(module, true))
187 return -ENODEV;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700188
189 *dev = &module->alloc->common;
Tomasz Figa90bb7432017-07-21 17:54:05 +0900190 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700191}
192
193static int gralloc0_register_buffer(struct gralloc_module_t const *module, buffer_handle_t handle)
194{
195 auto mod = (struct gralloc0_module *)module;
196
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700197 if (!mod->initialized)
198 if (gralloc0_init(mod, false))
199 return -ENODEV;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700200
201 return mod->driver->retain(handle);
202}
203
204static int gralloc0_unregister_buffer(struct gralloc_module_t const *module, buffer_handle_t handle)
205{
206 auto mod = (struct gralloc0_module *)module;
207 return mod->driver->release(handle);
208}
209
210static int gralloc0_lock(struct gralloc_module_t const *module, buffer_handle_t handle, int usage,
211 int l, int t, int w, int h, void **vaddr)
212{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700213 return module->lockAsync(module, handle, usage, l, t, w, h, vaddr, -1);
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700214}
215
216static int gralloc0_unlock(struct gralloc_module_t const *module, buffer_handle_t handle)
217{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700218 int32_t fence_fd, ret;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700219 auto mod = (struct gralloc0_module *)module;
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700220 ret = mod->driver->unlock(handle, &fence_fd);
221 if (ret)
222 return ret;
223
224 ret = cros_gralloc_sync_wait(fence_fd);
225 if (ret)
226 return ret;
227
228 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700229}
230
231static int gralloc0_perform(struct gralloc_module_t const *module, int op, ...)
232{
233 va_list args;
234 int32_t *out_format, ret;
235 uint64_t *out_store;
236 buffer_handle_t handle;
237 uint32_t *out_width, *out_height, *out_stride;
238 auto mod = (struct gralloc0_module *)module;
239
240 switch (op) {
241 case GRALLOC_DRM_GET_STRIDE:
242 case GRALLOC_DRM_GET_FORMAT:
243 case GRALLOC_DRM_GET_DIMENSIONS:
244 case GRALLOC_DRM_GET_BACKING_STORE:
245 break;
246 default:
Tomasz Figa90bb7432017-07-21 17:54:05 +0900247 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700248 }
249
250 va_start(args, op);
251
Tomasz Figa90bb7432017-07-21 17:54:05 +0900252 ret = 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700253 handle = va_arg(args, buffer_handle_t);
254 auto hnd = cros_gralloc_convert_handle(handle);
255 if (!hnd) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700256 drv_log("Invalid handle.\n");
Tomasz Figa90bb7432017-07-21 17:54:05 +0900257 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700258 }
259
260 switch (op) {
261 case GRALLOC_DRM_GET_STRIDE:
262 out_stride = va_arg(args, uint32_t *);
263 *out_stride = hnd->pixel_stride;
264 break;
265 case GRALLOC_DRM_GET_FORMAT:
266 out_format = va_arg(args, int32_t *);
267 *out_format = hnd->droid_format;
268 break;
269 case GRALLOC_DRM_GET_DIMENSIONS:
270 out_width = va_arg(args, uint32_t *);
271 out_height = va_arg(args, uint32_t *);
272 *out_width = hnd->width;
273 *out_height = hnd->height;
274 break;
275 case GRALLOC_DRM_GET_BACKING_STORE:
276 out_store = va_arg(args, uint64_t *);
277 ret = mod->driver->get_backing_store(handle, out_store);
278 break;
279 default:
Tomasz Figa90bb7432017-07-21 17:54:05 +0900280 ret = -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700281 }
282
283 va_end(args);
284
285 return ret;
286}
287
288static int gralloc0_lock_ycbcr(struct gralloc_module_t const *module, buffer_handle_t handle,
289 int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr)
290{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700291 return module->lockAsync_ycbcr(module, handle, usage, l, t, w, h, ycbcr, -1);
292}
293
294static int gralloc0_lock_async(struct gralloc_module_t const *module, buffer_handle_t handle,
295 int usage, int l, int t, int w, int h, void **vaddr, int fence_fd)
296{
297 int32_t ret;
Gurchetan Singhf7f633a2017-09-28 17:02:12 -0700298 uint32_t map_flags;
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700299 uint8_t *addr[DRV_MAX_PLANES];
300 auto mod = (struct gralloc0_module *)module;
Gurchetan Singh1ef809e2017-11-06 11:07:52 -0800301 struct rectangle rect = { .x = static_cast<uint32_t>(l),
302 .y = static_cast<uint32_t>(t),
303 .width = static_cast<uint32_t>(w),
304 .height = static_cast<uint32_t>(h) };
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700305
306 auto hnd = cros_gralloc_convert_handle(handle);
307 if (!hnd) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700308 drv_log("Invalid handle.\n");
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700309 return -EINVAL;
310 }
311
312 if (hnd->droid_format == HAL_PIXEL_FORMAT_YCbCr_420_888) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700313 drv_log("HAL_PIXEL_FORMAT_YCbCr_*_888 format not compatible.\n");
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700314 return -EINVAL;
315 }
316
Gurchetan Singh1ef809e2017-11-06 11:07:52 -0800317 assert(l >= 0);
318 assert(t >= 0);
319 assert(w >= 0);
320 assert(h >= 0);
321
Gurchetan Singhf7f633a2017-09-28 17:02:12 -0700322 map_flags = gralloc0_convert_map_usage(usage);
Gurchetan Singh1ef809e2017-11-06 11:07:52 -0800323 ret = mod->driver->lock(handle, fence_fd, &rect, map_flags, addr);
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700324 *vaddr = addr[0];
325 return ret;
326}
327
328static int gralloc0_unlock_async(struct gralloc_module_t const *module, buffer_handle_t handle,
329 int *fence_fd)
330{
331 auto mod = (struct gralloc0_module *)module;
332 return mod->driver->unlock(handle, fence_fd);
333}
334
335static int gralloc0_lock_async_ycbcr(struct gralloc_module_t const *module, buffer_handle_t handle,
336 int usage, int l, int t, int w, int h,
337 struct android_ycbcr *ycbcr, int fence_fd)
338{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700339 int32_t ret;
Gurchetan Singhf7f633a2017-09-28 17:02:12 -0700340 uint32_t map_flags;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700341 uint8_t *addr[DRV_MAX_PLANES] = { nullptr, nullptr, nullptr, nullptr };
342 auto mod = (struct gralloc0_module *)module;
Gurchetan Singh1ef809e2017-11-06 11:07:52 -0800343 struct rectangle rect = { .x = static_cast<uint32_t>(l),
344 .y = static_cast<uint32_t>(t),
345 .width = static_cast<uint32_t>(w),
346 .height = static_cast<uint32_t>(h) };
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700347
348 auto hnd = cros_gralloc_convert_handle(handle);
349 if (!hnd) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700350 drv_log("Invalid handle.\n");
Tomasz Figa90bb7432017-07-21 17:54:05 +0900351 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700352 }
353
354 if ((hnd->droid_format != HAL_PIXEL_FORMAT_YCbCr_420_888) &&
Tomasz Figaaff29fd2017-07-05 17:50:18 +0900355 (hnd->droid_format != HAL_PIXEL_FORMAT_YV12) &&
356 (hnd->droid_format != HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700357 drv_log("Non-YUV format not compatible.\n");
Tomasz Figa90bb7432017-07-21 17:54:05 +0900358 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700359 }
360
Gurchetan Singh1ef809e2017-11-06 11:07:52 -0800361 assert(l >= 0);
362 assert(t >= 0);
363 assert(w >= 0);
364 assert(h >= 0);
365
Gurchetan Singhf7f633a2017-09-28 17:02:12 -0700366 map_flags = gralloc0_convert_map_usage(usage);
Gurchetan Singh1ef809e2017-11-06 11:07:52 -0800367 ret = mod->driver->lock(handle, fence_fd, &rect, map_flags, addr);
Tomasz Figaaddd5f22017-07-05 17:50:18 +0900368 if (ret)
369 return ret;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700370
371 switch (hnd->format) {
372 case DRM_FORMAT_NV12:
373 ycbcr->y = addr[0];
374 ycbcr->cb = addr[1];
375 ycbcr->cr = addr[1] + 1;
376 ycbcr->ystride = hnd->strides[0];
377 ycbcr->cstride = hnd->strides[1];
378 ycbcr->chroma_step = 2;
379 break;
380 case DRM_FORMAT_YVU420:
381 case DRM_FORMAT_YVU420_ANDROID:
382 ycbcr->y = addr[0];
383 ycbcr->cb = addr[2];
384 ycbcr->cr = addr[1];
385 ycbcr->ystride = hnd->strides[0];
386 ycbcr->cstride = hnd->strides[1];
387 ycbcr->chroma_step = 1;
388 break;
389 default:
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700390 module->unlock(module, handle);
Tomasz Figa90bb7432017-07-21 17:54:05 +0900391 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700392 }
393
Tomasz Figa90bb7432017-07-21 17:54:05 +0900394 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700395}
396
Tomasz Figa4df286c2017-08-02 19:35:40 +0900397// clang-format off
398static struct hw_module_methods_t gralloc0_module_methods = { .open = gralloc0_open };
399// clang-format on
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700400
401struct gralloc0_module HAL_MODULE_INFO_SYM = {
402 .base =
403 {
404 .common =
405 {
406 .tag = HARDWARE_MODULE_TAG,
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700407 .module_api_version = GRALLOC_MODULE_API_VERSION_0_3,
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700408 .hal_api_version = 0,
409 .id = GRALLOC_HARDWARE_MODULE_ID,
410 .name = "CrOS Gralloc",
411 .author = "Chrome OS",
412 .methods = &gralloc0_module_methods,
413 },
414
415 .registerBuffer = gralloc0_register_buffer,
416 .unregisterBuffer = gralloc0_unregister_buffer,
417 .lock = gralloc0_lock,
418 .unlock = gralloc0_unlock,
419 .perform = gralloc0_perform,
420 .lock_ycbcr = gralloc0_lock_ycbcr,
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700421 .lockAsync = gralloc0_lock_async,
422 .unlockAsync = gralloc0_unlock_async,
423 .lockAsync_ycbcr = gralloc0_lock_async_ycbcr,
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700424 },
425
426 .alloc = nullptr,
427 .driver = nullptr,
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700428 .initialized = false,
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700429};