sunxi_mali_ump_dri2.c 39.1 KB
Newer Older
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
/*
 * Copyright (C) 2013 Siarhei Siamashka <siarhei.siamashka@gmail.com>
 *
 * Initially derived from "mali_dri2.c" which is a part of xf86-video-mali,
 * even though there is now hardly any original line of code remaining.
 *
 * Copyright (C) 2010 ARM Limited. All rights reserved.
 *
 * 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.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <ump/ump.h>
#include <ump/ump_ref_drv.h>

#include <sys/ioctl.h>

#include "xorgVersion.h"
38
#include "xf86_OSproc.h"
39
40
41
42
43
44
45
46
#include "xf86.h"
#include "xf86drm.h"
#include "dri2.h"
#include "damage.h"
#include "fb.h"

#include "fbdev_priv.h"
#include "sunxi_disp.h"
47
#include "sunxi_disp_hwcursor.h"
48
49
50
#include "sunxi_disp_ioctl.h"
#include "sunxi_mali_ump_dri2.h"

51
52
53
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(a)  (sizeof((a)) / sizeof((a)[0]))
#endif
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

/*
 * The code below is borrowed from "xserver/dix/window.c"
 */

#define BOXES_OVERLAP(b1, b2) \
      (!( ((b1)->x2 <= (b2)->x1)  || \
	( ((b1)->x1 >= (b2)->x2)) || \
	( ((b1)->y2 <= (b2)->y1)) || \
	( ((b1)->y1 >= (b2)->y2)) ) )

static BoxPtr
WindowExtents(WindowPtr pWin, BoxPtr pBox)
{
    pBox->x1 = pWin->drawable.x - wBorderWidth(pWin);
    pBox->y1 = pWin->drawable.y - wBorderWidth(pWin);
    pBox->x2 = pWin->drawable.x + (int) pWin->drawable.width
        + wBorderWidth(pWin);
    pBox->y2 = pWin->drawable.y + (int) pWin->drawable.height
        + wBorderWidth(pWin);
    return pBox;
}

static int
FancyTraverseTree(WindowPtr pWin, VisitWindowProcPtr func, pointer data)
{
    int result;
    WindowPtr pChild;

    if (!(pChild = pWin))
        return WT_NOMATCH;
    while (1) {
        result = (*func) (pChild, data);
        if (result == WT_STOPWALKING)
            return WT_STOPWALKING;
        if ((result == WT_WALKCHILDREN) && pChild->lastChild) {
            pChild = pChild->lastChild;
            continue;
        }
        while (!pChild->prevSib && (pChild != pWin))
            pChild = pChild->parent;
        if (pChild == pWin)
            break;
        pChild = pChild->prevSib;
    }
    return WT_NOMATCH;
}

static int
WindowWalker(WindowPtr pWin, pointer value)
{
105
    SunxiMaliDRI2 *mali = (SunxiMaliDRI2 *)value;
106

107
    if (mali->bWalkingAboveOverlayWin) {
108
109
110
111
        if (pWin->mapped && pWin->realized && pWin->drawable.class != InputOnly) {
            BoxRec sboxrec1;
            BoxPtr sbox1 = WindowExtents(pWin, &sboxrec1);
            BoxRec sboxrec2;
112
            BoxPtr sbox2 = WindowExtents(mali->pOverlayWin, &sboxrec2);
113
            if (BOXES_OVERLAP(sbox1, sbox2)) {
114
                mali->bOverlayWinOverlapped = TRUE;
115
116
117
118
119
120
121
                DebugMsg("overlapped by %p, x=%d, y=%d, w=%d, h=%d\n", pWin,
                         pWin->drawable.x, pWin->drawable.y,
                         pWin->drawable.width, pWin->drawable.height);
                return WT_STOPWALKING;
            }
        }
    }
122
123
    else if (pWin == mali->pOverlayWin) {
        mali->bWalkingAboveOverlayWin = TRUE;
124
125
126
127
128
    }

    return WT_WALKCHILDREN;
}

129
130
131
132
133
134
/* Migrate pixmap to UMP buffer */
static UMPBufferInfoPtr
MigratePixmapToUMP(PixmapPtr pPixmap)
{
    ScreenPtr pScreen = pPixmap->drawable.pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
135
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
136
137
138
139
    UMPBufferInfoPtr umpbuf;
    size_t pitch = ((pPixmap->devKind + 7) / 8) * 8;
    size_t size = pitch * pPixmap->drawable.height;

140
    HASH_FIND_PTR(mali->HashPixmapToUMP, &pPixmap, umpbuf);
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

    if (umpbuf) {
        DebugMsg("MigratePixmapToUMP %p, already exists = %p\n", pPixmap, umpbuf);
        return umpbuf;
    }

    /* create the UMP buffer */
    umpbuf = calloc(1, sizeof(UMPBufferInfoRec));
    if (!umpbuf) {
        ErrorF("MigratePixmapToUMP: calloc failed\n");
        return NULL;
    }
    umpbuf->refcount = 1;
    umpbuf->pPixmap = pPixmap;
    umpbuf->handle = ump_ref_drv_allocate(size, UMP_REF_DRV_CONSTRAINT_PHYSICALLY_LINEAR);
    if (umpbuf->handle == UMP_INVALID_MEMORY_HANDLE) {
        ErrorF("MigratePixmapToUMP: ump_ref_drv_allocate failed\n");
        free(umpbuf);
        return NULL;
    }
    umpbuf->size = size;
    umpbuf->addr = ump_mapped_pointer_get(umpbuf->handle);
    umpbuf->depth = pPixmap->drawable.depth;
    umpbuf->width = pPixmap->drawable.width;
    umpbuf->height = pPixmap->drawable.height;

    /* copy the pixel data to the new location */
    if (pitch == pPixmap->devKind) {
        memcpy(umpbuf->addr, pPixmap->devPrivate.ptr, size);
    } else {
        int y;
        for (y = 0; y < umpbuf->height; y++) {
            memcpy(umpbuf->addr + y * pitch, 
                   pPixmap->devPrivate.ptr + y * pPixmap->devKind,
                   pPixmap->devKind);
        }
    }

    umpbuf->BackupDevKind = pPixmap->devKind;
    umpbuf->BackupDevPrivatePtr = pPixmap->devPrivate.ptr;

    pPixmap->devKind = pitch;
    pPixmap->devPrivate.ptr = umpbuf->addr;

185
    HASH_ADD_PTR(mali->HashPixmapToUMP, pPixmap, umpbuf);
186
187
188
189
190

    DebugMsg("MigratePixmapToUMP %p, new buf = %p\n", pPixmap, umpbuf);
    return umpbuf;
}

191
192
static void UpdateOverlay(ScreenPtr pScreen);

193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
static void unref_ump_buffer_info(UMPBufferInfoPtr umpbuf)
{
    if (--umpbuf->refcount <= 0) {
        DebugMsg("unref_ump_buffer_info(%p) [refcount=%d, handle=%p]\n",
                 umpbuf, umpbuf->refcount, umpbuf->handle);
        if (umpbuf->handle != UMP_INVALID_MEMORY_HANDLE) {
            ump_mapped_pointer_release(umpbuf->handle);
            ump_reference_release(umpbuf->handle);
        }
        free(umpbuf);
    }
    else {
        DebugMsg("Reduced ump_buffer_info %p refcount to %d\n",
                 umpbuf, umpbuf->refcount);
    }
}

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
static void umpbuf_add_to_queue(DRI2WindowStatePtr window_state,
                                UMPBufferInfoPtr umpbuf)
{
    if (window_state->ump_queue[window_state->ump_queue_head]) {
        ErrorF("Fatal error, UMP buffers queue overflow!\n");
        return;
    }

    window_state->ump_queue[window_state->ump_queue_head] = umpbuf;
    window_state->ump_queue_head = (window_state->ump_queue_head + 1) %
                                   ARRAY_SIZE(window_state->ump_queue);
}

static UMPBufferInfoPtr umpbuf_fetch_from_queue(DRI2WindowStatePtr window_state)
{
    UMPBufferInfoPtr umpbuf;

    /* Check if the queue is empty */
    if (window_state->ump_queue_tail == window_state->ump_queue_head)
        return NULL;

    umpbuf = window_state->ump_queue[window_state->ump_queue_tail];
    window_state->ump_queue[window_state->ump_queue_tail] = NULL;

    window_state->ump_queue_tail = (window_state->ump_queue_tail + 1) %
                                   ARRAY_SIZE(window_state->ump_queue);
    return umpbuf;
}

239
240
241
242
243
244
245
246
247
248
249
/* Verify and fixup the DRI2Buffer before returning it to the X server */
static DRI2Buffer2Ptr validate_dri2buf(DRI2Buffer2Ptr dri2buf)
{
    UMPBufferInfoPtr umpbuf = (UMPBufferInfoPtr)dri2buf->driverPrivate;
    umpbuf->secure_id = dri2buf->name;
    umpbuf->pitch     = dri2buf->pitch;
    umpbuf->cpp       = dri2buf->cpp;
    umpbuf->offs      = dri2buf->flags;
    return dri2buf;
}

