blob: 7cdab3a040ddf1b805eb87828c814b0fe6aa3ba6 [file] [log] [blame]
Daniele Castagna71db2b52016-12-16 16:24:06 -05001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2016 The Chromium OS Authors. All rights reserved.
Daniele Castagna71db2b52016-12-16 16:24:06 -05003 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#include "drv_priv.h"
8#include "helpers.h"
9#include "util.h"
10
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070011static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_XRGB8888 };
Daniele Castagna71db2b52016-12-16 16:24:06 -050012
13static int nouveau_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);
Daniele Castagna71db2b52016-12-16 16:24:06 -050022}
23
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080024struct backend backend_nouveau = {
Daniele Castagna71db2b52016-12-16 16:24:06 -050025 .name = "nouveau",
26 .init = nouveau_init,
27 .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,
Daniele Castagna71db2b52016-12-16 16:24:06 -050030 .bo_map = drv_dumb_bo_map,
31};