OSDN Git Service

minigbm: cros_gralloc: remove constexpr functions
[android-x86/external-minigbm.git] / cros_gralloc / cros_alloc_device.cc
1 /*
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.h"
8
9 static struct cros_gralloc_bo *cros_gralloc_bo_create(struct driver *drv, int width, int height,
10                                                       int format, int usage)
11 {
12         uint64_t drv_usage;
13         uint32_t drv_format;
14         struct combination *combo;
15         struct cros_gralloc_bo *bo;
16
17         drv_format = cros_gralloc_convert_format(format);
18         drv_format = drv_resolve_format(drv, drv_format);
19         drv_usage = cros_gralloc_convert_flags(usage);
20
21         combo = drv_get_combination(drv, drv_format, drv_usage);
22
23         if (!combo && (usage & GRALLOC_USAGE_HW_COMPOSER)) {
24                 drv_usage &= ~BO_USE_SCANOUT;
25                 combo = drv_get_combination(drv, drv_format, drv_usage);
26         }
27
28         if (!combo) {
29                 cros_gralloc_error("Unsupported combination -- HAL format: %u, HAL flags: %u, "
30                                    "drv_format: %4.4s, drv_flags: %llu",
31                                    format, usage, reinterpret_cast<char *>(&drv_format), drv_usage);
32                 return NULL;
33         }
34
35         bo = new cros_gralloc_bo();
36
37         bo->bo = drv_bo_create(drv, width, height, drv_format, drv_usage);
38         if (!bo->bo) {
39                 delete bo;
40                 cros_gralloc_error("Failed to create bo.");
41                 return NULL;
42         }
43
44         /*
45          * If there is a desire for more than one kernel buffer, this can be
46          * removed once the ArcCodec and Wayland service have the ability to
47          * send more than one fd. GL/Vulkan drivers may also have to modified.
48          */
49         if (drv_num_buffers_per_bo(bo->bo) != 1) {
50                 drv_bo_destroy(bo->bo);
51                 delete bo;
52                 cros_gralloc_error("Can only support one buffer per bo.");
53                 return NULL;
54         }
55
56         bo->refcount = 1;
57
58         return bo;
59 }
60
61 static struct cros_gralloc_handle *cros_gralloc_handle_from_bo(struct bo *bo)
62 {
63         uint64_t mod;
64         size_t num_planes;
65         struct cros_gralloc_handle *hnd;
66
67         hnd = new cros_gralloc_handle();
68
69         num_planes = drv_bo_get_num_planes(bo);
70
71         hnd->base.version = sizeof(hnd->base);
72         hnd->base.numFds = num_planes;
73         hnd->base.numInts = num_ints_handle - num_planes;
74
75         for (size_t p = 0; p < num_planes; p++) {
76                 hnd->fds[p] = drv_bo_get_plane_fd(bo, p);
77                 hnd->strides[p] = drv_bo_get_plane_stride(bo, p);
78                 hnd->offsets[p] = drv_bo_get_plane_offset(bo, p);
79                 hnd->sizes[p] = drv_bo_get_plane_size(bo, p);
80
81                 mod = drv_bo_get_plane_format_modifier(bo, p);
82                 hnd->format_modifiers[p] = static_cast<uint32_t>(mod >> 32);
83                 hnd->format_modifiers[p + 1] = static_cast<uint32_t>(mod);
84         }
85
86         hnd->width = drv_bo_get_width(bo);
87         hnd->height = drv_bo_get_height(bo);
88         hnd->format = drv_bo_get_format(bo);
89         hnd->pixel_stride = drv_bo_get_stride_in_pixels(bo);
90
91         hnd->magic = cros_gralloc_magic;
92
93         return hnd;
94 }
95
96 static int cros_gralloc_alloc(alloc_device_t *dev, int w, int h, int format, int usage,
97                               buffer_handle_t *handle, int *stride)
98 {
99         auto mod = (struct cros_gralloc_module *)dev->common.module;
100         std::lock_guard<std::mutex> lock(mod->mutex);
101
102         auto bo = cros_gralloc_bo_create(mod->drv, w, h, format, usage);
103         if (!bo)
104                 return CROS_GRALLOC_ERROR_NO_RESOURCES;
105
106         auto hnd = cros_gralloc_handle_from_bo(bo->bo);
107         hnd->droid_format = static_cast<int32_t>(format);
108         hnd->usage = static_cast<int32_t>(usage);
109
110         mod->handles[hnd].registrations = 0;
111         mod->handles[hnd].bo = bo;
112         bo->hnd = hnd;
113
114         mod->buffers[drv_bo_get_plane_handle(bo->bo, 0).u32] = bo;
115
116         *stride = static_cast<int>(hnd->pixel_stride);
117         *handle = &hnd->base;
118
119         return CROS_GRALLOC_ERROR_NONE;
120 }
121
122 static int cros_gralloc_free(alloc_device_t *dev, buffer_handle_t handle)
123 {
124         struct cros_gralloc_bo *bo;
125         auto hnd = (struct cros_gralloc_handle *)handle;
126         auto mod = (struct cros_gralloc_module *)dev->common.module;
127         std::lock_guard<std::mutex> lock(mod->mutex);
128
129         if (cros_gralloc_validate_handle(hnd)) {
130                 cros_gralloc_error("Invalid handle.");
131                 return CROS_GRALLOC_ERROR_BAD_HANDLE;
132         }
133
134         if (cros_gralloc_validate_reference(mod, hnd, &bo)) {
135                 cros_gralloc_error("Invalid Reference.");
136                 return CROS_GRALLOC_ERROR_BAD_HANDLE;
137         }
138
139         if (mod->handles[hnd].registrations > 0) {
140                 cros_gralloc_error("Deallocating before unregistering.");
141                 return CROS_GRALLOC_ERROR_BAD_HANDLE;
142         }
143
144         return cros_gralloc_decrement_reference_count(mod, bo);
145 }
146
147 static int cros_gralloc_close(struct hw_device_t *dev)
148 {
149         auto mod = (struct cros_gralloc_module *)dev->module;
150         auto alloc = (struct alloc_device_t *)dev;
151         std::lock_guard<std::mutex> lock(mod->mutex);
152
153         if (mod->drv) {
154                 drv_destroy(mod->drv);
155                 mod->drv = NULL;
156         }
157
158         mod->buffers.clear();
159         mod->handles.clear();
160
161         delete alloc;
162
163         return CROS_GRALLOC_ERROR_NONE;
164 }
165
166 int cros_gralloc_open(const struct hw_module_t *mod, const char *name, struct hw_device_t **dev)
167 {
168         auto module = (struct cros_gralloc_module *)mod;
169         std::lock_guard<std::mutex> lock(module->mutex);
170
171         if (module->drv)
172                 return CROS_GRALLOC_ERROR_NONE;
173
174         if (strcmp(name, GRALLOC_HARDWARE_GPU0)) {
175                 cros_gralloc_error("Incorrect device name - %s.", name);
176                 return CROS_GRALLOC_ERROR_UNSUPPORTED;
177         }
178
179         if (cros_gralloc_rendernode_open(&module->drv)) {
180                 cros_gralloc_error("Failed to open render node.");
181                 return CROS_GRALLOC_ERROR_NO_RESOURCES;
182         }
183
184         auto alloc = new alloc_device_t();
185
186         alloc->alloc = cros_gralloc_alloc;
187         alloc->free = cros_gralloc_free;
188         alloc->common.tag = HARDWARE_DEVICE_TAG;
189         alloc->common.version = 0;
190         alloc->common.module = (hw_module_t *)mod;
191         alloc->common.close = cros_gralloc_close;
192
193         *dev = &alloc->common;
194
195         return CROS_GRALLOC_ERROR_NONE;
196 }