Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 1 | /* |
| 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 Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 32 | #include <fcntl.h> |
| 33 | #include <inttypes.h> |
| 34 | #include <errno.h> |
| 35 | #include <sys/stat.h> |
| 36 | #include <sys/ioctl.h> |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 37 | #include "drm.h" |
Daniel Vetter | e49ceb8 | 2014-03-22 21:07:37 +0100 | [diff] [blame] | 38 | #include "ioctl_wrappers.h" |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 39 | #include "drmtest.h" |
| 40 | |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 41 | /* |
| 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 Vetter | 7a6042e | 2012-01-10 18:29:30 +0100 | [diff] [blame] | 48 | static uint32_t do_gem_create(int fd, int size, int *retval) |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 49 | { |
| 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 Vetter | 8344095 | 2013-08-13 12:35:58 +0200 | [diff] [blame] | 56 | igt_assert(retval || ret == 0); |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 57 | if (retval) |
| 58 | *retval = errno; |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 59 | |
| 60 | return create.handle; |
| 61 | } |
| 62 | |
Ben Widawsky | 54ed938 | 2012-08-30 14:03:54 -0700 | [diff] [blame] | 63 | #if 0 |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 64 | static int gem_exec(int fd, struct drm_i915_gem_execbuffer2 *execbuf) |
| 65 | { |
| 66 | return drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf); |
| 67 | } |
Ben Widawsky | 54ed938 | 2012-08-30 14:03:54 -0700 | [diff] [blame] | 68 | #endif |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 69 | |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 70 | static void create0(int fd) |
| 71 | { |
| 72 | int retval = 0; |
| 73 | printf("trying to create a zero-length gem object\n"); |
Daniel Vetter | 7a6042e | 2012-01-10 18:29:30 +0100 | [diff] [blame] | 74 | do_gem_create(fd, 0, &retval); |
Daniel Vetter | 8344095 | 2013-08-13 12:35:58 +0200 | [diff] [blame] | 75 | igt_assert(retval == EINVAL); |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 76 | } |
| 77 | |
Ben Widawsky | 54ed938 | 2012-08-30 14:03:54 -0700 | [diff] [blame] | 78 | #if 0 |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 79 | static void exec0(int fd) |
| 80 | { |
| 81 | struct drm_i915_gem_execbuffer2 execbuf; |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 82 | struct drm_i915_gem_exec_object2 exec[1]; |
Daniel Vetter | bbe635f | 2011-09-13 20:57:04 +0200 | [diff] [blame] | 83 | uint32_t buf[2] = { MI_BATCH_BUFFER_END, 0 }; |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 84 | |
| 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 Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 89 | |
Daniel Vetter | 7a6042e | 2012-01-10 18:29:30 +0100 | [diff] [blame] | 90 | exec[0].handle = gem_create(fd, 4096); |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 91 | gem_write(fd, exec[0].handle, 0, buf, sizeof(buf)); |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 92 | 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 Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 100 | execbuf.buffers_ptr = (uintptr_t)exec; |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 101 | execbuf.buffer_count = 1; |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 102 | 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 Widawsky | 5a28ef8 | 2012-03-18 18:42:44 -0700 | [diff] [blame] | 109 | i915_execbuffer2_set_context_id(execbuf, 0); |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 110 | execbuf.rsvd2 = 0; |
| 111 | |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 112 | printf("trying to run an empty batchbuffer\n"); |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 113 | gem_exec(fd, &execbuf); |
| 114 | |
| 115 | gem_close(fd, exec[0].handle); |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 116 | } |
Ben Widawsky | 54ed938 | 2012-08-30 14:03:54 -0700 | [diff] [blame] | 117 | #endif |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 118 | |
Daniel Vetter | dda85fb | 2013-12-10 10:18:32 +0100 | [diff] [blame] | 119 | igt_simple_main |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 120 | { |
| 121 | int fd; |
| 122 | |
Daniel Vetter | 1caaf0a | 2013-08-12 12:17:35 +0200 | [diff] [blame] | 123 | igt_skip_on_simulation(); |
Damien Lespiau | 5fa15f7 | 2013-04-29 18:40:39 +0100 | [diff] [blame] | 124 | |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 125 | fd = drm_open_any(); |
| 126 | |
Daniel Vetter | d6ac159 | 2011-09-14 14:48:45 +0200 | [diff] [blame] | 127 | create0(fd); |
| 128 | |
Daniel Vetter | 899496b | 2011-10-30 23:20:12 +0100 | [diff] [blame] | 129 | //exec0(fd); |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 130 | |
| 131 | close(fd); |
Chris Wilson | 8908055 | 2011-06-23 14:04:35 +0100 | [diff] [blame] | 132 | } |