From patchwork Tue May 30 11:15:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 13259766 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 02956C77B7A for ; Tue, 30 May 2023 11:15:56 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 26A2310E13C; Tue, 30 May 2023 11:15:56 +0000 (UTC) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by gabe.freedesktop.org (Postfix) with ESMTPS id F012410E13C for ; Tue, 30 May 2023 11:15:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685445355; x=1716981355; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=jcK4/tLtG7Gu51sFX9FtuiuZWKxFnnaX9isJUgrJKUw=; b=ODpIZ0YX2qj+/lNp02klP2b+xYWIlhVzW1a+e8kpR6z7y87RTWZY7VG2 lvDnWoCTtqqJPJNG3fG2JYJAsqXemnkNbebm3HMbwC4XTnRsLZ9EA52HZ y+S4gjDTi9/b3LIznHOq1PSEoyPgQtnKnxqvfOPRUkalrObWxs8ztHFs0 GRC4RAC4gCKutNFs8TAHqbDTbXhoLGF8kmBnMQ4kMp23QfOqJlqXr3KRk 8cSDoAr2fITpMehlsnTMC1XG8fyQoHD2Iez3+wuRtl/JUXOSRuyN+h0ja vIRb3x7ombQ13QFwjVhawr9Rq+q/IiGblWYE+mFw1Syo01qD0qCiCKh6R w==; X-IronPort-AV: E=McAfee;i="6600,9927,10725"; a="383140411" X-IronPort-AV: E=Sophos;i="6.00,204,1681196400"; d="scan'208";a="383140411" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 May 2023 04:15:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10725"; a="700583116" X-IronPort-AV: E=Sophos;i="6.00,204,1681196400"; d="scan'208";a="700583116" Received: from ashyti-mobl2.ger.corp.intel.com (HELO hazy.ger.corp.intel.com) ([10.252.52.205]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 May 2023 04:15:52 -0700 From: Luca Coelho To: intel-gfx@lists.freedesktop.org Date: Tue, 30 May 2023 14:15:31 +0300 Message-Id: <20230530111534.871403-1-luciano.coelho@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH v3 0/3] drm/i915: implement internal workqueues 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: rodrigo.vivi@intel.com Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Hi, This series implements internal workqueues in the i915 driver in order to avoid using the system queue. We add one generic workqueue in the drm_i915_private structure, one specific for wake references and one in a self-test. This is based on Tetsuo's work[1] and is required to get rid of the flush_scheduled_work() usage. As discussed, we can either take Tetsuo's implementation first, which uses a module-global workqueue, and then my series on top of that, to change the implementation to per-device workqueues, or apply my series directly. And a third option would be to keep the workqueue as module-global. I'm fine with any of this options. It's up to the maintainers to decide which one to take. In v2: * Removed per-engine workqueue and wakeref-specific queue; * Renamed the workqueue name from "i915-wq" to "unordered_wq"; * Added comment about when the new workqueue should be used; * Changed wakeref structs to store i915 instead of rpm; In v3: * Fixed queue to destroy in the init error path; * Improved the new queue's description a bit; * Removed stray empty-line removal; Please review. [1] https://patchwork.freedesktop.org/series/114608/ Cheers, Luca. Luca Coelho (3): drm/i915: use pointer to i915 instead of rpm in wakeref drm/i915: add a dedicated workqueue inside drm_i915_private drm/i915/selftests: add local workqueue for SW fence selftest drivers/gpu/drm/i915/display/intel_display.c | 5 ++-- .../drm/i915/display/intel_display_driver.c | 2 +- drivers/gpu/drm/i915/display/intel_dmc.c | 2 +- drivers/gpu/drm/i915/display/intel_dp.c | 2 +- .../drm/i915/display/intel_dp_link_training.c | 3 ++- drivers/gpu/drm/i915/display/intel_drrs.c | 4 +++- drivers/gpu/drm/i915/display/intel_fbc.c | 2 +- drivers/gpu/drm/i915/display/intel_fbdev.c | 3 ++- drivers/gpu/drm/i915/display/intel_hdcp.c | 23 +++++++++++-------- drivers/gpu/drm/i915/display/intel_hotplug.c | 18 ++++++++++----- drivers/gpu/drm/i915/display/intel_opregion.c | 3 ++- drivers/gpu/drm/i915/display/intel_pps.c | 4 +++- drivers/gpu/drm/i915/display/intel_psr.c | 8 ++++--- drivers/gpu/drm/i915/gt/intel_engine_pm.c | 4 +--- .../drm/i915/gt/intel_execlists_submission.c | 5 ++-- .../gpu/drm/i915/gt/intel_gt_buffer_pool.c | 10 ++++---- drivers/gpu/drm/i915/gt/intel_gt_irq.c | 2 +- drivers/gpu/drm/i915/gt/intel_gt_pm.c | 2 +- drivers/gpu/drm/i915/gt/intel_gt_requests.c | 10 ++++---- drivers/gpu/drm/i915/gt/intel_reset.c | 2 +- drivers/gpu/drm/i915/gt/intel_rps.c | 20 ++++++++-------- drivers/gpu/drm/i915/gt/selftest_engine_cs.c | 2 +- drivers/gpu/drm/i915/i915_driver.c | 13 +++++++++++ drivers/gpu/drm/i915/i915_drv.h | 10 ++++++++ drivers/gpu/drm/i915/i915_request.c | 2 +- drivers/gpu/drm/i915/intel_runtime_pm.c | 2 +- drivers/gpu/drm/i915/intel_wakeref.c | 22 ++++++++++-------- drivers/gpu/drm/i915/intel_wakeref.h | 12 +++++----- .../gpu/drm/i915/selftests/i915_sw_fence.c | 16 ++++++++++--- 29 files changed, 136 insertions(+), 77 deletions(-)