blob: 84b01c56a6719ebbff29cb6c9e4c5b0e5c757051 [file] [log] [blame]
giri3f259512017-08-02 12:01:33 -04001/*
2 * Copyright 2017 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
7#include "drv_priv.h"
8#include "helpers.h"
9#include "util.h"
10
11static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_XRGB8888 };
12
13static int radeon_init(struct driver *drv)
14{
15 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);
22}
23
Gurchetan Singh3e9d3832017-10-31 10:36:25 -070024const struct backend backend_radeon = {
giri3f259512017-08-02 12:01:33 -040025 .name = "radeon",
26 .init = radeon_init,
27 .bo_create = drv_dumb_bo_create,
28 .bo_destroy = drv_dumb_bo_destroy,
29 .bo_import = drv_prime_bo_import,
30 .bo_map = drv_dumb_bo_map,
Gurchetan Singhba6bd502017-09-18 15:29:47 -070031 .bo_unmap = drv_bo_munmap,
giri3f259512017-08-02 12:01:33 -040032};