From mboxrd@z Thu Jan 1 00:00:00 1970 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 6C413C6FD19 for ; Mon, 13 Mar 2023 20:46:01 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4299810E62C; Mon, 13 Mar 2023 20:46:01 +0000 (UTC) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 76B1410E62C for ; Mon, 13 Mar 2023 20:45:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678740358; x=1710276358; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=JFLq7QfLz6lQzc42XmBmwB1bZ7wdh7f998CaN4pLcZc=; b=aWM5JnpBtUwJ70kNiCpklA8m+rviVqz+b19AAkNHOaM/3CoAPNwsFC6u vn6I7m3adj75YYBHBqNh2QNRmhj/R6rJb40ZkpvWsHbrEpM4XJhmfBKsz q7QsCbgMz/z5OZdkIsr2b2DRqlITz8vJvu95uEyL99KpuvXilIDF9RApo 4qLiBGXZHV/M4RHQDILZE4+vsvPW4iPRE/VbZwbCJkhoI6BFisrJFq4MI x7RsYkaxUOxNA8qiT8KZO1tUgYxB47f3g+90ly79KmXGDkC4FpuAmoIs7 tzhc9N7lxkCmWkGr0YFvplpKJMjzHn7Bsrp6OYINV6NkwlPwzsf6uYxQt w==; X-IronPort-AV: E=McAfee;i="6500,9779,10648"; a="334733889" X-IronPort-AV: E=Sophos;i="5.98,257,1673942400"; d="scan'208";a="334733889" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Mar 2023 13:45:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10648"; a="924650119" X-IronPort-AV: E=Sophos;i="5.98,257,1673942400"; d="scan'208";a="924650119" Received: from lapeders-mobl1.ger.corp.intel.com (HELO thellstr-mobl1.intel.com) ([10.249.254.190]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Mar 2023 13:45:57 -0700 From: =?UTF-8?q?Thomas=20Hellstr=C3=B6m?= To: intel-xe@lists.freedesktop.org Date: Mon, 13 Mar 2023 21:45:14 +0100 Message-Id: <20230313204519.158888-2-thomas.hellstrom@linux.intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230313204519.158888-1-thomas.hellstrom@linux.intel.com> References: <20230313204519.158888-1-thomas.hellstrom@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Intel-xe] [PATCH 1/6] drm/xe: Use a define to set initial seqno for fences X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" Also for HW fences, write the initial seqno - 1 to the HW completed seqno to initialize. Signed-off-by: Thomas Hellström --- drivers/gpu/drm/xe/xe_engine.c | 5 +++-- drivers/gpu/drm/xe/xe_hw_fence.c | 5 ++--- drivers/gpu/drm/xe/xe_hw_fence.h | 2 ++ drivers/gpu/drm/xe/xe_lrc.c | 3 +++ 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_engine.c b/drivers/gpu/drm/xe/xe_engine.c index 3b6f8a25112a..7e6367a84f1f 100644 --- a/drivers/gpu/drm/xe/xe_engine.c +++ b/drivers/gpu/drm/xe/xe_engine.c @@ -13,6 +13,7 @@ #include "xe_device.h" #include "xe_gt.h" +#include "xe_hw_fence.h" #include "xe_lrc.h" #include "xe_macros.h" #include "xe_migrate.h" @@ -57,11 +58,11 @@ static struct xe_engine *__xe_engine_create(struct xe_device *xe, if (xe_engine_is_parallel(e)) { e->parallel.composite_fence_ctx = dma_fence_context_alloc(1); - e->parallel.composite_fence_seqno = 1; + e->parallel.composite_fence_seqno = XE_FENCE_INITIAL_SEQNO; } if (e->flags & ENGINE_FLAG_VM) { e->bind.fence_ctx = dma_fence_context_alloc(1); - e->bind.fence_seqno = 1; + e->bind.fence_seqno = XE_FENCE_INITIAL_SEQNO; } for (i = 0; i < width; ++i) { diff --git a/drivers/gpu/drm/xe/xe_hw_fence.c b/drivers/gpu/drm/xe/xe_hw_fence.c index e56ca2867545..ca8304650713 100644 --- a/drivers/gpu/drm/xe/xe_hw_fence.c +++ b/drivers/gpu/drm/xe/xe_hw_fence.c @@ -129,7 +129,7 @@ void xe_hw_fence_ctx_init(struct xe_hw_fence_ctx *ctx, struct xe_gt *gt, ctx->gt = gt; ctx->irq = irq; ctx->dma_fence_ctx = dma_fence_context_alloc(1); - ctx->next_seqno = 1; + ctx->next_seqno = XE_FENCE_INITIAL_SEQNO; sprintf(ctx->name, "%s", name); } @@ -164,8 +164,7 @@ static bool xe_hw_fence_signaled(struct dma_fence *dma_fence) struct xe_device *xe = gt_to_xe(fence->ctx->gt); u32 seqno = xe_map_rd(xe, &fence->seqno_map, 0, u32); - return dma_fence->error || - (s32)fence->dma.seqno <= (s32)seqno; + return dma_fence->error || (s32)(u32)fence->dma.seqno <= (s32)seqno; } static bool xe_hw_fence_enable_signaling(struct dma_fence *dma_fence) diff --git a/drivers/gpu/drm/xe/xe_hw_fence.h b/drivers/gpu/drm/xe/xe_hw_fence.h index 07f202db6526..523c2611ef5d 100644 --- a/drivers/gpu/drm/xe/xe_hw_fence.h +++ b/drivers/gpu/drm/xe/xe_hw_fence.h @@ -8,6 +8,8 @@ #include "xe_hw_fence_types.h" +#define XE_FENCE_INITIAL_SEQNO 1 + int xe_hw_fence_module_init(void); void xe_hw_fence_module_exit(void); diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c index 9140b057a5ba..fb8c6f7d6528 100644 --- a/drivers/gpu/drm/xe/xe_lrc.c +++ b/drivers/gpu/drm/xe/xe_lrc.c @@ -697,6 +697,9 @@ int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe, arb_enable = MI_ARB_ON_OFF | MI_ARB_ENABLE; xe_lrc_write_ring(lrc, &arb_enable, sizeof(arb_enable)); + map = __xe_lrc_seqno_map(lrc); + xe_map_write32(lrc_to_xe(lrc), &map, lrc->fence_ctx.next_seqno - 1); + return 0; err_lrc_finish: -- 2.39.2