blob: a3dbfad4e7e0f2ded5a27da7b78a2cb9caa9f3dd [file] [log] [blame]
Chris Wilsonf62abaf2014-01-10 13:42:55 +00001/*
2 * Copyright © 2014 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 * Chris Wilson <chris@chris-wilson.co.uk>
25 *
26 */
27
Thomas Wood804e11f2015-08-17 17:57:43 +010028#include "igt.h"
Chris Wilsonf62abaf2014-01-10 13:42:55 +000029#include <unistd.h>
30#include <stdlib.h>
31#include <stdint.h>
32#include <stdio.h>
33#include <string.h>
34#include <fcntl.h>
35#include <inttypes.h>
36#include <errno.h>
37#include <sys/stat.h>
38#include <sys/ioctl.h>
39#include <sys/time.h>
40#include <sys/wait.h>
41
42#include "drm.h"
Chris Wilsonf62abaf2014-01-10 13:42:55 +000043
Chris Wilsonf62abaf2014-01-10 13:42:55 +000044static const uint32_t canary = 0xdeadbeef;
45
Rodrigo Vivicde058a2014-03-18 11:18:56 -030046typedef struct data {
47 int fd;
48 int devid;
49 int intel_gen;
50} data_t;
51
Chris Wilsonf62abaf2014-01-10 13:42:55 +000052static double elapsed(const struct timeval *start,
53 const struct timeval *end)
54{
55 return 1e6*(end->tv_sec - start->tv_sec) + (end->tv_usec - start->tv_usec);
56}
57
Rodrigo Vivicde058a2014-03-18 11:18:56 -030058static void busy(data_t *data, uint32_t handle, int size, int loops)
Chris Wilsonf62abaf2014-01-10 13:42:55 +000059{
60 struct drm_i915_gem_relocation_entry reloc[20];
61 struct drm_i915_gem_exec_object2 gem_exec[2];
62 struct drm_i915_gem_execbuffer2 execbuf;
63 struct drm_i915_gem_pwrite gem_pwrite;
64 struct drm_i915_gem_create create;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030065 uint32_t buf[170], *b;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000066 int i;
67
68 memset(reloc, 0, sizeof(reloc));
69 memset(gem_exec, 0, sizeof(gem_exec));
70 memset(&execbuf, 0, sizeof(execbuf));
71
72 b = buf;
73 for (i = 0; i < 20; i++) {
Rodrigo Vivicde058a2014-03-18 11:18:56 -030074 *b++ = XY_COLOR_BLT_CMD_NOLEN |
75 ((data->intel_gen >= 8) ? 5 : 4) |
Rodrigo Vivid8164352014-03-18 11:18:55 -030076 COLOR_BLT_WRITE_ALPHA | XY_COLOR_BLT_WRITE_RGB;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000077 *b++ = 0xf0 << 16 | 1 << 25 | 1 << 24 | 4096;
Rodrigo Vivid8164352014-03-18 11:18:55 -030078 *b++ = 0;
79 *b++ = size >> 12 << 16 | 1024;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000080 reloc[i].offset = (b - buf) * sizeof(uint32_t);
81 reloc[i].target_handle = handle;
82 reloc[i].read_domains = I915_GEM_DOMAIN_RENDER;
83 reloc[i].write_domain = I915_GEM_DOMAIN_RENDER;
84 *b++ = 0;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030085 if (data->intel_gen >= 8)
86 *b++ = 0;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000087 *b++ = canary;
88 }
89 *b++ = MI_BATCH_BUFFER_END;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030090 if ((b - buf) & 1)
91 *b++ = 0;
Chris Wilsonf62abaf2014-01-10 13:42:55 +000092
93 gem_exec[0].handle = handle;
94 gem_exec[0].flags = EXEC_OBJECT_NEEDS_FENCE;
95
96 create.handle = 0;
97 create.size = 4096;
Rodrigo Vivicde058a2014-03-18 11:18:56 -030098 drmIoctl(data->fd, DRM_IOCTL_I915_GEM_CREATE, &create);
Chris Wilsonf62abaf2014-01-10 13:42:55 +000099 gem_exec[1].handle = create.handle;
100 gem_exec[1].relocation_count = 20;
Chris Wilson4de67b22017-01-02 11:05:21 +0000101 gem_exec[1].relocs_ptr = to_user_pointer(reloc);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000102
Chris Wilson4de67b22017-01-02 11:05:21 +0000103 execbuf.buffers_ptr = to_user_pointer(gem_exec);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000104 execbuf.buffer_count = 2;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300105 execbuf.batch_len = (b - buf) * sizeof(buf[0]);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000106 execbuf.flags = 1 << 11;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300107 if (HAS_BLT_RING(data->devid))
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000108 execbuf.flags |= I915_EXEC_BLT;
109
110 gem_pwrite.handle = gem_exec[1].handle;
111 gem_pwrite.offset = 0;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300112 gem_pwrite.size = execbuf.batch_len;
Chris Wilson4de67b22017-01-02 11:05:21 +0000113 gem_pwrite.data_ptr = to_user_pointer(buf);
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300114 if (drmIoctl(data->fd, DRM_IOCTL_I915_GEM_PWRITE, &gem_pwrite) == 0) {
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000115 while (loops--)
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300116 drmIoctl(data->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000117 }
118
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300119 drmIoctl(data->fd, DRM_IOCTL_GEM_CLOSE, &create.handle);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000120}
121
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300122static void run(data_t *data, int child)
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000123{
124 const int size = 4096 * (256 + child * child);
125 const int tiling = child % 2;
126 const int write = child % 2;
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300127 uint32_t handle = gem_create(data->fd, size);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000128 uint32_t *ptr;
129 uint32_t x;
130
131 igt_assert(handle);
132
133 if (tiling != I915_TILING_NONE)
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300134 gem_set_tiling(data->fd, handle, tiling, 4096);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000135
136 /* load up the unfaulted bo */
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300137 busy(data, handle, size, 100);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000138
139 /* Note that we ignore the API and rely on the implict
140 * set-to-gtt-domain within the fault handler.
141 */
142 if (write) {
Ville Syrjäläf52e7ec2015-10-09 19:11:39 +0300143 ptr = gem_mmap__gtt(data->fd, handle, size,
144 PROT_READ | PROT_WRITE);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000145 ptr[rand() % (size / 4)] = canary;
Ville Syrjälä7eaae3c2015-10-09 18:19:34 +0300146 } else {
Ville Syrjäläf52e7ec2015-10-09 19:11:39 +0300147 ptr = gem_mmap__gtt(data->fd, handle, size, PROT_READ);
Ville Syrjälä7eaae3c2015-10-09 18:19:34 +0300148 }
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000149 x = ptr[rand() % (size / 4)];
150 munmap(ptr, size);
151
Matt Roper07be8fe2015-03-05 15:01:00 -0800152 igt_assert_eq_u32(x, canary);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000153}
154
Daniel Vetter8fa20662014-01-15 23:59:52 +0100155igt_simple_main
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000156{
157 struct timeval start, end;
158 pid_t children[64];
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300159 data_t data = {};
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000160
Daniel Vetter58633cf2014-02-12 00:05:57 +0100161 /* check for an intel gpu before goint nuts. */
Micah Fedkec81d2932015-07-22 21:54:02 +0000162 int fd = drm_open_driver(DRIVER_INTEL);
Chris Wilson9518cb52017-02-22 15:24:54 +0000163 igt_require_gem(fd);
Daniel Vetter58633cf2014-02-12 00:05:57 +0100164 close(fd);
165
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000166 igt_skip_on_simulation();
167
Micah Fedkec81d2932015-07-22 21:54:02 +0000168 data.fd = drm_open_driver(DRIVER_INTEL);
Rodrigo Vivicde058a2014-03-18 11:18:56 -0300169 data.devid = intel_get_drm_devid(data.fd);
170 data.intel_gen = intel_gen(data.devid);
171
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000172 gettimeofday(&start, NULL);
Chris Wilson3309f542014-07-26 11:42:20 +0100173 igt_fork(child, ARRAY_SIZE(children))
174 run(&data, child);
175 igt_waitchildren();
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000176 gettimeofday(&end, NULL);
Chris Wilson3309f542014-07-26 11:42:20 +0100177
Ville Syrjälä1ecd91a2015-12-13 00:04:43 +0200178 igt_info("Time to execute %zu children: %7.3fms\n",
Daniel Vettere624fa82014-05-14 00:36:04 +0200179 ARRAY_SIZE(children), elapsed(&start, &end) / 1000);
Chris Wilsonf62abaf2014-01-10 13:42:55 +0000180}