OSDN Git Service

Android-x86: Implement some perform functionality from drm_gralloc (v2)
[android-x86/external-minigbm.git] / cros_gralloc / gralloc0 / gralloc0.cc
index a70498a..900e376 100644 (file)
@@ -4,21 +4,35 @@
  * found in the LICENSE file.
  */
 
+#include "../../helpers.h"
 #include "../../util.h"
 #include "../cros_gralloc_driver.h"
 
 #include <cassert>
 #include <hardware/gralloc.h>
 #include <memory.h>
+#include <xf86drm.h>
+#include "drm_framebuffer.h"
+#include "gralloc_drm.h"
 
 struct gralloc0_module {
        gralloc_module_t base;
        std::unique_ptr<alloc_device_t> alloc;
        std::unique_ptr<cros_gralloc_driver> driver;
+       struct drm_framebuffer *fb;
        bool initialized;
        std::mutex initialization_mutex;
 };
 
+struct cros_gralloc0_buffer_info {
+       uint32_t drm_fourcc;
+       int num_fds;
+       int fds[4];
+       uint64_t modifier;
+       uint32_t offset[4];
+       uint32_t stride[4];
+};
+
 /* This enumeration must match the one in <gralloc_drm.h>.
  * The functions supported by this gralloc's temporary private API are listed
  * below. Use of these functions is highly discouraged and should only be
@@ -31,6 +45,7 @@ enum {
        GRALLOC_DRM_GET_FORMAT,
        GRALLOC_DRM_GET_DIMENSIONS,
        GRALLOC_DRM_GET_BACKING_STORE,
+       GRALLOC_DRM_GET_BUFFER_INFO,
 };
 // clang-format on
 
@@ -63,15 +78,16 @@ static uint64_t gralloc0_convert_usage(int usage)
                /* HWC wants to use display hardware, but can defer to OpenGL. */
                use_flags |= BO_USE_SCANOUT | BO_USE_TEXTURE;
        if (usage & GRALLOC_USAGE_HW_FB)
-               use_flags |= BO_USE_NONE;
+               use_flags |= BO_USE_FRAMEBUFFER;
        if (usage & GRALLOC_USAGE_EXTERNAL_DISP)
                /*
                 * This flag potentially covers external display for the normal drivers (i915,
                 * rockchip) and usb monitors (evdi/udl). It's complicated so ignore it.
                 * */
                use_flags |= BO_USE_NONE;
+       /* Map this flag to linear until real HW protection is available on Android. */
        if (usage & GRALLOC_USAGE_PROTECTED)
