OSDN Git Service

minigbm: cros_gralloc/buffer: Initialize plane address array
[android-x86/external-minigbm.git] / drv_priv.h
1 /*
2  * Copyright 2016 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 #ifndef DRV_PRIV_H
8 #define DRV_PRIV_H
9
10 #include <pthread.h>
11 #include <stdint.h>
12 #include <stdlib.h>
13 #include <sys/types.h>
14
15 #include "drv.h"
16
17 struct bo {
18         struct driver *drv;
19         uint32_t width;
20         uint32_t height;
21         uint32_t format;
22         uint32_t tiling;
23         size_t num_planes;
24         union bo_handle handles[DRV_MAX_PLANES];
25         uint32_t offsets[DRV_MAX_PLANES];
26         uint32_t sizes[DRV_MAX_PLANES];
27         uint32_t strides[DRV_MAX_PLANES];
28         uint64_t format_modifiers[DRV_MAX_PLANES];
29         size_t total_size;
30         void *priv;
31 };
32
33 struct driver {
34         int fd;
35         struct backend *backend;
36         void *priv;
37         void *buffer_table;
38         void *map_table;
39         pthread_mutex_t driver_lock;
40 };
41
42 struct kms_item {
43         uint32_t format;
44         uint64_t modifier;
45         uint64_t usage;
46 };
47
48 struct format_metadata {
49         uint32_t priority;
50         uint32_t tiling;
51         uint64_t modifier;
52 };
53
54 struct combination {
55         uint32_t format;
56         struct format_metadata metadata;
57         uint64_t usage;
58 };
59
60 struct combinations {
61         struct combination *data;
62         uint32_t size;
63         uint32_t allocations;
64 };
65
66 struct backend {
67         char *name;
68         int (*init)(struct driver *drv);
69         void (*close)(struct driver *drv);
70         int (*bo_create)(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
71                          uint32_t flags);
72         int (*bo_create_with_modifiers)(struct bo *bo, uint32_t width, uint32_t height,
73                                         uint32_t format, const uint64_t *modifiers, uint32_t count);
74         int (*bo_destroy)(struct bo *bo);
75         int (*bo_import)(struct bo *bo, struct drv_import_fd_data *data);
76         void *(*bo_map)(struct bo *bo, struct map_info *data, size_t plane, int prot);
77         int (*bo_unmap)(struct bo *bo, struct map_info *data);
78         uint32_t (*resolve_format)(uint32_t format, uint64_t usage);
79         struct combinations combos;
80 };
81
82 // clang-format off
83 #define BO_USE_RENDER_MASK BO_USE_LINEAR | BO_USE_RENDERING | BO_USE_SW_READ_OFTEN | \
84                            BO_USE_SW_WRITE_OFTEN | BO_USE_SW_READ_RARELY | \
85                            BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
86
87 #define BO_USE_TEXTURE_MASK BO_USE_LINEAR | BO_USE_SW_READ_OFTEN | BO_USE_SW_WRITE_OFTEN | \
88                             BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
89
90 #define LINEAR_METADATA (struct format_metadata) { 0, 1, DRM_FORMAT_MOD_NONE }
91 // clang-format on
92
93 #endif