aboutsummaryrefslogtreecommitdiff
path: root/src/wld/dumb.c
blob: b08d098b920666f704878f98bec708455b821c42 (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
/* wld: dumb.c
 *
 * Copyright (c) 2013, 2014 Michael Forney
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include "drm-private.h"
#include "drm.h"
#include "pixman.h"

#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
#include <xf86drm.h>

#include <errno.h>

struct dumb_context
{
    struct wld_context base;
    int fd;
};

struct dumb_buffer
{
    struct buffer base;
    struct wld_exporter exporter;
    struct dumb_context * context;
    uint32_t handle;
};

#include "interface/context.h"
#include "interface/buffer.h"
#define DRM_DRIVER_NAME dumb
#include "interface/drm.h"
IMPL(dumb_context, wld_context)
IMPL(dumb_buffer, wld_buffer)

const struct wld_context_impl * dumb_context_impl = &wld_context_impl;

bool driver_device_supported(uint32_t vendor_id, uint32_t device_id)
{
    return true;
}

struct wld_context * driver_create_context(int drm_fd)
{
    struct dumb_context * context;

    if (!(context = malloc(sizeof *context)))
        return NULL;

    context_initialize(&context->base, &wld_context_impl);
    context->fd = drm_fd;

    return &context->base;
}

struct wld_renderer * context_create_renderer(struct wld_context * context)
{
    return wld_create_renderer(wld_pixman_context);
}

static bool export(struct wld_exporter * exporter, struct wld_buffer * base,
                   uint32_t type, union wld_object * object)
{
    struct dumb_buffer * buffer = dumb_buffer(base);

    switch (type)
    {
        case WLD_DRM_OBJECT_HANDLE:
            object->u32 = buffer->handle;
            return true;
        case WLD_DRM_OBJECT_PRIME_FD:
            if (drmPrimeHandleToFD(buffer->context->fd, buffer->handle,
                                   DRM_CLOEXEC, &object->i) != 0)
            {
                return false;
            }

            return true;
        default:
            return false;
    }
}

static struct buffer * new_buffer(struct dumb_context * context,
                                  uint32_t width, uint32_t height,
                                  uint32_t format, uint32_t handle,
                                  unsigned long pitch)
{
    struct dumb_buffer * buffer;

    if (!(buffer = malloc(sizeof *buffer)))
        return NULL;

    buffer_initialize(&buffer->base, &wld_buffer_impl,
                      width, height, format, pitch);
    buffer->context = context;
    buffer->handle = handle;
    buffer->exporter.export = &export;
    wld_buffer_add_exporter(&buffer->base.base, &buffer->exporter);

    return &buffer->base;
}

struct buffer * context_create_buffer(struct wld_context * base,
                                      uint32_t width, uint32_t height,
                                      uint32_t format, uint32_t flags)
{
    struct dumb_context * context = dumb_context(base);
    struct buffer * buffer;
    struct drm_mode_create_dumb create_dumb = {
        .height = height, .width = width,
        .bpp = format_bytes_per_pixel(format) * 8,
    };

    if (drmIoctl(context->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb) != 0)
        goto error0;

    buffer = new_buffer(context, width, height, format,
                        create_dumb.handle, create_dumb.pitch);

    if (!buffer)
        goto error1;

    return buffer;

  error1:
    {
        struct drm_mode_destroy_dumb destroy_dumb = {
            .handle = create_dumb.handle
        };

        drmIoctl(context->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
    }
  error0:
    return NULL;
}

struct buffer * context_import_buffer(struct wld_context * base,
                                      uint32_t type, union wld_object object,
                                      uint32_t width, uint32_t height,
                                      uint32_t format, uint32_t pitch)
{
    struct dumb_context * context = dumb_context(base);
    uint32_t handle;

    switch (type)
    {
        case WLD_DRM_OBJECT_PRIME_FD:
            if (drmPrimeFDToHandle(context->fd, object.i, &handle) != 0)
                return NULL;
            break;
        default: return NULL;
    }

    return new_buffer(context, width, height, format, handle, pitch);
}

void context_destroy(struct wld_context * base)
{
    struct dumb_context * context = dumb_context(base);

    close(context->fd);
    free(context);
}

/**** Buffer ****/

bool buffer_map(struct buffer * base)
{
    struct dumb_buffer * buffer = dumb_buffer(&base->base);
    struct drm_mode_map_dumb map_dumb = { .handle = buffer->handle };
    void * data;

    if (drmIoctl(buffer->context->fd, DRM_IOCTL_MODE_MAP_DUMB,
                 &map_dumb) != 0)
    {
        return false;
    }

    data = mmap(NULL, buffer->base.base.pitch * buffer->base.base.height,
                PROT_READ | PROT_WRITE, MAP_SHARED,
                buffer->context->fd, map_dumb.offset);

    if (data == MAP_FAILED)
        return false;

    buffer->base.base.map = data;

    return true;
}

bool buffer_unmap(struct buffer * buffer)
{
    if (munmap(buffer->base.map,
               buffer->base.pitch * buffer->base.height) == -1)
    {
        return false;
    }

    buffer->base.map = NULL;

    return true;
}

void buffer_destroy(struct buffer * base)
{
    struct dumb_buffer * buffer = dumb_buffer(&base->base);
    struct drm_mode_destroy_dumb destroy_dumb = {
        .handle = buffer->handle
    };

    drmIoctl(buffer->context->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
    free(buffer);
}