Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 28 | #include <unistd.h> |
| 29 | #include <stdlib.h> |
| 30 | #include <stdint.h> |
| 31 | #include <stdio.h> |
| 32 | #include <string.h> |
| 33 | #include <fcntl.h> |
| 34 | #include <inttypes.h> |
| 35 | #include <errno.h> |
| 36 | #include <sys/stat.h> |
| 37 | #include <sys/ioctl.h> |
| 38 | #include <sys/time.h> |
| 39 | #include <sys/wait.h> |
| 40 | |
| 41 | #include "drm.h" |
| 42 | #include "i915_drm.h" |
| 43 | #include "drmtest.h" |
| 44 | |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 45 | static const uint32_t canary = 0xdeadbeef; |
| 46 | |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 47 | typedef struct data { |
| 48 | int fd; |
| 49 | int devid; |
| 50 | int intel_gen; |
| 51 | } data_t; |
| 52 | |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 53 | static double elapsed(const struct timeval *start, |
| 54 | const struct timeval *end) |
| 55 | { |
| 56 | return 1e6*(end->tv_sec - start->tv_sec) + (end->tv_usec - start->tv_usec); |
| 57 | } |
| 58 | |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 59 | static void busy(data_t *data, uint32_t handle, int size, int loops) |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 60 | { |
| 61 | struct drm_i915_gem_relocation_entry reloc[20]; |
| 62 | struct drm_i915_gem_exec_object2 gem_exec[2]; |
| 63 | struct drm_i915_gem_execbuffer2 execbuf; |
| 64 | struct drm_i915_gem_pwrite gem_pwrite; |
| 65 | struct drm_i915_gem_create create; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 66 | uint32_t buf[170], *b; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 67 | int i; |
| 68 | |
| 69 | memset(reloc, 0, sizeof(reloc)); |
| 70 | memset(gem_exec, 0, sizeof(gem_exec)); |
| 71 | memset(&execbuf, 0, sizeof(execbuf)); |
| 72 | |
| 73 | b = buf; |
| 74 | for (i = 0; i < 20; i++) { |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 75 | *b++ = XY_COLOR_BLT_CMD_NOLEN | |
| 76 | ((data->intel_gen >= 8) ? 5 : 4) | |
Rodrigo Vivi | d816435 | 2014-03-18 11:18:55 -0300 | [diff] [blame] | 77 | COLOR_BLT_WRITE_ALPHA | XY_COLOR_BLT_WRITE_RGB; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 78 | *b++ = 0xf0 << 16 | 1 << 25 | 1 << 24 | 4096; |
Rodrigo Vivi | d816435 | 2014-03-18 11:18:55 -0300 | [diff] [blame] | 79 | *b++ = 0; |
| 80 | *b++ = size >> 12 << 16 | 1024; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 81 | reloc[i].offset = (b - buf) * sizeof(uint32_t); |
| 82 | reloc[i].target_handle = handle; |
| 83 | reloc[i].read_domains = I915_GEM_DOMAIN_RENDER; |
| 84 | reloc[i].write_domain = I915_GEM_DOMAIN_RENDER; |
| 85 | *b++ = 0; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 86 | if (data->intel_gen >= 8) |
| 87 | *b++ = 0; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 88 | *b++ = canary; |
| 89 | } |
| 90 | *b++ = MI_BATCH_BUFFER_END; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 91 | if ((b - buf) & 1) |
| 92 | *b++ = 0; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 93 | |
| 94 | gem_exec[0].handle = handle; |
| 95 | gem_exec[0].flags = EXEC_OBJECT_NEEDS_FENCE; |
| 96 | |
| 97 | create.handle = 0; |
| 98 | create.size = 4096; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 99 | drmIoctl(data->fd, DRM_IOCTL_I915_GEM_CREATE, &create); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 100 | gem_exec[1].handle = create.handle; |
| 101 | gem_exec[1].relocation_count = 20; |
| 102 | gem_exec[1].relocs_ptr = (uintptr_t)reloc; |
| 103 | |
| 104 | execbuf.buffers_ptr = (uintptr_t)gem_exec; |
| 105 | execbuf.buffer_count = 2; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 106 | execbuf.batch_len = (b - buf) * sizeof(buf[0]); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 107 | execbuf.flags = 1 << 11; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 108 | if (HAS_BLT_RING(data->devid)) |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 109 | execbuf.flags |= I915_EXEC_BLT; |
| 110 | |
| 111 | gem_pwrite.handle = gem_exec[1].handle; |
| 112 | gem_pwrite.offset = 0; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 113 | gem_pwrite.size = execbuf.batch_len; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 114 | gem_pwrite.data_ptr = (uintptr_t)buf; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 115 | if (drmIoctl(data->fd, DRM_IOCTL_I915_GEM_PWRITE, &gem_pwrite) == 0) { |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 116 | while (loops--) |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 117 | drmIoctl(data->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 120 | drmIoctl(data->fd, DRM_IOCTL_GEM_CLOSE, &create.handle); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 123 | static void run(data_t *data, int child) |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 124 | { |
| 125 | const int size = 4096 * (256 + child * child); |
| 126 | const int tiling = child % 2; |
| 127 | const int write = child % 2; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 128 | uint32_t handle = gem_create(data->fd, size); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 129 | uint32_t *ptr; |
| 130 | uint32_t x; |
| 131 | |
| 132 | igt_assert(handle); |
| 133 | |
| 134 | if (tiling != I915_TILING_NONE) |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 135 | gem_set_tiling(data->fd, handle, tiling, 4096); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 136 | |
| 137 | /* load up the unfaulted bo */ |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 138 | busy(data, handle, size, 100); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 139 | |
| 140 | /* Note that we ignore the API and rely on the implict |
| 141 | * set-to-gtt-domain within the fault handler. |
| 142 | */ |
| 143 | if (write) { |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 144 | ptr = gem_mmap(data->fd, handle, size, PROT_READ | PROT_WRITE); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 145 | ptr[rand() % (size / 4)] = canary; |
| 146 | } else |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 147 | ptr = gem_mmap(data->fd, handle, size, PROT_READ); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 148 | x = ptr[rand() % (size / 4)]; |
| 149 | munmap(ptr, size); |
| 150 | |
| 151 | igt_assert(x == canary); |
Chris Wilson | 5e278c8 | 2014-01-15 10:40:40 +0000 | [diff] [blame] | 152 | exit(0); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Daniel Vetter | 8fa2066 | 2014-01-15 23:59:52 +0100 | [diff] [blame] | 155 | igt_simple_main |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 156 | { |
| 157 | struct timeval start, end; |
| 158 | pid_t children[64]; |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 159 | data_t data = {}; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 160 | int n; |
| 161 | |
Daniel Vetter | 58633cf | 2014-02-12 00:05:57 +0100 | [diff] [blame] | 162 | /* check for an intel gpu before goint nuts. */ |
| 163 | int fd = drm_open_any(); |
| 164 | close(fd); |
| 165 | |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 166 | igt_skip_on_simulation(); |
| 167 | |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 168 | data.fd = drm_open_any(); |
| 169 | data.devid = intel_get_drm_devid(data.fd); |
| 170 | data.intel_gen = intel_gen(data.devid); |
| 171 | |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 172 | gettimeofday(&start, NULL); |
| 173 | for (n = 0; n < ARRAY_SIZE(children); n++) { |
| 174 | switch ((children[n] = fork())) { |
| 175 | case -1: igt_assert(0); |
Rodrigo Vivi | cde058a | 2014-03-18 11:18:56 -0300 | [diff] [blame^] | 176 | case 0: run(&data, n); break; |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 177 | default: break; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | for (n = 0; n < ARRAY_SIZE(children); n++) { |
| 182 | int status = -1; |
| 183 | while (waitpid(children[n], &status, 0) == -1 && |
| 184 | errno == -EINTR) |
| 185 | ; |
| 186 | igt_assert(status == 0); |
| 187 | } |
| 188 | gettimeofday(&end, NULL); |
Chris Wilson | 84af2b9 | 2014-01-10 16:09:57 +0000 | [diff] [blame] | 189 | printf("Time to execute %lu children: %7.3fms\n", |
| 190 | ARRAY_SIZE(children), elapsed(&start, &end) / 1000); |
Chris Wilson | f62abaf | 2014-01-10 13:42:55 +0000 | [diff] [blame] | 191 | } |