From patchwork Sun Jul 26 13:03:58 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Modem, Bhanuprakash" X-Patchwork-Id: 11685511 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 04C15912 for ; Sun, 26 Jul 2020 05:08: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 E0B9C20715 for ; Sun, 26 Jul 2020 05:08:57 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E0B9C20715 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6928B6E088; Sun, 26 Jul 2020 05:08:56 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id A3DE76E088 for ; Sun, 26 Jul 2020 05:08:54 +0000 (UTC) IronPort-SDR: FaYieufTXMCt7FYkb1rS+QCV+EY7Rha1q33/zXG6TU6HInyCFd9r18SFUNd1Q/7xdHs5wWNeVc 2IILfN34hWeA== X-IronPort-AV: E=McAfee;i="6000,8403,9693"; a="150054554" X-IronPort-AV: E=Sophos;i="5.75,397,1589266800"; d="scan'208";a="150054554" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jul 2020 22:08:54 -0700 IronPort-SDR: o9WBemA1rDITvHozi0B+xeG24Wc3nYPiy5bCWRkYMhJ3eL7r/QhrAq0CB3sPECS3VVunsjc5Aq tfdHu/OJBMYg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,397,1589266800"; d="scan'208";a="285334892" Received: from bhanu-nuc8i7beh.iind.intel.com ([10.145.162.210]) by orsmga003.jf.intel.com with ESMTP; 25 Jul 2020 22:08:52 -0700 From: Bhanuprakash Modem To: bhanuprakash.modem@intel.com, intel-gfx@lists.freedesktop.org Date: Sun, 26 Jul 2020 18:33:58 +0530 Message-Id: <20200726130400.10160-1-bhanuprakash.modem@intel.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH 0/2] Expose crtc dither state and connector max bpc via debugfs 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" [why] It's useful to know the max supported panel BPC and PIPE dither state for IGT testing. [how] * Expose the connector max supported BPC for the panel via a debugfs file on the connector, "output_bpc". Example: cat /sys/kernel/debug/dri/0/DP-1/output_bpc * Expose the dithering state for the crtc via a debugfs file "dither". Example: cat /sys/kernel/debug/dri/0/crtc-0/dither Test-with: 20200726122944.9864-1-bhanuprakash.modem@intel.com Bhanuprakash Modem (2): i915/debug: Expose crtc dither state via debugfs i915/debug: Expose Max BPC info via debugfs .../drm/i915/display/intel_display_debugfs.c | 17 +++++++++++++++++ drivers/gpu/drm/i915/i915_debugfs.c | 17 +++++++++++++++++ 2 files changed, 34 insertions(+)