From: Leo Li <sunpeng.li@amd.com>
To: Hamza Mahfooz <hamza.mahfooz@amd.com>,
Harry Wentland <harry.wentland@amd.com>,
amd-gfx@lists.freedesktop.org
Cc: "Rodrigo Siqueira" <Rodrigo.Siqueira@amd.com>,
"Alex Deucher" <alexander.deucher@amd.com>,
"Christian König" <christian.koenig@amd.com>,
"Pan, Xinhui" <Xinhui.Pan@amd.com>,
"David Airlie" <airlied@gmail.com>,
"Daniel Vetter" <daniel@ffwll.ch>,
"David Zhang" <dingchen.zhang@amd.com>,
"Nicholas Kazlauskas" <nicholas.kazlauskas@amd.com>,
"Alex Hung" <alex.hung@amd.com>,
"Po Ting Chen" <robin.chen@amd.com>,
"Shirish S" <shirish.s@amd.com>, "Robin Chen" <po-tchen@amd.com>,
"Brian Chang" <Brian.Chang@amd.com>,
"Camille Cho" <Camille.Cho@amd.com>,
"Tom Chung" <chiahsuan.chung@amd.com>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] drm/amd/display: fix PSR-SU/DSC interoperability support
Date: Thu, 5 Jan 2023 15:12:01 -0500 [thread overview]
Message-ID: <f320ae29-5dbe-cfd8-0a05-de2e841d231c@amd.com> (raw)
In-Reply-To: <7f7177c3-c6e1-81b8-2599-0d24245b416d@amd.com>
On 1/5/23 15:07, Hamza Mahfooz wrote:
> On 1/5/23 13:29, Harry Wentland wrote:
>>
>>
>> On 1/5/23 12:38, Hamza Mahfooz wrote:
>>> Currently, there are issues with enabling PSR-SU + DSC. This stems from
>>> the fact that DSC imposes a slice height on transmitted video data and
>>> we are not conforming to that slice height in PSR-SU regions. So, pass
>>> slice_height into su_y_granularity to feed the DSC slice height into
>>> PSR-SU code.
>>>
>>> Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
>>> ---
>>> v2: move code to modules/power.
>>> ---
>>> .../drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c | 3 ++
>>> .../amd/display/modules/power/power_helpers.c | 35 +++++++++++++++++++
>>> .../amd/display/modules/power/power_helpers.h | 3 ++
>>> 3 files changed, 41 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c
>>> b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c
>>> index 26291db0a3cf..872d06fe1436 100644
>>> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c
>>> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c
>>> @@ -122,6 +122,9 @@ bool amdgpu_dm_link_setup_psr(struct
>>> dc_stream_state *stream)
>>> psr_config.allow_multi_disp_optimizations =
>>> (amdgpu_dc_feature_mask & DC_PSR_ALLOW_MULTI_DISP_OPT);
>>> + if (!psr_su_set_y_granularity(dc, link, stream, &psr_config))
>>> + return false;
>>> +
>>> ret = dc_link_setup_psr(link, stream, &psr_config,
>>> &psr_context);
>>> }
>>> diff --git
>>> a/drivers/gpu/drm/amd/display/modules/power/power_helpers.c
>>> b/drivers/gpu/drm/amd/display/modules/power/power_helpers.c
>>> index 9b5d9b2c9a6a..4d27ad9f7370 100644
>>> --- a/drivers/gpu/drm/amd/display/modules/power/power_helpers.c
>>> +++ b/drivers/gpu/drm/amd/display/modules/power/power_helpers.c
>>> @@ -916,3 +916,38 @@ bool mod_power_only_edp(const struct dc_state
>>> *context, const struct dc_stream_s
>>> {
>>> return context && context->stream_count == 1 &&
>>> dc_is_embedded_signal(stream->signal);
>>> }
>>> +
>>> +bool psr_su_set_y_granularity(struct dc *dc, struct dc_link *link,
>>> + struct dc_stream_state *stream,
>>> + struct psr_config *config)
>>> +{
>>> + uint16_t pic_height;
>>> + uint8_t slice_height;
>>> +
>>> + if (!dc->caps.edp_dsc_support ||
>>> + link->panel_config.dsc.disable_dsc_edp ||
>>> +
>>> !link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_SUPPORT ||
>>> + !stream->timing.dsc_cfg.num_slices_v)
>>
>> I'm not sure this condition is correct. We can have DSC but not eDP DSC
>> support.
>>
>
> AFAIK PSR-SU displays use eDP exclusively, so we shouldn't have to worry
> about this case.
Right, the dc_link here should only be eDP. I suppose that isn't quite
clear.
Maybe add this as part of the condition?
if (!(link->connector_signal & SIGNAL_TYPE_EDP))
return true;
Thanks,
Leo
>
>>> + return true;
>>> +
>>> + pic_height = stream->timing.v_addressable +
>>> + stream->timing.v_border_top + stream->timing.v_border_bottom;
>>> + slice_height = pic_height / stream->timing.dsc_cfg.num_slices_v;
>>> +
>>> + if (slice_height) {
>>> + if (config->su_y_granularity &&
>>> + (slice_height % config->su_y_granularity)) {
>>> + WARN(1,
>>
>> We don't use WARN in display/dc or display/modules. DC_LOG_WARNING
>> might be better, or log it in the caller.
>>
>> Harry
>>
>>> + "%s: dsc: %d, slice_height: %d, num_slices_v: %d\n",
>>> + __func__,
>>> + stream->sink->dsc_caps.dsc_dec_caps.is_dsc_supported,
>>> + slice_height,
>>> + stream->timing.dsc_cfg.num_slices_v);
>>> + return false;
>>> + }
>>> +
>>> + config->su_y_granularity = slice_height;
>>> + }
>>> +
>>> + return true;
>>> +}
>>> diff --git
>>> a/drivers/gpu/drm/amd/display/modules/power/power_helpers.h
>>> b/drivers/gpu/drm/amd/display/modules/power/power_helpers.h
>>> index 316452e9dbc9..bb16b37b83da 100644
>>> --- a/drivers/gpu/drm/amd/display/modules/power/power_helpers.h
>>> +++ b/drivers/gpu/drm/amd/display/modules/power/power_helpers.h
>>> @@ -59,4 +59,7 @@ void mod_power_calc_psr_configs(struct psr_config
>>> *psr_config,
>>> const struct dc_stream_state *stream);
>>> bool mod_power_only_edp(const struct dc_state *context,
>>> const struct dc_stream_state *stream);
>>> +bool psr_su_set_y_granularity(struct dc *dc, struct dc_link *link,
>>> + struct dc_stream_state *stream,
>>> + struct psr_config *config);
>>> #endif /* MODULES_POWER_POWER_HELPERS_H_ */
>>
>
next prev parent reply other threads:[~2023-01-05 20:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-05 17:38 Hamza Mahfooz
2023-01-05 18:29 ` Harry Wentland
2023-01-05 20:07 ` Hamza Mahfooz
2023-01-05 20:12 ` Leo Li [this message]
2023-01-05 21:40 ` 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=f320ae29-5dbe-cfd8-0a05-de2e841d231c@amd.com \
--to=sunpeng.li@amd.com \
--cc=Brian.Chang@amd.com \
--cc=Camille.Cho@amd.com \
--cc=Rodrigo.Siqueira@amd.com \
--cc=Xinhui.Pan@amd.com \
--cc=airlied@gmail.com \
--cc=alex.hung@amd.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=chiahsuan.chung@amd.com \
--cc=christian.koenig@amd.com \
--cc=daniel@ffwll.ch \
--cc=dingchen.zhang@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=hamza.mahfooz@amd.com \
--cc=harry.wentland@amd.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nicholas.kazlauskas@amd.com \
--cc=po-tchen@amd.com \
--cc=robin.chen@amd.com \
--cc=shirish.s@amd.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
all inboxes | Powered by JetHome®