From patchwork Mon Oct 4 09:12:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Simon Ser X-Patchwork-Id: 12533539 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 72EC2C433EF for ; Mon, 4 Oct 2021 09:12:58 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 274B861215 for ; Mon, 4 Oct 2021 09:12:58 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 274B861215 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=emersion.fr Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6B3296E987; Mon, 4 Oct 2021 09:12:57 +0000 (UTC) Received: from mail-4317.protonmail.ch (mail-4317.protonmail.ch [185.70.43.17]) by gabe.freedesktop.org (Postfix) with ESMTPS id 5EE0B6E987 for ; Mon, 4 Oct 2021 09:12:55 +0000 (UTC) Date: Mon, 04 Oct 2021 09:12:50 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=emersion.fr; s=protonmail; t=1633338772; bh=+iDpsdErgW3Un3ETFbxAJW/28nw8kV9blU2wCTqj1X0=; h=Date:To:From:Cc:Reply-To:Subject:From; b=O7QiEo8UwIwouOolHJBEGB//xtg5ziWmYzDt10FbUizl4wjrKTm1oyOVGm32xXs/m eAKOSVnYspwh71jrUjWZUYH1XuPF1OAucpgL9WkUbks1r/X8zDoRfoDvs12EEZohma dHi8RJTaK3CV3C5GL3hiA7m1rNJh+MKVn++I6b49kI61CNFTswyo9d4sw0ZBeK0p1K X5t8B+6qOr7ndyecpXZJ2C+koZpQJ6BGzeQeva8lwwDE4uHWRfmYZH0lV3ad32jgZo 5v8qTdjIWlfY4dNzlsMBwtb2YMUkZNPuOlU1yoD9e8HVlWAX1XnN9FeFSufur09gYk YuFMEjfXd3+NA== To: dri-devel@lists.freedesktop.org From: Simon Ser Cc: Emmanuel Gil Peyrot , Daniel Vetter , Pekka Paalanen , Ville Syrjala , Jani Nikula Subject: [PATCH] drm/connector: refer to CTA-861-G in the "content type" prop docs Message-ID: <20211004091236.82010-1-contact@emersion.fr> MIME-Version: 1.0 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: , Reply-To: Simon Ser Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" The KMS documentation doesn't say much about the meaning of each content type. Add a reference to the specification defining them. Signed-off-by: Simon Ser Cc: Emmanuel Gil Peyrot Cc: Daniel Vetter Cc: Pekka Paalanen Cc: Ville Syrjala Cc: Jani Nikula Reviewed-by: Ville Syrjälä Reviewed-by: Pekka Paalanen --- drivers/gpu/drm/drm_connector.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c index 3bc782b630b9..79d8163686cd 100644 --- a/drivers/gpu/drm/drm_connector.c +++ b/drivers/gpu/drm/drm_connector.c @@ -1397,6 +1397,8 @@ EXPORT_SYMBOL(drm_connector_attach_dp_subconnector_property); * Game: * Content type is game * + * The meaning of each content type is defined in CTA-861-G table 15. + * * Drivers can set up this property by calling * drm_connector_attach_content_type_property(). Decoding to * infoframe values is done through drm_hdmi_avi_infoframe_content_type().