From patchwork Fri Dec 6 18:59:51 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maarten Lankhorst X-Patchwork-Id: 13897589 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 D722FE77173 for ; Fri, 6 Dec 2024 18:59:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 790F710F171; Fri, 6 Dec 2024 18:59:23 +0000 (UTC) Received: from mblankhorst.nl (lankhorst.se [141.105.120.124]) by gabe.freedesktop.org (Postfix) with ESMTPS id BD92710F171; Fri, 6 Dec 2024 18:59:22 +0000 (UTC) From: Maarten Lankhorst To: intel-xe@lists.freedesktop.org Cc: intel-gfx@lists.freedesktop.org, Maarten Lankhorst Subject: [PATCH 0/5] drm/xe/display: Rework display init for reducing flickering. Date: Fri, 6 Dec 2024 19:59:51 +0100 Message-ID: <20241206185956.3290-1-dev@lankhorst.se> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 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: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" I have rebased the previous series and took out the GuC parts. This makes it a lot easier to review missing parts, and not be dependent on GuC loading changes for merging. Maarten Lankhorst (5): drm/xe/display: Add intel_plane_initial_vblank_wait drm/xe: Remove double pageflip drm/xe: Move suballocator init to after display init drm/xe: Defer irq init until after xe_display_init_noaccel drm/xe/display: Use a single early init call for display drivers/gpu/drm/i915/display/intel_display.c | 6 +- .../drm/i915/display/intel_plane_initial.c | 7 +- .../drm/i915/display/intel_plane_initial.h | 2 + drivers/gpu/drm/xe/display/xe_display.c | 71 +++++-------------- drivers/gpu/drm/xe/display/xe_display.h | 8 +-- drivers/gpu/drm/xe/display/xe_plane_initial.c | 29 +++++--- drivers/gpu/drm/xe/xe_device.c | 28 +++----- drivers/gpu/drm/xe/xe_tile.c | 19 +++-- drivers/gpu/drm/xe/xe_tile.h | 1 + 9 files changed, 77 insertions(+), 94 deletions(-)