From: "Modem, Bhanuprakash" <bhanuprakash.modem@intel.com>
To: Harry Wentland <harry.wentland@amd.com>,
<intel-gfx@lists.freedesktop.org>,
<dri-devel@lists.freedesktop.org>,
<amd-gfx@lists.freedesktop.org>, <jani.nikula@linux.intel.com>,
<ville.syrjala@linux.intel.com>, <swati2.sharma@intel.com>
Subject: Re: [PATCH 1/3] drm/debug: Expose connector's max supported bpc via debugfs
Date: Fri, 8 Apr 2022 20:55:11 +0530 [thread overview]
Message-ID: <cb1569b6-b842-6d3b-903c-94ded72cbf5d@intel.com> (raw)
In-Reply-To: <375fd7ff-a68e-d5c0-ff0d-bd6b50e90b93@amd.com>
On Fri-08-04-2022 08:32 pm, Harry Wentland wrote:
>
>
> On 2022-04-08 02:53, Bhanuprakash Modem wrote:
>> It's useful to know the connector's max supported bpc for IGT
>> testing. Expose it via a debugfs file on the connector "output_bpc".
>>
>> Example: cat /sys/kernel/debug/dri/0/DP-1/output_bpc
>>
>> Cc: Jani Nikula <jani.nikula@linux.intel.com>
>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> Cc: Harry Wentland <harry.wentland@amd.com>
>> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>> ---
>> drivers/gpu/drm/drm_debugfs.c | 21 +++++++++++++++++++++
>> 1 file changed, 21 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/drm_debugfs.c b/drivers/gpu/drm/drm_debugfs.c
>> index 7f1b82dbaebb..33e5345c6f3e 100644
>> --- a/drivers/gpu/drm/drm_debugfs.c
>> +++ b/drivers/gpu/drm/drm_debugfs.c
>> @@ -395,6 +395,23 @@ static int vrr_range_show(struct seq_file *m, void *data)
>> }
>> DEFINE_SHOW_ATTRIBUTE(vrr_range);
>>
>> +/*
>> + * Returns Connector's max supported bpc through debugfs file.
>> + * Example usage: cat /sys/kernel/debug/dri/0/DP-1/max_bpc
>
> /s/max_bpc/output_bpc
>
> Btw, in amdgpu we have both max_bpc and output_bpc.
I'll float a new rev, Thanks.
- Bhanu
>
> Harry
>
>> + */
>> +static int output_bpc_show(struct seq_file *m, void *data)
>> +{
>> + struct drm_connector *connector = m->private;
>> +
>> + if (connector->status != connector_status_connected)
>> + return -ENODEV;
>> +
>> + seq_printf(m, "Maximum: %u\n", connector->display_info.bpc);
>> +
>> + return 0;
>> +}
>> +DEFINE_SHOW_ATTRIBUTE(output_bpc);
>> +
>> static const struct file_operations drm_edid_fops = {
>> .owner = THIS_MODULE,
>> .open = edid_open,
>> @@ -437,6 +454,10 @@ void drm_debugfs_connector_add(struct drm_connector *connector)
>> debugfs_create_file("vrr_range", S_IRUGO, root, connector,
>> &vrr_range_fops);
>>
>> + /* max bpc */
>> + debugfs_create_file("output_bpc", 0444, root, connector,
>> + &output_bpc_fops);
>> +
>> if (connector->funcs->debugfs_init)
>> connector->funcs->debugfs_init(connector, root);
>> }
>
next prev parent reply other threads:[~2022-04-08 15:27 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-08 6:53 [PATCH 0/3] Expose max and current bpc via debugfs Bhanuprakash Modem
2022-04-08 6:53 ` [PATCH 1/3] drm/debug: Expose connector's max supported " Bhanuprakash Modem
2022-04-08 15:02 ` Harry Wentland
2022-04-08 15:25 ` Modem, Bhanuprakash [this message]
2022-04-11 3:57 ` [V2 " Bhanuprakash Modem
2022-04-08 6:53 ` [PATCH 2/3] drm/i915/display/debug: Expose crtc current " Bhanuprakash Modem
2022-04-08 6:53 ` [PATCH 3/3] drm/amd/display: Move connector debugfs to drm Bhanuprakash Modem
2022-04-08 12:56 ` kernel test robot
2022-04-08 15:03 ` Harry Wentland
2022-04-08 15:23 ` Modem, Bhanuprakash
2022-04-08 15:25 ` Harry Wentland
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cb1569b6-b842-6d3b-903c-94ded72cbf5d@intel.com \
--to=bhanuprakash.modem@intel.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=harry.wentland@amd.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=swati2.sharma@intel.com \
--cc=ville.syrjala@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox