From patchwork Thu Jul 16 09:06:59 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Micha=C5=82_Winiarski?= X-Patchwork-Id: 6805451 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id B00B7C05AC for ; Thu, 16 Jul 2015 09:07:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B4B4A2073B for ; Thu, 16 Jul 2015 09:07:28 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id BD1A820739 for ; Thu, 16 Jul 2015 09:07:27 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1381B72017; Thu, 16 Jul 2015 02:07:27 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by gabe.freedesktop.org (Postfix) with ESMTP id 7FCB172017 for ; Thu, 16 Jul 2015 02:07:26 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 16 Jul 2015 02:07:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,487,1432623600"; d="scan'208";a="729933173" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by orsmga001.jf.intel.com with ESMTP; 16 Jul 2015 02:07:20 -0700 Received: from mwiniars-desk1.igk.intel.com (172.28.173.140) by IRSMSX101.ger.corp.intel.com (163.33.3.153) with Microsoft SMTP Server id 14.3.224.2; Thu, 16 Jul 2015 10:07:18 +0100 From: =?UTF-8?q?Micha=C5=82=20Winiarski?= To: Date: Thu, 16 Jul 2015 11:06:59 +0200 Message-ID: <1437037619-32743-1-git-send-email-michal.winiarski@intel.com> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1436966226-12845-1-git-send-email-chris@chris-wilson.co.uk> References: <1436966226-12845-1-git-send-email-chris@chris-wilson.co.uk> MIME-Version: 1.0 X-Originating-IP: [172.28.173.140] Subject: [Intel-gfx] [PATCH] tests/gem_reg_read: Extend and check for valid 36b counter X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-5.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP When reading the timestamp register with single 64b read, we're observing invalid values on x86_64: [f = valid counter value | X = garbage] i386: 0x0000000fffffffff x86_64: 0xffffffffXXXXXXXX Test checks if the counter is moving and increasing. Add a check to see if we can use (reg | 1) flag to get a proper 36b timestamp, shifting the value on x86_64 if we can't. Cc: Chris Wilson Signed-off-by: Micha? Winiarski --- tests/gem_reg_read.c | 123 ++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 103 insertions(+), 20 deletions(-) diff --git a/tests/gem_reg_read.c b/tests/gem_reg_read.c index d3e68d9..ba12fb1 100644 --- a/tests/gem_reg_read.c +++ b/tests/gem_reg_read.c @@ -28,10 +28,14 @@ #include #include #include +#include #include "ioctl_wrappers.h" #include "drmtest.h" +static bool is_x86_64; +static bool has_proper_timestamp; + struct local_drm_i915_reg_read { __u64 offset; __u64 val; /* Return value */ @@ -39,39 +43,118 @@ struct local_drm_i915_reg_read { #define REG_READ_IOCTL DRM_IOWR(DRM_COMMAND_BASE + 0x31, struct local_drm_i915_reg_read) -static uint64_t timer_query(int fd) +#define RENDER_RING_TIMESTAMP 0x2358 + +static int read_register(int fd, uint64_t offset, uint64_t * val) { + int ret; struct local_drm_i915_reg_read reg_read; + reg_read.offset = offset; - reg_read.offset = 0x2358; - igt_fail_on_f(drmIoctl(fd, REG_READ_IOCTL, ®_read), - "positive test case failed: "); + ret = drmIoctl(fd, REG_READ_IOCTL, ®_read); - return reg_read.val; + *val = reg_read.val; + + return ret; } -igt_simple_main +static bool check_kernel_x86_64(void) { - struct local_drm_i915_reg_read reg_read; - int fd, ret; + int ret; + struct utsname uts; - fd = drm_open_any(); + ret = uname(&uts); + igt_assert(ret == 0); - reg_read.offset = 0x2358; - ret = drmIoctl(fd, REG_READ_IOCTL, ®_read); - igt_assert(ret == 0 || errno == EINVAL); - igt_require(ret == 0); + if (!strcmp(uts.machine, "x86_64")) + return true; + + return false; +} + +static bool check_timestamp(int fd) +{ + int ret; + uint64_t val; + + ret = read_register(fd, RENDER_RING_TIMESTAMP | 1, &val); + if (ret != 0 && errno == EINVAL) + return false; + + return true; +} + +static uint64_t timer_query(int fd, uint64_t * val) +{ + uint64_t offset; + int ret; + + offset = RENDER_RING_TIMESTAMP; + if (has_proper_timestamp) + offset |= 1; + + ret = read_register(fd, offset, val); + + if (is_x86_64 && !has_proper_timestamp) + *val >>= 32; - reg_read.val = timer_query(fd); + return ret; +} + +static void test_timestamp_moving(int fd) +{ + uint64_t first_val, second_val; + + igt_fail_on(timer_query(fd, &first_val) != 0); sleep(1); - /* Check that timer is moving and isn't busted. */ - igt_assert(timer_query(fd) != reg_read.val); + igt_fail_on(timer_query(fd, &second_val) != 0); + igt_assert(second_val != first_val); +} - /* bad reg */ - reg_read.offset = 0x12345678; - ret = drmIoctl(fd, REG_READ_IOCTL, ®_read); +static void test_timestamp_monotonic(int fd) +{ + uint64_t first_val, second_val; + bool retry = true; - igt_assert(ret != 0 && errno == EINVAL); + igt_fail_on(timer_query(fd, &first_val) != 0); +retry: + sleep(1); + igt_fail_on(timer_query(fd, &second_val) != 0); + if (second_val <= first_val && retry) { + retry = false; + first_val = second_val; + goto retry; + } + + igt_assert(second_val > first_val); +} + +igt_main +{ + uint64_t val = 0; + int fd = -1; + + fd = drm_open_any(); + is_x86_64 = check_kernel_x86_64(); + has_proper_timestamp = check_timestamp(fd); close(fd); + + igt_fixture { + fd = drm_open_any(); + } + + igt_subtest("bad-register") + igt_assert(read_register(fd, 0x12345678, &val) == -1 && + errno == EINVAL); + + igt_subtest("timestamp-moving") + test_timestamp_moving(fd); + + igt_subtest("timestamp-monotonic") + test_timestamp_monotonic(fd); + + igt_fixture { + close(fd); + } }