OSDN Git Service

3e727061aae4107f128ea4f040bb18270758aa47
[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 {
19         struct driver *drv;
20         uint32_t width;
21         uint32_t height;
22         uint32_t format;
23         uint32_t tiling;
24         size_t num_planes;
25         union bo_handle handles[DRV_MAX_PLANES];
26         uint32_t offsets[DRV_MAX_PLANES];
27         uint32_t sizes[DRV_MAX_PLANES];
28         uint32_t strides[DRV_MAX_PLANES];
29         uint64_t format_modifiers[DRV_MAX_PLANES];
30         size_t total_size;
31         void *priv;
32 };
33
34 struct driver {
35         int fd;
36         struct backend *backend;
37         void *priv;
38         void *buffer_table;
39         void *map_table;
40         pthread_mutex_t driver_lock;
41 };
42
43 struct map_info {
44         void *addr;
45         size_t length;
46         uint32_t handle;
47         int32_t refcount;
48         void *priv;
49 };
50
51 struct kms_item {
52         uint32_t format;
53         uint64_t modifier;
54         uint64_t usage;
55 };
56
57 struct format_metadata {
58         uint32_t priority;
59         uint32_t tiling;
60         uint64_t modifier;
61 };
62
63 struct combination {
64         uint32_t format;
65         struct format_metadata metadata;
66         uint64_t usage;
67 };
68
69 struct combinations {
70         struct combination *data;
71         uint32_t size;
72         uint32_t allocations;
73 };
74
75 struct backend
76 {
77         char *name;
78         int (*init)(struct driver *drv);
79         void (*close)(struct driver *drv);
80         int (*bo_create)(struct bo *bo, uint32_t width, uint32_t height,
81                          uint32_t format, uint32_t flags);
82         int (*bo_create_with_modifiers)(struct bo *bo,
83                                         uint32_t width, uint32_t height,
84                                         uint32_t format,
85                                         const uint64_t *modifiers,
86                                         uint32_t count);
87         int (*bo_destroy)(struct bo *bo);
88         int (*bo_import)(struct bo *bo, struct drv_import_fd_data *data);
89         void* (*bo_map)(struct bo *bo, struct map_info *data, size_t plane);
90         int (*bo_unmap)(struct bo *bo, struct map_info *data);
91         uint32_t (*resolve_format)(uint32_t format);
92         struct combinations combos;
93 };
94
95 #endif