lib/igt_kms: Unify pipe name helpers
[platform/upstream/intel-gpu-tools.git] / tests / gem_reg_read.c
1 /*
2  * Copyright © 2012 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  *    Ben Widawsky <ben@bwidawsk.net>
25  *
26  */
27
28 #include <stdio.h>
29 #include <string.h>
30 #include <errno.h>
31
32 #include "ioctl_wrappers.h"
33 #include "drmtest.h"
34
35 struct local_drm_i915_reg_read {
36         __u64 offset;
37         __u64 val; /* Return value */
38 };
39
40 #define REG_READ_IOCTL DRM_IOWR(DRM_COMMAND_BASE + 0x31, struct local_drm_i915_reg_read)
41
42 static uint64_t timer_query(int fd)
43 {
44         struct local_drm_i915_reg_read reg_read;
45
46         reg_read.offset = 0x2358;
47         igt_fail_on_f(drmIoctl(fd, REG_READ_IOCTL, &reg_read),
48                       "positive test case failed: ");
49
50         return reg_read.val;
51 }
52
53 igt_simple_main
54 {
55         struct local_drm_i915_reg_read reg_read;
56         int fd, ret;
57
58         fd = drm_open_any();
59
60         reg_read.offset = 0x2358;
61         ret = drmIoctl(fd, REG_READ_IOCTL, &reg_read);
62         igt_assert(ret == 0 || errno == EINVAL);
63         igt_require(ret == 0);
64
65         reg_read.val = timer_query(fd);
66         sleep(1);
67         /* Check that timer is moving and isn't busted. */
68         igt_assert(timer_query(fd) != reg_read.val);
69
70         /* bad reg */
71         reg_read.offset = 0x12345678;
72         ret = drmIoctl(fd, REG_READ_IOCTL, &reg_read);
73
74         igt_assert(ret != 0 && errno == EINVAL);
75
76         close(fd);
77 }