blob: d24005ba33f36cb6a39456f867039719dfb59080 [file] [log] [blame]
Eric Anholt22877862008-04-23 14:52:30 -07001/*
2 * Copyright © 2008 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 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include <stdlib.h>
29#include <stdio.h>
30#include <string.h>
31#include <assert.h>
32#include <fcntl.h>
33#include <inttypes.h>
34#include <errno.h>
35#include <sys/stat.h>
Eric Anholt3148c162008-04-29 13:45:43 -070036#include "drm.h"
Eric Anholt26550052008-06-11 14:42:40 -070037#include "i915_drm.h"
Eric Anholt22877862008-04-23 14:52:30 -070038
Eric Anholt3148c162008-04-29 13:45:43 -070039#define OBJECT_SIZE 16384
Eric Anholt22877862008-04-23 14:52:30 -070040
41int do_read(int fd, int handle, void *buf, int offset, int size)
42{
Eric Anholt26550052008-06-11 14:42:40 -070043 struct drm_i915_gem_pread read;
Eric Anholt22877862008-04-23 14:52:30 -070044
45 /* Ensure that we don't have any convenient data in buf in case
46 * we fail.
47 */
48 memset(buf, 0xd0, size);
49
50 memset(&read, 0, sizeof(read));
51 read.handle = handle;
Eric Anholteffc6d92008-05-07 16:00:58 -070052 read.data_ptr = (uintptr_t)buf;
Eric Anholt22877862008-04-23 14:52:30 -070053 read.size = size;
54 read.offset = offset;
55
Eric Anholt26550052008-06-11 14:42:40 -070056 return ioctl(fd, DRM_IOCTL_I915_GEM_PREAD, &read);
Eric Anholt22877862008-04-23 14:52:30 -070057}
58
59int do_write(int fd, int handle, void *buf, int offset, int size)
60{
Eric Anholt26550052008-06-11 14:42:40 -070061 struct drm_i915_gem_pwrite write;
Eric Anholt22877862008-04-23 14:52:30 -070062
63 memset(&write, 0, sizeof(write));
64 write.handle = handle;
Eric Anholteffc6d92008-05-07 16:00:58 -070065 write.data_ptr = (uintptr_t)buf;
Eric Anholt22877862008-04-23 14:52:30 -070066 write.size = size;
67 write.offset = offset;
68
Eric Anholt26550052008-06-11 14:42:40 -070069 return ioctl(fd, DRM_IOCTL_I915_GEM_PWRITE, &write);
Eric Anholt22877862008-04-23 14:52:30 -070070}
71
72int main(int argc, char **argv)
73{
74 int fd;
Eric Anholt26550052008-06-11 14:42:40 -070075 struct drm_i915_gem_create create;
76 struct drm_i915_gem_mmap mmap;
Eric Anholt6e46a3c2008-05-12 15:42:20 -070077 struct drm_gem_close unref;
Eric Anholt3148c162008-04-29 13:45:43 -070078 uint8_t expected[OBJECT_SIZE];
79 uint8_t buf[OBJECT_SIZE];
Eric Anholteffc6d92008-05-07 16:00:58 -070080 uint8_t *addr;
Eric Anholt22877862008-04-23 14:52:30 -070081 int ret;
82 int handle;
83
Kristian Høgsberge9d61162009-04-06 17:13:01 -040084 fd = drm_open_matching("8086:*", 0);
85 if (fd < 0) {
86 fprintf(stderr, "failed to open intel drm device, skipping\n");
87 return 0;
88 }
Eric Anholt22877862008-04-23 14:52:30 -070089
90 memset(&mmap, 0, sizeof(mmap));
91 mmap.handle = 0x10101010;
92 mmap.offset = 0;
93 mmap.size = 4096;
94 printf("Testing mmaping of bad object.\n");
Eric Anholt26550052008-06-11 14:42:40 -070095 ret = ioctl(fd, DRM_IOCTL_I915_GEM_MMAP, &mmap);
Eric Anholt1bdf35f2008-07-28 11:24:00 -070096 assert(ret == -1 && errno == EBADF);
Eric Anholt22877862008-04-23 14:52:30 -070097
Eric Anholt6e46a3c2008-05-12 15:42:20 -070098 memset(&create, 0, sizeof(create));
99 create.size = OBJECT_SIZE;
Eric Anholt26550052008-06-11 14:42:40 -0700100 ret = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE, &create);
Eric Anholt22877862008-04-23 14:52:30 -0700101 assert(ret == 0);
Eric Anholt6e46a3c2008-05-12 15:42:20 -0700102 handle = create.handle;
Eric Anholt22877862008-04-23 14:52:30 -0700103
Eric Anholt6e46a3c2008-05-12 15:42:20 -0700104 printf("Testing mmaping of newly created object.\n");
Eric Anholt22877862008-04-23 14:52:30 -0700105 mmap.handle = handle;
106 mmap.offset = 0;
Eric Anholt3148c162008-04-29 13:45:43 -0700107 mmap.size = OBJECT_SIZE;
Eric Anholt26550052008-06-11 14:42:40 -0700108 ret = ioctl(fd, DRM_IOCTL_I915_GEM_MMAP, &mmap);
Eric Anholt22877862008-04-23 14:52:30 -0700109 assert(ret == 0);
Eric Anholteffc6d92008-05-07 16:00:58 -0700110 addr = (uint8_t *)(uintptr_t)mmap.addr_ptr;
Eric Anholt22877862008-04-23 14:52:30 -0700111
Eric Anholt6e46a3c2008-05-12 15:42:20 -0700112 printf("Testing contents of newly created object.\n");
Eric Anholt22877862008-04-23 14:52:30 -0700113 memset(expected, 0, sizeof(expected));
Eric Anholteffc6d92008-05-07 16:00:58 -0700114 assert(memcmp(addr, expected, sizeof(expected)) == 0);
Eric Anholt22877862008-04-23 14:52:30 -0700115
116 printf("Testing coherency of writes and mmap reads.\n");
117 memset(buf, 0, sizeof(buf));
118 memset(buf + 1024, 0x01, 1024);
119 memset(expected + 1024, 0x01, 1024);
Eric Anholt3148c162008-04-29 13:45:43 -0700120 ret = do_write(fd, handle, buf, 0, OBJECT_SIZE);
Eric Anholt22877862008-04-23 14:52:30 -0700121 assert(ret == 0);
Eric Anholteffc6d92008-05-07 16:00:58 -0700122 assert(memcmp(buf, addr, sizeof(buf)) == 0);
Eric Anholt22877862008-04-23 14:52:30 -0700123
Eric Anholt6e46a3c2008-05-12 15:42:20 -0700124 printf("Testing that mapping stays after close\n");
Eric Anholt22877862008-04-23 14:52:30 -0700125 unref.handle = handle;
Eric Anholt6e46a3c2008-05-12 15:42:20 -0700126 ret = ioctl(fd, DRM_IOCTL_GEM_CLOSE, &unref);
Eric Anholt22877862008-04-23 14:52:30 -0700127 assert(ret == 0);
Eric Anholteffc6d92008-05-07 16:00:58 -0700128 assert(memcmp(buf, addr, sizeof(buf)) == 0);
Eric Anholt22877862008-04-23 14:52:30 -0700129
130 printf("Testing unmapping\n");
Eric Anholteffc6d92008-05-07 16:00:58 -0700131 munmap(addr, OBJECT_SIZE);
Eric Anholt22877862008-04-23 14:52:30 -0700132
133 close(fd);
134
135 return 0;
136}