blob: e62c6708e5ee4a2099dce5358c13c50b0524e5f4 [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
9#include <hardware/gralloc.h>
10#include <memory.h>
11
12struct gralloc0_module {
13 gralloc_module_t base;
14 std::unique_ptr<alloc_device_t> alloc;
15 std::unique_ptr<cros_gralloc_driver> driver;
Gurchetan Singhbcfd7582017-08-01 15:02:24 -070016 bool initialized;
17 std::mutex initialization_mutex;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070018};
19
20/* This enumeration must match the one in <gralloc_drm.h>.
21 * The functions supported by this gralloc's temporary private API are listed
22 * below. Use of these functions is highly discouraged and should only be
23 * reserved for cases where no alternative to get same information (such as
24 * querying ANativeWindow) exists.
25 */
26// clang-format off
27enum {
28 GRALLOC_DRM_GET_STRIDE,
29 GRALLOC_DRM_GET_FORMAT,
30 GRALLOC_DRM_GET_DIMENSIONS,
31 GRALLOC_DRM_GET_BACKING_STORE,
32};
33// clang-format on
34
35static int64_t gralloc0_convert_flags(int flags)
36{
37 uint64_t usage = BO_USE_NONE;
38
39 if (flags & GRALLOC_USAGE_CURSOR)
40 usage |= BO_USE_NONE;
41 if ((flags & GRALLOC_USAGE_SW_READ_MASK) == GRALLOC_USAGE_SW_READ_RARELY)
42 usage |= BO_USE_SW_READ_RARELY;
43 if ((flags & GRALLOC_USAGE_SW_READ_MASK) == GRALLOC_USAGE_SW_READ_OFTEN)
44 usage |= BO_USE_SW_READ_OFTEN;
45 if ((flags & GRALLOC_USAGE_SW_WRITE_MASK) == GRALLOC_USAGE_SW_WRITE_RARELY)
46 usage |= BO_USE_SW_WRITE_RARELY;
47 if ((flags & GRALLOC_USAGE_SW_WRITE_MASK) == GRALLOC_USAGE_SW_WRITE_OFTEN)
48 usage |= BO_USE_SW_WRITE_OFTEN;
49 if (flags & GRALLOC_USAGE_HW_TEXTURE)
50 usage |= BO_USE_TEXTURE;
51 if (flags & GRALLOC_USAGE_HW_RENDER)
52 usage |= BO_USE_RENDERING;
53 if (flags & GRALLOC_USAGE_HW_2D)
54 usage |= BO_USE_RENDERING;
55 if (flags & GRALLOC_USAGE_HW_COMPOSER)
56 /* HWC wants to use display hardware, but can defer to OpenGL. */
57 usage |= BO_USE_SCANOUT | BO_USE_TEXTURE;
58 if (flags & GRALLOC_USAGE_HW_FB)
59 usage |= BO_USE_NONE;
60 if (flags & GRALLOC_USAGE_EXTERNAL_DISP)
61 /*
62 * This flag potentially covers external display for the normal drivers (i915,
63 * rockchip) and usb monitors (evdi/udl). It's complicated so ignore it.
64 * */
65 usage |= BO_USE_NONE;
66 if (flags & GRALLOC_USAGE_PROTECTED)
67 usage |= BO_USE_PROTECTED;
68 if (flags & GRALLOC_USAGE_HW_VIDEO_ENCODER)
69 /*HACK: See b/30054495 */
70 usage |= BO_USE_SW_READ_OFTEN;
71 if (flags & GRALLOC_USAGE_HW_CAMERA_WRITE)
Tomasz Figafd0b0162017-07-11 18:28:02 +090072 usage |= BO_USE_CAMERA_WRITE;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070073 if (flags & GRALLOC_USAGE_HW_CAMERA_READ)
Tomasz Figafd0b0162017-07-11 18:28:02 +090074 usage |= BO_USE_CAMERA_READ;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -070075 if (flags & GRALLOC_USAGE_RENDERSCRIPT)
76 /* We use CPU for compute. */
77 usage |= BO_USE_LINEAR;
78
79 return usage;
80}
81
82static int gralloc0_alloc(alloc_device_t *dev, int w, int h, int format, int usage,
83 buffer_handle_t *handle, int *stride)
84{
85 int32_t ret;
86 bool supported;
87 struct cros_gralloc_buffer_descriptor descriptor;
88 auto mod = (struct gralloc0_module *)dev->common.module;
89
90 descriptor.width = w;
91 descriptor.height = h;
92 descriptor.droid_format = format;
93 descriptor.producer_usage = descriptor.consumer_usage = usage;
94 descriptor.drm_format = cros_gralloc_convert_format(format);
95 descriptor.drv_usage = gralloc0_convert_flags(usage);
96
97 supported = mod->driver->is_supported(&descriptor);
98 if (!supported && (usage & GRALLOC_USAGE_HW_COMPOSER)) {
99 descriptor.drv_usage &= ~BO_USE_SCANOUT;
100 supported = mod->driver->is_supported(&descriptor);
101 }
102
103 if (!supported) {
104 cros_gralloc_error("Unsupported combination -- HAL format: %u, HAL flags: %u, "
105 "drv_format: %4.4s, drv_flags: %llu",
Tomasz Figa23b85cb2017-07-11 18:07:11 +0900106 format, usage, reinterpret_cast<char *>(&descriptor.drm_format),
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700107 static_cast<unsigned long long>(descriptor.drv_usage));
Tomasz Figa90bb7432017-07-21 17:54:05 +0900108 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700109 }
110
111 ret = mod->driver->allocate(&descriptor, handle);
112 if (ret)
113 return ret;
114
115 auto hnd = cros_gralloc_convert_handle(*handle);
116 *stride = hnd->pixel_stride;
117
Tomasz Figa90bb7432017-07-21 17:54:05 +0900118 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700119}
120
121static int gralloc0_free(alloc_device_t *dev, buffer_handle_t handle)
122{
123 auto mod = (struct gralloc0_module *)dev->common.module;
124 return mod->driver->release(handle);
125}
126
127static int gralloc0_close(struct hw_device_t *dev)
128{
129 /* Memory is freed by managed pointers on process close. */
Tomasz Figa90bb7432017-07-21 17:54:05 +0900130 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700131}
132
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700133static int gralloc0_init(struct gralloc0_module *mod, bool initialize_alloc)
134{
135 std::lock_guard<std::mutex> lock(mod->initialization_mutex);
136
137 if (mod->initialized)
138 return 0;
139
140 mod->driver = std::make_unique<cros_gralloc_driver>();
141 if (mod->driver->init()) {
142 cros_gralloc_error("Failed to initialize driver.");
143 return -ENODEV;
144 }
145
146 if (initialize_alloc) {
147 mod->alloc = std::make_unique<alloc_device_t>();
148 mod->alloc->alloc = gralloc0_alloc;
149 mod->alloc->free = gralloc0_free;
150 mod->alloc->common.tag = HARDWARE_DEVICE_TAG;
151 mod->alloc->common.version = 0;
152 mod->alloc->common.module = (hw_module_t *)mod;
153 mod->alloc->common.close = gralloc0_close;
154 }
155
156 mod->initialized = true;
157 return 0;
158}
159
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700160static int gralloc0_open(const struct hw_module_t *mod, const char *name, struct hw_device_t **dev)
161{
162 auto module = (struct gralloc0_module *)mod;
163
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700164 if (module->initialized) {
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700165 *dev = &module->alloc->common;
Tomasz Figa90bb7432017-07-21 17:54:05 +0900166 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700167 }
168
169 if (strcmp(name, GRALLOC_HARDWARE_GPU0)) {
170 cros_gralloc_error("Incorrect device name - %s.", name);
Tomasz Figa90bb7432017-07-21 17:54:05 +0900171 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700172 }
173
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700174 if (gralloc0_init(module, true))
175 return -ENODEV;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700176
177 *dev = &module->alloc->common;
Tomasz Figa90bb7432017-07-21 17:54:05 +0900178 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700179}
180
181static int gralloc0_register_buffer(struct gralloc_module_t const *module, buffer_handle_t handle)
182{
183 auto mod = (struct gralloc0_module *)module;
184
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700185 if (!mod->initialized)
186 if (gralloc0_init(mod, false))
187 return -ENODEV;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700188
189 return mod->driver->retain(handle);
190}
191
192static int gralloc0_unregister_buffer(struct gralloc_module_t const *module, buffer_handle_t handle)
193{
194 auto mod = (struct gralloc0_module *)module;
195 return mod->driver->release(handle);
196}
197
198static int gralloc0_lock(struct gralloc_module_t const *module, buffer_handle_t handle, int usage,
199 int l, int t, int w, int h, void **vaddr)
200{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700201 return module->lockAsync(module, handle, usage, l, t, w, h, vaddr, -1);
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700202}
203
204static int gralloc0_unlock(struct gralloc_module_t const *module, buffer_handle_t handle)
205{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700206 int32_t fence_fd, ret;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700207 auto mod = (struct gralloc0_module *)module;
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700208 ret = mod->driver->unlock(handle, &fence_fd);
209 if (ret)
210 return ret;
211
212 ret = cros_gralloc_sync_wait(fence_fd);
213 if (ret)
214 return ret;
215
216 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700217}
218
219static int gralloc0_perform(struct gralloc_module_t const *module, int op, ...)
220{
221 va_list args;
222 int32_t *out_format, ret;
223 uint64_t *out_store;
224 buffer_handle_t handle;
225 uint32_t *out_width, *out_height, *out_stride;
226 auto mod = (struct gralloc0_module *)module;
227
228 switch (op) {
229 case GRALLOC_DRM_GET_STRIDE:
230 case GRALLOC_DRM_GET_FORMAT:
231 case GRALLOC_DRM_GET_DIMENSIONS:
232 case GRALLOC_DRM_GET_BACKING_STORE:
233 break;
234 default:
Tomasz Figa90bb7432017-07-21 17:54:05 +0900235 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700236 }
237
238 va_start(args, op);
239
Tomasz Figa90bb7432017-07-21 17:54:05 +0900240 ret = 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700241 handle = va_arg(args, buffer_handle_t);
242 auto hnd = cros_gralloc_convert_handle(handle);
243 if (!hnd) {
244 cros_gralloc_error("Invalid handle.");
Tomasz Figa90bb7432017-07-21 17:54:05 +0900245 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700246 }
247
248 switch (op) {
249 case GRALLOC_DRM_GET_STRIDE:
250 out_stride = va_arg(args, uint32_t *);
251 *out_stride = hnd->pixel_stride;
252 break;
253 case GRALLOC_DRM_GET_FORMAT:
254 out_format = va_arg(args, int32_t *);
255 *out_format = hnd->droid_format;
256 break;
257 case GRALLOC_DRM_GET_DIMENSIONS:
258 out_width = va_arg(args, uint32_t *);
259 out_height = va_arg(args, uint32_t *);
260 *out_width = hnd->width;
261 *out_height = hnd->height;
262 break;
263 case GRALLOC_DRM_GET_BACKING_STORE:
264 out_store = va_arg(args, uint64_t *);
265 ret = mod->driver->get_backing_store(handle, out_store);
266 break;
267 default:
Tomasz Figa90bb7432017-07-21 17:54:05 +0900268 ret = -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700269 }
270
271 va_end(args);
272
273 return ret;
274}
275
276static int gralloc0_lock_ycbcr(struct gralloc_module_t const *module, buffer_handle_t handle,
277 int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr)
278{
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700279 return module->lockAsync_ycbcr(module, handle, usage, l, t, w, h, ycbcr, -1);
280}
281
282static int gralloc0_lock_async(struct gralloc_module_t const *module, buffer_handle_t handle,
283 int usage, int l, int t, int w, int h, void **vaddr, int fence_fd)
284{
285 int32_t ret;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700286 uint64_t flags;
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700287 uint8_t *addr[DRV_MAX_PLANES];
288 auto mod = (struct gralloc0_module *)module;
289
290 auto hnd = cros_gralloc_convert_handle(handle);
291 if (!hnd) {
292 cros_gralloc_error("Invalid handle.");
293 return -EINVAL;
294 }
295
296 if (hnd->droid_format == HAL_PIXEL_FORMAT_YCbCr_420_888) {
297 cros_gralloc_error("HAL_PIXEL_FORMAT_YCbCr_*_888 format not compatible.");
298 return -EINVAL;
299 }
300
301 flags = gralloc0_convert_flags(usage);
302 ret = mod->driver->lock(handle, fence_fd, flags, addr);
303 *vaddr = addr[0];
304 return ret;
305}
306
307static int gralloc0_unlock_async(struct gralloc_module_t const *module, buffer_handle_t handle,
308 int *fence_fd)
309{
310 auto mod = (struct gralloc0_module *)module;
311 return mod->driver->unlock(handle, fence_fd);
312}
313
314static int gralloc0_lock_async_ycbcr(struct gralloc_module_t const *module, buffer_handle_t handle,
315 int usage, int l, int t, int w, int h,
316 struct android_ycbcr *ycbcr, int fence_fd)
317{
318 uint64_t flags;
319 int32_t ret;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700320 uint8_t *addr[DRV_MAX_PLANES] = { nullptr, nullptr, nullptr, nullptr };
321 auto mod = (struct gralloc0_module *)module;
322
323 auto hnd = cros_gralloc_convert_handle(handle);
324 if (!hnd) {
325 cros_gralloc_error("Invalid handle.");
Tomasz Figa90bb7432017-07-21 17:54:05 +0900326 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700327 }
328
329 if ((hnd->droid_format != HAL_PIXEL_FORMAT_YCbCr_420_888) &&
Tomasz Figaaff29fd2017-07-05 17:50:18 +0900330 (hnd->droid_format != HAL_PIXEL_FORMAT_YV12) &&
331 (hnd->droid_format != HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)) {
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700332 cros_gralloc_error("Non-YUV format not compatible.");
Tomasz Figa90bb7432017-07-21 17:54:05 +0900333 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700334 }
335
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700336 flags = gralloc0_convert_flags(usage);
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700337 ret = mod->driver->lock(handle, fence_fd, flags, addr);
Tomasz Figaaddd5f22017-07-05 17:50:18 +0900338 if (ret)
339 return ret;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700340
341 switch (hnd->format) {
342 case DRM_FORMAT_NV12:
343 ycbcr->y = addr[0];
344 ycbcr->cb = addr[1];
345 ycbcr->cr = addr[1] + 1;
346 ycbcr->ystride = hnd->strides[0];
347 ycbcr->cstride = hnd->strides[1];
348 ycbcr->chroma_step = 2;
349 break;
350 case DRM_FORMAT_YVU420:
351 case DRM_FORMAT_YVU420_ANDROID:
352 ycbcr->y = addr[0];
353 ycbcr->cb = addr[2];
354 ycbcr->cr = addr[1];
355 ycbcr->ystride = hnd->strides[0];
356 ycbcr->cstride = hnd->strides[1];
357 ycbcr->chroma_step = 1;
358 break;
359 default:
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700360 module->unlock(module, handle);
Tomasz Figa90bb7432017-07-21 17:54:05 +0900361 return -EINVAL;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700362 }
363
Tomasz Figa90bb7432017-07-21 17:54:05 +0900364 return 0;
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700365}
366
367static struct hw_module_methods_t gralloc0_module_methods = {.open = gralloc0_open };
368
369struct gralloc0_module HAL_MODULE_INFO_SYM = {
370 .base =
371 {
372 .common =
373 {
374 .tag = HARDWARE_MODULE_TAG,
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700375 .module_api_version = GRALLOC_MODULE_API_VERSION_0_3,
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700376 .hal_api_version = 0,
377 .id = GRALLOC_HARDWARE_MODULE_ID,
378 .name = "CrOS Gralloc",
379 .author = "Chrome OS",
380 .methods = &gralloc0_module_methods,
381 },
382
383 .registerBuffer = gralloc0_register_buffer,
384 .unregisterBuffer = gralloc0_unregister_buffer,
385 .lock = gralloc0_lock,
386 .unlock = gralloc0_unlock,
387 .perform = gralloc0_perform,
388 .lock_ycbcr = gralloc0_lock_ycbcr,
Gurchetan Singh4b5d0bf2017-06-22 18:38:37 -0700389 .lockAsync = gralloc0_lock_async,
390 .unlockAsync = gralloc0_unlock_async,
391 .lockAsync_ycbcr = gralloc0_lock_async_ycbcr,
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700392 },
393
394 .alloc = nullptr,
395 .driver = nullptr,
Gurchetan Singhbcfd7582017-08-01 15:02:24 -0700396 .initialized = false,
Gurchetan Singhd6b8b032017-05-31 14:31:31 -0700397};