blob: 829d6ead77006214f462096a1883a069fbccf132 [file] [log] [blame]
Bartosz Bieleckie24f2ca2016-01-07 16:57:10 +01001/*
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
Gurchetan Singh46faf6b2016-08-05 14:40:07 -07007#include "drv_priv.h"
Bartosz Bieleckie24f2ca2016-01-07 16:57:10 +01008#include "helpers.h"
Gurchetan Singh179687e2016-10-28 10:07:35 -07009#include "util.h"
Bartosz Bieleckie24f2ca2016-01-07 16:57:10 +010010
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070011static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_XRGB8888 };
Gurchetan Singh179687e2016-10-28 10:07:35 -070012
13static int evdi_init(struct driver *drv)
14{
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070015 int ret;
16 ret = drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
17 &LINEAR_METADATA, BO_USE_RENDER_MASK);
18 if (ret)
19 return ret;
20
21 return drv_modify_linear_combinations(drv);
Gurchetan Singh179687e2016-10-28 10:07:35 -070022}
23
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080024struct backend backend_evdi = {
Bartosz Bieleckie24f2ca2016-01-07 16:57:10 +010025 .name = "evdi",
Gurchetan Singh179687e2016-10-28 10:07:35 -070026 .init = evdi_init,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070027 .bo_create = drv_dumb_bo_create,
28 .bo_destroy = drv_dumb_bo_destroy,
Gurchetan Singh71611d62017-01-03 16:49:56 -080029 .bo_import = drv_prime_bo_import,
Gurchetan Singhef920532016-08-12 16:38:25 -070030 .bo_map = drv_dumb_bo_map,
Gurchetan Singhba6bd502017-09-18 15:29:47 -070031 .bo_unmap = drv_bo_munmap,
Bartosz Bieleckie24f2ca2016-01-07 16:57:10 +010032};