summaryrefslogtreecommitdiff
path: root/dove_bufmgr.c
blob: 32e192a667bc411ce9972dc5d3d89145a7c487a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/mman.h>

#include <drm.h>

#include "dove_bufmgr.h"
#include "dove_ioctl.h"

#ifndef container_of
#define container_of(ptr, type, member) ({ \
    const typeof( ((type *)0)->member ) *__mptr = (ptr); \
    (type *)( (char *)__mptr - offsetof(type,member) );})
#endif

struct dove_bo {
	struct drm_dove_bo bo;
	uint32_t ref;
	uint32_t name;          /* Global name */
};

#define to_dove_bo(_bo) container_of(_bo, struct dove_bo, bo)

#ifndef DRM_IOCTL_MODE_CREATE_DUMB
/* create a dumb scanout buffer */
struct drm_mode_create_dumb {
        uint32_t height;
        uint32_t width;
        uint32_t bpp;
        uint32_t flags;
        /* handle, pitch, size will be returned */
        uint32_t handle;
        uint32_t pitch;
        uint64_t size;
};
#define DRM_IOCTL_MODE_CREATE_DUMB DRM_IOWR(0xB2, struct drm_mode_create_dumb)
#endif

#ifndef DRM_IOCTL_MODE_DESTROY_DUMB
struct drm_mode_destroy_dumb {
        uint32_t handle;
};
#define DRM_IOCTL_MODE_DESTROY_DUMB    DRM_IOWR(0xB4, struct drm_mode_destroy_dumb)
#endif

#ifndef DRM_IOCTL_MODE_MAP_DUMB
struct drm_mode_map_dumb {
	uint32_t handle;
	uint32_t pad;
	uint64_t offset;
};
#define DRM_IOCTL_MODE_MAP_DUMB    DRM_IOWR(0xB3, struct drm_mode_map_dumb)
#endif

struct drm_dove_bo *drm_dove_bo_create_phys(int fd, uint32_t phys, size_t size)
{
    struct dove_bo *bo;

    bo = calloc(1, sizeof *bo);
    if (bo) {
        struct drm_dove_gem_create_phys arg;
        int ret;

        memset(&arg, 0, sizeof(arg));
        arg.phys = phys;
        arg.size = size;

        ret = drmIoctl(fd, DRM_IOCTL_DOVE_GEM_CREATE_PHYS, &arg);
        if (ret) {
            free(bo);
            return NULL;
        }
        bo->bo.ref = 1;
        bo->bo.handle = arg.handle;
        bo->bo.size = size;
        bo->bo.phys = phys;
        bo->bo.type = DRM_DOVE_BO_LINEAR;
        bo->ref = 1;
    }
    return &bo->bo;
}

struct drm_dove_bo *drm_dove_bo_create(int fd, unsigned w, unsigned h, unsigned bpp)
{
    struct dove_bo *bo;

    bo = calloc(1, sizeof *bo);
    if (bo) {
        struct drm_dove_gem_create arg;
        int ret;

        memset(&arg, 0, sizeof(arg));
        arg.width = w;
        arg.height = h;
        arg.bpp = bpp;

        ret = drmIoctl(fd, DRM_IOCTL_DOVE_GEM_CREATE, &arg);
        if (ret) {
            free(bo);
            return NULL;
        }

        bo->bo.ref = 1;
        bo->bo.handle = arg.handle;
        bo->bo.size = arg.size;
        bo->bo.pitch = arg.pitch;
        bo->bo.type = DRM_DOVE_BO_SHMEM;
        bo->ref = 1;
    }
    return &bo->bo;
}

struct drm_dove_bo *drm_dove_bo_create_from_name(int fd, uint32_t name)
{
    struct dove_bo *bo;

    bo = calloc(1, sizeof *bo);
    if (bo) {
        struct drm_gem_open arg;
        int ret;

        memset(&arg, 0, sizeof(arg));
        arg.name = name;
        ret = drmIoctl(fd, DRM_IOCTL_GEM_OPEN, &arg);
        if (ret == -1) {
            free(bo);
            return NULL;
        }
        bo->bo.ref = 1;
        bo->bo.handle = arg.handle;
        bo->bo.size = arg.size;
        bo->bo.type = DRM_DOVE_BO_LINEAR; /* assumed */
        bo->ref = 1;
        bo->name = name;
    }
    return &bo->bo;
}