250
251
252
253
254
255
static DRI2Buffer2Ptr MaliDRI2CreateBuffer(DrawablePtr  pDraw,
                                           unsigned int attachment,
                                           unsigned int format)
{
    ScreenPtr                pScreen  = pDraw->pScreen;
    ScrnInfoPtr              pScrn    = xf86Screens[pScreen->myNum];
256
    DRI2Buffer2Ptr           buffer;
257
    UMPBufferInfoPtr         privates;
258
    ump_handle               handle;
259
    SunxiMaliDRI2           *mali = SUNXI_MALI_UMP_DRI2(pScrn);
260
261
    sunxi_disp_t            *disp = SUNXI_DISP(pScrn);
    Bool                     can_use_overlay = TRUE;
262
    PixmapPtr                pWindowPixmap;
263
    DRI2WindowStatePtr       window_state = NULL;
264
    Bool                     need_window_resize_bug_workaround = FALSE;
265

266
267
268
269
270
    if (!(buffer = calloc(1, sizeof *buffer))) {
        ErrorF("MaliDRI2CreateBuffer: calloc failed\n");
        return NULL;
    }

271
272
273
274
275
276
277
278
279
    if (pDraw->type == DRAWABLE_WINDOW &&
        (pWindowPixmap = pScreen->GetWindowPixmap((WindowPtr)pDraw)))
    {
        DebugMsg("win=%p (w=%d, h=%d, x=%d, y=%d) has backing pix=%p (w=%d, h=%d, screen_x=%d, screen_y=%d)\n",
                 pDraw, pDraw->width, pDraw->height, pDraw->x, pDraw->y,
                 pWindowPixmap, pWindowPixmap->drawable.width, pWindowPixmap->drawable.height,
                 pWindowPixmap->screen_x, pWindowPixmap->screen_y);
    }

280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
    /* If it is a pixmap, just migrate this pixmap to UMP buffer */
    if (pDraw->type == DRAWABLE_PIXMAP)
    {
        if (!(privates = MigratePixmapToUMP((PixmapPtr)pDraw))) {
            ErrorF("MaliDRI2CreateBuffer: MigratePixmapToUMP failed\n");
            free(buffer);
            return NULL;
        }
        privates->refcount++;
        buffer->attachment    = attachment;
        buffer->driverPrivate = privates;
        buffer->format        = format;
        buffer->flags         = 0;
        buffer->cpp           = pDraw->bitsPerPixel / 8;
        buffer->pitch         = ((PixmapPtr)pDraw)->devKind;
        buffer->name = ump_secure_id_get(privates->handle);
296
297
298
299
300

        DebugMsg("DRI2CreateBuffer pix=%p, buf=%p:%p, att=%d, ump=%d:%d, w=%d, h=%d, cpp=%d, depth=%d\n",
                 pDraw, buffer, privates, attachment, buffer->name, buffer->flags,
                 privates->width, privates->height, buffer->cpp, privates->depth);

301
        return validate_dri2buf(buffer);
302
303
304
305
    }

    if (!(privates = calloc(1, sizeof *privates))) {
        ErrorF("MaliDRI2CreateBuffer: calloc failed\n");
306
307
308
        free(buffer);
        return NULL;
    }
309
    privates->refcount = 1;
310

311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
    /* The default common values */
    buffer->attachment    = attachment;
    buffer->driverPrivate = privates;
    buffer->format        = format + 1; /* hack to suppress DRI2 buffers reuse */
    buffer->flags         = 0;
    buffer->cpp           = pDraw->bitsPerPixel / 8;
    /* Stride must be 8 bytes aligned for Mali400 */
    buffer->pitch         = ((buffer->cpp * pDraw->width + 7) / 8) * 8;

    privates->size     = pDraw->height * buffer->pitch;
    privates->width    = pDraw->width;
    privates->height   = pDraw->height;
    privates->depth    = pDraw->depth;

    /* We are not interested in anything other than back buffer requests ... */
    if (attachment != DRI2BufferBackLeft || pDraw->type != DRAWABLE_WINDOW) {
        /* ... and just return some dummy UMP buffer */
        privates->handle = UMP_INVALID_MEMORY_HANDLE;
        privates->addr   = NULL;
330
        buffer->name     = mali->ump_null_secure_id;
331
        return validate_dri2buf(buffer);
332
    }
333
334

    /* We could not allocate disp layer or get framebuffer secure id */
335
    if (!disp || mali->ump_fb_secure_id == UMP_INVALID_SECURE_ID)
336
337
338
        can_use_overlay = FALSE;

    /* Overlay is already used by a different window */
339
    if (mali->pOverlayWin && mali->pOverlayWin != (void *)pDraw)
340
341
        can_use_overlay = FALSE;

342
343
344
345
    /* Don't waste overlay on some strange 1x1 window created by gnome-shell */
    if (pDraw->width == 1 && pDraw->height == 1)
        can_use_overlay = FALSE;

346
    /* TODO: try to support other color depths later */
347
    if (pDraw->bitsPerPixel != 32 && pDraw->bitsPerPixel != 16)
348
349
        can_use_overlay = FALSE;

350
    if (disp && disp->framebuffer_size - disp->gfx_layer_size < privates->size * 2) {
351
352
353
354
355
        DebugMsg("Not enough space in the offscreen framebuffer (wanted %d for DRI2)\n",
                 privates->size);
        can_use_overlay = FALSE;
    }

356
    /* Allocate the DRI2-related window bookkeeping information */
357
    HASH_FIND_PTR(mali->HashWindowState, &pDraw, window_state);
358
359
360
    if (!window_state) {
        window_state = calloc(1, sizeof(*window_state));
        window_state->pDraw = pDraw;
361
        HASH_ADD_PTR(mali->HashWindowState, pDraw, window_state);
362
        DebugMsg("Allocate DRI2 bookkeeping for window %p\n", pDraw);
363
364
365
366
367
        if (disp && can_use_overlay) {
            /* erase the offscreen part of the framebuffer */
            memset(disp->framebuffer_addr + disp->gfx_layer_size, 0,
                   disp->framebuffer_size - disp->gfx_layer_size);
        }
368
    }
369
    window_state->buf_request_cnt++;
370
371

    /* For odd buffer requests save the window size */
372
    if (window_state->buf_request_cnt & 1) {
373
374
375
376
377
378
        /* remember window size for one buffer */
        window_state->width = pDraw->width;
        window_state->height = pDraw->height;
    }

    /* For even buffer requests check if the window size is still the same */
379
380
    need_window_resize_bug_workaround =
                          !(window_state->buf_request_cnt & 1) &&
381
                          (pDraw->width != window_state->width ||
382
                           pDraw->height != window_state->height) &&
383
                          mali->ump_null_secure_id <= 2;
384

385
    if (can_use_overlay) {
386
387
388
389
390
        /* Release unneeded buffers */
        if (window_state->ump_mem_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_mem_buffer_ptr);
        window_state->ump_mem_buffer_ptr = NULL;

391
392
393
394
        /* Use offscreen part of the framebuffer as an overlay */
        privates->handle = UMP_INVALID_MEMORY_HANDLE;
        privates->addr = disp->framebuffer_addr;

395
        buffer->name = mali->ump_fb_secure_id;
396

397
        if (window_state->buf_request_cnt & 1) {
398
            buffer->flags = disp->gfx_layer_size;
399
400
401
            privates->extra_flags |= UMPBUF_MUST_BE_ODD_FRAME;
        }
        else {
402
            buffer->flags = disp->gfx_layer_size + privates->size;
403
404
            privates->extra_flags |= UMPBUF_MUST_BE_EVEN_FRAME;
        }
405
406
407

        umpbuf_add_to_queue(window_state, privates);
        privates->refcount++;
408

409
        mali->pOverlayWin = (WindowPtr)pDraw;
410

411
412
        if (need_window_resize_bug_workaround) {
            DebugMsg("DRI2 buffers size mismatch detected, trying to recover\n");
413
            buffer->name = mali->ump_alternative_fb_secure_id;
414
415
416
        }
    }
    else {
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
        /* Release unneeded buffers */
        if (window_state->ump_back_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_back_buffer_ptr);
        window_state->ump_back_buffer_ptr = NULL;
        if (window_state->ump_front_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_front_buffer_ptr);
        window_state->ump_front_buffer_ptr = NULL;

        if (need_window_resize_bug_workaround) {
            DebugMsg("DRI2 buffers size mismatch detected, trying to recover\n");

            if (window_state->ump_mem_buffer_ptr)
                unref_ump_buffer_info(window_state->ump_mem_buffer_ptr);
            window_state->ump_mem_buffer_ptr = NULL;

            privates->handle = UMP_INVALID_MEMORY_HANDLE;
            privates->addr   = NULL;
434
            buffer->name     = mali->ump_null_secure_id;
435
436
437
            return validate_dri2buf(buffer);
        }

438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
        /* Reuse the existing UMP buffer if we can */
        if (window_state->ump_mem_buffer_ptr &&
            window_state->ump_mem_buffer_ptr->size == privates->size &&
            window_state->ump_mem_buffer_ptr->depth == privates->depth &&
            window_state->ump_mem_buffer_ptr->width == privates->width &&
            window_state->ump_mem_buffer_ptr->height == privates->height) {

            free(privates);

            privates = window_state->ump_mem_buffer_ptr;
            privates->refcount++;
            buffer->driverPrivate = privates;
            buffer->name = ump_secure_id_get(privates->handle);

            DebugMsg("Reuse the already allocated UMP buffer %p, ump=%d\n",
                     privates, buffer->name);
454
            return validate_dri2buf(buffer);
455
456
        }

457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
        /* Allocate UMP memory buffer */
#ifdef HAVE_LIBUMP_CACHE_CONTROL
        privates->handle = ump_ref_drv_allocate(privates->size,
                                    UMP_REF_DRV_CONSTRAINT_PHYSICALLY_LINEAR |
                                    UMP_REF_DRV_CONSTRAINT_USE_CACHE);
        ump_cache_operations_control(UMP_CACHE_OP_START);
        ump_switch_hw_usage_secure_id(ump_secure_id_get(privates->handle),
                                      UMP_USED_BY_MALI);
        ump_cache_operations_control(UMP_CACHE_OP_FINISH);
#else
        privates->handle = ump_ref_drv_allocate(privates->size,
                                    UMP_REF_DRV_CONSTRAINT_PHYSICALLY_LINEAR);
#endif
        if (privates->handle == UMP_INVALID_MEMORY_HANDLE) {
            ErrorF("Failed to allocate UMP buffer (size=%d)\n",
                   (int)privates->size);
        }
        privates->addr = ump_mapped_pointer_get(privates->handle);
        buffer->name = ump_secure_id_get(privates->handle);
        buffer->flags = 0;
477
478
479
480
481
482
483

        /* Replace the old UMP buffer with the newly allocated one */
        if (window_state->ump_mem_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_mem_buffer_ptr);

        window_state->ump_mem_buffer_ptr = privates;
        privates->refcount++;
484
485
    }

486
487
488
    DebugMsg("DRI2CreateBuffer win=%p, buf=%p:%p, att=%d, ump=%d:%d, w=%d, h=%d, cpp=%d, depth=%d\n",
             pDraw, buffer, privates, attachment, buffer->name, buffer->flags,
             privates->width, privates->height, buffer->cpp, privates->depth);
489

490
    return validate_dri2buf(buffer);
491
492
493
494
}

static void MaliDRI2DestroyBuffer(DrawablePtr pDraw, DRI2Buffer2Ptr buffer)
{
495
    UMPBufferInfoPtr privates;
496
497
    ScreenPtr pScreen = pDraw->pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
498
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
499

500
501
    if (mali->pOverlayDirtyUMP == buffer->driverPrivate)
        mali->pOverlayDirtyUMP = NULL;
502

503
504
505
    DebugMsg("DRI2DestroyBuffer %s=%p, buf=%p:%p, att=%d\n",
             pDraw->type == DRAWABLE_WINDOW ? "win" : "pix",
             pDraw, buffer, buffer->driverPrivate, buffer->attachment);
506
507

    if (buffer != NULL) {
508
        privates = (UMPBufferInfoPtr)buffer->driverPrivate;
509
        unref_ump_buffer_info(privates);
510
511
512
513
514
        free(buffer);
    }
}

/* Do ordinary copy */
515
516
517
static void MaliDRI2CopyRegion_copy(DrawablePtr      pDraw,
                                    RegionPtr        pRegion,
                                    UMPBufferInfoPtr umpbuf)
518
519
520
521
{
    GCPtr pGC;
    RegionPtr copyRegion;
    ScreenPtr pScreen = pDraw->pScreen;
522
    UMPBufferInfoPtr privates;
523
524
525
    PixmapPtr pScratchPixmap;

#ifdef HAVE_LIBUMP_CACHE_CONTROL
526
    if (umpbuf->handle != UMP_INVALID_MEMORY_HANDLE) {
527
528
        /* That's a normal UMP allocation, not a wrapped framebuffer */
        ump_cache_operations_control(UMP_CACHE_OP_START);
529
        ump_switch_hw_usage_secure_id(umpbuf->secure_id, UMP_USED_BY_CPU);
530
531
532
533
534
535
        ump_cache_operations_control(UMP_CACHE_OP_FINISH);
    }
#endif

    pGC = GetScratchGC(pDraw->depth, pScreen);
    pScratchPixmap = GetScratchPixmapHeader(pScreen,
536
537
538
539
                                            umpbuf->width, umpbuf->height,
                                            umpbuf->depth, umpbuf->cpp * 8,
                                            umpbuf->pitch,
                                            umpbuf->addr + umpbuf->offs);
540
541
542
543
544
545
546
547
548
549
    copyRegion = REGION_CREATE(pScreen, NULL, 0);
    REGION_COPY(pScreen, copyRegion, pRegion);
    (*pGC->funcs->ChangeClip)(pGC, CT_REGION, copyRegion, 0);
    ValidateGC(pDraw, pGC);
    (*pGC->ops->CopyArea)((DrawablePtr)pScratchPixmap, pDraw, pGC, 0, 0,
                          pDraw->width, pDraw->height, 0, 0);
    FreeScratchPixmapHeader(pScratchPixmap);
    FreeScratchGC(pGC);

#ifdef HAVE_LIBUMP_CACHE_CONTROL
550
    if (umpbuf->handle != UMP_INVALID_MEMORY_HANDLE) {
551
552
        /* That's a normal UMP allocation, not a wrapped framebuffer */
        ump_cache_operations_control(UMP_CACHE_OP_START);
553
        ump_switch_hw_usage_secure_id(umpbuf->secure_id, UMP_USED_BY_MALI);
554
555
556
557
558
559
560
561
        ump_cache_operations_control(UMP_CACHE_OP_FINISH);
    }
#endif
}

static void FlushOverlay(ScreenPtr pScreen)
{
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
562
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
563

564
    if (mali->pOverlayWin && mali->pOverlayDirtyUMP) {
565
        DebugMsg("Flushing overlay content from DRI2 buffer to window\n");
566
        MaliDRI2CopyRegion_copy((DrawablePtr)mali->pOverlayWin,
567
                                &pScreen->root->winSize,
568
569
                                mali->pOverlayDirtyUMP);
        mali->pOverlayDirtyUMP = NULL;
570
571
572
    }
}

573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
#ifdef DEBUG_WITH_RGB_PATTERN
static void check_rgb_pattern(DRI2WindowStatePtr window_state,
                              UMPBufferInfoPtr umpbuf)
{
    switch (*(uint32_t *)(umpbuf->addr + umpbuf->offs)) {
    case 0xFFFF0000:
        if (window_state->rgb_pattern_state == 0) {
            ErrorF("starting RGB pattern with [Red]\n");
        }
        else if (window_state->rgb_pattern_state != 'B') {
            ErrorF("warning - transition to [Red] not from [Blue]\n");
        }
        window_state->rgb_pattern_state = 'R';
        break;
    case 0xFF00FF00:
        if (window_state->rgb_pattern_state == 0) {
            ErrorF("starting RGB pattern with [Green]\n");
        }
        else if (window_state->rgb_pattern_state != 'R') {
            ErrorF("warning - transition to [Green] not from [Red]\n");
        }
        window_state->rgb_pattern_state = 'G';
        break;
    case 0xFF0000FF:
        if (window_state->rgb_pattern_state == 0) {
            ErrorF("starting RGB pattern with [Blue]\n");
        }
        else if (window_state->rgb_pattern_state != 'G') {
            ErrorF("warning - transition to [Blue] not from [Green]\n");
        }
        window_state->rgb_pattern_state = 'B';
        break;
    default:
        if (window_state->rgb_pattern_state != 0) {
            ErrorF("stopping RGB pattern\n");
        }
        window_state->rgb_pattern_state = 0;
    }
}
#endif

614
615
616
617
618
619
620
static void MaliDRI2CopyRegion(DrawablePtr   pDraw,
                               RegionPtr     pRegion,
                               DRI2BufferPtr pDstBuffer,
                               DRI2BufferPtr pSrcBuffer)
{
    ScreenPtr pScreen = pDraw->pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
621
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
622
    UMPBufferInfoPtr umpbuf;
623
    sunxi_disp_t *disp = SUNXI_DISP(xf86Screens[pScreen->myNum]);
624
    DRI2WindowStatePtr window_state = NULL;
625
    HASH_FIND_PTR(mali->HashWindowState, &pDraw, window_state);
626
627
628
629
630
631
632
633
634
635
636
637

    if (pDraw->type == DRAWABLE_PIXMAP) {
        DebugMsg("MaliDRI2CopyRegion has been called for pixmap %p\n", pDraw);
        return;
    }

    if (!window_state) {
        DebugMsg("MaliDRI2CopyRegion: can't find window %p in the hash\n", pDraw);
        return;
    }

    /* Try to fetch a new UMP buffer from the queue */
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
    umpbuf = umpbuf_fetch_from_queue(window_state);

    /*
     * Swap back and front buffers. But also ensure that the buffer
     * flags UMPBUF_MUST_BE_ODD_FRAME and UMPBUF_MUST_BE_EVEN_FRAME
     * are respected. In the case if swapping the buffers would result
     * in fetching the UMP buffer from the queue in the wrong order,
     * just skip the swap. This is a hack, which causes some temporary
     * glitch when resizing windows, but prevents a bigger problem.
     */
    if (!umpbuf || (!((umpbuf->extra_flags & UMPBUF_MUST_BE_ODD_FRAME) &&
                     (window_state->buf_swap_cnt & 1)) &&
                    !((umpbuf->extra_flags & UMPBUF_MUST_BE_EVEN_FRAME) &&
                     !(window_state->buf_swap_cnt & 1)))) {
        UMPBufferInfoPtr tmp               = window_state->ump_back_buffer_ptr;
        window_state->ump_back_buffer_ptr  = window_state->ump_front_buffer_ptr;
        window_state->ump_front_buffer_ptr = tmp;
        window_state->buf_swap_cnt++;
656
657
    }

658
659
660
661
662
663
664
665
666
    /* Try to replace the front buffer with a new UMP buffer from the queue */
    if (umpbuf) {
        if (window_state->ump_front_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_front_buffer_ptr);
        window_state->ump_front_buffer_ptr = umpbuf;
    }
    else {
        umpbuf = window_state->ump_front_buffer_ptr;
    }
667
668
669

    if (!umpbuf)
        umpbuf = window_state->ump_mem_buffer_ptr;
670

671
    if (!umpbuf || !umpbuf->addr)
672
673
        return;

674
675
676
677
#ifdef DEBUG_WITH_RGB_PATTERN
    check_rgb_pattern(window_state, umpbuf);
#endif

678
679
    UpdateOverlay(pScreen);

680
    if (!mali->bOverlayWinEnabled || umpbuf->handle != UMP_INVALID_MEMORY_HANDLE) {
681
        MaliDRI2CopyRegion_copy(pDraw, pRegion, umpbuf);
682
        mali->pOverlayDirtyUMP = NULL;
683
684
685
        return;
    }

686
    /* Mark the overlay as "dirty" and remember the last up to date UMP buffer */
687
    mali->pOverlayDirtyUMP = umpbuf;
688
689
690

    /* Activate the overlay */
    sunxi_layer_set_output_window(disp, pDraw->x, pDraw->y, pDraw->width, pDraw->height);
691
692
    sunxi_layer_set_rgb_input_buffer(disp, umpbuf->cpp * 8, umpbuf->offs,
                                     umpbuf->width, umpbuf->height, umpbuf->pitch / 4);
693
    sunxi_layer_show(disp);
694

695
    if (mali->bSwapbuffersWait) {
696
697
698
        /* FIXME: blocking here for up to 1/60 second is not nice */
        sunxi_wait_for_vsync(disp);
    }
699
700
701
702
703
704
705
}

/************************************************************************/

static void UpdateOverlay(ScreenPtr pScreen)
{
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
706
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
707
708
    sunxi_disp_t *disp = SUNXI_DISP(pScrn);

709
    if (!mali->pOverlayWin || !disp)
710
711
        return;

712
    /* Disable overlays if the hardware cursor is not in use */
713
714
    if (!mali->bHardwareCursorIsInUse) {
        if (mali->bOverlayWinEnabled) {
715
716
            DebugMsg("Disabling overlay (no hardware cursor)\n");
            sunxi_layer_hide(disp);
717
            mali->bOverlayWinEnabled = FALSE;
718
719
720
721
        }
        return;
    }

722
    /* If the window is not mapped, make sure that the overlay is disabled */
723
    if (!mali->pOverlayWin->mapped)
724
    {
725
        if (mali->bOverlayWinEnabled) {
726
727
            DebugMsg("Disabling overlay (window is not mapped)\n");
            sunxi_layer_hide(disp);
728
            mali->bOverlayWinEnabled = FALSE;
729
730
731
732
733
734
735
736
737
738
        }
        return;
    }

    /*
     * Walk the windows tree to get the obscured/unobscured status of
     * the window (because we can't rely on self->pOverlayWin->visibility
     * for redirected windows).
     */

739
740
741
    mali->bWalkingAboveOverlayWin = FALSE;
    mali->bOverlayWinOverlapped = FALSE;
    FancyTraverseTree(pScreen->root, WindowWalker, mali);
742
743

    /* If the window got overlapped -> disable overlay */
744
    if (mali->bOverlayWinOverlapped && mali->bOverlayWinEnabled) {
745
746
        DebugMsg("Disabling overlay (window is obscured)\n");
        FlushOverlay(pScreen);
747
        mali->bOverlayWinEnabled = FALSE;
748
749
750
751
752
        sunxi_layer_hide(disp);
        return;
    }

    /* If the window got moved -> update overlay position */
753
754
755
    if (!mali->bOverlayWinOverlapped &&
        (mali->overlay_x != mali->pOverlayWin->drawable.x ||
         mali->overlay_y != mali->pOverlayWin->drawable.y))
756
    {
757
758
759
760
761
762
763
764
        mali->overlay_x = mali->pOverlayWin->drawable.x;
        mali->overlay_y = mali->pOverlayWin->drawable.y;

        sunxi_layer_set_output_window(disp, mali->pOverlayWin->drawable.x,
                                      mali->pOverlayWin->drawable.y,
                                      mali->pOverlayWin->drawable.width,
                                      mali->pOverlayWin->drawable.height);
        DebugMsg("Move overlay to (%d, %d)\n", mali->overlay_x, mali->overlay_y);
765
766
767
    }

    /* If the window got unobscured -> enable overlay */
768
    if (!mali->bOverlayWinOverlapped && !mali->bOverlayWinEnabled) {
769
        DebugMsg("Enabling overlay (window is fully unobscured)\n");
770
        mali->bOverlayWinEnabled = TRUE;
771
772
773
774
775
776
777
778
779
        sunxi_layer_show(disp);
    }
}

static Bool
DestroyWindow(WindowPtr pWin)
{
    ScreenPtr pScreen = pWin->drawable.pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
780
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
781
    Bool ret;
782
783
    DrawablePtr pDraw = &pWin->drawable;
    DRI2WindowStatePtr window_state = NULL;
784
    HASH_FIND_PTR(mali->HashWindowState, &pDraw, window_state);
785
786
    if (window_state) {
        DebugMsg("Free DRI2 bookkeeping for window %p\n", pWin);
787
        HASH_DEL(mali->HashWindowState, window_state);
788
789
        if (window_state->ump_mem_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_mem_buffer_ptr);
790
791
792
793
        if (window_state->ump_back_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_back_buffer_ptr);
        if (window_state->ump_front_buffer_ptr)
            unref_ump_buffer_info(window_state->ump_front_buffer_ptr);
794
795
        free(window_state);
    }
796

797
    if (pWin == mali->pOverlayWin) {
798
799
        sunxi_disp_t *disp = SUNXI_DISP(pScrn);
        sunxi_layer_hide(disp);
800
        mali->pOverlayWin = NULL;
801
802
803
        DebugMsg("DestroyWindow %p\n", pWin);
    }

804
    pScreen->DestroyWindow = mali->DestroyWindow;
805
    ret = (*pScreen->DestroyWindow) (pWin);
806
    mali->DestroyWindow = pScreen->DestroyWindow;
807
808
809
810
811
812
813
814
815
816
    pScreen->DestroyWindow = DestroyWindow;

    return ret;
}

static void
PostValidateTree(WindowPtr pWin, WindowPtr pLayerWin, VTKind kind)
{
    ScreenPtr pScreen = pWin ? pWin->drawable.pScreen : pLayerWin->drawable.pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
817
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
818

819
820
    if (mali->PostValidateTree) {
        pScreen->PostValidateTree = mali->PostValidateTree;
821
        (*pScreen->PostValidateTree) (pWin, pLayerWin, kind);
822
        mali->PostValidateTree = pScreen->PostValidateTree;
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
        pScreen->PostValidateTree = PostValidateTree;
    }

    UpdateOverlay(pScreen);
}

/*
 * If somebody is trying to make a screenshot, we want to have DRI2 buffer
 * flushed.
 */
static void
GetImage(DrawablePtr pDrawable, int x, int y, int w, int h,
         unsigned int format, unsigned long planeMask, char *d)
{
    ScreenPtr pScreen = pDrawable->pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
839
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
840
841

    /* FIXME: more precise check */
842
    if (mali->pOverlayDirtyUMP)
843
844
        FlushOverlay(pScreen);

845
846
    if (mali->GetImage) {
        pScreen->GetImage = mali->GetImage;
847
        (*pScreen->GetImage) (pDrawable, x, y, w, h, format, planeMask, d);
848
        mali->GetImage = pScreen->GetImage;
849
850
851
852
        pScreen->GetImage = GetImage;
    }
}

853
854
855
856
857
static Bool
DestroyPixmap(PixmapPtr pPixmap)
{
    ScreenPtr pScreen = pPixmap->drawable.pScreen;
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
858
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
859
860
    Bool result;
    UMPBufferInfoPtr umpbuf;
861
    HASH_FIND_PTR(mali->HashPixmapToUMP, &pPixmap, umpbuf);
862
863
864
865
866
867
868

    if (umpbuf) {
        DebugMsg("DestroyPixmap %p for migrated UMP pixmap (UMP buffer=%p)\n", pPixmap, umpbuf);

        pPixmap->devKind = umpbuf->BackupDevKind;
        pPixmap->devPrivate.ptr = umpbuf->BackupDevPrivatePtr;

869
        HASH_DEL(mali->HashPixmapToUMP, umpbuf);
870
871
        umpbuf->pPixmap = NULL;
        unref_ump_buffer_info(umpbuf);
872
873
    }

874
    pScreen->DestroyPixmap = mali->DestroyPixmap;
875
    result = (*pScreen->DestroyPixmap) (pPixmap);
876
    mali->DestroyPixmap = pScreen->DestroyPixmap;
877
878
879
880
881
882
    pScreen->DestroyPixmap = DestroyPixmap;


    return result;
}

883
884
static void EnableHWCursor(ScrnInfoPtr pScrn)
{
885
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
886
    SunxiDispHardwareCursor *hwc = SUNXI_DISP_HWC(pScrn);
887

888
    if (!mali->bHardwareCursorIsInUse) {
889
        DebugMsg("EnableHWCursor\n");
890
        mali->bHardwareCursorIsInUse = TRUE;
891
892
    }

893
894
    UpdateOverlay(screenInfo.screens[pScrn->scrnIndex]);

895
896
    if (mali->EnableHWCursor) {
        hwc->EnableHWCursor = mali->EnableHWCursor;
897
        (*hwc->EnableHWCursor) (pScrn);
898
        mali->EnableHWCursor = hwc->EnableHWCursor;
899
900
901
902
903
904
        hwc->EnableHWCursor = EnableHWCursor;
    }
}

static void DisableHWCursor(ScrnInfoPtr pScrn)
{
905
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
906
    SunxiDispHardwareCursor *hwc = SUNXI_DISP_HWC(pScrn);
907

908
909
    if (mali->bHardwareCursorIsInUse) {
        mali->bHardwareCursorIsInUse = FALSE;
910
911
912
        DebugMsg("DisableHWCursor\n");
    }

913
914
    UpdateOverlay(screenInfo.screens[pScrn->scrnIndex]);

915
916
    if (mali->DisableHWCursor) {
        hwc->DisableHWCursor = mali->DisableHWCursor;
917
        (*hwc->DisableHWCursor) (pScrn);
918
        mali->DisableHWCursor = hwc->DisableHWCursor;
919
920
921
922
        hwc->DisableHWCursor = DisableHWCursor;
    }
}

923
924
925
926
927
928
929
930
931
932
933
934
935
936
static unsigned long ump_get_size_from_secure_id(ump_secure_id secure_id)
{
    unsigned long size;
    ump_handle handle;
    if (secure_id == UMP_INVALID_SECURE_ID)
        return 0;
    handle = ump_handle_create_from_secure_id(secure_id);
    if (handle == UMP_INVALID_MEMORY_HANDLE)
        return 0;
    size = ump_size_get(handle);
    ump_reference_release(handle);
    return size;
}

937
938
939
SunxiMaliDRI2 *SunxiMaliDRI2_Init(ScreenPtr pScreen,
                                  Bool      bUseOverlay,
                                  Bool      bSwapbuffersWait)
