blob: 868f010e721efe0e70c6ddf10114b2965855c507 [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>
Chris Wilson07d59b32011-01-20 22:10:10 +000038#include <sys/time.h>
39#include "drm.h"
40#include "i915_drm.h"
41#include "drmtest.h"
Daniel Vetterd9d95782012-12-04 17:13:05 +010042#include "intel_gpu_tools.h"
Chris Wilson07d59b32011-01-20 22:10:10 +000043
Zhong Libafbbf12013-04-23 15:06:45 +080044#define LOCAL_I915_EXEC_VEBOX (4<<0)
Daniel Vetter51f08302012-12-05 19:29:11 +010045
Chris Wilson07d59b32011-01-20 22:10:10 +000046static double elapsed(const struct timeval *start,
47 const struct timeval *end,
48 int loop)
49{
50 return (1e6*(end->tv_sec - start->tv_sec) + (end->tv_usec - start->tv_usec))/loop;
51}
52
Daniel Vetterd9d95782012-12-04 17:13:05 +010053static int exec(int fd, uint32_t handle, int loops, unsigned ring_id)
Chris Wilson07d59b32011-01-20 22:10:10 +000054{
55 struct drm_i915_gem_execbuffer2 execbuf;
Daniel Vettera7a80c22012-01-10 15:50:20 +010056 struct drm_i915_gem_exec_object2 gem_exec[1];
Chris Wilson2a292182011-12-14 17:41:34 +000057 int ret = 0;
Chris Wilson07d59b32011-01-20 22:10:10 +000058
Daniel Vettera7a80c22012-01-10 15:50:20 +010059 gem_exec[0].handle = handle;
60 gem_exec[0].relocation_count = 0;
61 gem_exec[0].relocs_ptr = 0;
62 gem_exec[0].alignment = 0;
63 gem_exec[0].offset = 0;
64 gem_exec[0].flags = 0;
65 gem_exec[0].rsvd1 = 0;
66 gem_exec[0].rsvd2 = 0;
Chris Wilson07d59b32011-01-20 22:10:10 +000067
Daniel Vettera7a80c22012-01-10 15:50:20 +010068 execbuf.buffers_ptr = (uintptr_t)gem_exec;
Chris Wilson07d59b32011-01-20 22:10:10 +000069 execbuf.buffer_count = 1;
70 execbuf.batch_start_offset = 0;
71 execbuf.batch_len = 8;
72 execbuf.cliprects_ptr = 0;
73 execbuf.num_cliprects = 0;
74 execbuf.DR1 = 0;
75 execbuf.DR4 = 0;
Daniel Vetterad591962012-12-05 04:16:38 +010076 execbuf.flags = ring_id;
Ben Widawsky5a28ef82012-03-18 18:42:44 -070077 i915_execbuffer2_set_context_id(execbuf, 0);
Chris Wilson07d59b32011-01-20 22:10:10 +000078 execbuf.rsvd2 = 0;
79
Chris Wilson2a292182011-12-14 17:41:34 +000080 while (loops-- && ret == 0) {
Chris Wilson07d59b32011-01-20 22:10:10 +000081 ret = drmIoctl(fd,
82 DRM_IOCTL_I915_GEM_EXECBUFFER2,
83 &execbuf);
84 }
85 gem_sync(fd, handle);
Chris Wilson2a292182011-12-14 17:41:34 +000086
87 return ret;
Chris Wilson07d59b32011-01-20 22:10:10 +000088}
89
Daniel Vetterd9d95782012-12-04 17:13:05 +010090static void loop(int fd, uint32_t handle, unsigned ring_id, const char *ring_name)
Chris Wilson07d59b32011-01-20 22:10:10 +000091{
Chris Wilson07d59b32011-01-20 22:10:10 +000092 int count;
Chris Wilson07d59b32011-01-20 22:10:10 +000093
Daniel Vetter8f5387e2013-08-13 13:20:58 +020094 gem_require_ring(fd, ring_id);
95
Damien Lespiaud1e86232013-03-25 20:06:20 +000096 for (count = 1; count <= SLOW_QUICK(1<<17, 1<<4); count <<= 1) {
Chris Wilson07d59b32011-01-20 22:10:10 +000097 struct timeval start, end;
98
99 gettimeofday(&start, NULL);
Daniel Vetterf3c54d02013-09-25 14:36:59 +0200100 igt_assert(exec(fd, handle, count, ring_id) == 0);
Chris Wilson07d59b32011-01-20 22:10:10 +0000101 gettimeofday(&end, NULL);
Daniel Vetterd9d95782012-12-04 17:13:05 +0100102 printf("Time to exec x %d: %7.3fµs (ring=%s)\n",
103 count, elapsed(&start, &end, count), ring_name);
Chris Wilson07d59b32011-01-20 22:10:10 +0000104 fflush(stdout);
105 }
Daniel Vetterd9d95782012-12-04 17:13:05 +0100106}
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200107
Daniel Vetterb3880d32013-08-14 18:02:46 +0200108uint32_t batch[2] = {MI_BATCH_BUFFER_END};
109uint32_t handle;
110int fd;
111
Daniel Vetter071e9ca2013-10-31 16:23:26 +0100112igt_main
Daniel Vetterd9d95782012-12-04 17:13:05 +0100113{
Daniel Vetterb3880d32013-08-14 18:02:46 +0200114 igt_fixture {
115 fd = drm_open_any();
Daniel Vetterd9d95782012-12-04 17:13:05 +0100116
Daniel Vetterb3880d32013-08-14 18:02:46 +0200117 handle = gem_create(fd, 4096);
118 gem_write(fd, handle, 0, batch, sizeof(batch));
119 }
Daniel Vetterd9d95782012-12-04 17:13:05 +0100120
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200121 igt_subtest("render")
Daniel Vetterd9d95782012-12-04 17:13:05 +0100122 loop(fd, handle, I915_EXEC_RENDER, "render");
123
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200124 igt_subtest("bsd")
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200125 loop(fd, handle, I915_EXEC_BSD, "bsd");
Daniel Vetterd9d95782012-12-04 17:13:05 +0100126
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200127 igt_subtest("blt")
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200128 loop(fd, handle, I915_EXEC_BLT, "blt");
Daniel Vetterd9d95782012-12-04 17:13:05 +0100129
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200130 igt_subtest("vebox")
Daniel Vetter8f5387e2013-08-13 13:20:58 +0200131 loop(fd, handle, LOCAL_I915_EXEC_VEBOX, "vebox");
Daniel Vetterd9d95782012-12-04 17:13:05 +0100132
Daniel Vetterb3880d32013-08-14 18:02:46 +0200133 igt_fixture {
134 gem_close(fd, handle);
Chris Wilson07d59b32011-01-20 22:10:10 +0000135
Daniel Vetterb3880d32013-08-14 18:02:46 +0200136 close(fd);
137 }
Chris Wilson07d59b32011-01-20 22:10:10 +0000138}