OSDN Git Service

Merge "drm_hwcomposer: Wrap libdrm ops (minus modeset/flip) in C++ classes" into...
[android-x86/external-drm_hwcomposer.git] / hwcomposer_import_drm_gralloc.cpp
1 /*
2  * Copyright (C) 2015 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdlib.h>
18
19 #include <cutils/log.h>
20
21 #include <drm/drm_fourcc.h>
22
23 #include <gralloc_drm.h>
24 #include <gralloc_drm_priv.h>
25 #include <gralloc_drm_handle.h>
26
27 #include "drm_hwcomposer.h"
28
29 struct hwc_import_context {
30   struct drm_module_t *gralloc_module;
31 };
32
33 int hwc_import_init(struct hwc_import_context **ctx) {
34   struct hwc_import_context *import_ctx;
35
36   import_ctx = (struct hwc_import_context *)calloc(1, sizeof(*import_ctx));
37   if (!ctx) {
38     ALOGE("Failed to allocate gralloc import context");
39     return -ENOMEM;
40   }
41
42   int ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID,
43                       (const hw_module_t **)&import_ctx->gralloc_module);
44   if (ret) {
45     ALOGE("Failed to open gralloc module");
46     free(import_ctx);
47     return ret;
48   }
49
50   *ctx = import_ctx;
51
52   return 0;
53 }
54
55 int hwc_import_destroy(struct hwc_import_context *ctx) {
56   free(ctx);
57   return 0;
58 }
59
60 static uint32_t hwc_convert_hal_format_to_drm_format(uint32_t hal_format) {
61   switch (hal_format) {
62     case HAL_PIXEL_FORMAT_RGB_888:
63       return DRM_FORMAT_BGR888;
64     case HAL_PIXEL_FORMAT_BGRA_8888:
65       return DRM_FORMAT_ARGB8888;
66     case HAL_PIXEL_FORMAT_RGBX_8888:
67       return DRM_FORMAT_XBGR8888;
68     case HAL_PIXEL_FORMAT_RGBA_8888:
69       return DRM_FORMAT_ABGR8888;
70     case HAL_PIXEL_FORMAT_RGB_565:
71       return DRM_FORMAT_BGR565;
72     case HAL_PIXEL_FORMAT_YV12:
73       return DRM_FORMAT_YVU420;
74     default:
75       ALOGE("Cannot convert hal format to drm format %u", hal_format);
76       return -EINVAL;
77   }
78 }
79
80 int hwc_import_bo_create(int fd, hwc_import_context *ctx,
81                          buffer_handle_t handle, struct hwc_drm_bo *bo) {
82   gralloc_drm_handle_t *gr_handle = gralloc_drm_handle(handle);
83   if (!gr_handle)
84     return -EINVAL;
85
86   struct gralloc_drm_bo_t *gralloc_bo = gr_handle->data;
87   if (!gralloc_bo) {
88     ALOGE("Could not get drm bo from handle");
89     return -EINVAL;
90   }
91
92   uint32_t gem_handle;
93   int ret = drmPrimeFDToHandle(fd, gr_handle->prime_fd, &gem_handle);
94   if (ret) {
95     ALOGE("failed to import prime fd %d ret=%d", gr_handle->prime_fd, ret);
96     return ret;
97   }
98
99   bo->width = gr_handle->width;
100   bo->height = gr_handle->height;
101   bo->format = hwc_convert_hal_format_to_drm_format(gr_handle->format);
102   bo->pitches[0] = gr_handle->stride;
103   bo->gem_handles[0] = gem_handle;
104   bo->offsets[0] = 0;
105
106   ret = drmModeAddFB2(fd, bo->width, bo->height, bo->format, bo->gem_handles,
107                       bo->pitches, bo->offsets, &bo->fb_id, 0);
108   if (ret) {
109     ALOGE("could not create drm fb %d", ret);
110     return ret;
111   }
112
113   return ret;
114 }
115
116 bool hwc_import_bo_release(int fd, hwc_import_context */* ctx */,
117                            struct hwc_drm_bo *bo) {
118   if (bo->fb_id)
119     if (drmModeRmFB(fd, bo->fb_id))
120       ALOGE("Failed to rm fb");
121
122   /* hwc may close the gem handles now. */
123   return true;
124 }