blob: d92bab4260e15a4640c000268df9b996d7c0faf6 [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2014 The Chromium OS Authors. All rights reserved.
Stéphane Marchesin25a26062014-09-12 16:18:59 -07003 * 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"
Stéphane Marchesin25a26062014-09-12 16:18:59 -07008#include "helpers.h"
Gurchetan Singh179687e2016-10-28 10:07:35 -07009#include "util.h"
Stéphane Marchesin25a26062014-09-12 16:18:59 -070010
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070011const static uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_RGB888,
12 DRM_FORMAT_XRGB8888 };
Gurchetan Singh179687e2016-10-28 10:07:35 -070013
14static int cirrus_init(struct driver *drv)
15{
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070016 int ret;
17 ret = drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
18 &LINEAR_METADATA, BO_USE_RENDER_MASK);
19 if (ret)
20 return ret;
21
22 return drv_modify_linear_combinations(drv);
Gurchetan Singh179687e2016-10-28 10:07:35 -070023}
24
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080025struct backend backend_cirrus = {
Stéphane Marchesin25a26062014-09-12 16:18:59 -070026 .name = "cirrus",
Gurchetan Singh179687e2016-10-28 10:07:35 -070027 .init = cirrus_init,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070028 .bo_create = drv_dumb_bo_create,
29 .bo_destroy = drv_dumb_bo_destroy,
Gurchetan Singh71611d62017-01-03 16:49:56 -080030 .bo_import = drv_prime_bo_import,
Gurchetan Singhef920532016-08-12 16:38:25 -070031 .bo_map = drv_dumb_bo_map,
Gurchetan Singhba6bd502017-09-18 15:29:47 -070032 .bo_unmap = drv_bo_munmap,
Stéphane Marchesin25a26062014-09-12 16:18:59 -070033};