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 3246FC54E58 for ; Tue, 26 Mar 2024 08:14:46 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A6E0410E19C; Tue, 26 Mar 2024 08:14:44 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="FwdbtemA"; dkim-atps=neutral Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8F9FE10EDBF for ; Tue, 26 Mar 2024 08:14:42 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id B162FCE1F17; Tue, 26 Mar 2024 08:14:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36493C433C7; Tue, 26 Mar 2024 08:14:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711440879; bh=aGJeC3iATCnbMz5LYGJYFSpKCDTNsuAAz6oPO6eLsJg=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=FwdbtemA0/OAmCuxU9EWEJM3VN4d/1F0Fvw9xGUq3eZosa5p/C+0/NZZy8ihOdmIQ p9lN/KPUXBfeI4vY/km3+kFYKz4CtuvzdhMJ9UlQQ6GzYu93wNcAWKWdTZDxKder0F Kx4DFZz5jWAjbebcRDZFQw6SBxh8zgCrn43M6yyjd/TNrlSoZiqQqZ+L/DojMHw3Rt zfS5z7cJcBCl0hCL6CAMFWVm5l+pqJgTiXQ2UZnfvnALsQW27ng9eJoSANEsgcLVZd yixwMsWqga1nrHE3a/NnG2XDj+qVg4evHCAms64LuZl9mq0tWtzQl1O/ycGLo9Vzeu ucqoH7PNC3cHg== Message-ID: <5ace91ffc0a62af945f837cbd73ad88b@kernel.org> Date: Tue, 26 Mar 2024 08:14:33 +0000 From: "Maxime Ripard" To: "Thomas Zimmermann" Subject: Re: [PATCH v6 12/13] drm/ast: Implement polling for VGA and SIL164 connectors In-Reply-To: <20240325200855.21150-13-tzimmermann@suse.de> References: <20240325200855.21150-13-tzimmermann@suse.de> Cc: airlied@gmail.com, airlied@redhat.com, daniel@ffwll.ch, dri-devel@lists.freedesktop.org, jani.nikula@linux.intel.com, jfalempe@redhat.com, maarten.lankhorst@linux.intel.com, mripard@kernel.org, sui.jingfeng@linux.dev, "Maxime Ripard" Content-Transfer-Encoding: 7bit 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" On Mon, 25 Mar 2024 21:06:57 +0100, Thomas Zimmermann wrote: > Implement polling for VGA and SIL164 connectors. Set the flag > DRM_CONNECTOR_POLL_DISCONNECT for each to detect the removal of the > monitor cable. Implement struct drm_connector_helper_funcs.detect_ctx > for each type of connector by testing for EDID data. > > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime