From patchwork Fri Jun 10 06:24:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Murthy, Arun R" X-Patchwork-Id: 12876478 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2E656C433EF for ; Fri, 10 Jun 2022 06:24:43 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5761212AE24; Fri, 10 Jun 2022 06:24:42 +0000 (UTC) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id 5A66112B1E3; Fri, 10 Jun 2022 06:24:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654842281; x=1686378281; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=N/f9lpzuGh/9e6I2enKBchjE0kzxbTSq4ZlmqmmqOjA=; b=k2vufEdkeC43cgO4orIl4l3wMNEy61+VXkvh4MXT3aZfYzeU1cxYd5SC e/+csYFFPVELmXMqvto90SLUNnlK9SK5SLE9+jsi78vE9jsKDBWYFA5s5 a+828RSVIp+bH0+Zauqo2ev1z+9ulqKIPo11jVRFRholvN4/VE8hfZRNS m0nFtTxuiuiNka0CH9ac+lvXfYfN3lxEjSlGPSgwpcHZNZyi5QUP/FhX8 wyakinoK8jUl5RttjbeiOSIOIJM5R710lIumjgnDzVr+9CBwzQtp6O+ft N7r5ZdDkZ+IIqoHxhl7lP8D1W0X7qrrjtIdI4uC3Oqkam27NhHgPQANya w==; X-IronPort-AV: E=McAfee;i="6400,9594,10373"; a="257362300" X-IronPort-AV: E=Sophos;i="5.91,288,1647327600"; d="scan'208";a="257362300" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jun 2022 23:24:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,288,1647327600"; d="scan'208";a="610585728" Received: from srr4-3-linux-106-armuthy.iind.intel.com ([10.190.238.56]) by orsmga008.jf.intel.com with ESMTP; 09 Jun 2022 23:24:39 -0700 From: Arun R Murthy To: igt-dev@lists.freedesktop.org Date: Fri, 10 Jun 2022 11:54:15 +0530 Message-Id: <20220610062415.3935258-1-arun.r.murthy@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220608065637.3840610-1-arun.r.murthy@intel.com> References: <20220608065637.3840610-1-arun.r.murthy@intel.com> MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH i-g-t] tests/kms_async_flips: first async flip discarded on i915 X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: intel-gfx@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" The i915 KMD will use the first async flip to update the watermarks as per the watermark optimization in DISPLAY13. Hence the actual async flip will happen from the subsequent flips. For alternate sync async test, a dummy async flip has to be done to allow the KMD to perform the watermark related updates before writing to the surface base address. Signed-off-by: Arun R Murthy --- tests/kms_async_flips.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 1701883b..67150e50 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -189,19 +189,18 @@ static void test_async_flip(data_t *data, bool alternate_sync_async) * In older platforms (<= Gen10), async address update bit is double buffered. * So flip timestamp can be verified only from the second flip. * The first async flip just enables the async address update. + * In platforms greater than DISPLAY13 thr first async flip will be discarded + * in order to change the watermark levels as per the optimization. Hence the + * subsequent async flips will actually do the asynchronous flips. */ if (is_i915_device(data->drm_fd)) { - uint32_t devid = intel_get_drm_devid(data->drm_fd); + ret = drmModePageFlip(data->drm_fd, data->crtc_id, + data->bufs[frame % 4].fb_id, + flags, data); - if (IS_GEN9(devid) || IS_GEN10(devid)) { - ret = drmModePageFlip(data->drm_fd, data->crtc_id, - data->bufs[frame % 4].fb_id, - flags, data); + igt_assert(ret == 0); - igt_assert(ret == 0); - - wait_flip_event(data); - } + wait_flip_event(data); } }