940
941
942
{
    int drm_fd;
    DRI2InfoRec info;
943
    SunxiMaliDRI2 *mali;
944
945
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
    sunxi_disp_t *disp = SUNXI_DISP(pScrn);
946

947
948
949
950
951
    if (!xf86LoadKernelModule("mali"))
        xf86DrvMsg(pScreen->myNum, X_INFO, "can't load 'mali' kernel module\n");
    if (!xf86LoadKernelModule("mali_drm"))
        xf86DrvMsg(pScreen->myNum, X_INFO, "can't load 'mali_drm' kernel module\n");

952
    if (!xf86LoadSubModule(xf86Screens[pScreen->myNum], "dri2"))
953
        return NULL;
954
955
956

    if ((drm_fd = drmOpen("mali_drm", NULL)) < 0) {
        ErrorF("SunxiMaliDRI2_Init: drmOpen failed!\n");
957
        return NULL;
958
959
960
961
962
    }

    if (ump_open() != UMP_OK) {
        drmClose(drm_fd);
        ErrorF("SunxiMaliDRI2_Init: ump_open() != UMP_OK\n");
963
        return NULL;
964
965
    }

966
    if (!(mali = calloc(1, sizeof(SunxiMaliDRI2)))) {
967
968
969
970
971
972
        ErrorF("SunxiMaliDRI2_Init: calloc failed\n");
        return NULL;
    }

    if (disp && bUseOverlay) {
        /* Try to get UMP framebuffer wrapper with secure id 1 */
973
        ioctl(disp->fd_fb, GET_UMP_SECURE_ID_BUF1, &mali->ump_alternative_fb_secure_id);
974
        /* Try to allocate a small dummy UMP buffer to secure id 2 */
975
976
977
978
        mali->ump_null_handle1 = ump_ref_drv_allocate(4096, UMP_REF_DRV_CONSTRAINT_NONE);
        if (mali->ump_null_handle1 != UMP_INVALID_MEMORY_HANDLE)
            mali->ump_null_secure_id = ump_secure_id_get(mali->ump_null_handle1);
        mali->ump_null_handle2 = UMP_INVALID_MEMORY_HANDLE;
979
        /* Try to get UMP framebuffer for the secure id other than 1 and 2 */
980
981
        if (ioctl(disp->fd_fb, GET_UMP_SECURE_ID_SUNXI_FB, &mali->ump_fb_secure_id) ||
                                   mali->ump_fb_secure_id == UMP_INVALID_SECURE_ID) {
982
983
            xf86DrvMsg(pScreen->myNum, X_INFO,
                  "GET_UMP_SECURE_ID_SUNXI_FB ioctl failed, overlays can't be used\n");
984
            mali->ump_fb_secure_id = UMP_INVALID_SECURE_ID;
985
        }
986
987
988
989
990
991
992
993
        if (mali->ump_alternative_fb_secure_id == UMP_INVALID_SECURE_ID ||
            ump_get_size_from_secure_id(mali->ump_alternative_fb_secure_id) !=
                                          disp->framebuffer_size) {
            xf86DrvMsg(pScreen->myNum, X_INFO,
                  "UMP does not wrap the whole framebuffer, overlays can't be used\n");
            mali->ump_fb_secure_id = UMP_INVALID_SECURE_ID;
            mali->ump_alternative_fb_secure_id = UMP_INVALID_SECURE_ID;
        }
994
995
996
    }
    else {
        /* Try to allocate small dummy UMP buffers to secure id 1 and 2 */
997
998
999
1000
        mali->ump_null_handle1 = ump_ref_drv_allocate(4096, UMP_REF_DRV_CONSTRAINT_NONE);
        if (mali->ump_null_handle1 != UMP_INVALID_MEMORY_HANDLE)
            mali->ump_null_secure_id = ump_secure_id_get(mali->ump_null_handle1);
        mali->ump_null_handle2 = ump_ref_drv_allocate(4096, UMP_REF_DRV_CONSTRAINT_NONE);
1001
1002
1003
        /* No UMP wrappers for the framebuffer are available */
        mali->ump_fb_secure_id = UMP_INVALID_SECURE_ID;
        mali->ump_alternative_fb_secure_id = UMP_INVALID_SECURE_ID;
1004
1005
    }

1006
    if (mali->ump_null_secure_id > 2) {
1007
1008
1009
1010
        xf86DrvMsg(pScreen->myNum, X_INFO,
                   "warning, can't workaround Mali r3p0 window resize bug\n");
    }

1011
    if (disp && mali->ump_fb_secure_id != UMP_INVALID_SECURE_ID)
1012
1013
1014
1015
1016
1017
1018
1019
1020
        xf86DrvMsg(pScreen->myNum, X_INFO,
              "enabled display controller hardware overlays for DRI2\n");
    else if (bUseOverlay)
        xf86DrvMsg(pScreen->myNum, X_INFO,
              "display controller hardware overlays can't be used for DRI2\n");
    else
        xf86DrvMsg(pScreen->myNum, X_INFO,
              "display controller hardware overlays are not used for DRI2\n");

1021
1022
1023
    xf86DrvMsg(pScreen->myNum, X_INFO, "Wait on SwapBuffers? %s\n",
               bSwapbuffersWait ? "enabled" : "disabled");

1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
    info.version = 3;

    info.driverName = "sunxi-mali";
    info.deviceName = "/dev/dri/card0";
    info.fd = drm_fd;

    info.CreateBuffer = MaliDRI2CreateBuffer;
    info.DestroyBuffer = MaliDRI2DestroyBuffer;
    info.CopyRegion = MaliDRI2CopyRegion;

    if (!DRI2ScreenInit(pScreen, &info)) {
        drmClose(drm_fd);
1036
        free(mali);
1037
1038
1039
        return NULL;
    }
    else {
1040
        SunxiDispHardwareCursor *hwc = SUNXI_DISP_HWC(pScrn);
1041
1042

        /* Wrap the current DestroyWindow function */
1043
        mali->DestroyWindow = pScreen->DestroyWindow;
1044
1045
        pScreen->DestroyWindow = DestroyWindow;
        /* Wrap the current PostValidateTree function */
1046
        mali->PostValidateTree = pScreen->PostValidateTree;
1047
1048
        pScreen->PostValidateTree = PostValidateTree;
        /* Wrap the current GetImage function */
1049
        mali->GetImage = pScreen->GetImage;
1050
        pScreen->GetImage = GetImage;
1051
        /* Wrap the current DestroyPixmap function */
1052
        mali->DestroyPixmap = pScreen->DestroyPixmap;
1053
        pScreen->DestroyPixmap = DestroyPixmap;
1054

1055
1056
        /* Wrap hardware cursor callback functions */
        if (hwc) {
1057
            mali->EnableHWCursor = hwc->EnableHWCursor;
1058
            hwc->EnableHWCursor = EnableHWCursor;
1059
            mali->DisableHWCursor = hwc->DisableHWCursor;
1060
1061
1062
            hwc->DisableHWCursor = DisableHWCursor;
        }

1063
1064
1065
        mali->drm_fd = drm_fd;
        mali->bSwapbuffersWait = bSwapbuffersWait;
        return mali;
1066
1067
1068
1069
1070
1071
    }
}

void SunxiMaliDRI2_Close(ScreenPtr pScreen)
{
    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
1072
    SunxiMaliDRI2 *mali = SUNXI_MALI_UMP_DRI2(pScrn);
1073
    SunxiDispHardwareCursor *hwc = SUNXI_DISP_HWC(pScrn);
1074
1075

    /* Unwrap functions */
1076
1077
1078
1079
    pScreen->DestroyWindow    = mali->DestroyWindow;
    pScreen->PostValidateTree = mali->PostValidateTree;
    pScreen->GetImage         = mali->GetImage;
    pScreen->DestroyPixmap    = mali->DestroyPixmap;
1080

1081
    if (hwc) {
1082
1083
        hwc->EnableHWCursor  = mali->EnableHWCursor;
        hwc->DisableHWCursor = mali->DisableHWCursor;
1084
1085
    }

1086
1087
1088
1089
    if (mali->ump_null_handle1 != UMP_INVALID_MEMORY_HANDLE)
        ump_reference_release(mali->ump_null_handle1);
    if (mali->ump_null_handle2 != UMP_INVALID_MEMORY_HANDLE)
        ump_reference_release(mali->ump_null_handle2);
1090

1091
    drmClose(mali->drm_fd);
1092
1093
    DRI2CloseScreen(pScreen);
}