Running the presubmit.sh script will apply our rules to every file in the repo. Exclude gbm.h from the formatting requirements since this file was taken from other open-source projects, and diffing will be easier without our formatting rules. In addition, special case drivers where the order of includes matters. BUG=none TEST=Verified the following commands succeed: emerge-cyan minigbm/arc-cros-gralloc emerge-oak minigbm/arc-cros-gralloc emerge-veyron_minnie-cheets minigbm/arc-cros-gralloc emerge-peach_pi minigbm emerge-nyan_big minigbm emerge-jadeite minigbm Change-Id: I6ce93fb1930da254d13d5017766c17341870ccc9 Reviewed-on: https://chromium-review.googlesource.com/447319 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
51 lines
1.4 KiB
C
51 lines
1.4 KiB
C
/*
|
|
* Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "drv_priv.h"
|
|
#include "helpers.h"
|
|
#include "util.h"
|
|
|
|
#define MESA_LLVMPIPE_TILE_ORDER 6
|
|
#define MESA_LLVMPIPE_TILE_SIZE (1 << MESA_LLVMPIPE_TILE_ORDER)
|
|
|
|
static const uint32_t supported_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_RGB565,
|
|
DRM_FORMAT_XRGB8888, DRM_FORMAT_YVU420_ANDROID };
|
|
|
|
static int vgem_init(struct driver *drv)
|
|
{
|
|
return drv_add_linear_combinations(drv, supported_formats, ARRAY_SIZE(supported_formats));
|
|
}
|
|
|
|
static int vgem_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
|
|
uint32_t flags)
|
|
{
|
|
int ret = drv_dumb_bo_create(bo, ALIGN(width, MESA_LLVMPIPE_TILE_SIZE),
|
|
ALIGN(height, MESA_LLVMPIPE_TILE_SIZE), format, flags);
|
|
return ret;
|
|
}
|
|
|
|
static uint32_t vgem_resolve_format(uint32_t format)
|
|
{
|
|
switch (format) {
|
|
case DRM_FORMAT_FLEX_IMPLEMENTATION_DEFINED:
|
|
/*HACK: See b/28671744 */
|
|
return DRM_FORMAT_XBGR8888;
|
|
case DRM_FORMAT_FLEX_YCbCr_420_888:
|
|
return DRM_FORMAT_YVU420_ANDROID;
|
|
default:
|
|
return format;
|
|
}
|
|
}
|
|
|
|
struct backend backend_vgem = {
|
|
.name = "vgem",
|
|
.init = vgem_init,
|
|
.bo_create = vgem_bo_create,
|
|
.bo_destroy = drv_dumb_bo_destroy,
|
|
.bo_import = drv_prime_bo_import,
|
|
.bo_map = drv_dumb_bo_map,
|
|
.resolve_format = vgem_resolve_format,
|
|
};
|