blob: c0b600b5c29a63dff0fcfc275da67e10d9612d80 [file] [log] [blame]
Daniel Blum080405c2015-12-01 22:46:09 -08001/*
2 * Copyright 2015 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#ifdef DRV_MARVELL
Daniel Blum080405c2015-12-01 22:46:09 -08008
Gurchetan Singh46faf6b2016-08-05 14:40:07 -07009#include "drv_priv.h"
Daniel Blum080405c2015-12-01 22:46:09 -080010#include "helpers.h"
Gurchetan Singh179687e2016-10-28 10:07:35 -070011#include "util.h"
Daniel Blum080405c2015-12-01 22:46:09 -080012
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070013static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_XRGB8888 };
Gurchetan Singh179687e2016-10-28 10:07:35 -070014
15static int marvell_init(struct driver *drv)
16{
Gurchetan Singhd3001452017-11-03 17:18:36 -070017 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
18 &LINEAR_METADATA, BO_USE_RENDER_MASK);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070019
20 return drv_add_linear_combinations(drv, render_target_formats,
21 ARRAY_SIZE(render_target_formats));
Gurchetan Singh179687e2016-10-28 10:07:35 -070022}
23
Gurchetan Singh3e9d3832017-10-31 10:36:25 -070024const struct backend backend_marvell = {
Daniel Blum080405c2015-12-01 22:46:09 -080025 .name = "marvell",
Gurchetan Singh179687e2016-10-28 10:07:35 -070026 .init = marvell_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,
Daniel Blum080405c2015-12-01 22:46:09 -080032};
33
34#endif