blob: 26bb359b3fef777ac20a892d359860c0b023a61c [file] [log] [blame]
Chris Wilson07d59b32011-01-20 22:10:10 +00001/*
2 * Copyright © 2011 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>
Chris Wilson07d59b32011-01-20 22:10:10 +000033#include <fcntl.h>
34#include <inttypes.h>
35#include <errno.h>
36#include <sys/stat.h>
37#include <sys/ioctl.h>
38#include <sys/mman.h>
39#include <sys/time.h>
40#include "drm.h"
41#include "i915_drm.h"
42#include "drmtest.h"
Daniel Vetterd9d95782012-12-04 17:13:05 +010043#include "intel_gpu_tools.h"
Chris Wilson07d59b32011-01-20 22:10:10 +000044
Zhong Libafbbf12013-04-23 15:06:45 +080045#define LOCAL_I915_EXEC_VEBOX (4<<0)
Daniel Vetter51f08302012-12-05 19:29:11 +010046
Chris Wilson07d59b32011-01-20 22:10:10 +000047static double elapsed(const struct timeval *start,
48 const struct timeval *end,
49 int loop)
50{
51 return (1e6*(end->tv_sec - start->tv_sec) + (end->tv_usec - start->tv_usec))/loop;
52}
53
Daniel Vetterd9d95782012-12-04 17:13:05 +010054static int exec(int fd, uint32_t handle, int loops, unsigned ring_id)
Chris Wilson07d59b32011-01-20 22:10:10 +000055{
56 struct drm_i915_gem_execbuffer2 execbuf;
Daniel Vettera7a80c22012-01-10 15:50:20 +010057 struct drm_i915_gem_exec_object2 gem_exec[1];
Chris Wilson2a292182011-12-14 17:41:34 +000058 int ret = 0;
Chris Wilson07d59b32011-01-20 22:10:10 +000059
Daniel Vettera7a80c22012-01-10 15:50:20 +010060 gem_exec[0].handle = handle;
61 gem_exec[0].relocation_count = 0;
62 gem_exec[0].relocs_ptr = 0;
63 gem_exec[0].alignment = 0;
64 gem_exec[0].offset = 0;
65 gem_exec[0].flags = 0;
66 gem_exec[0].rsvd1 = 0;
67 gem_exec[0].rsvd2 = 0;
Chris Wilson07d59b32011-01-20 22:10:10 +000068
Daniel Vettera7a80c22012-01-10 15:50:20 +010069 execbuf.buffers_ptr = (uintptr_t)gem_exec;
Chris Wilson07d59b32011-01-20 22:10:10 +000070 execbuf.buffer_count = 1;
71 execbuf.batch_start_offset = 0;
72 execbuf.batch_len = 8;
73 execbuf.cliprects_ptr = 0;
74 execbuf.num_cliprects = 0;
75 execbuf.DR1 = 0;
76 execbuf.DR4 = 0;
Daniel Vetterad591962012-12-05 04:16:38 +010077 execbuf.flags = ring_id;
Ben Widawsky5a28ef82012-03-18 18:42:44 -070078 i915_execbuffer2_set_context_id(execbuf, 0);
Chris Wilson07d59b32011-01-20 22:10:10 +000079 execbuf.rsvd2 = 0;
80
Chris Wilson2a292182011-12-14 17:41:34 +000081 while (loops-- && ret == 0) {
Chris Wilson07d59b32011-01-20 22:10:10 +000082 ret = drmIoctl(fd,
83 DRM_IOCTL_I915_GEM_EXECBUFFER2,
84 &execbuf);
85 }
86 gem_sync(fd, handle);
Chris Wilson2a292182011-12-14 17:41:34 +000087
88 return ret;
Chris Wilson07d59b32011-01-20 22:10:10 +000089}
90
Daniel Vetterd9d95782012-12-04 17:13:05 +010091static void loop(int fd, uint32_t handle, unsigned ring_id, const char *ring_name)
Chris Wilson07d59b32011-01-20 22:10:10 +000092{
Chris Wilson07d59b32011-01-20 22:10:10 +000093 int count;
Chris Wilson07d59b32011-01-20 22:10:10 +000094
Daniel Vetter8f5387e2013-08-13 13:20:58 +020095 gem_require_ring(fd, ring_id);
96
Damien Lespiaud1e86232013-03-25 20:06:20 +000097 for (count = 1; count <= SLOW_QUICK(1<<17, 1<<4); count <<= 1) {
Chris Wilson07d59b32011-01-20 22:10:10 +000098 struct timeval start, end;
99
100 gettimeofday(&start, NULL);
Daniel Vetterd9d95782012-12-04 17:13:05 +0100101 if (exec(fd, handle, count, ring_id))
Daniel Vetter5e25fcc2013-08-13 12:56:06 +0200102 igt_fail(1);
Chris Wilson07d59b32011-01-20 22:10:10 +0000103 gettimeofday(&end, NULL);
Daniel Vetterd9d95782012-12-04 17:13:05 +0100104 printf("Time to exec x %d: %7.3fµs (ring=%s)\n",
105 count, elapsed(&start, &end, count), ring_name);
Chris Wilson07d59b32011-01-20 22:10:10 +0000106 fflush(stdout);
107 }
Daniel Vetterd9d95782012-12-04 17:13:05 +0100108}
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200109
Daniel Vetterb3880d32013-08-14 18:02:46 +0200110uint32_t batch[2] = {MI_BATCH_BUFFER_END};
111uint32_t handle;
112int fd;
113
Daniel Vetterd9d95782012-12-04 17:13:05 +0100114int main(int argc, char **argv)
115{
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200116 igt_subtest_init(argc, argv);
Daniel Vetterad591962012-12-05 04:16:38 +0100117
Daniel Vetterb3880d32013-08-14 18:02:46 +0200118 igt_fixture {
119 fd = drm_open_any();
Daniel Vetterd9d95782012-12-04 17:13:05 +0100120
Daniel Vetterb3880d32013-08-14 18:02:46 +0200121 handle = gem_create(fd, 4096);
122 gem_write(fd, handle, 0, batch, sizeof(batch));
123 }
Daniel Vetterd9d95782012-12-04 17:13:05 +0100124
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200125 igt_subtest("render")
Daniel Vetterd9d95782012-12-04 17:13:05 +0100126 loop(fd, handle, I915_EXEC_RENDER, "render");
127
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200128 igt_subtest("bsd")
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200129 loop(fd, handle, I915_EXEC_BSD, "bsd");
Daniel Vetterd9d95782012-12-04 17:13:05 +0100130
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200131 igt_subtest("blt")
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200132 loop(fd, handle, I915_EXEC_BLT, "blt");
Daniel Vetterd9d95782012-12-04 17:13:05 +0100133
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200134 igt_subtest("vebox")
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200135 loop(fd, handle, LOCAL_I915_EXEC_VEBOX, "vebox");
Daniel Vetterd9d95782012-12-04 17:13:05 +0100136
Daniel Vetterb3880d32013-08-14 18:02:46 +0200137 igt_fixture {
138 gem_close(fd, handle);
Chris Wilson07d59b32011-01-20 22:10:10 +0000139
Daniel Vetterb3880d32013-08-14 18:02:46 +0200140 close(fd);
141 }
Chris Wilson07d59b32011-01-20 22:10:10 +0000142
Daniel Vetter68778772013-08-12 12:26:35 +0200143 igt_exit();
Chris Wilson07d59b32011-01-20 22:10:10 +0000144}