All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
@ 2020-05-28 13:48 Harry Wentland
  2020-05-28 13:54 ` Alexander Monakov
  2020-05-28 14:08 ` Alex Deucher
  0 siblings, 2 replies; 9+ messages in thread
From: Harry Wentland @ 2020-05-28 13:48 UTC (permalink / raw)
  To: amd-gfx
  Cc: Hersen Wu, Alexander Monakov, Harry Wentland, Anthony Koo, Michael Chiu

This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.

This change was used for DCN2 bringup and is no longer desired.
In fact it breaks backlight on DCN2 systems.

Cc: Alexander Monakov <amonakov@ispras.ru>
Cc: Hersen Wu <hersenxs.wu@amd.com>
Cc: Anthony Koo <Anthony.Koo@amd.com>
Cc: Michael Chiu <Michael.Chiu@amd.com>
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index ddc979e3eebe..acd4874e0743 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -1356,7 +1356,7 @@ static int dm_late_init(void *handle)
 	unsigned int linear_lut[16];
 	int i;
 	struct dmcu *dmcu = NULL;
-	bool ret = false;
+	bool ret;
 
 	if (!adev->dm.fw_dmcu)
 		return detect_mst_link_for_all_connectors(adev->ddev);
@@ -1377,13 +1377,10 @@ static int dm_late_init(void *handle)
 	 */
 	params.min_abm_backlight = 0x28F;
 
-	/* todo will enable for navi10 */
-	if (adev->asic_type <= CHIP_RAVEN) {
-		ret = dmcu_load_iram(dmcu, params);
+	ret = dmcu_load_iram(dmcu, params);
 
-		if (!ret)
-			return -EINVAL;
-	}
+	if (!ret)
+		return -EINVAL;
 
 	return detect_mst_link_for_all_connectors(adev->ddev);
 }
