lib/igt_kms: Unify pipe name helpers
[platform/upstream/intel-gpu-tools.git] / tests / gem_bad_blit.c
1 /*
2  * Copyright © 2009 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  *
23  * Authors:
24  *    Eric Anholt <eric@anholt.net>
25  *
26  */
27
28 /** @file gem_tiled_blits.c
29  *
30  * This is a test of doing many tiled blits, with a working set
31  * larger than the aperture size.
32  *
33  * The goal is to catch a couple types of failure;
34  * - Fence management problems on pre-965.
35  * - A17 or L-shaped memory tiling workaround problems in acceleration.
36  *
37  * The model is to fill a collection of 1MB objects in a way that can't trip
38  * over A6 swizzling -- upload data to a non-tiled object, blit to the tiled
39  * object.  Then, copy the 1MB objects randomly between each other for a while.
40  * Finally, download their data through linear objects again and see what
41  * resulted.
42  */
43
44 #include <stdlib.h>
45 #include <stdio.h>
46 #include <string.h>
47 #include <fcntl.h>
48 #include <inttypes.h>
49 #include <errno.h>
50 #include <sys/stat.h>
51 #include <sys/time.h>
52 #include "drm.h"
53 #include "ioctl_wrappers.h"
54 #include "drmtest.h"
55 #include "intel_bufmgr.h"
56 #include "intel_batchbuffer.h"
57 #include "intel_chipset.h"
58 #include "intel_io.h"
59
60 static drm_intel_bufmgr *bufmgr;
61 struct intel_batchbuffer *batch;
62
63 #define BAD_GTT_DEST ((256*1024*1024)) /* past end of aperture */
64
65 static void
66 bad_blit(drm_intel_bo *src_bo, uint32_t devid)
67 {
68         uint32_t src_pitch = 512, dst_pitch = 512;
69         uint32_t cmd_bits = 0;
70
71         if (IS_965(devid)) {
72                 src_pitch /= 4;
73                 cmd_bits |= XY_SRC_COPY_BLT_SRC_TILED;
74         }
75
76         if (IS_965(devid)) {
77                 dst_pitch /= 4;
78                 cmd_bits |= XY_SRC_COPY_BLT_DST_TILED;
79         }
80
81         BLIT_COPY_BATCH_START(devid, cmd_bits);
82         OUT_BATCH((3 << 24) | /* 32 bits */
83                   (0xcc << 16) | /* copy ROP */
84                   dst_pitch);
85         OUT_BATCH(0); /* dst x1,y1 */
86         OUT_BATCH((64 << 16) | 64); /* 64x64 blit */
87         OUT_BATCH(BAD_GTT_DEST);
88         BLIT_RELOC_UDW(devid);
89         OUT_BATCH(0); /* src x1,y1 */
90         OUT_BATCH(src_pitch);
91         OUT_RELOC(src_bo, I915_GEM_DOMAIN_RENDER, 0, 0);
92         BLIT_RELOC_UDW(devid);
93         ADVANCE_BATCH();
94
95         intel_batchbuffer_flush(batch);
96 }
97
98 igt_simple_main
99 {
100         drm_intel_bo *src;
101         int fd;
102
103         fd = drm_open_any();
104
105         bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
106         drm_intel_bufmgr_gem_enable_reuse(bufmgr);
107         batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
108
109         src = drm_intel_bo_alloc(bufmgr, "src", 128 * 128, 4096);
110
111         bad_blit(src, batch->devid);
112
113         intel_batchbuffer_free(batch);
114         drm_intel_bufmgr_destroy(bufmgr);
115
116         close(fd);
117 }