blob: e0d5954db7227944a24031f3750a4157b74f7b14 [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
11static struct supported_combination combos[2] = {
12 {DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE, BO_USE_CURSOR | BO_USE_RENDERING},
13 {DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_NONE, BO_USE_CURSOR | BO_USE_RENDERING},
14};
15
16static int nouveau_init(struct driver *drv)
17{
18 drv_insert_combinations(drv, combos, ARRAY_SIZE(combos));
19 return drv_add_kms_flags(drv);
20}
21
22struct backend backend_nouveau =
23{
24 .name = "nouveau",
25 .init = nouveau_init,
26 .bo_create = drv_dumb_bo_create,
27 .bo_destroy = drv_dumb_bo_destroy,
Gurchetan Singh71611d62017-01-03 16:49:56 -080028 .bo_import = drv_prime_bo_import,
Daniele Castagna71db2b52016-12-16 16:24:06 -050029 .bo_map = drv_dumb_bo_map,
30};