-- 
2.26.2

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

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-05-28 13:48 [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up" Harry Wentland
@ 2020-05-28 13:54 ` Alexander Monakov
  2020-05-28 14:07   ` Harry Wentland
  2020-05-28 14:08 ` Alex Deucher
  1 sibling, 1 reply; 9+ messages in thread
From: Alexander Monakov @ 2020-05-28 13:54 UTC (permalink / raw)
  To: Harry Wentland; +Cc: Anthony Koo, Hersen Wu, amd-gfx, Michael Chiu



On Thu, 28 May 2020, Harry Wentland wrote:

> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
> 
> This change was used for DCN2 bringup and is no longer desired.
> In fact it breaks backlight on DCN2 systems.

Reported-and-tested-by: Alexander Monakov <amonakov@ispras.ru>

Thanks.

> Cc: Alexander Monakov <amonakov@ispras.ru>
> Cc: Hersen Wu <hersenxs.wu@amd.com>
> Cc: Anthony Koo <Anthony.Koo@amd.com>
> Cc: Michael Chiu <Michael.Chiu@amd.com>
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
>  drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 ++++-------
>  1 file changed, 4 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> index ddc979e3eebe..acd4874e0743 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> @@ -1356,7 +1356,7 @@ static int dm_late_init(void *handle)
>  	unsigned int linear_lut[16];
>  	int i;
>  	struct dmcu *dmcu = NULL;
> -	bool ret = false;
> +	bool ret;
>  
>  	if (!adev->dm.fw_dmcu)
>  		return detect_mst_link_for_all_connectors(adev->ddev);
> @@ -1377,13 +1377,10 @@ static int dm_late_init(void *handle)
>  	 */
>  	params.min_abm_backlight = 0x28F;
>  
> -	/* todo will enable for navi10 */
> -	if (adev->asic_type <= CHIP_RAVEN) {
> -		ret = dmcu_load_iram(dmcu, params);
> +	ret = dmcu_load_iram(dmcu, params);
>  
> -		if (!ret)
> -			return -EINVAL;
> -	}
> +	if (!ret)
> +		return -EINVAL;
>  
>  	return detect_mst_link_for_all_connectors(adev->ddev);
>  }
> 
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-05-28 13:54 ` Alexander Monakov
@ 2020-05-28 14:07   ` Harry Wentland
  2020-05-28 14:13     ` Alexander Monakov
  0 siblings, 1 reply; 9+ messages in thread
From: Harry Wentland @ 2020-05-28 14:07 UTC (permalink / raw)
  To: Alexander Monakov, Harry Wentland
  Cc: Anthony Koo, Hersen Wu, amd-gfx, Michael Chiu

On 2020-05-28 9:54 a.m., Alexander Monakov wrote:
> 
> 
> On Thu, 28 May 2020, Harry Wentland wrote:
> 
>> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
>>
>> This change was used for DCN2 bringup and is no longer desired.
>> In fact it breaks backlight on DCN2 systems.
> 
> Reported-and-tested-by: Alexander Monakov <amonakov@ispras.ru>
> 

Thanks, Alex.

Just to confirm, this fixes the backlight issue you were seeing?

Harry

> Thanks.
> 
>> Cc: Alexander Monakov <amonakov@ispras.ru>
>> Cc: Hersen Wu <hersenxs.wu@amd.com>
>> Cc: Anthony Koo <Anthony.Koo@amd.com>
>> Cc: Michael Chiu <Michael.Chiu@amd.com>
>> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
>> ---
>>  drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 ++++-------
>>  1 file changed, 4 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
>> index ddc979e3eebe..acd4874e0743 100644
>> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
>> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
>> @@ -1356,7 +1356,7 @@ static int dm_late_init(void *handle)
>>  	unsigned int linear_lut[16];
>>  	int i;
>>  	struct dmcu *dmcu = NULL;
>> -	bool ret = false;
>> +	bool ret;
>>  
>>  	if (!adev->dm.fw_dmcu)
>>  		return detect_mst_link_for_all_connectors(adev->ddev);
>> @@ -1377,13 +1377,10 @@ static int dm_late_init(void *handle)
>>  	 */
>>  	params.min_abm_backlight = 0x28F;
>>  
>> -	/* todo will enable for navi10 */
>> -	if (adev->asic_type <= CHIP_RAVEN) {
>> -		ret = dmcu_load_iram(dmcu, params);
>> +	ret = dmcu_load_iram(dmcu, params);
>>  
>> -		if (!ret)
>> -			return -EINVAL;
>> -	}
>> +	if (!ret)
>> +		return -EINVAL;
>>  
>>  	return detect_mst_link_for_all_connectors(adev->ddev);
>>  }
>>
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-05-28 13:48 [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up" Harry Wentland
  2020-05-28 13:54 ` Alexander Monakov
@ 2020-05-28 14:08 ` Alex Deucher
  2020-05-28 14:13   ` Kazlauskas, Nicholas
  1 sibling, 1 reply; 9+ messages in thread
From: Alex Deucher @ 2020-05-28 14:08 UTC (permalink / raw)
  To: Harry Wentland
  Cc: Anthony Koo, Alexander Monakov, Hersen Wu, amd-gfx list, Michael Chiu

On Thu, May 28, 2020 at 9:47 AM Harry Wentland <harry.wentland@amd.com> wrote:
>
> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
>
> This change was used for DCN2 bringup and is no longer desired.
> In fact it breaks backlight on DCN2 systems.
>
> Cc: Alexander Monakov <amonakov@ispras.ru>
> Cc: Hersen Wu <hersenxs.wu@amd.com>
> Cc: Anthony Koo <Anthony.Koo@amd.com>
> Cc: Michael Chiu <Michael.Chiu@amd.com>
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>

Acked-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 ++++-------
>  1 file changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> index ddc979e3eebe..acd4874e0743 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> @@ -1356,7 +1356,7 @@ static int dm_late_init(void *handle)
>         unsigned int linear_lut[16];
>         int i;
>         struct dmcu *dmcu = NULL;
> -       bool ret = false;
> +       bool ret;
>
>         if (!adev->dm.fw_dmcu)
>                 return detect_mst_link_for_all_connectors(adev->ddev);
> @@ -1377,13 +1377,10 @@ static int dm_late_init(void *handle)
>          */
>         params.min_abm_backlight = 0x28F;
>
> -       /* todo will enable for navi10 */
> -       if (adev->asic_type <= CHIP_RAVEN) {
> -               ret = dmcu_load_iram(dmcu, params);
> +       ret = dmcu_load_iram(dmcu, params);
>
> -               if (!ret)
> -                       return -EINVAL;
> -       }
> +       if (!ret)
> +               return -EINVAL;
>
>         return detect_mst_link_for_all_connectors(adev->ddev);
>  }
> --
> 2.26.2
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-05-28 14:08 ` Alex Deucher
@ 2020-05-28 14:13   ` Kazlauskas, Nicholas
  0 siblings, 0 replies; 9+ messages in thread
From: Kazlauskas, Nicholas @ 2020-05-28 14:13 UTC (permalink / raw)
  To: Alex Deucher, Harry Wentland
  Cc: Hersen Wu, Alexander Monakov, Anthony Koo, amd-gfx list, Michael Chiu

On 2020-05-28 10:08 a.m., Alex Deucher wrote:
> On Thu, May 28, 2020 at 9:47 AM Harry Wentland <harry.wentland@amd.com> wrote:
>>
>> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
>>
>> This change was used for DCN2 bringup and is no longer desired.
>> In fact it breaks backlight on DCN2 systems.
>>
>> Cc: Alexander Monakov <amonakov@ispras.ru>
>> Cc: Hersen Wu <hersenxs.wu@amd.com>
>> Cc: Anthony Koo <Anthony.Koo@amd.com>
>> Cc: Michael Chiu <Michael.Chiu@amd.com>
>> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> 
> Acked-by: Alex Deucher <alexander.deucher@amd.com>

Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>

> 
>> ---
>>   drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 ++++-------
>>   1 file changed, 4 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
>> index ddc979e3eebe..acd4874e0743 100644
>> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
>> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
>> @@ -1356,7 +1356,7 @@ static int dm_late_init(void *handle)
>>          unsigned int linear_lut[16];
>>          int i;
>>          struct dmcu *dmcu = NULL;
>> -       bool ret = false;
>> +       bool ret;
>>
>>          if (!adev->dm.fw_dmcu)
>>                  return detect_mst_link_for_all_connectors(adev->ddev);
>> @@ -1377,13 +1377,10 @@ static int dm_late_init(void *handle)
>>           */
>>          params.min_abm_backlight = 0x28F;
>>
>> -       /* todo will enable for navi10 */
>> -       if (adev->asic_type <= CHIP_RAVEN) {
>> -               ret = dmcu_load_iram(dmcu, params);
>> +       ret = dmcu_load_iram(dmcu, params);
>>
>> -               if (!ret)
>> -                       return -EINVAL;
>> -       }
>> +       if (!ret)
>> +               return -EINVAL;
>>
>>          return detect_mst_link_for_all_connectors(adev->ddev);
>>   }
>> --
>> 2.26.2
>>
>> _______________________________________________
>> amd-gfx mailing list
>> amd-gfx@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
> 

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

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-05-28 14:07   ` Harry Wentland
@ 2020-05-28 14:13     ` Alexander Monakov
  2020-05-28 14:26       ` Harry Wentland
  0 siblings, 1 reply; 9+ messages in thread
From: Alexander Monakov @ 2020-05-28 14:13 UTC (permalink / raw)
  To: Harry Wentland
  Cc: Hersen Wu, Anthony Koo, Harry Wentland, amd-gfx, Michael Chiu



On Thu, 28 May 2020, Harry Wentland wrote:

> On 2020-05-28 9:54 a.m., Alexander Monakov wrote:
> > 
> > 
> > On Thu, 28 May 2020, Harry Wentland wrote:
> > 
> >> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
> >>
> >> This change was used for DCN2 bringup and is no longer desired.
> >> In fact it breaks backlight on DCN2 systems.
> > 
> > Reported-and-tested-by: Alexander Monakov <amonakov@ispras.ru>
> > 
> 
> Thanks, Alex.
> 
> Just to confirm, this fixes the backlight issue you were seeing?

I applied a similar fix to my kernel yesterday, and it worked fine.
Tested by changing brightness a few times. If any problems come up,
I'll send new reports.

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

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-05-28 14:13     ` Alexander Monakov
@ 2020-05-28 14:26       ` Harry Wentland
  0 siblings, 0 replies; 9+ messages in thread
From: Harry Wentland @ 2020-05-28 14:26 UTC (permalink / raw)
  To: Alexander Monakov
  Cc: Hersen Wu, Anthony Koo, Harry Wentland, amd-gfx, Michael Chiu



On 2020-05-28 10:13 a.m., Alexander Monakov wrote:
> 
> 
> On Thu, 28 May 2020, Harry Wentland wrote:
> 
>> On 2020-05-28 9:54 a.m., Alexander Monakov wrote:
>>>
>>>
>>> On Thu, 28 May 2020, Harry Wentland wrote:
>>>
>>>> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
>>>>
>>>> This change was used for DCN2 bringup and is no longer desired.
>>>> In fact it breaks backlight on DCN2 systems.
>>>
>>> Reported-and-tested-by: Alexander Monakov <amonakov@ispras.ru>
>>>
>>
>> Thanks, Alex.
>>
>> Just to confirm, this fixes the backlight issue you were seeing?
> 
> I applied a similar fix to my kernel yesterday, and it worked fine.
> Tested by changing brightness a few times. If any problems come up,
> I'll send new reports.
> 

Thanks for the confirmation.

Harry

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

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

* Re: [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
  2020-06-22 16:37 Alex Deucher
@ 2020-06-23 11:53 ` Greg KH
  0 siblings, 0 replies; 9+ messages in thread
From: Greg KH @ 2020-06-23 11:53 UTC (permalink / raw)
  To: Alex Deucher
  Cc: stable, Harry Wentland, Alexander Monakov, Hersen Wu,
	Anthony Koo, Michael Chiu, Alex Deucher, Nicholas Kazlauskas

On Mon, Jun 22, 2020 at 12:37:06PM -0400, Alex Deucher wrote:
> From: Harry Wentland <harry.wentland@amd.com>
> 
> This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.
> 
> This change was used for DCN2 bringup and is no longer desired.
> In fact it breaks backlight on DCN2 systems.
> 
> Cc: Alexander Monakov <amonakov@ispras.ru>
> Cc: Hersen Wu <hersenxs.wu@amd.com>
> Cc: Anthony Koo <Anthony.Koo@amd.com>
> Cc: Michael Chiu <Michael.Chiu@amd.com>
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> Acked-by: Alex Deucher <alexander.deucher@amd.com>
> Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
> Reported-and-tested-by: Alexander Monakov <amonakov@ispras.ru>
> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
> Cc: stable@vger.kernel.org
> (cherry picked from commit 14ed1c908a7a623cc0cbf0203f8201d1b7d31d16)
> ---
> 
> Fixed up to apply cleanly on 5.7 and older kernels.

Thanks, now queued up.

greg k-h

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

* [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up"
@ 2020-06-22 16:37 Alex Deucher
  2020-06-23 11:53 ` Greg KH
  0 siblings, 1 reply; 9+ messages in thread
From: Alex Deucher @ 2020-06-22 16:37 UTC (permalink / raw)
  To: stable
  Cc: Harry Wentland, Alexander Monakov, Hersen Wu, Anthony Koo,
	Michael Chiu, Alex Deucher, Nicholas Kazlauskas

From: Harry Wentland <harry.wentland@amd.com>

This reverts commit 96cb7cf13d8530099c256c053648ad576588c387.

This change was used for DCN2 bringup and is no longer desired.
In fact it breaks backlight on DCN2 systems.

Cc: Alexander Monakov <amonakov@ispras.ru>
Cc: Hersen Wu <hersenxs.wu@amd.com>
Cc: Anthony Koo <Anthony.Koo@amd.com>
Cc: Michael Chiu <Michael.Chiu@amd.com>
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Reported-and-tested-by: Alexander Monakov <amonakov@ispras.ru>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
(cherry picked from commit 14ed1c908a7a623cc0cbf0203f8201d1b7d31d16)
---

Fixed up to apply cleanly on 5.7 and older kernels.

 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 7fc15b82fe48..f9f02e08054b 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -1334,7 +1334,7 @@ static int dm_late_init(void *handle)
 	unsigned int linear_lut[16];
 	int i;
 	struct dmcu *dmcu = adev->dm.dc->res_pool->dmcu;
-	bool ret = false;
+	bool ret;
 
 	for (i = 0; i < 16; i++)
 		linear_lut[i] = 0xFFFF * i / 15;
@@ -1350,13 +1350,10 @@ static int dm_late_init(void *handle)
 	 */
 	params.min_abm_backlight = 0x28F;
 
-	/* todo will enable for navi10 */
-	if (adev->asic_type <= CHIP_RAVEN) {
-		ret = dmcu_load_iram(dmcu, params);
+	ret = dmcu_load_iram(dmcu, params);
 
-		if (!ret)
-			return -EINVAL;
-	}
+	if (!ret)
+		return -EINVAL;
 
 	return detect_mst_link_for_all_connectors(adev->ddev);
 }
-- 
2.25.4


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

end of thread, other threads:[~2020-06-23 11:53 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-28 13:48 [PATCH] Revert "drm/amd/display: disable dcn20 abm feature for bring up" Harry Wentland
2020-05-28 13:54 ` Alexander Monakov
2020-05-28 14:07   ` Harry Wentland
2020-05-28 14:13     ` Alexander Monakov
2020-05-28 14:26       ` Harry Wentland
2020-05-28 14:08 ` Alex Deucher
2020-05-28 14:13   ` Kazlauskas, Nicholas
2020-06-22 16:37 Alex Deucher
2020-06-23 11:53 ` Greg KH

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.