All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amd/dc: Read from DP_SINK_COUNT_ESI for DPDC r1.2 or higher
@ 2020-08-04  3:42 Wayne Lin
  2020-08-04 13:55 ` Aurabindo Pillai
  0 siblings, 1 reply; 3+ messages in thread
From: Wayne Lin @ 2020-08-04  3:42 UTC (permalink / raw)
  To: amd-gfx
  Cc: Rodrigo.Siqueira, jerry.zuo, aurabindo.pillai, hersenxs.wu,
	Wayne Lin, Nicholas.Kazlauskas

[Why]
According to DP spec, DPRX with DPCD r1.2 or higher shall have the
same Link/Sink Device Status field registers at DPCD Addresses 00200h
through 00205h to the corresponding DPRX Event Status Indicator
registers at DPCD Addresses 02002h through 0200Fh. We now only read from
02002h when DPCD revision number is r1.4 or higher while handling short
HPD. Need to correct that.

[How]
Set to read from 02002h when DPCD is r1.2 or higher

Signed-off-by: Wayne Lin <Wayne.Lin@amd.com>
---
 drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
index 2bfa4e35c2cf..9fb1543b4c73 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
@@ -1834,9 +1834,9 @@ static enum dc_status read_hpd_rx_irq_data(
 	 * fail, so we now explicitly read 6 bytes which is
 	 * the req from the above mentioned test cases.
 	 *
-	 * For DP 1.4 we need to read those from 2002h range.
+	 * For DPCD r1.2 or higher, we need to read those from 2002h range.
 	 */
-	if (link->dpcd_caps.dpcd_rev.raw < DPCD_REV_14)
+	if (link->dpcd_caps.dpcd_rev.raw < DPCD_REV_12)
 		retval = core_link_read_dpcd(
 			link,
 			DP_SINK_COUNT,
-- 
2.17.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/amd/dc: Read from DP_SINK_COUNT_ESI for DPDC r1.2 or higher
  2020-08-04  3:42 [PATCH] drm/amd/dc: Read from DP_SINK_COUNT_ESI for DPDC r1.2 or higher Wayne Lin
@ 2020-08-04 13:55 ` Aurabindo Pillai
  2020-08-04 14:21   ` Wu, Hersen
  0 siblings, 1 reply; 3+ messages in thread
From: Aurabindo Pillai @ 2020-08-04 13:55 UTC (permalink / raw)
  To: Wayne Lin, amd-gfx
  Cc: Rodrigo.Siqueira, jerry.zuo, hersenxs.wu, Nicholas.Kazlauskas

On Tue, 2020-08-04 at 11:42 +0800, Wayne Lin wrote:
> [Why]
> According to DP spec, DPRX with DPCD r1.2 or higher shall have the
> same Link/Sink Device Status field registers at DPCD Addresses 00200h
> through 00205h to the corresponding DPRX Event Status Indicator
> registers at DPCD Addresses 02002h through 0200Fh. We now only read
> from
> 02002h when DPCD revision number is r1.4 or higher while handling
> short
> HPD. Need to correct that.
> 
> [How]
> Set to read from 02002h when DPCD is r1.2 or higher
> 
> Signed-off-by: Wayne Lin <
> Wayne.Lin@amd.com
> >
> ---
>  drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> index 2bfa4e35c2cf..9fb1543b4c73 100644
> --- a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> +++ b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> @@ -1834,9 +1834,9 @@ static enum dc_status read_hpd_rx_irq_data(
>  	 * fail, so we now explicitly read 6 bytes which is
>  	 * the req from the above mentioned test cases.
>  	 *
> -	 * For DP 1.4 we need to read those from 2002h range.
> +	 * For DPCD r1.2 or higher, we need to read those from 2002h
> range.
>  	 */
> -	if (link->dpcd_caps.dpcd_rev.raw < DPCD_REV_14)
> +	if (link->dpcd_caps.dpcd_rev.raw < DPCD_REV_12)
>  		retval = core_link_read_dpcd(
>  			link,
>  			DP_SINK_COUNT,

Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] drm/amd/dc: Read from DP_SINK_COUNT_ESI for DPDC r1.2 or higher
  2020-08-04 13:55 ` Aurabindo Pillai
@ 2020-08-04 14:21   ` Wu, Hersen
  0 siblings, 0 replies; 3+ messages in thread
From: Wu, Hersen @ 2020-08-04 14:21 UTC (permalink / raw)
  To: Pillai, Aurabindo, Lin, Wayne, amd-gfx
  Cc: Cheng, Tony, Zuo, Jerry, Siqueira, Rodrigo, Kazlauskas, Nicholas,
	Liu, Wenjing

[AMD Official Use Only - Internal Distribution Only]



-----Original Message-----
From: Pillai, Aurabindo <Aurabindo.Pillai@amd.com> 
Sent: Tuesday, August 4, 2020 9:56 AM
To: Lin, Wayne <Wayne.Lin@amd.com>; amd-gfx@lists.freedesktop.org
Cc: Wu, Hersen <hersenxs.wu@amd.com>; Kazlauskas, Nicholas <Nicholas.Kazlauskas@amd.com>; Siqueira, Rodrigo <Rodrigo.Siqueira@amd.com>; Zuo, Jerry <Jerry.Zuo@amd.com>
Subject: Re: [PATCH] drm/amd/dc: Read from DP_SINK_COUNT_ESI for DPDC r1.2 or higher

On Tue, 2020-08-04 at 11:42 +0800, Wayne Lin wrote:
> [Why]
> According to DP spec, DPRX with DPCD r1.2 or higher shall have the 
> same Link/Sink Device Status field registers at DPCD Addresses 00200h 
> through 00205h to the corresponding DPRX Event Status Indicator 
> registers at DPCD Addresses 02002h through 0200Fh. We now only read 
> from 02002h when DPCD revision number is r1.4 or higher while handling 
> short HPD. Need to correct that.
> 
> [How]
> Set to read from 02002h when DPCD is r1.2 or higher
> 
> Signed-off-by: Wayne Lin <
> Wayne.Lin@amd.com
> >
> ---
>  drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> index 2bfa4e35c2cf..9fb1543b4c73 100644
> --- a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> +++ b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
> @@ -1834,9 +1834,9 @@ static enum dc_status read_hpd_rx_irq_data(
>  	 * fail, so we now explicitly read 6 bytes which is
>  	 * the req from the above mentioned test cases.
>  	 *
> -	 * For DP 1.4 we need to read those from 2002h range.
> +	 * For DPCD r1.2 or higher, we need to read those from 2002h
> range.
>  	 */
> -	if (link->dpcd_caps.dpcd_rev.raw < DPCD_REV_14)
> +	if (link->dpcd_caps.dpcd_rev.raw < DPCD_REV_12)
>  		retval = core_link_read_dpcd(
>  			link,
>  			DP_SINK_COUNT,

Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-08-04 14:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-04  3:42 [PATCH] drm/amd/dc: Read from DP_SINK_COUNT_ESI for DPDC r1.2 or higher Wayne Lin
2020-08-04 13:55 ` Aurabindo Pillai
2020-08-04 14:21   ` Wu, Hersen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.