keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | #include <string.h> |
| 17 | #include <pthread.h> |
Elliott Hughes | 4d3424d | 2014-02-24 16:23:00 -0800 | [diff] [blame] | 18 | #include <limits.h> |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 19 | #include <cutils/ashmem.h> |
| 20 | #include <unistd.h> |
| 21 | #include <errno.h> |
| 22 | #include <dlfcn.h> |
| 23 | #include <sys/mman.h> |
| 24 | #include "gralloc_cb.h" |
| 25 | #include "HostConnection.h" |
| 26 | #include "glUtils.h" |
| 27 | #include <cutils/log.h> |
| 28 | #include <cutils/properties.h> |
| 29 | |
| 30 | /* Set to 1 or 2 to enable debug traces */ |
| 31 | #define DEBUG 0 |
| 32 | |
| 33 | #if DEBUG >= 1 |
| 34 | # define D(...) ALOGD(__VA_ARGS__) |
| 35 | #else |
| 36 | # define D(...) ((void)0) |
| 37 | #endif |
| 38 | |
| 39 | #if DEBUG >= 2 |
| 40 | # define DD(...) ALOGD(__VA_ARGS__) |
| 41 | #else |
| 42 | # define DD(...) ((void)0) |
| 43 | #endif |
| 44 | |
| 45 | #define DBG_FUNC DBG("%s\n", __FUNCTION__) |
| 46 | // |
| 47 | // our private gralloc module structure |
| 48 | // |
| 49 | struct private_module_t { |
| 50 | gralloc_module_t base; |
| 51 | }; |
| 52 | |
| 53 | /* If not NULL, this is a pointer to the fallback module. |
| 54 | * This really is gralloc.default, which we'll use if we detect |
| 55 | * that the emulator we're running in does not support GPU emulation. |
| 56 | */ |
| 57 | static gralloc_module_t* sFallback; |
| 58 | static pthread_once_t sFallbackOnce = PTHREAD_ONCE_INIT; |
| 59 | |
| 60 | static void fallback_init(void); // forward |
| 61 | |
| 62 | |
| 63 | typedef struct _alloc_list_node { |
| 64 | buffer_handle_t handle; |
| 65 | _alloc_list_node *next; |
| 66 | _alloc_list_node *prev; |
| 67 | } AllocListNode; |
| 68 | |
| 69 | // |
| 70 | // Our gralloc device structure (alloc interface) |
| 71 | // |
| 72 | struct gralloc_device_t { |
| 73 | alloc_device_t device; |
| 74 | |
| 75 | AllocListNode *allocListHead; // double linked list of allocated buffers |
| 76 | pthread_mutex_t lock; |
| 77 | }; |
| 78 | |
| 79 | // |
| 80 | // Our framebuffer device structure |
| 81 | // |
| 82 | struct fb_device_t { |
| 83 | framebuffer_device_t device; |
| 84 | }; |
| 85 | |
| 86 | static int map_buffer(cb_handle_t *cb, void **vaddr) |
| 87 | { |
| 88 | if (cb->fd < 0 || cb->ashmemSize <= 0) { |
| 89 | return -EINVAL; |
| 90 | } |
| 91 | |
| 92 | void *addr = mmap(0, cb->ashmemSize, PROT_READ | PROT_WRITE, |
| 93 | MAP_SHARED, cb->fd, 0); |
| 94 | if (addr == MAP_FAILED) { |
| 95 | return -errno; |
| 96 | } |
| 97 | |
| 98 | cb->ashmemBase = intptr_t(addr); |
| 99 | cb->ashmemBasePid = getpid(); |
| 100 | |
| 101 | *vaddr = addr; |
| 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | #define DEFINE_HOST_CONNECTION \ |
| 106 | HostConnection *hostCon = HostConnection::get(); \ |
| 107 | renderControl_encoder_context_t *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL) |
| 108 | |
| 109 | #define DEFINE_AND_VALIDATE_HOST_CONNECTION \ |
| 110 | HostConnection *hostCon = HostConnection::get(); \ |
| 111 | if (!hostCon) { \ |
| 112 | ALOGE("gralloc: Failed to get host connection\n"); \ |
| 113 | return -EIO; \ |
| 114 | } \ |
| 115 | renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \ |
| 116 | if (!rcEnc) { \ |
| 117 | ALOGE("gralloc: Failed to get renderControl encoder context\n"); \ |
| 118 | return -EIO; \ |
| 119 | } |
| 120 | |
| 121 | |
| 122 | // |
| 123 | // gralloc device functions (alloc interface) |
| 124 | // |
| 125 | static int gralloc_alloc(alloc_device_t* dev, |
| 126 | int w, int h, int format, int usage, |
| 127 | buffer_handle_t* pHandle, int* pStride) |
| 128 | { |
| 129 | D("gralloc_alloc w=%d h=%d usage=0x%x\n", w, h, usage); |
| 130 | |
| 131 | gralloc_device_t *grdev = (gralloc_device_t *)dev; |
| 132 | if (!grdev || !pHandle || !pStride) { |
| 133 | ALOGE("gralloc_alloc: Bad inputs (grdev: %p, pHandle: %p, pStride: %p", |
| 134 | grdev, pHandle, pStride); |
| 135 | return -EINVAL; |
| 136 | } |
| 137 | |
| 138 | // |
| 139 | // Validate usage: buffer cannot be written both by s/w and h/w access. |
| 140 | // |
| 141 | bool sw_write = (0 != (usage & GRALLOC_USAGE_SW_WRITE_MASK)); |
| 142 | bool hw_write = (usage & GRALLOC_USAGE_HW_RENDER); |
| 143 | if (hw_write && sw_write) { |
| 144 | ALOGE("gralloc_alloc: Mismatched usage flags: %d x %d, usage %x", |
| 145 | w, h, usage); |
| 146 | return -EINVAL; |
| 147 | } |
| 148 | bool sw_read = (0 != (usage & GRALLOC_USAGE_SW_READ_MASK)); |
| 149 | bool hw_cam_write = usage & GRALLOC_USAGE_HW_CAMERA_WRITE; |
| 150 | bool hw_cam_read = usage & GRALLOC_USAGE_HW_CAMERA_READ; |
| 151 | bool hw_vid_enc_read = usage & GRALLOC_USAGE_HW_VIDEO_ENCODER; |
| 152 | |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 153 | // Keep around original requested format for later validation |
| 154 | int frameworkFormat = format; |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 155 | // Pick the right concrete pixel format given the endpoints as encoded in |
| 156 | // the usage bits. Every end-point pair needs explicit listing here. |
| 157 | if (format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED) { |
| 158 | // Camera as producer |
| 159 | if (usage & GRALLOC_USAGE_HW_CAMERA_WRITE) { |
| 160 | if (usage & GRALLOC_USAGE_HW_TEXTURE) { |
| 161 | // Camera-to-display is RGBA |
| 162 | format = HAL_PIXEL_FORMAT_RGBA_8888; |
| 163 | } else if (usage & GRALLOC_USAGE_HW_VIDEO_ENCODER) { |
| 164 | // Camera-to-encoder is NV21 |
| 165 | format = HAL_PIXEL_FORMAT_YCrCb_420_SP; |
| 166 | } else if ((usage & GRALLOC_USAGE_HW_CAMERA_MASK) == |
| 167 | GRALLOC_USAGE_HW_CAMERA_ZSL) { |
| 168 | // Camera-to-ZSL-queue is RGB_888 |
| 169 | format = HAL_PIXEL_FORMAT_RGB_888; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | if (format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED) { |
| 174 | ALOGE("gralloc_alloc: Requested auto format selection, " |
| 175 | "but no known format for this usage: %d x %d, usage %x", |
| 176 | w, h, usage); |
| 177 | return -EINVAL; |
| 178 | } |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 179 | } else if (format == HAL_PIXEL_FORMAT_YCbCr_420_888) { |
| 180 | // Flexible framework-accessible YUV format; map to NV21 for now |
| 181 | if (usage & GRALLOC_USAGE_HW_CAMERA_WRITE) { |
| 182 | format = HAL_PIXEL_FORMAT_YCrCb_420_SP; |
| 183 | } |
| 184 | if (format == HAL_PIXEL_FORMAT_YCbCr_420_888) { |
| 185 | ALOGE("gralloc_alloc: Requested YCbCr_420_888, but no known " |
| 186 | "specific format for this usage: %d x %d, usage %x", |
| 187 | w, h, usage); |
| 188 | } |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 189 | } |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 190 | bool yuv_format = false; |
| 191 | |
| 192 | int ashmem_size = 0; |
| 193 | int stride = w; |
| 194 | |
| 195 | GLenum glFormat = 0; |
| 196 | GLenum glType = 0; |
| 197 | |
| 198 | int bpp = 0; |
| 199 | int align = 1; |
| 200 | switch (format) { |
| 201 | case HAL_PIXEL_FORMAT_RGBA_8888: |
| 202 | case HAL_PIXEL_FORMAT_RGBX_8888: |
| 203 | case HAL_PIXEL_FORMAT_BGRA_8888: |
| 204 | bpp = 4; |
| 205 | glFormat = GL_RGBA; |
| 206 | glType = GL_UNSIGNED_BYTE; |
| 207 | break; |
| 208 | case HAL_PIXEL_FORMAT_RGB_888: |
| 209 | bpp = 3; |
| 210 | glFormat = GL_RGB; |
| 211 | glType = GL_UNSIGNED_BYTE; |
| 212 | break; |
| 213 | case HAL_PIXEL_FORMAT_RGB_565: |
| 214 | bpp = 2; |
| 215 | glFormat = GL_RGB; |
| 216 | glType = GL_UNSIGNED_SHORT_5_6_5; |
| 217 | break; |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 218 | case HAL_PIXEL_FORMAT_RAW_SENSOR: |
| 219 | bpp = 2; |
| 220 | align = 16*bpp; |
| 221 | if (! ((sw_read || hw_cam_read) && (sw_write || hw_cam_write) ) ) { |
| 222 | // Raw sensor data only goes between camera and CPU |
| 223 | return -EINVAL; |
| 224 | } |
| 225 | // Not expecting to actually create any GL surfaces for this |
| 226 | glFormat = GL_LUMINANCE; |
| 227 | glType = GL_UNSIGNED_SHORT; |
| 228 | break; |
| 229 | case HAL_PIXEL_FORMAT_BLOB: |
| 230 | bpp = 1; |
| 231 | if (! (sw_read && hw_cam_write) ) { |
| 232 | // Blob data cannot be used by HW other than camera emulator |
| 233 | return -EINVAL; |
| 234 | } |
| 235 | // Not expecting to actually create any GL surfaces for this |
| 236 | glFormat = GL_LUMINANCE; |
| 237 | glType = GL_UNSIGNED_BYTE; |
| 238 | break; |
| 239 | case HAL_PIXEL_FORMAT_YCrCb_420_SP: |
| 240 | align = 1; |
| 241 | bpp = 1; // per-channel bpp |
| 242 | yuv_format = true; |
| 243 | // Not expecting to actually create any GL surfaces for this |
| 244 | break; |
| 245 | case HAL_PIXEL_FORMAT_YV12: |
| 246 | align = 16; |
| 247 | bpp = 1; // per-channel bpp |
| 248 | yuv_format = true; |
| 249 | // Not expecting to actually create any GL surfaces for this |
| 250 | break; |
| 251 | default: |
| 252 | ALOGE("gralloc_alloc: Unknown format %d", format); |
| 253 | return -EINVAL; |
| 254 | } |
| 255 | |
| 256 | if (usage & GRALLOC_USAGE_HW_FB) { |
| 257 | // keep space for postCounter |
| 258 | ashmem_size += sizeof(uint32_t); |
| 259 | } |
| 260 | |
| 261 | if (sw_read || sw_write || hw_cam_write || hw_vid_enc_read) { |
| 262 | // keep space for image on guest memory if SW access is needed |
| 263 | // or if the camera is doing writing |
| 264 | if (yuv_format) { |
| 265 | size_t yStride = (w*bpp + (align - 1)) & ~(align-1); |
| 266 | size_t uvStride = (yStride / 2 + (align - 1)) & ~(align-1); |
| 267 | size_t uvHeight = h / 2; |
| 268 | ashmem_size += yStride * h + 2 * (uvHeight * uvStride); |
| 269 | stride = yStride / bpp; |
| 270 | } else { |
| 271 | size_t bpr = (w*bpp + (align-1)) & ~(align-1); |
| 272 | ashmem_size += (bpr * h); |
| 273 | stride = bpr / bpp; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | D("gralloc_alloc format=%d, ashmem_size=%d, stride=%d, tid %d\n", format, |
| 278 | ashmem_size, stride, gettid()); |
| 279 | |
| 280 | // |
| 281 | // Allocate space in ashmem if needed |
| 282 | // |
| 283 | int fd = -1; |
| 284 | if (ashmem_size > 0) { |
| 285 | // round to page size; |
| 286 | ashmem_size = (ashmem_size + (PAGE_SIZE-1)) & ~(PAGE_SIZE-1); |
| 287 | |
| 288 | fd = ashmem_create_region("gralloc-buffer", ashmem_size); |
| 289 | if (fd < 0) { |
| 290 | ALOGE("gralloc_alloc failed to create ashmem region: %s\n", |
| 291 | strerror(errno)); |
| 292 | return -errno; |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | cb_handle_t *cb = new cb_handle_t(fd, ashmem_size, usage, |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 297 | w, h, frameworkFormat, format, |
| 298 | glFormat, glType); |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 299 | |
| 300 | if (ashmem_size > 0) { |
| 301 | // |
| 302 | // map ashmem region if exist |
| 303 | // |
| 304 | void *vaddr; |
| 305 | int err = map_buffer(cb, &vaddr); |
| 306 | if (err) { |
| 307 | close(fd); |
| 308 | delete cb; |
| 309 | return err; |
| 310 | } |
| 311 | |
| 312 | cb->setFd(fd); |
| 313 | } |
| 314 | |
| 315 | // |
| 316 | // Allocate ColorBuffer handle on the host (only if h/w access is allowed) |
| 317 | // Only do this for some h/w usages, not all. |
| 318 | // |
| 319 | if (usage & (GRALLOC_USAGE_HW_TEXTURE | GRALLOC_USAGE_HW_RENDER | |
| 320 | GRALLOC_USAGE_HW_2D | GRALLOC_USAGE_HW_COMPOSER | |
| 321 | GRALLOC_USAGE_HW_FB) ) { |
| 322 | DEFINE_HOST_CONNECTION; |
| 323 | if (hostCon && rcEnc) { |
| 324 | cb->hostHandle = rcEnc->rcCreateColorBuffer(rcEnc, w, h, glFormat); |
| 325 | D("Created host ColorBuffer 0x%x\n", cb->hostHandle); |
| 326 | } |
| 327 | |
| 328 | if (!cb->hostHandle) { |
| 329 | // Could not create colorbuffer on host !!! |
| 330 | close(fd); |
| 331 | delete cb; |
| 332 | return -EIO; |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | // |
| 337 | // alloc succeeded - insert the allocated handle to the allocated list |
| 338 | // |
| 339 | AllocListNode *node = new AllocListNode(); |
| 340 | pthread_mutex_lock(&grdev->lock); |
| 341 | node->handle = cb; |
| 342 | node->next = grdev->allocListHead; |
| 343 | node->prev = NULL; |
| 344 | if (grdev->allocListHead) { |
| 345 | grdev->allocListHead->prev = node; |
| 346 | } |
| 347 | grdev->allocListHead = node; |
| 348 | pthread_mutex_unlock(&grdev->lock); |
| 349 | |
| 350 | *pHandle = cb; |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 351 | if (frameworkFormat == HAL_PIXEL_FORMAT_YCbCr_420_888) { |
| 352 | *pStride = 0; |
| 353 | } else { |
| 354 | *pStride = stride; |
| 355 | } |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | static int gralloc_free(alloc_device_t* dev, |
| 360 | buffer_handle_t handle) |
| 361 | { |
| 362 | const cb_handle_t *cb = (const cb_handle_t *)handle; |
| 363 | if (!cb_handle_t::validate((cb_handle_t*)cb)) { |
| 364 | ERR("gralloc_free: invalid handle"); |
| 365 | return -EINVAL; |
| 366 | } |
| 367 | |
| 368 | if (cb->hostHandle != 0) { |
| 369 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 370 | D("Closing host ColorBuffer 0x%x\n", cb->hostHandle); |
| 371 | rcEnc->rcCloseColorBuffer(rcEnc, cb->hostHandle); |
| 372 | } |
| 373 | |
| 374 | // |
| 375 | // detach and unmap ashmem area if present |
| 376 | // |
| 377 | if (cb->fd > 0) { |
| 378 | if (cb->ashmemSize > 0 && cb->ashmemBase) { |
| 379 | munmap((void *)cb->ashmemBase, cb->ashmemSize); |
| 380 | } |
| 381 | close(cb->fd); |
| 382 | } |
| 383 | |
| 384 | // remove it from the allocated list |
| 385 | gralloc_device_t *grdev = (gralloc_device_t *)dev; |
| 386 | pthread_mutex_lock(&grdev->lock); |
| 387 | AllocListNode *n = grdev->allocListHead; |
| 388 | while( n && n->handle != cb ) { |
| 389 | n = n->next; |
| 390 | } |
| 391 | if (n) { |
| 392 | // buffer found on list - remove it from list |
| 393 | if (n->next) { |
| 394 | n->next->prev = n->prev; |
| 395 | } |
| 396 | if (n->prev) { |
| 397 | n->prev->next = n->next; |
| 398 | } |
| 399 | else { |
| 400 | grdev->allocListHead = n->next; |
| 401 | } |
| 402 | |
| 403 | delete n; |
| 404 | } |
| 405 | pthread_mutex_unlock(&grdev->lock); |
| 406 | |
| 407 | delete cb; |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | static int gralloc_device_close(struct hw_device_t *dev) |
| 413 | { |
| 414 | gralloc_device_t* d = reinterpret_cast<gralloc_device_t*>(dev); |
| 415 | if (d) { |
| 416 | |
| 417 | // free still allocated buffers |
| 418 | while( d->allocListHead != NULL ) { |
| 419 | gralloc_free(&d->device, d->allocListHead->handle); |
| 420 | } |
| 421 | |
| 422 | // free device |
| 423 | free(d); |
| 424 | } |
| 425 | return 0; |
| 426 | } |
| 427 | |
| 428 | static int fb_compositionComplete(struct framebuffer_device_t* dev) |
| 429 | { |
bohu | 8416d62 | 2014-12-02 11:44:44 -0800 | [diff] [blame^] | 430 | (void)dev; |
| 431 | |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | // |
| 436 | // Framebuffer device functions |
| 437 | // |
| 438 | static int fb_post(struct framebuffer_device_t* dev, buffer_handle_t buffer) |
| 439 | { |
| 440 | fb_device_t *fbdev = (fb_device_t *)dev; |
| 441 | cb_handle_t *cb = (cb_handle_t *)buffer; |
| 442 | |
| 443 | if (!fbdev || !cb_handle_t::validate(cb) || !cb->canBePosted()) { |
| 444 | return -EINVAL; |
| 445 | } |
| 446 | |
| 447 | // Make sure we have host connection |
| 448 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 449 | |
| 450 | // increment the post count of the buffer |
Tina Zhang | 163119f | 2014-03-21 08:14:41 +0800 | [diff] [blame] | 451 | intptr_t *postCountPtr = (intptr_t *)cb->ashmemBase; |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 452 | if (!postCountPtr) { |
| 453 | // This should not happen |
| 454 | return -EINVAL; |
| 455 | } |
| 456 | (*postCountPtr)++; |
| 457 | |
| 458 | // send post request to host |
| 459 | rcEnc->rcFBPost(rcEnc, cb->hostHandle); |
| 460 | hostCon->flush(); |
| 461 | |
| 462 | return 0; |
| 463 | } |
| 464 | |
| 465 | static int fb_setUpdateRect(struct framebuffer_device_t* dev, |
| 466 | int l, int t, int w, int h) |
| 467 | { |
| 468 | fb_device_t *fbdev = (fb_device_t *)dev; |
| 469 | |
bohu | 8416d62 | 2014-12-02 11:44:44 -0800 | [diff] [blame^] | 470 | (void)l; |
| 471 | (void)t; |
| 472 | (void)w; |
| 473 | (void)h; |
| 474 | |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 475 | if (!fbdev) { |
| 476 | return -EINVAL; |
| 477 | } |
| 478 | |
| 479 | // Make sure we have host connection |
| 480 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 481 | |
| 482 | // send request to host |
| 483 | // TODO: XXX - should be implemented |
| 484 | //rcEnc->rc_XXX |
| 485 | |
| 486 | return 0; |
| 487 | } |
| 488 | |
| 489 | static int fb_setSwapInterval(struct framebuffer_device_t* dev, |
| 490 | int interval) |
| 491 | { |
| 492 | fb_device_t *fbdev = (fb_device_t *)dev; |
| 493 | |
| 494 | if (!fbdev) { |
| 495 | return -EINVAL; |
| 496 | } |
| 497 | |
| 498 | // Make sure we have host connection |
| 499 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 500 | |
| 501 | // send request to host |
| 502 | rcEnc->rcFBSetSwapInterval(rcEnc, interval); |
| 503 | hostCon->flush(); |
| 504 | |
| 505 | return 0; |
| 506 | } |
| 507 | |
| 508 | static int fb_close(struct hw_device_t *dev) |
| 509 | { |
| 510 | fb_device_t *fbdev = (fb_device_t *)dev; |
| 511 | |
| 512 | delete fbdev; |
| 513 | |
| 514 | return 0; |
| 515 | } |
| 516 | |
| 517 | |
| 518 | // |
| 519 | // gralloc module functions - refcount + locking interface |
| 520 | // |
| 521 | static int gralloc_register_buffer(gralloc_module_t const* module, |
| 522 | buffer_handle_t handle) |
| 523 | { |
| 524 | pthread_once(&sFallbackOnce, fallback_init); |
| 525 | if (sFallback != NULL) { |
| 526 | return sFallback->registerBuffer(sFallback, handle); |
| 527 | } |
| 528 | |
| 529 | D("gralloc_register_buffer(%p) called", handle); |
| 530 | |
| 531 | private_module_t *gr = (private_module_t *)module; |
| 532 | cb_handle_t *cb = (cb_handle_t *)handle; |
| 533 | if (!gr || !cb_handle_t::validate(cb)) { |
| 534 | ERR("gralloc_register_buffer(%p): invalid buffer", cb); |
| 535 | return -EINVAL; |
| 536 | } |
| 537 | |
| 538 | if (cb->hostHandle != 0) { |
| 539 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 540 | D("Opening host ColorBuffer 0x%x\n", cb->hostHandle); |
Jesse Hall | e7fce11 | 2014-05-27 09:25:24 -0700 | [diff] [blame] | 541 | rcEnc->rcOpenColorBuffer2(rcEnc, cb->hostHandle); |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | // |
| 545 | // if the color buffer has ashmem region and it is not mapped in this |
| 546 | // process map it now. |
| 547 | // |
| 548 | if (cb->ashmemSize > 0 && cb->mappedPid != getpid()) { |
| 549 | void *vaddr; |
| 550 | int err = map_buffer(cb, &vaddr); |
| 551 | if (err) { |
| 552 | ERR("gralloc_register_buffer(%p): map failed: %s", cb, strerror(-err)); |
| 553 | return -err; |
| 554 | } |
| 555 | cb->mappedPid = getpid(); |
| 556 | } |
| 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | static int gralloc_unregister_buffer(gralloc_module_t const* module, |
| 562 | buffer_handle_t handle) |
| 563 | { |
| 564 | if (sFallback != NULL) { |
| 565 | return sFallback->unregisterBuffer(sFallback, handle); |
| 566 | } |
| 567 | |
| 568 | private_module_t *gr = (private_module_t *)module; |
| 569 | cb_handle_t *cb = (cb_handle_t *)handle; |
| 570 | if (!gr || !cb_handle_t::validate(cb)) { |
| 571 | ERR("gralloc_unregister_buffer(%p): invalid buffer", cb); |
| 572 | return -EINVAL; |
| 573 | } |
| 574 | |
| 575 | if (cb->hostHandle != 0) { |
| 576 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 577 | D("Closing host ColorBuffer 0x%x\n", cb->hostHandle); |
| 578 | rcEnc->rcCloseColorBuffer(rcEnc, cb->hostHandle); |
| 579 | } |
| 580 | |
| 581 | // |
| 582 | // unmap ashmem region if it was previously mapped in this process |
| 583 | // (through register_buffer) |
| 584 | // |
| 585 | if (cb->ashmemSize > 0 && cb->mappedPid == getpid()) { |
| 586 | void *vaddr; |
| 587 | int err = munmap((void *)cb->ashmemBase, cb->ashmemSize); |
| 588 | if (err) { |
| 589 | ERR("gralloc_unregister_buffer(%p): unmap failed", cb); |
| 590 | return -EINVAL; |
| 591 | } |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 592 | cb->ashmemBase = 0; |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 593 | cb->mappedPid = 0; |
| 594 | } |
| 595 | |
| 596 | D("gralloc_unregister_buffer(%p) done\n", cb); |
| 597 | |
| 598 | return 0; |
| 599 | } |
| 600 | |
| 601 | static int gralloc_lock(gralloc_module_t const* module, |
| 602 | buffer_handle_t handle, int usage, |
| 603 | int l, int t, int w, int h, |
| 604 | void** vaddr) |
| 605 | { |
| 606 | if (sFallback != NULL) { |
| 607 | return sFallback->lock(sFallback, handle, usage, l, t, w, h, vaddr); |
| 608 | } |
| 609 | |
| 610 | private_module_t *gr = (private_module_t *)module; |
| 611 | cb_handle_t *cb = (cb_handle_t *)handle; |
| 612 | if (!gr || !cb_handle_t::validate(cb)) { |
| 613 | ALOGE("gralloc_lock bad handle\n"); |
| 614 | return -EINVAL; |
| 615 | } |
| 616 | |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 617 | // validate format |
| 618 | if (cb->frameworkFormat == HAL_PIXEL_FORMAT_YCbCr_420_888) { |
| 619 | ALOGE("gralloc_lock can't be used with YCbCr_420_888 format"); |
| 620 | return -EINVAL; |
| 621 | } |
| 622 | |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 623 | // Validate usage, |
| 624 | // 1. cannot be locked for hw access |
| 625 | // 2. lock for either sw read or write. |
| 626 | // 3. locked sw access must match usage during alloc time. |
| 627 | bool sw_read = (0 != (usage & GRALLOC_USAGE_SW_READ_MASK)); |
| 628 | bool sw_write = (0 != (usage & GRALLOC_USAGE_SW_WRITE_MASK)); |
| 629 | bool hw_read = (usage & GRALLOC_USAGE_HW_TEXTURE); |
| 630 | bool hw_write = (usage & GRALLOC_USAGE_HW_RENDER); |
| 631 | bool hw_vid_enc_read = (usage & GRALLOC_USAGE_HW_VIDEO_ENCODER); |
| 632 | bool hw_cam_write = (usage & GRALLOC_USAGE_HW_CAMERA_WRITE); |
| 633 | bool hw_cam_read = (usage & GRALLOC_USAGE_HW_CAMERA_READ); |
| 634 | bool sw_read_allowed = (0 != (cb->usage & GRALLOC_USAGE_SW_READ_MASK)); |
| 635 | bool sw_write_allowed = (0 != (cb->usage & GRALLOC_USAGE_SW_WRITE_MASK)); |
| 636 | |
| 637 | if ( (hw_read || hw_write) || |
| 638 | (!sw_read && !sw_write && |
| 639 | !hw_cam_write && !hw_cam_read && |
| 640 | !hw_vid_enc_read) || |
| 641 | (sw_read && !sw_read_allowed) || |
| 642 | (sw_write && !sw_write_allowed) ) { |
| 643 | ALOGE("gralloc_lock usage mismatch usage=0x%x cb->usage=0x%x\n", usage, |
| 644 | cb->usage); |
| 645 | return -EINVAL; |
| 646 | } |
| 647 | |
Tina Zhang | 163119f | 2014-03-21 08:14:41 +0800 | [diff] [blame] | 648 | intptr_t postCount = 0; |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 649 | void *cpu_addr = NULL; |
| 650 | |
| 651 | // |
| 652 | // make sure ashmem area is mapped if needed |
| 653 | // |
| 654 | if (cb->canBePosted() || sw_read || sw_write || |
| 655 | hw_cam_write || hw_cam_read || |
| 656 | hw_vid_enc_read) { |
| 657 | if (cb->ashmemBasePid != getpid() || !cb->ashmemBase) { |
| 658 | return -EACCES; |
| 659 | } |
| 660 | |
| 661 | if (cb->canBePosted()) { |
Tina Zhang | 163119f | 2014-03-21 08:14:41 +0800 | [diff] [blame] | 662 | postCount = *((intptr_t *)cb->ashmemBase); |
| 663 | cpu_addr = (void *)(cb->ashmemBase + sizeof(intptr_t)); |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 664 | } |
| 665 | else { |
| 666 | cpu_addr = (void *)(cb->ashmemBase); |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | if (cb->hostHandle) { |
| 671 | // Make sure we have host connection |
| 672 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 673 | |
| 674 | // |
| 675 | // flush color buffer write cache on host and get its sync status. |
| 676 | // |
| 677 | int hostSyncStatus = rcEnc->rcColorBufferCacheFlush(rcEnc, cb->hostHandle, |
| 678 | postCount, |
| 679 | sw_read); |
| 680 | if (hostSyncStatus < 0) { |
| 681 | // host failed the color buffer sync - probably since it was already |
| 682 | // locked for write access. fail the lock. |
| 683 | ALOGE("gralloc_lock cacheFlush failed postCount=%d sw_read=%d\n", |
| 684 | postCount, sw_read); |
| 685 | return -EBUSY; |
| 686 | } |
| 687 | |
| 688 | } |
| 689 | |
| 690 | // |
| 691 | // is virtual address required ? |
| 692 | // |
| 693 | if (sw_read || sw_write || hw_cam_write || hw_cam_read || hw_vid_enc_read) { |
| 694 | *vaddr = cpu_addr; |
| 695 | } |
| 696 | |
| 697 | if (sw_write || hw_cam_write) { |
| 698 | // |
| 699 | // Keep locked region if locked for s/w write access. |
| 700 | // |
| 701 | cb->lockedLeft = l; |
| 702 | cb->lockedTop = t; |
| 703 | cb->lockedWidth = w; |
| 704 | cb->lockedHeight = h; |
| 705 | } |
| 706 | |
| 707 | DD("gralloc_lock success. vaddr: %p, *vaddr: %p, usage: %x, cpu_addr: %p", |
| 708 | vaddr, vaddr ? *vaddr : 0, usage, cpu_addr); |
| 709 | |
| 710 | return 0; |
| 711 | } |
| 712 | |
| 713 | static int gralloc_unlock(gralloc_module_t const* module, |
| 714 | buffer_handle_t handle) |
| 715 | { |
| 716 | if (sFallback != NULL) { |
| 717 | return sFallback->unlock(sFallback, handle); |
| 718 | } |
| 719 | |
| 720 | private_module_t *gr = (private_module_t *)module; |
| 721 | cb_handle_t *cb = (cb_handle_t *)handle; |
| 722 | if (!gr || !cb_handle_t::validate(cb)) { |
| 723 | return -EINVAL; |
| 724 | } |
| 725 | |
| 726 | // |
| 727 | // if buffer was locked for s/w write, we need to update the host with |
| 728 | // the updated data |
| 729 | // |
| 730 | if (cb->lockedWidth > 0 && cb->lockedHeight > 0 && cb->hostHandle) { |
| 731 | |
| 732 | // Make sure we have host connection |
| 733 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 734 | |
| 735 | void *cpu_addr; |
| 736 | if (cb->canBePosted()) { |
| 737 | cpu_addr = (void *)(cb->ashmemBase + sizeof(int)); |
| 738 | } |
| 739 | else { |
| 740 | cpu_addr = (void *)(cb->ashmemBase); |
| 741 | } |
| 742 | |
| 743 | if (cb->lockedWidth < cb->width || cb->lockedHeight < cb->height) { |
| 744 | int bpp = glUtilsPixelBitSize(cb->glFormat, cb->glType) >> 3; |
| 745 | char *tmpBuf = new char[cb->lockedWidth * cb->lockedHeight * bpp]; |
| 746 | |
| 747 | int dst_line_len = cb->lockedWidth * bpp; |
| 748 | int src_line_len = cb->width * bpp; |
| 749 | char *src = (char *)cpu_addr + cb->lockedTop*src_line_len + cb->lockedLeft*bpp; |
| 750 | char *dst = tmpBuf; |
| 751 | for (int y=0; y<cb->lockedHeight; y++) { |
| 752 | memcpy(dst, src, dst_line_len); |
| 753 | src += src_line_len; |
| 754 | dst += dst_line_len; |
| 755 | } |
| 756 | |
| 757 | rcEnc->rcUpdateColorBuffer(rcEnc, cb->hostHandle, |
| 758 | cb->lockedLeft, cb->lockedTop, |
| 759 | cb->lockedWidth, cb->lockedHeight, |
| 760 | cb->glFormat, cb->glType, |
| 761 | tmpBuf); |
| 762 | |
| 763 | delete [] tmpBuf; |
| 764 | } |
| 765 | else { |
| 766 | rcEnc->rcUpdateColorBuffer(rcEnc, cb->hostHandle, 0, 0, |
| 767 | cb->width, cb->height, |
| 768 | cb->glFormat, cb->glType, |
| 769 | cpu_addr); |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | cb->lockedWidth = cb->lockedHeight = 0; |
| 774 | return 0; |
| 775 | } |
| 776 | |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 777 | static int gralloc_lock_ycbcr(gralloc_module_t const* module, |
| 778 | buffer_handle_t handle, int usage, |
| 779 | int l, int t, int w, int h, |
| 780 | android_ycbcr *ycbcr) |
| 781 | { |
| 782 | // Not supporting fallback module for YCbCr |
| 783 | if (sFallback != NULL) { |
| 784 | return -EINVAL; |
| 785 | } |
| 786 | |
| 787 | if (!ycbcr) { |
| 788 | ALOGE("gralloc_lock_ycbcr got NULL ycbcr struct"); |
| 789 | return -EINVAL; |
| 790 | } |
| 791 | |
| 792 | private_module_t *gr = (private_module_t *)module; |
| 793 | cb_handle_t *cb = (cb_handle_t *)handle; |
| 794 | if (!gr || !cb_handle_t::validate(cb)) { |
| 795 | ALOGE("gralloc_lock_ycbcr bad handle\n"); |
| 796 | return -EINVAL; |
| 797 | } |
| 798 | |
| 799 | if (cb->frameworkFormat != HAL_PIXEL_FORMAT_YCbCr_420_888) { |
| 800 | ALOGE("gralloc_lock_ycbcr can only be used with " |
| 801 | "HAL_PIXEL_FORMAT_YCbCr_420_888, got %x instead", |
| 802 | cb->frameworkFormat); |
| 803 | return -EINVAL; |
| 804 | } |
| 805 | |
| 806 | // Validate usage |
| 807 | // For now, only allow camera write, software read. |
| 808 | bool sw_read = (0 != (usage & GRALLOC_USAGE_SW_READ_MASK)); |
| 809 | bool hw_cam_write = (usage & GRALLOC_USAGE_HW_CAMERA_WRITE); |
| 810 | bool sw_read_allowed = (0 != (cb->usage & GRALLOC_USAGE_SW_READ_MASK)); |
| 811 | |
| 812 | if ( (!hw_cam_write && !sw_read) || |
| 813 | (sw_read && !sw_read_allowed) ) { |
| 814 | ALOGE("gralloc_lock_ycbcr usage mismatch usage:0x%x cb->usage:0x%x\n", |
| 815 | usage, cb->usage); |
| 816 | return -EINVAL; |
| 817 | } |
| 818 | |
| 819 | // Make sure memory is mapped, get address |
| 820 | if (cb->ashmemBasePid != getpid() || !cb->ashmemBase) { |
| 821 | return -EACCES; |
| 822 | } |
| 823 | |
| 824 | uint8_t *cpu_addr = NULL; |
| 825 | |
| 826 | if (cb->canBePosted()) { |
| 827 | cpu_addr = (uint8_t *)(cb->ashmemBase + sizeof(int)); |
| 828 | } |
| 829 | else { |
| 830 | cpu_addr = (uint8_t *)(cb->ashmemBase); |
| 831 | } |
| 832 | |
| 833 | // Calculate offsets to underlying YUV data |
| 834 | size_t yStride; |
| 835 | size_t cStride; |
| 836 | size_t yOffset; |
| 837 | size_t uOffset; |
| 838 | size_t vOffset; |
| 839 | size_t cStep; |
| 840 | switch (cb->format) { |
| 841 | case HAL_PIXEL_FORMAT_YCrCb_420_SP: |
| 842 | yStride = cb->width; |
| 843 | cStride = cb->width; |
| 844 | yOffset = 0; |
| 845 | vOffset = yStride * cb->height; |
| 846 | uOffset = vOffset + 1; |
| 847 | cStep = 2; |
| 848 | break; |
| 849 | default: |
| 850 | ALOGE("gralloc_lock_ycbcr unexpected internal format %x", |
| 851 | cb->format); |
| 852 | return -EINVAL; |
| 853 | } |
| 854 | |
| 855 | ycbcr->y = cpu_addr + yOffset; |
| 856 | ycbcr->cb = cpu_addr + uOffset; |
| 857 | ycbcr->cr = cpu_addr + vOffset; |
| 858 | ycbcr->ystride = yStride; |
| 859 | ycbcr->cstride = cStride; |
| 860 | ycbcr->chroma_step = cStep; |
| 861 | |
| 862 | // Zero out reserved fields |
| 863 | memset(ycbcr->reserved, 0, sizeof(ycbcr->reserved)); |
| 864 | |
| 865 | // |
| 866 | // Keep locked region if locked for s/w write access. |
| 867 | // |
| 868 | cb->lockedLeft = l; |
| 869 | cb->lockedTop = t; |
| 870 | cb->lockedWidth = w; |
| 871 | cb->lockedHeight = h; |
| 872 | |
| 873 | DD("gralloc_lock_ycbcr success. usage: %x, ycbcr.y: %p, .cb: %p, .cr: %p, " |
| 874 | ".ystride: %d , .cstride: %d, .chroma_step: %d", usage, |
| 875 | ycbcr->y, ycbcr->cb, ycbcr->cr, ycbcr->ystride, ycbcr->cstride, |
| 876 | ycbcr->chroma_step); |
| 877 | |
| 878 | return 0; |
| 879 | } |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 880 | |
| 881 | static int gralloc_device_open(const hw_module_t* module, |
| 882 | const char* name, |
| 883 | hw_device_t** device) |
| 884 | { |
| 885 | int status = -EINVAL; |
| 886 | |
| 887 | D("gralloc_device_open %s\n", name); |
| 888 | |
| 889 | pthread_once( &sFallbackOnce, fallback_init ); |
| 890 | if (sFallback != NULL) { |
| 891 | return sFallback->common.methods->open(&sFallback->common, name, device); |
| 892 | } |
| 893 | |
| 894 | if (!strcmp(name, GRALLOC_HARDWARE_GPU0)) { |
| 895 | |
| 896 | // Create host connection and keep it in the TLS. |
| 897 | // return error if connection with host can not be established |
| 898 | HostConnection *hostCon = HostConnection::get(); |
| 899 | if (!hostCon) { |
| 900 | ALOGE("gralloc: failed to get host connection while opening %s\n", name); |
| 901 | return -EIO; |
| 902 | } |
| 903 | |
| 904 | // |
| 905 | // Allocate memory for the gralloc device (alloc interface) |
| 906 | // |
| 907 | gralloc_device_t *dev; |
| 908 | dev = (gralloc_device_t*)malloc(sizeof(gralloc_device_t)); |
| 909 | if (NULL == dev) { |
| 910 | return -ENOMEM; |
| 911 | } |
| 912 | |
| 913 | // Initialize our device structure |
| 914 | // |
| 915 | dev->device.common.tag = HARDWARE_DEVICE_TAG; |
| 916 | dev->device.common.version = 0; |
| 917 | dev->device.common.module = const_cast<hw_module_t*>(module); |
| 918 | dev->device.common.close = gralloc_device_close; |
| 919 | |
| 920 | dev->device.alloc = gralloc_alloc; |
| 921 | dev->device.free = gralloc_free; |
| 922 | dev->allocListHead = NULL; |
| 923 | pthread_mutex_init(&dev->lock, NULL); |
| 924 | |
| 925 | *device = &dev->device.common; |
| 926 | status = 0; |
| 927 | } |
| 928 | else if (!strcmp(name, GRALLOC_HARDWARE_FB0)) { |
| 929 | |
| 930 | // return error if connection with host can not be established |
| 931 | DEFINE_AND_VALIDATE_HOST_CONNECTION; |
| 932 | |
| 933 | // |
| 934 | // Query the host for Framebuffer attributes |
| 935 | // |
| 936 | D("gralloc: query Frabuffer attribs\n"); |
| 937 | EGLint width = rcEnc->rcGetFBParam(rcEnc, FB_WIDTH); |
| 938 | D("gralloc: width=%d\n", width); |
| 939 | EGLint height = rcEnc->rcGetFBParam(rcEnc, FB_HEIGHT); |
| 940 | D("gralloc: height=%d\n", height); |
| 941 | EGLint xdpi = rcEnc->rcGetFBParam(rcEnc, FB_XDPI); |
| 942 | D("gralloc: xdpi=%d\n", xdpi); |
| 943 | EGLint ydpi = rcEnc->rcGetFBParam(rcEnc, FB_YDPI); |
| 944 | D("gralloc: ydpi=%d\n", ydpi); |
| 945 | EGLint fps = rcEnc->rcGetFBParam(rcEnc, FB_FPS); |
| 946 | D("gralloc: fps=%d\n", fps); |
| 947 | EGLint min_si = rcEnc->rcGetFBParam(rcEnc, FB_MIN_SWAP_INTERVAL); |
| 948 | D("gralloc: min_swap=%d\n", min_si); |
| 949 | EGLint max_si = rcEnc->rcGetFBParam(rcEnc, FB_MAX_SWAP_INTERVAL); |
| 950 | D("gralloc: max_swap=%d\n", max_si); |
| 951 | |
| 952 | // |
| 953 | // Allocate memory for the framebuffer device |
| 954 | // |
| 955 | fb_device_t *dev; |
| 956 | dev = (fb_device_t*)malloc(sizeof(fb_device_t)); |
| 957 | if (NULL == dev) { |
| 958 | return -ENOMEM; |
| 959 | } |
| 960 | memset(dev, 0, sizeof(fb_device_t)); |
| 961 | |
| 962 | // Initialize our device structure |
| 963 | // |
| 964 | dev->device.common.tag = HARDWARE_DEVICE_TAG; |
| 965 | dev->device.common.version = 0; |
| 966 | dev->device.common.module = const_cast<hw_module_t*>(module); |
| 967 | dev->device.common.close = fb_close; |
| 968 | dev->device.setSwapInterval = fb_setSwapInterval; |
| 969 | dev->device.post = fb_post; |
| 970 | dev->device.setUpdateRect = 0; //fb_setUpdateRect; |
| 971 | dev->device.compositionComplete = fb_compositionComplete; //XXX: this is a dummy |
| 972 | |
| 973 | const_cast<uint32_t&>(dev->device.flags) = 0; |
| 974 | const_cast<uint32_t&>(dev->device.width) = width; |
| 975 | const_cast<uint32_t&>(dev->device.height) = height; |
| 976 | const_cast<int&>(dev->device.stride) = width; |
| 977 | const_cast<int&>(dev->device.format) = HAL_PIXEL_FORMAT_RGBA_8888; |
| 978 | const_cast<float&>(dev->device.xdpi) = xdpi; |
| 979 | const_cast<float&>(dev->device.ydpi) = ydpi; |
| 980 | const_cast<float&>(dev->device.fps) = fps; |
| 981 | const_cast<int&>(dev->device.minSwapInterval) = min_si; |
| 982 | const_cast<int&>(dev->device.maxSwapInterval) = max_si; |
| 983 | *device = &dev->device.common; |
| 984 | |
| 985 | status = 0; |
| 986 | } |
| 987 | |
| 988 | return status; |
| 989 | } |
| 990 | |
| 991 | // |
| 992 | // define the HMI symbol - our module interface |
| 993 | // |
| 994 | static struct hw_module_methods_t gralloc_module_methods = { |
| 995 | open: gralloc_device_open |
| 996 | }; |
| 997 | |
| 998 | struct private_module_t HAL_MODULE_INFO_SYM = { |
| 999 | base: { |
| 1000 | common: { |
| 1001 | tag: HARDWARE_MODULE_TAG, |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 1002 | module_api_version: GRALLOC_MODULE_API_VERSION_0_2, |
| 1003 | hal_api_version: 0, |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 1004 | id: GRALLOC_HARDWARE_MODULE_ID, |
| 1005 | name: "Graphics Memory Allocator Module", |
| 1006 | author: "The Android Open Source Project", |
| 1007 | methods: &gralloc_module_methods, |
| 1008 | dso: NULL, |
| 1009 | reserved: {0, } |
| 1010 | }, |
| 1011 | registerBuffer: gralloc_register_buffer, |
| 1012 | unregisterBuffer: gralloc_unregister_buffer, |
| 1013 | lock: gralloc_lock, |
| 1014 | unlock: gralloc_unlock, |
Eino-Ville Talvala | a600078 | 2013-05-04 16:45:22 -0700 | [diff] [blame] | 1015 | perform: NULL, |
| 1016 | lock_ycbcr: gralloc_lock_ycbcr, |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 1017 | } |
| 1018 | }; |
| 1019 | |
| 1020 | /* This function is called once to detect whether the emulator supports |
| 1021 | * GPU emulation (this is done by looking at the qemu.gles kernel |
| 1022 | * parameter, which must be > 0 if this is the case). |
| 1023 | * |
| 1024 | * If not, then load gralloc.default instead as a fallback. |
| 1025 | */ |
| 1026 | static void |
| 1027 | fallback_init(void) |
| 1028 | { |
| 1029 | char prop[PROPERTY_VALUE_MAX]; |
| 1030 | void* module; |
| 1031 | |
| 1032 | property_get("ro.kernel.qemu.gles", prop, "0"); |
| 1033 | if (atoi(prop) > 0) { |
| 1034 | return; |
| 1035 | } |
| 1036 | ALOGD("Emulator without GPU emulation detected."); |
Tina Zhang | c950e0d | 2014-04-18 14:21:23 +0800 | [diff] [blame] | 1037 | #if __LP64__ |
| 1038 | module = dlopen("/system/lib64/hw/gralloc.default.so", RTLD_LAZY|RTLD_LOCAL); |
| 1039 | #else |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 1040 | module = dlopen("/system/lib/hw/gralloc.default.so", RTLD_LAZY|RTLD_LOCAL); |
Tina Zhang | c950e0d | 2014-04-18 14:21:23 +0800 | [diff] [blame] | 1041 | #endif |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 1042 | if (module != NULL) { |
| 1043 | sFallback = reinterpret_cast<gralloc_module_t*>(dlsym(module, HAL_MODULE_INFO_SYM_AS_STR)); |
| 1044 | if (sFallback == NULL) { |
| 1045 | dlclose(module); |
| 1046 | } |
| 1047 | } |
| 1048 | if (sFallback == NULL) { |
| 1049 | ALOGE("Could not find software fallback module!?"); |
| 1050 | } |
| 1051 | } |