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 4CCE5C83F14 for ; Wed, 9 Jul 2025 20:31:21 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1C62B10E855; Wed, 9 Jul 2025 20:31:20 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=tuxedocomputers.com header.i=@tuxedocomputers.com header.b="mB291evo"; dkim-atps=neutral X-Greylist: delayed 319 seconds by postgrey-1.36 at gabe; Wed, 09 Jul 2025 13:37:57 UTC Received: from mail.tuxedocomputers.com (mail.tuxedocomputers.com [157.90.84.7]) by gabe.freedesktop.org (Postfix) with ESMTPS id 73B0B10E7E9; Wed, 9 Jul 2025 13:37:57 +0000 (UTC) Received: from [10.10.2.54] (business-24-134-105-141.pool2.vodafone-ip.de [24.134.105.141]) (Authenticated sender: t.guttzeit@tuxedocomputers.com) by mail.tuxedocomputers.com (Postfix) with ESMTPSA id 8D8A32FC004A; Wed, 9 Jul 2025 15:32:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tuxedocomputers.com; s=default; t=1752067956; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yqQNZscvBRCRP9/rke29cXpIBFD8z8lxDJ2+7V1iRvs=; b=mB291evoKMb3du4KpEXEtYCTV6shwXKhbZGHLuE4oWGksu2dnsZSN0TpcrxLiXHIs9AOE2 aENj5cj5teeQx4J7/lqiaVBjt6QnTjqzoBaaAcXDIG1PTKU+vA6qsJeoeKGUeTBr1cLHLS GpqXf7xX2PFfRWZzsvk9NELdikd3qlY= Authentication-Results: mail.tuxedocomputers.com; auth=pass smtp.auth=t.guttzeit@tuxedocomputers.com smtp.mailfrom=t.guttzeit@tuxedocomputers.com Message-ID: <881d51a5-bed3-430e-a3cd-aca5f17e16bf@tuxedocomputers.com> Date: Wed, 9 Jul 2025 15:32:35 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [RFC PATCH 0/1] drm/i915/display: Avoid unsupported 300Hz output mode on a TUXEDO device To: Werner Sembach , Rodrigo Vivi Cc: Jani Nikula , Joonas Lahtinen , Tvrtko Ursulin , David Airlie , Simona Vetter , intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org References: <20250704192007.526044-1-wse@tuxedocomputers.com> <513aa035-8a00-4943-abc1-d68824a5c0c6@tuxedocomputers.com> Content-Language: en-US From: Tim Guttzeit Organization: TUXEDO Computers In-Reply-To: <513aa035-8a00-4943-abc1-d68824a5c0c6@tuxedocomputers.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Wed, 09 Jul 2025 20:31:18 +0000 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi all, > Tim can you follow up with this? Reducing the communication chain to avoid dropping information. Yes, here is the Ticket: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14616 Best regards, Tim Guttzeit Am 09.07.25 um 13:49 schrieb Werner Sembach: > Hi all, > > Am 08.07.25 um 23:05 schrieb Rodrigo Vivi: >> On Fri, Jul 04, 2025 at 09:03:45PM +0200, Werner Sembach wrote: >>> RFC because I'm not sure if this is the right approach. >> Could you please file a gitlab issue for us so we can get someone >> from our >> display team to take a look and see if there's anything else that >> could be done >> before we take the quirk route? >> >> https://drm.pages.freedesktop.org/intel-docs/how-to-file-i915-bugs.html > > Tim can you follow up with this? Reducing the communication chain to > avoid dropping information. > > Best regards, > > Werner Sembach > >> >> Thanks for the investigation and the quirk, >> Rodrigo. >> >>> The flicker manifests ever few seconds 1-3 black frames in quick >>> succession. >>> >>> On windows 300Hz can not be selected for the iGPU, but the panel >>> advertises >>> it. >>> >>> A cleaner solution would probably to go over the pixel clock, but >>> for this >>> device there is only one 300Hz mode in the panels edid and that is >>> at the >>> nativ resolution. Chroma subsampling was not tested as linux afaik >>> offers >>> no way to easily enforce it for intel gpus. >>> >>> Tim Guttzeit (1): >>>    drm/i915/display: Avoid unsupported output mode with 300Hz on TUXEDO >>>      device >>> >>>   drivers/gpu/drm/i915/display/intel_dp.c     |  5 ++++ >>>   drivers/gpu/drm/i915/display/intel_quirks.c | 30 >>> +++++++++++++++++++++ >>>   drivers/gpu/drm/i915/display/intel_quirks.h |  1 + >>>   3 files changed, 36 insertions(+) >>> >>> -- >>> 2.43.0 >>>