blob: 455b03304be472872da2a3ee9e1a7d219570e062 [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 Singh8ac0c9a2017-05-15 09:34:22 -070017 int ret;
18 ret = drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
19 &LINEAR_METADATA, BO_USE_RENDER_MASK);
20 if (ret)
21 return ret;
22
23 return drv_add_linear_combinations(drv, render_target_formats,
24 ARRAY_SIZE(render_target_formats));
Gurchetan Singh179687e2016-10-28 10:07:35 -070025}
26
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080027struct backend backend_marvell = {
Daniel Blum080405c2015-12-01 22:46:09 -080028 .name = "marvell",
Gurchetan Singh179687e2016-10-28 10:07:35 -070029 .init = marvell_init,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070030 .bo_create = drv_dumb_bo_create,
31 .bo_destroy = drv_dumb_bo_destroy,
Gurchetan Singh71611d62017-01-03 16:49:56 -080032 .bo_import = drv_prime_bo_import,
Gurchetan Singhef920532016-08-12 16:38:25 -070033 .bo_map = drv_dumb_bo_map,
Gurchetan Singhba6bd502017-09-18 15:29:47 -070034 .bo_unmap = drv_bo_munmap,
Daniel Blum080405c2015-12-01 22:46:09 -080035};
36
37#endif