blob: 3e727061aae4107f128ea4f040bb18270758aa47 [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
17struct 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];
Gurchetan Singha40ca9e2016-08-29 19:51:45 -070030 size_t total_size;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070031 void *priv;
32};
33
34struct driver {
35 int fd;
36 struct backend *backend;
37 void *priv;
Gurchetan Singh1647fbe2016-08-03 17:14:55 -070038 void *buffer_table;
Gurchetan Singh1a31e602016-10-06 10:58:00 -070039 void *map_table;
Gurchetan Singh27dd4702016-11-23 17:27:52 -080040 pthread_mutex_t driver_lock;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070041};
42
Gurchetan Singh1a31e602016-10-06 10:58:00 -070043struct map_info {
44 void *addr;
45 size_t length;
46 uint32_t handle;
47 int32_t refcount;
Gurchetan Singh44d1fe42016-12-14 08:51:28 -080048 void *priv;
Gurchetan Singh1a31e602016-10-06 10:58:00 -070049};
50
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080051struct kms_item {
Gurchetan Singh179687e2016-10-28 10:07:35 -070052 uint32_t format;
53 uint64_t modifier;
54 uint64_t usage;
55};
56
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080057struct format_metadata {
58 uint32_t priority;
59 uint32_t tiling;
60 uint64_t modifier;
61};
62
63struct combination {
64 uint32_t format;
65 struct format_metadata metadata;
66 uint64_t usage;
67};
68
69struct combinations {
70 struct combination *data;
71 uint32_t size;
72 uint32_t allocations;
Gurchetan Singh179687e2016-10-28 10:07:35 -070073};
74
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070075struct 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,
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080081 uint32_t format, uint32_t flags);
Kristian H. Kristensenb1efbd82016-09-06 11:43:26 -070082 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);
Gurchetan Singh71611d62017-01-03 16:49:56 -080087 int (*bo_destroy)(struct bo *bo);
88 int (*bo_import)(struct bo *bo, struct drv_import_fd_data *data);
Gurchetan Singh1a31e602016-10-06 10:58:00 -070089 void* (*bo_map)(struct bo *bo, struct map_info *data, size_t plane);
Gurchetan Singh44d1fe42016-12-14 08:51:28 -080090 int (*bo_unmap)(struct bo *bo, struct map_info *data);
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080091 uint32_t (*resolve_format)(uint32_t format);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080092 struct combinations combos;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070093};
94
95#endif