struct drm_dove_bo *drm_dove_bo_dumb_create(int fd, unsigned w, unsigned h,
    unsigned bpp)
{
    struct dove_bo *bo;

    bo = calloc(1, sizeof *bo);
    if (bo) {
        struct drm_mode_create_dumb arg;
        int ret;

        memset(&arg, 0, sizeof(arg));
        arg.width = w;
        arg.height = h;
        arg.bpp = bpp;

        ret = drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &arg);
        if (ret) {
            free(bo);
            return NULL;
        }
        bo->bo.ref = 1;
        bo->bo.handle = arg.handle;
        bo->bo.size = arg.size;
        bo->bo.pitch = arg.pitch;
        bo->bo.type = DRM_DOVE_BO_DUMB;
        bo->ref = 1;
    }
    return &bo->bo;
}

void drm_dove_bo_get(int fd, struct drm_dove_bo *dbo)
{
    struct dove_bo *bo = to_dove_bo(dbo);
    bo->ref++;
}

void drm_dove_bo_put(int fd, struct drm_dove_bo *dbo)
{
    struct dove_bo *bo = to_dove_bo(dbo);

    if (bo->ref-- == 1) {
        int ret;

        if (bo->bo.ptr) {
            munmap(bo->bo.ptr, bo->bo.size);
            bo->bo.ptr = NULL;
        }

        if (bo->bo.type == DRM_DOVE_BO_DUMB) {
            struct drm_mode_destroy_dumb arg;

            memset(&arg, 0, sizeof(arg));
            arg.handle = bo->bo.handle;
            ret = drmIoctl(fd, DRM_IOCTL_MODE_DESTROY_DUMB, &arg);
        } else {
            struct drm_gem_close close;

            memset(&close, 0, sizeof(close));
            close.handle = bo->bo.handle;
            ret = ioctl(fd, DRM_IOCTL_GEM_CLOSE, &close);
        }

        if (ret == 0)
            free(bo);
    }
}

int drm_dove_bo_flink(int fd, struct drm_dove_bo *dbo, uint32_t *name)
{
    struct dove_bo *bo = to_dove_bo(dbo);

    if (!bo->name) {
        struct drm_gem_flink flink;
        int ret;

        memset(&flink, 0, sizeof(flink));
        flink.handle = bo->bo.handle;
        ret = ioctl(fd, DRM_IOCTL_GEM_FLINK, &flink);
        if (ret)
            return ret;
        bo->name = flink.name;
    }
    *name = bo->name;
    return 0;
}

int drm_dove_bo_map(int fd, struct drm_dove_bo *dbo)
{
    struct dove_bo *bo = to_dove_bo(dbo);
    void *map;
    int ret;

    if (bo->bo.ptr)
        return 0;

    if (bo->bo.type == DRM_DOVE_BO_DUMB) {
        struct drm_mode_map_dumb arg;

        memset(&arg, 0, sizeof(arg));
        arg.handle = bo->bo.handle;

        ret = drmIoctl(fd, DRM_IOCTL_MODE_MAP_DUMB, &arg);
        if (ret)
            return ret;

        map = mmap(0, bo->bo.size, PROT_READ | PROT_WRITE, MAP_SHARED, fd,
                   arg.offset);

        if (map == MAP_FAILED)
            return -1;
    } else if (bo->bo.type == DRM_DOVE_BO_SHMEM) {
        struct drm_dove_gem_mmap arg;

        memset(&arg, 0, sizeof(arg));
        arg.handle = bo->bo.handle;
        arg.offset = 0;
        arg.size = bo->bo.size;

        ret = drmIoctl(fd, DRM_IOCTL_DOVE_GEM_MMAP, &arg);
        if (ret)
            return -1;

        map = (void *)(uintptr_t)arg.addr;
    } else {
        errno = EINVAL;
        return -1;
    }

    bo->bo.ptr = map;

    return 0;
}

uint32_t drm_dove_bo_phys(int fd, struct drm_dove_bo *dbo)
{
    struct dove_bo *bo = to_dove_bo(dbo);
    struct drm_dove_gem_prop arg;
    int ret;

    memset(&arg, 0, sizeof(arg));
    arg.handle = bo->bo.handle;

    ret = drmIoctl(fd, DRM_IOCTL_DOVE_GEM_PROP, &arg);

    return ret ? -1 : (uint32_t)arg.phys;
}

int drm_dove_bo_subdata(int fd, struct drm_dove_bo *bo, unsigned long offset,
    unsigned long size, const void *data)
{
    struct drm_dove_gem_pwrite arg;

    memset(&arg, 0, sizeof(arg));
    arg.handle = bo->handle;
    arg.offset = offset;
    arg.size = size;
    arg.ptr = (uint64_t)(uintptr_t)data;

    return drmIoctl(fd, DRM_IOCTL_DOVE_GEM_PWRITE, &arg);
}