blob: ae3dc4570dce71bf401dec28da588bbcd5b9536a [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 Singh6f6e18a2016-12-19 15:14:18 -080013static struct supported_combination combos[2] = {
14 {DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_NONE,
15 BO_USE_CURSOR | BO_USE_LINEAR | BO_USE_RENDERING | BO_USE_SW_READ_OFTEN |
16 BO_USE_SW_WRITE_OFTEN | BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY},
17 {DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE,
18 BO_USE_CURSOR | BO_USE_LINEAR | BO_USE_RENDERING | BO_USE_SW_READ_OFTEN |
19 BO_USE_SW_WRITE_OFTEN | BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY},
Gurchetan Singh179687e2016-10-28 10:07:35 -070020}
21
22static int marvell_init(struct driver *drv)
23{
24 drv_insert_combinations(drv, combos, ARRAY_SIZE(combos));
25 return drv_add_kms_flags(drv);
26}
27
28struct backend backend_marvell =
Daniel Blum080405c2015-12-01 22:46:09 -080029{
30 .name = "marvell",
Gurchetan Singh179687e2016-10-28 10:07:35 -070031 .init = marvell_init,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070032 .bo_create = drv_dumb_bo_create,
33 .bo_destroy = drv_dumb_bo_destroy,
Gurchetan Singh71611d62017-01-03 16:49:56 -080034 .bo_import = drv_prime_bo_import,
Gurchetan Singhef920532016-08-12 16:38:25 -070035 .bo_map = drv_dumb_bo_map,
Daniel Blum080405c2015-12-01 22:46:09 -080036};
37
38#endif