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 C4521E7717F for ; Mon, 16 Dec 2024 12:22:22 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5497610E600; Mon, 16 Dec 2024 12:22:22 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="pWLm3E/v"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id 9184510E5F4; Mon, 16 Dec 2024 12:22:20 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id D3C915C611E; Mon, 16 Dec 2024 12:21:37 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6BCCDC4CED3; Mon, 16 Dec 2024 12:22:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1734351739; bh=OAQ2a41bv7yzDLrikPLnhGovWZXJRJqmvYcRrpraqV0=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=pWLm3E/vI7ndd6xcDjcnnDqM6RxFTMslgVMT1U74yeIBfo2JFs02ab+QxTZXSDDlv BRdbK/cAQlghTTWTDmX8uE/M0bagjrxsyoKNar0RXmfMx+MGkWrGdXjBF69VgnxRis Y8Pq9NzgPoQwBnTcXe4jyoEk3UYjQvWdfoFwUhG5BlDsIwfg68vciYSzTUhVNbZrnr lr5FPPeFNSrT3t/rZLZ7hahI+G0dhvBm51dDuoqXcBFb8ezWs8U6UbwP3z8r05IOoH DdxuzXnztAgn7Zbw1Bzk6Hk8J+bUq5HubnMAX0D2MXvbRsvJzoX+JFHTfbjETJP6Z4 Tkk0xVN0T5sJA== Message-ID: <4dad98ac82672bbea27f22962d8e5b03@kernel.org> Date: Mon, 16 Dec 2024 12:22:17 +0000 From: "Maxime Ripard" To: "Imre Deak" Subject: Re: [PATCH v3 01/11] drm/connector: Add a way to init/add a connector in separate steps In-Reply-To: <20241211230328.4012496-2-imre.deak@intel.com> References: <20241211230328.4012496-2-imre.deak@intel.com> Cc: dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, "Jani Nikula" , "Maxime Ripard" , "Rodrigo Vivi" , "Simona Vetter" Content-Transfer-Encoding: 7bit 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" On Thu, 12 Dec 2024 01:03:18 +0200, Imre Deak wrote: > Atm when the connector is added to the drm_mode_config::connector_list, > the connector may not be fully initialized yet. This is not a problem > for static connectors initialized/added during driver loading, for which > the driver ensures that look-ups via the above list are not possible > until all the connector and other required state is fully initialized > > [ ... ] Reviewed-by: Maxime Ripard Thanks! Maxime