blob: e5b9d55ca43537d5354ce3e1250a1797cec43af2 [file] [log] [blame]
Gurchetan Singh46faf6b2016-08-05 14:40:07 -07001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2016 The Chromium OS Authors. All rights reserved.
Gurchetan Singh46faf6b2016-08-05 14:40:07 -07003 * 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
Gurchetan Singh2e786ad2016-08-24 18:31:23 -070010#include <pthread.h>
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070011#include <stdint.h>
12#include <stdlib.h>
13#include <sys/types.h>
14
15#include "drv.h"
16
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080017struct bo {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070018 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];
Gurchetan Singha1892b22017-09-28 16:40:52 -070029 uint64_t use_flags;
Gurchetan Singha40ca9e2016-08-29 19:51:45 -070030 size_t total_size;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070031 void *priv;
32};
33
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080034struct kms_item {
Gurchetan Singh179687e2016-10-28 10:07:35 -070035 uint32_t format;
36 uint64_t modifier;
Gurchetan Singha1892b22017-09-28 16:40:52 -070037 uint64_t use_flags;
Gurchetan Singh179687e2016-10-28 10:07:35 -070038};
39
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080040struct format_metadata {
41 uint32_t priority;
42 uint32_t tiling;
43 uint64_t modifier;
44};
45
46struct combination {
47 uint32_t format;
48 struct format_metadata metadata;
Gurchetan Singha1892b22017-09-28 16:40:52 -070049 uint64_t use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080050};
51
52struct combinations {
53 struct combination *data;
54 uint32_t size;
55 uint32_t allocations;
Gurchetan Singh179687e2016-10-28 10:07:35 -070056};
57
Ege Mihmanli96b7d462017-09-19 20:13:26 -070058struct driver {
59 int fd;
Gurchetan Singh3e9d3832017-10-31 10:36:25 -070060 const struct backend *backend;
Ege Mihmanli96b7d462017-09-19 20:13:26 -070061 void *priv;
62 void *buffer_table;
63 void *map_table;
64 struct combinations combos;
65 pthread_mutex_t driver_lock;
66};
67
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080068struct backend {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070069 char *name;
70 int (*init)(struct driver *drv);
71 void (*close)(struct driver *drv);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080072 int (*bo_create)(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
Gurchetan Singha1892b22017-09-28 16:40:52 -070073 uint64_t use_flags);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080074 int (*bo_create_with_modifiers)(struct bo *bo, uint32_t width, uint32_t height,
75 uint32_t format, const uint64_t *modifiers, uint32_t count);
Gurchetan Singh71611d62017-01-03 16:49:56 -080076 int (*bo_destroy)(struct bo *bo);
77 int (*bo_import)(struct bo *bo, struct drv_import_fd_data *data);
Gurchetan Singh47e629b2017-11-02 14:07:18 -070078 void *(*bo_map)(struct bo *bo, struct mapping *mapping, size_t plane, uint32_t map_flags);
79 int (*bo_unmap)(struct bo *bo, struct mapping *mapping);
80 int (*bo_invalidate)(struct bo *bo, struct mapping *mapping);
81 int (*bo_flush)(struct bo *bo, struct mapping *mapping);
Gurchetan Singha1892b22017-09-28 16:40:52 -070082 uint32_t (*resolve_format)(uint32_t format, uint64_t use_flags);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070083};
84
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070085// clang-format off
Tomasz Figae0807b12017-08-04 12:50:03 +090086#define BO_USE_RENDER_MASK BO_USE_LINEAR | BO_USE_PROTECTED | BO_USE_RENDERING | \
87 BO_USE_RENDERSCRIPT | BO_USE_SW_READ_OFTEN | BO_USE_SW_WRITE_OFTEN | \
88 BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070089
Tomasz Figae0807b12017-08-04 12:50:03 +090090#define BO_USE_TEXTURE_MASK BO_USE_LINEAR | BO_USE_PROTECTED | BO_USE_RENDERSCRIPT | \
91 BO_USE_SW_READ_OFTEN | BO_USE_SW_WRITE_OFTEN | \
92 BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070093
94#define LINEAR_METADATA (struct format_metadata) { 0, 1, DRM_FORMAT_MOD_NONE }
95// clang-format on
96
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070097#endif