blob: 68445c163723cfe205c09cdce5a7d2ad60b9846b [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{
Gurchetan Singhd3001452017-11-03 17:18:36 -070015 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
16 &LINEAR_METADATA, BO_USE_RENDER_MASK);
giri3f259512017-08-02 12:01:33 -040017
18 return drv_modify_linear_combinations(drv);
19}
20
Gurchetan Singh3e9d3832017-10-31 10:36:25 -070021const struct backend backend_radeon = {
giri3f259512017-08-02 12:01:33 -040022 .name = "radeon",
23 .init = radeon_init,
24 .bo_create = drv_dumb_bo_create,
25 .bo_destroy = drv_dumb_bo_destroy,
26 .bo_import = drv_prime_bo_import,
27 .bo_map = drv_dumb_bo_map,
Gurchetan Singhba6bd502017-09-18 15:29:47 -070028 .bo_unmap = drv_bo_munmap,
giri3f259512017-08-02 12:01:33 -040029};