OSDN Git Service

36ed049f82a0224fe2fcd8ba8feead3067e9fbab
[android-x86/external-mesa.git] / src / gallium / winsys / sw / kms-dri / kms_dri_sw_winsys.c
1 /**************************************************************************
2  *
3  * Copyright 2009, VMware, Inc.
4  * All Rights Reserved.
5  * Copyright 2010 George Sapountzis <gsapountzis@gmail.com>
6  *           2013 Red Hat, Inc.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the
10  * "Software"), to deal in the Software without restriction, including
11  * without limitation the rights to use, copy, modify, merge, publish,
12  * distribute, sub license, and/or sell copies of the Software, and to
13  * permit persons to whom the Software is furnished to do so, subject to
14  * the following conditions:
15  *
16  * The above copyright notice and this permission notice (including the
17  * next paragraph) shall be included in all copies or substantial portions
18  * of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23  * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
24  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27  *
28  **************************************************************************/
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <stddef.h>
33 #include <stdint.h>
34 #include <string.h>
35 #include <limits.h>
36
37 #include <sys/types.h>
38 #include <sys/mman.h>
39 #include <unistd.h>
40 #include <dlfcn.h>
41 #include <fcntl.h>
42 #include <xf86drm.h>
43
44 #include "pipe/p_compiler.h"
45 #include "pipe/p_format.h"
46 #include "util/u_inlines.h"
47 #include "util/u_format.h"
48 #include "util/u_math.h"
49 #include "util/u_memory.h"
50 #include "util/list.h"
51
52 #include "state_tracker/sw_winsys.h"
53 #include "state_tracker/drm_driver.h"
54 #include "kms_dri_sw_winsys.h"
55
56 #ifdef DEBUG
57 #define DEBUG_PRINT(msg, ...) fprintf(stderr, msg, __VA_ARGS__)
58 #else
59 #define DEBUG_PRINT(msg, ...)
60 #endif
61
62
63 struct kms_sw_displaytarget
64 {
65    enum pipe_format format;
66    unsigned width;
67    unsigned height;
68    unsigned stride;
69    unsigned size;
70
71    uint32_t handle;
72    void *mapped;
73
74    int ref_count;
75    struct list_head link;
76 };
77
78 struct kms_sw_winsys
79 {
80    struct sw_winsys base;
81
82    int fd;
83    struct list_head bo_list;
84 };
85
86 static inline struct kms_sw_displaytarget *
87 kms_sw_displaytarget( struct sw_displaytarget *dt )
88 {
89    return (struct kms_sw_displaytarget *)dt;
90 }
91
92 static inline struct kms_sw_winsys *
93 kms_sw_winsys( struct sw_winsys *ws )
94 {
95    return (struct kms_sw_winsys *)ws;
96 }
97
98
99 static boolean
100 kms_sw_is_displaytarget_format_supported( struct sw_winsys *ws,
101                                           unsigned tex_usage,
102                                           enum pipe_format format )
103 {
104    /* TODO: check visuals or other sensible thing here */
105    return TRUE;
106 }
107
108 static struct sw_displaytarget *
109 kms_sw_displaytarget_create(struct sw_winsys *ws,
110                             unsigned tex_usage,
111                             enum pipe_format format,
112                             unsigned width, unsigned height,
113                             unsigned alignment,
114                             const void *front_private,
115                             unsigned *stride)
116 {
117    struct kms_sw_winsys *kms_sw = kms_sw_winsys(ws);
118    struct kms_sw_displaytarget *kms_sw_dt;
119    struct drm_mode_create_dumb create_req;
120    struct drm_mode_destroy_dumb destroy_req;
121    int ret;
122
123    kms_sw_dt = CALLOC_STRUCT(kms_sw_displaytarget);
124    if (!kms_sw_dt)
125       goto no_dt;
126
127    kms_sw_dt->ref_count = 1;
128
129    kms_sw_dt->format = format;
130    kms_sw_dt->width = width;
131    kms_sw_dt->height = height;
132
133    memset(&create_req, 0, sizeof(create_req));
134    create_req.bpp = 32;
135    create_req.width = width;
136    create_req.height = height;
137    ret = drmIoctl(kms_sw->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_req);
138    if (ret)
139       goto free_bo;
140
141    kms_sw_dt->stride = create_req.pitch;
142    kms_sw_dt->size = create_req.size;
143    kms_sw_dt->handle = create_req.handle;
144
145    list_add(&kms_sw_dt->link, &kms_sw->bo_list);
146
147    DEBUG_PRINT("KMS-DEBUG: created buffer %u (size %u)\n", kms_sw_dt->handle, kms_sw_dt->size);
148
149    *stride = kms_sw_dt->stride;
150    return (struct sw_displaytarget *)kms_sw_dt;
151
152  free_bo:
153    memset(&destroy_req, 0, sizeof destroy_req);
154    destroy_req.handle = create_req.handle;
155    drmIoctl(kms_sw->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_req);
156    FREE(kms_sw_dt);
157  no_dt:
158    return NULL;
159 }
160
161 static void
162 kms_sw_displaytarget_destroy(struct sw_winsys *ws,
163                              struct sw_displaytarget *dt)
164 {
165    struct kms_sw_winsys *kms_sw = kms_sw_winsys(ws);
166    struct kms_sw_displaytarget *kms_sw_dt = kms_sw_displaytarget(dt);
167    struct drm_mode_destroy_dumb destroy_req;
168
169    kms_sw_dt->ref_count --;
170    if (kms_sw_dt->ref_count > 0)
171       return;
172
173    memset(&destroy_req, 0, sizeof destroy_req);
174    destroy_req.handle = kms_sw_dt->handle;
175    drmIoctl(kms_sw->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_req);
176
177    list_del(&kms_sw_dt->link);
178
179    DEBUG_PRINT("KMS-DEBUG: destroyed buffer %u\n", kms_sw_dt->handle);
180
181    FREE(kms_sw_dt);
182 }
183
184 static void *
185 kms_sw_displaytarget_map(struct sw_winsys *ws,
186                          struct sw_displaytarget *dt,
187                          unsigned flags)
188 {
189    struct kms_sw_winsys *kms_sw = kms_sw_winsys(ws);
190    struct kms_sw_displaytarget *kms_sw_dt = kms_sw_displaytarget(dt);
191    struct drm_mode_map_dumb map_req;
192    int prot, ret;
193
194    memset(&map_req, 0, sizeof map_req);
195    map_req.handle = kms_sw_dt->handle;
196    ret = drmIoctl(kms_sw->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_req);
197    if (ret)
198       return NULL;
199
200    prot = (flags == PIPE_TRANSFER_READ) ? PROT_READ : (PROT_READ | PROT_WRITE);
201    kms_sw_dt->mapped = mmap(0, kms_sw_dt->size, prot, MAP_SHARED,
202                             kms_sw->fd, map_req.offset);
203
204    if (kms_sw_dt->mapped == MAP_FAILED)
205       return NULL;
206
207    DEBUG_PRINT("KMS-DEBUG: mapped buffer %u (size %u) at %p\n",
208          kms_sw_dt->handle, kms_sw_dt->size, kms_sw_dt->mapped);
209
210    return kms_sw_dt->mapped;
211 }
212
213 static struct kms_sw_displaytarget *
214 kms_sw_displaytarget_find_and_ref(struct kms_sw_winsys *kms_sw,
215                                   unsigned int kms_handle)
216 {
217    struct kms_sw_displaytarget *kms_sw_dt;
218
219    LIST_FOR_EACH_ENTRY(kms_sw_dt, &kms_sw->bo_list, link) {
220       if (kms_sw_dt->handle == kms_handle) {
221          kms_sw_dt->ref_count++;
222
223          DEBUG_PRINT("KMS-DEBUG: imported buffer %u (size %u)\n",
224                      kms_sw_dt->handle, kms_sw_dt->size);
225
226          return kms_sw_dt;
227       }
228    }
229
230    return NULL;
231 }
232
233 static struct kms_sw_displaytarget *
234 kms_sw_displaytarget_add_from_prime(struct kms_sw_winsys *kms_sw, int fd,
235                                     unsigned width, unsigned height,
236                                     unsigned stride)
237 {
238    uint32_t handle = -1;
239    struct kms_sw_displaytarget * kms_sw_dt;
240    int ret;
241
242    ret = drmPrimeFDToHandle(kms_sw->fd, fd, &handle);
243
244    if (ret)
245       return NULL;
246
247    kms_sw_dt = CALLOC_STRUCT(kms_sw_displaytarget);
248    if (!kms_sw_dt)
249       return NULL;
250
251    kms_sw_dt->ref_count = 1;
252    kms_sw_dt->handle = handle;
253    kms_sw_dt->size = lseek(fd, 0, SEEK_END);
254    kms_sw_dt->width = width;
255    kms_sw_dt->height = height;
256    kms_sw_dt->stride = stride;
257
258    if (kms_sw_dt->size == (off_t)-1) {
259       FREE(kms_sw_dt);
260       return NULL;
261    }
262
263    lseek(fd, 0, SEEK_SET);
264
265    list_add(&kms_sw_dt->link, &kms_sw->bo_list);
266
267    return kms_sw_dt;
268 }
269
270 static void
271 kms_sw_displaytarget_unmap(struct sw_winsys *ws,
272                            struct sw_displaytarget *dt)
273 {
274    struct kms_sw_displaytarget *kms_sw_dt = kms_sw_displaytarget(dt);
275
276    DEBUG_PRINT("KMS-DEBUG: unmapped buffer %u (was %p)\n", kms_sw_dt->handle, kms_sw_dt->mapped);
277
278    munmap(kms_sw_dt->mapped, kms_sw_dt->size);
279    kms_sw_dt->mapped = NULL;
280 }
281
282 static struct sw_displaytarget *
283 kms_sw_displaytarget_from_handle(struct sw_winsys *ws,
284                                  const struct pipe_resource *templ,
285                                  struct winsys_handle *whandle,
286                                  unsigned *stride)
287 {
288    struct kms_sw_winsys *kms_sw = kms_sw_winsys(ws);
289    struct kms_sw_displaytarget *kms_sw_dt;
290
291    assert(whandle->type == DRM_API_HANDLE_TYPE_KMS ||
292           whandle->type == DRM_API_HANDLE_TYPE_FD);
293
294    if (whandle->offset != 0) {
295       DEBUG_PRINT("KMS-DEBUG: attempt to import unsupported winsys offset %d\n",
296                   whandle->offset);
297       return NULL;
298    }
299
300    switch(whandle->type) {
301    case DRM_API_HANDLE_TYPE_FD:
302       kms_sw_dt = kms_sw_displaytarget_add_from_prime(kms_sw, whandle->handle,
303                                                       templ->width0,
304                                                       templ->height0,
305                                                       whandle->stride);
306       if (kms_sw_dt)
307          *stride = kms_sw_dt->stride;
308       return (struct sw_displaytarget *)kms_sw_dt;
309    case DRM_API_HANDLE_TYPE_KMS:
310       kms_sw_dt = kms_sw_displaytarget_find_and_ref(kms_sw, whandle->handle);
311       if (kms_sw_dt) {
312          *stride = kms_sw_dt->stride;
313          return (struct sw_displaytarget *)kms_sw_dt;
314       }
315       /* fallthrough */
316    default:
317       break;
318    }
319
320    assert(0);
321    return NULL;
322 }
323
324 static boolean
325 kms_sw_displaytarget_get_handle(struct sw_winsys *winsys,
326                                 struct sw_displaytarget *dt,
327                                 struct winsys_handle *whandle)
328 {
329    struct kms_sw_winsys *kms_sw = kms_sw_winsys(winsys);
330    struct kms_sw_displaytarget *kms_sw_dt = kms_sw_displaytarget(dt);
331
332    switch(whandle->type) {
333    case DRM_API_HANDLE_TYPE_KMS:
334       whandle->handle = kms_sw_dt->handle;
335       whandle->stride = kms_sw_dt->stride;
336       whandle->offset = 0;
337       return TRUE;
338    case DRM_API_HANDLE_TYPE_FD:
339       if (!drmPrimeHandleToFD(kms_sw->fd, kms_sw_dt->handle,
340                              DRM_CLOEXEC, (int*)&whandle->handle)) {
341          whandle->stride = kms_sw_dt->stride;
342          whandle->offset = 0;
343          return TRUE;
344       }
345       /* fallthrough */
346    default:
347       whandle->handle = 0;
348       whandle->stride = 0;
349       whandle->offset = 0;
350       return FALSE;
351    }
352 }
353
354 static void
355 kms_sw_displaytarget_display(struct sw_winsys *ws,
356                              struct sw_displaytarget *dt,
357                              void *context_private,
358                              struct pipe_box *box)
359 {
360    /* This function should not be called, instead the dri2 loader should
361       handle swap buffers internally.
362    */
363    assert(0);
364 }
365
366
367 static void
368 kms_destroy_sw_winsys(struct sw_winsys *winsys)
369 {
370    FREE(winsys);
371 }
372
373 struct sw_winsys *
374 kms_dri_create_winsys(int fd)
375 {
376    struct kms_sw_winsys *ws;
377
378    ws = CALLOC_STRUCT(kms_sw_winsys);
379    if (!ws)
380       return NULL;
381
382    ws->fd = fd;
383    list_inithead(&ws->bo_list);
384
385    ws->base.destroy = kms_destroy_sw_winsys;
386
387    ws->base.is_displaytarget_format_supported = kms_sw_is_displaytarget_format_supported;
388
389    /* screen texture functions */
390    ws->base.displaytarget_create = kms_sw_displaytarget_create;
391    ws->base.displaytarget_destroy = kms_sw_displaytarget_destroy;
392    ws->base.displaytarget_from_handle = kms_sw_displaytarget_from_handle;
393    ws->base.displaytarget_get_handle = kms_sw_displaytarget_get_handle;
394
395    /* texture functions */
396    ws->base.displaytarget_map = kms_sw_displaytarget_map;
397    ws->base.displaytarget_unmap = kms_sw_displaytarget_unmap;
398
399    ws->base.displaytarget_display = kms_sw_displaytarget_display;
400
401    return &ws->base;
402 }
403
404 /* vim: set sw=3 ts=8 sts=3 expandtab: */