From: Jani Nikula <jani.nikula@intel.com>
To: Arun R Murthy <arun.r.murthy@intel.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915/display/dp: 128/132b LT requirement
Date: Mon, 17 Apr 2023 13:24:47 +0300 [thread overview]
Message-ID: <87o7nmergw.fsf@intel.com> (raw)
In-Reply-To: <87r0siernf.fsf@intel.com>
On Mon, 17 Apr 2023, Jani Nikula <jani.nikula@intel.com> wrote:
> On Mon, 17 Apr 2023, Arun R Murthy <arun.r.murthy@intel.com> wrote:
>> For 128b/132b LT prior to LT DPTX should set power state, DP channel
>> coding and then link rate.
>>
>> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
>> ---
>> .../drm/i915/display/intel_dp_link_training.c | 52 +++++++++++++------
>> 1 file changed, 35 insertions(+), 17 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp_link_training.c b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
>> index 6aa4ae5e7ebe..83ea9ece0157 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp_link_training.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
>> @@ -686,23 +686,41 @@ intel_dp_prepare_link_train(struct intel_dp *intel_dp,
>> drm_dbg_kms(&i915->drm,
>> "[ENCODER:%d:%s] Using LINK_RATE_SET value %02x\n",
>> encoder->base.base.id, encoder->base.name, rate_select);
>> -
>> - /* Write the link configuration data */
>> - link_config[0] = link_bw;
>> - link_config[1] = crtc_state->lane_count;
>> - if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
>> - link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
>> - drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
>> -
>> - /* eDP 1.4 rate select method. */
>> - if (!link_bw)
>> - drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
>> - &rate_select, 1);
>> -
>> - link_config[0] = crtc_state->vrr.flipline ? DP_MSA_TIMING_PAR_IGNORE_EN : 0;
>> - link_config[1] = intel_dp_is_uhbr(crtc_state) ?
>> - DP_SET_ANSI_128B132B : DP_SET_ANSI_8B10B;
>> - drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
>> + if (intel_dp_is_uhbr(crtc_state)) {
>> + /*
>> + * Spec DP2.1 Section 3.5.2.16
>> + * Prior to LT DPTX should set 128/132 DP Channel coding and then set link rate
PS. I've taken great care to use "128b/132b" in comments
everywhere. There isn't a single instance of "128/132".
It'll be helpful when you git grep 128b/132b.
BR,
Jani.
>> + */
>> + link_config[0] = crtc_state->vrr.enable ? DP_MSA_TIMING_PAR_IGNORE_EN : 0;
>> + link_config[1] = intel_dp_is_uhbr(crtc_state) ?
>> + DP_SET_ANSI_128B132B : DP_SET_ANSI_8B10B;
>> + drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
>> + /* Write the link configuration data */
>> + link_config[0] = link_bw;
>> + link_config[1] = crtc_state->lane_count;
>> + if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
>> + link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
>> + drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
>> + /* eDP 1.4 rate select method. */
>> + if (!link_bw)
>> + drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
>> + &rate_select, 1);
>> + } else {
>> + /* Write the link configuration data */
>> + link_config[0] = link_bw;
>> + link_config[1] = crtc_state->lane_count;
>> + if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
>> + link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
>> + drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
>> + /* eDP 1.4 rate select method. */
>> + if (!link_bw)
>> + drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
>> + &rate_select, 1);
>> + link_config[0] = crtc_state->vrr.enable ? DP_MSA_TIMING_PAR_IGNORE_EN : 0;
>> + link_config[1] = intel_dp_is_uhbr(crtc_state) ?
>> + DP_SET_ANSI_128B132B : DP_SET_ANSI_8B10B;
>> + drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
>> + }
>
> I'd rather we change the order for 8b10b too.
>
> If we can't do that, you need to add two functions that do each step,
> and then call them in different order for different channel coding. We
> don't want all of the above duplicated.
>
> Also, in what looks like a rebase fail, you change vrr.flipline to
> vrr.enable.
>
>
> BR,
> Jani.
>
>
>>
>> return true;
>> }
--
Jani Nikula, Intel Open Source Graphics Center
next prev parent reply other threads:[~2023-04-17 10:24 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-17 10:00 [Intel-gfx] [PATCH] drm/i915/display/dp: 128/132b LT requirement Arun R Murthy
2023-04-17 10:20 ` Jani Nikula
2023-04-17 10:24 ` Jani Nikula [this message]
2023-04-17 10:51 ` [Intel-gfx] [PATCHv2] " Arun R Murthy
2023-04-17 15:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display/dp: 128/132b LT requirement (rev2) Patchwork
2023-04-17 22:33 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2023-04-19 2:25 ` [Intel-gfx] [RESEND PATCHv2] drm/i915/display/dp: 128/132b LT requirement Arun R Murthy
2023-04-19 7:18 ` Jani Nikula
2023-04-19 8:03 ` Murthy, Arun R
2023-04-19 9:55 ` Jani Nikula
2023-04-19 10:07 ` Murthy, Arun R
2023-04-24 15:27 ` Ville Syrjälä
2023-04-19 3:10 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display/dp: 128/132b LT requirement (rev3) Patchwork
2023-04-19 5:08 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2023-04-25 2:59 ` [Intel-gfx] [PATCHv3] drm/i915/display/dp: 128/132b LT requirement Arun R Murthy
2023-05-02 13:18 ` Jani Nikula
2023-04-25 3:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display/dp: 128/132b LT requirement (rev4) Patchwork
2023-04-25 10:41 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
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=87o7nmergw.fsf@intel.com \
--to=jani.nikula@intel.com \
--cc=arun.r.murthy@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/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