blob: 4b93cdeb1031ac0adbd1d406b8a52b0c733e3622 [file] [log] [blame]
Chris Wilson89080552011-06-23 14:04:35 +01001/*
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 <stdio.h>
31#include <string.h>
Chris Wilson89080552011-06-23 14:04:35 +010032#include <fcntl.h>
33#include <inttypes.h>
34#include <errno.h>
35#include <sys/stat.h>
36#include <sys/ioctl.h>
Chris Wilson89080552011-06-23 14:04:35 +010037#include "drm.h"
Daniel Vettere49ceb82014-03-22 21:07:37 +010038#include "ioctl_wrappers.h"
Chris Wilson89080552011-06-23 14:04:35 +010039#include "drmtest.h"
40
Daniel Vetterd6ac1592011-09-14 14:48:45 +020041/*
42 * Testcase: Minmal bo_create and batchbuffer exec
43 *
44 * Originally this caught an kernel oops due to the unchecked assumption that
45 * objects have size > 0.
46 */
47
Daniel Vetter7a6042e2012-01-10 18:29:30 +010048static uint32_t do_gem_create(int fd, int size, int *retval)
Chris Wilson89080552011-06-23 14:04:35 +010049{
50 struct drm_i915_gem_create create;
51 int ret;
52
53 create.handle = 0;
54 create.size = (size + 4095) & -4096;
55 ret = drmIoctl(fd, DRM_IOCTL_I915_GEM_CREATE, &create);
Daniel Vetter83440952013-08-13 12:35:58 +020056 igt_assert(retval || ret == 0);
Daniel Vetterd6ac1592011-09-14 14:48:45 +020057 if (retval)
58 *retval = errno;
Chris Wilson89080552011-06-23 14:04:35 +010059
60 return create.handle;
61}
62
Ben Widawsky54ed9382012-08-30 14:03:54 -070063#if 0
Chris Wilson89080552011-06-23 14:04:35 +010064static int gem_exec(int fd, struct drm_i915_gem_execbuffer2 *execbuf)
65{
66 return drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf);
67}
Ben Widawsky54ed9382012-08-30 14:03:54 -070068#endif
Chris Wilson89080552011-06-23 14:04:35 +010069
Daniel Vetterd6ac1592011-09-14 14:48:45 +020070static void create0(int fd)
71{
72 int retval = 0;
73 printf("trying to create a zero-length gem object\n");
Daniel Vetter7a6042e2012-01-10 18:29:30 +010074 do_gem_create(fd, 0, &retval);
Daniel Vetter83440952013-08-13 12:35:58 +020075 igt_assert(retval == EINVAL);
Daniel Vetterd6ac1592011-09-14 14:48:45 +020076}
77
Ben Widawsky54ed9382012-08-30 14:03:54 -070078#if 0
Chris Wilson89080552011-06-23 14:04:35 +010079static void exec0(int fd)
80{
81 struct drm_i915_gem_execbuffer2 execbuf;
Daniel Vetterd6ac1592011-09-14 14:48:45 +020082 struct drm_i915_gem_exec_object2 exec[1];
Daniel Vetterbbe635f2011-09-13 20:57:04 +020083 uint32_t buf[2] = { MI_BATCH_BUFFER_END, 0 };
Chris Wilson89080552011-06-23 14:04:35 +010084
85 /* Just try executing with a zero-length bo.
86 * We expect the kernel to either accept the nop batch, or reject it
87 * for the zero-length buffer, but never crash.
88 */
Daniel Vetterd6ac1592011-09-14 14:48:45 +020089
Daniel Vetter7a6042e2012-01-10 18:29:30 +010090 exec[0].handle = gem_create(fd, 4096);
Daniel Vetterd6ac1592011-09-14 14:48:45 +020091 gem_write(fd, exec[0].handle, 0, buf, sizeof(buf));
Chris Wilson89080552011-06-23 14:04:35 +010092 exec[0].relocation_count = 0;
93 exec[0].relocs_ptr = 0;
94 exec[0].alignment = 0;
95 exec[0].offset = 0;
96 exec[0].flags = 0;
97 exec[0].rsvd1 = 0;
98 exec[0].rsvd2 = 0;
99
Chris Wilson89080552011-06-23 14:04:35 +0100100 execbuf.buffers_ptr = (uintptr_t)exec;
Daniel Vetterd6ac1592011-09-14 14:48:45 +0200101 execbuf.buffer_count = 1;
Chris Wilson89080552011-06-23 14:04:35 +0100102 execbuf.batch_start_offset = 0;
103 execbuf.batch_len = sizeof(buf);
104 execbuf.cliprects_ptr = 0;
105 execbuf.num_cliprects = 0;
106 execbuf.DR1 = 0;
107 execbuf.DR4 = 0;
108 execbuf.flags = 0;
Ben Widawsky5a28ef82012-03-18 18:42:44 -0700109 i915_execbuffer2_set_context_id(execbuf, 0);
Chris Wilson89080552011-06-23 14:04:35 +0100110 execbuf.rsvd2 = 0;
111
Daniel Vetterd6ac1592011-09-14 14:48:45 +0200112 printf("trying to run an empty batchbuffer\n");
Chris Wilson89080552011-06-23 14:04:35 +0100113 gem_exec(fd, &execbuf);
114
115 gem_close(fd, exec[0].handle);
Chris Wilson89080552011-06-23 14:04:35 +0100116}
Ben Widawsky54ed9382012-08-30 14:03:54 -0700117#endif
Chris Wilson89080552011-06-23 14:04:35 +0100118
Daniel Vetterdda85fb2013-12-10 10:18:32 +0100119igt_simple_main
Chris Wilson89080552011-06-23 14:04:35 +0100120{
121 int fd;
122
Daniel Vetter1caaf0a2013-08-12 12:17:35 +0200123 igt_skip_on_simulation();
Damien Lespiau5fa15f72013-04-29 18:40:39 +0100124
Chris Wilson89080552011-06-23 14:04:35 +0100125 fd = drm_open_any();
126
Daniel Vetterd6ac1592011-09-14 14:48:45 +0200127 create0(fd);
128
Daniel Vetter899496b2011-10-30 23:20:12 +0100129 //exec0(fd);
Chris Wilson89080552011-06-23 14:04:35 +0100130
131 close(fd);
Chris Wilson89080552011-06-23 14:04:35 +0100132}