-               use_flags |= BO_USE_PROTECTED;
+               use_flags |= BO_USE_LINEAR;
        if (usage & GRALLOC_USAGE_HW_VIDEO_ENCODER) {
                use_flags |= BO_USE_HW_VIDEO_ENCODER;
                /*HACK: See b/30054495 */
@@ -119,9 +135,10 @@ static int gralloc0_alloc(alloc_device_t *dev, int w, int h, int format, int usa
        descriptor.width = w;
        descriptor.height = h;
        descriptor.droid_format = format;
-       descriptor.producer_usage = descriptor.consumer_usage = usage;
+       descriptor.droid_usage = usage;
        descriptor.drm_format = cros_gralloc_convert_format(format);
        descriptor.use_flags = gralloc0_convert_usage(usage);
+       descriptor.reserved_region_size = 0;
 
        supported = mod->driver->is_supported(&descriptor);
        if (!supported && (usage & GRALLOC_USAGE_HW_COMPOSER)) {
@@ -167,7 +184,8 @@ static int gralloc0_close(struct hw_device_t *dev)
        return 0;
 }
 
-static int gralloc0_init(struct gralloc0_module *mod, bool initialize_alloc)
+static int gralloc0_init(struct gralloc0_module *mod, bool initialize_alloc,
+                         bool framebuffer = false)
 {
        std::lock_guard<std::mutex> lock(mod->initialization_mutex);
 
@@ -175,7 +193,7 @@ static int gralloc0_init(struct gralloc0_module *mod, bool initialize_alloc)
                return 0;
 
        mod->driver = std::make_unique<cros_gralloc_driver>();
-       if (mod->driver->init()) {
+       if (framebuffer ? mod->driver->init_master() : mod->driver->init()) {
                drv_log("Failed to initialize driver.\n");
                return -ENODEV;
        }
@@ -190,15 +208,58 @@ static int gralloc0_init(struct gralloc0_module *mod, bool initialize_alloc)
                mod->alloc->common.close = gralloc0_close;
        }
 
+       if (framebuffer) {
+               int ret = drm_framebuffer_init(mod->driver->get_fd(), &mod->fb);
+               if (ret)
+                       return ret;
+       }
+
        mod->initialized = true;
        return 0;
 }
 
+static int gralloc0_open_fb0(struct gralloc0_module *mod, struct hw_device_t **dev)
+{
+       int ret;
+
+       if (!mod->initialized) {
+               ret = gralloc0_init(mod, true, true);
+               if (ret)
+                       return ret;
+       }
+
+       if (!mod->fb) {
+               /*
+                * On Pie and above the FB HAL is opened before the Gralloc HAL.
+                * This has the advantage that we can open the DRM card node in this case,
+                * and open the render node in all other cases.
+                *
+                * On earlier Android versions this is not the case, so we need to make
+                * sure the FB HAL was actually initialized.
+                *
+                * TODO: Currently it does not attempt to set master on the opened render
+                * node. That means it will only work with DRM authentication disabled.
+                */
+               std::lock_guard<std::mutex> lock(mod->initialization_mutex);
+               drv_log("FB HAL opened after Gralloc HAL, we might not be DRM master!\n");
+
+               ret = drm_framebuffer_init(mod->driver->get_fd(), &mod->fb);
+               if (ret)
+                       return ret;
+       }
+
+       *dev = (struct hw_device_t *) mod->fb;
+       return 0;
+}
+
 static int gralloc0_open(const struct hw_module_t *mod, const char *name, struct hw_device_t **dev)
 {
        auto const_module = reinterpret_cast<const struct gralloc0_module *>(mod);
        auto module = const_cast<struct gralloc0_module *>(const_module);
 
+       if (!strcmp(name, GRALLOC_HARDWARE_FB0))
+               return gralloc0_open_fb0(module, dev);
+
        if (module->initialized) {
                *dev = &module->alloc->common;
                return 0;
@@ -225,7 +286,10 @@ static int gralloc0_register_buffer(struct gralloc_module_t const *module, buffe
                if (gralloc0_init(mod, false))
                        return -ENODEV;
 
-       return mod->driver->retain(handle);
+       int ret = mod->driver->retain(handle);
+       if (ret == 0 && mod->fb)
+               drm_framebuffer_import(mod->fb, handle);
+       return ret;
 }
 
 static int gralloc0_unregister_buffer(struct gralloc_module_t const *module, buffer_handle_t handle)
@@ -248,7 +312,7 @@ static int gralloc0_unlock(struct gralloc_module_t const *module, buffer_handle_
        if (ret)
                return ret;
 
-       ret = cros_gralloc_sync_wait(fence_fd);
+       ret = cros_gralloc_sync_wait(fence_fd, /*close_acquire_fence=*/true);
        if (ret)
                return ret;
 
@@ -264,21 +328,46 @@ static int gralloc0_perform(struct gralloc_module_t const *module, int op, ...)
        uint32_t *out_width, *out_height, *out_stride;
        uint32_t strides[DRV_MAX_PLANES] = { 0, 0, 0, 0 };
        uint32_t offsets[DRV_MAX_PLANES] = { 0, 0, 0, 0 };
+       struct cros_gralloc0_buffer_info *info;
        auto mod = (struct gralloc0_module const *)module;
 
        switch (op) {
+       case GRALLOC_MODULE_PERFORM_GET_DRM_FD:
+       case GRALLOC_MODULE_PERFORM_ENTER_VT:
+       case GRALLOC_MODULE_PERFORM_LEAVE_VT:
        case GRALLOC_DRM_GET_STRIDE:
        case GRALLOC_DRM_GET_FORMAT:
        case GRALLOC_DRM_GET_DIMENSIONS:
        case GRALLOC_DRM_GET_BACKING_STORE:
+       case GRALLOC_DRM_GET_BUFFER_INFO:
                break;
        default:
                return -EINVAL;
        }
 
        va_start(args, op);
-
        ret = 0;
+
+       switch (op) {
+       case GRALLOC_MODULE_PERFORM_GET_DRM_FD: {
+               int *fd = va_arg(args, int*);
+               *fd = mod->driver->get_fd();
+               break;
+       }
+       case GRALLOC_MODULE_PERFORM_ENTER_VT:
+               ret = drmSetMaster(mod->driver->get_fd());
+               break;
+       case GRALLOC_MODULE_PERFORM_LEAVE_VT:
+               ret = drmDropMaster(mod->driver->get_fd());
+               break;
+       default:
+               goto other;
+       }
+
+       va_end(args);
+       return ret;
+
+other:
        handle = va_arg(args, buffer_handle_t);
        auto hnd = cros_gralloc_convert_handle(handle);
        if (!hnd) {
@@ -315,6 +404,17 @@ static int gralloc0_perform(struct gralloc_module_t const *module, int op, ...)
                out_store = va_arg(args, uint64_t *);
                ret = mod->driver->get_backing_store(handle, out_store);
                break;
+       case GRALLOC_DRM_GET_BUFFER_INFO:
+               info = va_arg(args, struct cros_gralloc0_buffer_info *);
+               info->drm_fourcc = drv_get_standard_fourcc(hnd->format);
+               info->num_fds = hnd->num_planes;
+               info->modifier = hnd->format_modifier;
+               for (uint32_t i = 0; i < hnd->num_planes; i++) {
+                       info->fds[i] = hnd->fds[i];
+                       info->offset[i] = hnd->offsets[i];
+                       info->stride[i] = hnd->strides[i];
+               }
+               break;
        default:
                ret = -EINVAL;
        }
@@ -359,7 +459,7 @@ static int gralloc0_lock_async(struct gralloc_module_t const *module, buffer_han
        assert(h >= 0);
 
        map_flags = gralloc0_convert_map_usage(usage);
-       ret = mod->driver->lock(handle, fence_fd, &rect, map_flags, addr);
+       ret = mod->driver->lock(handle, fence_fd, true, &rect, map_flags, addr);
        *vaddr = addr[0];
        return ret;
 }
@@ -404,7 +504,7 @@ static int gralloc0_lock_async_ycbcr(struct gralloc_module_t const *module, buff
        assert(h >= 0);
 
        map_flags = gralloc0_convert_map_usage(usage);
-       ret = mod->driver->lock(handle, fence_fd, &rect, map_flags, addr);
+       ret = mod->driver->lock(handle, fence_fd, true, &rect, map_flags, addr);
        if (ret)
                return ret;