All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6
@ 2022-02-22  6:03 Yifan Zhang
  2022-02-22 13:52 ` Harry Wentland
  0 siblings, 1 reply; 4+ messages in thread
From: Yifan Zhang @ 2022-02-22  6:03 UTC (permalink / raw)
  To: amd-gfx
  Cc: Yifan Zhang, sunpeng.li, Tianci.Yin, prike.liang,
	alexander.deucher, harry.wentland, christian.koenig

From: "Tianci.Yin" <tianci.yin@amd.com>

this patch adds GTT domain support for dcn 3.1.5 and 3.1.6

Signed-off-by: Tianci.Yin <tianci.yin@amd.com>
Signed-off-by: Yifan Zhang <yifan1.zhang@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
index 9709368b4915..37f4da219a5f 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
@@ -523,6 +523,8 @@ uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev,
 			case IP_VERSION(3, 0, 1):
 			case IP_VERSION(3, 1, 2):
 			case IP_VERSION(3, 1, 3):
+			case IP_VERSION(3, 1, 5):
+			case IP_VERSION(3, 1, 6):
 				domain |= AMDGPU_GEM_DOMAIN_GTT;
 				break;
 			default:
-- 
2.25.1


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

* Re: [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6
  2022-02-22  6:03 [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6 Yifan Zhang
@ 2022-02-22 13:52 ` Harry Wentland
  2022-02-22 14:17   ` Alex Deucher
  0 siblings, 1 reply; 4+ messages in thread
From: Harry Wentland @ 2022-02-22 13:52 UTC (permalink / raw)
  To: Yifan Zhang, amd-gfx
  Cc: sunpeng.li, alexander.deucher, prike.liang, Tianci.Yin, christian.koenig

On 2022-02-22 01:03, Yifan Zhang wrote:
> From: "Tianci.Yin" <tianci.yin@amd.com>
> 
> this patch adds GTT domain support for dcn 3.1.5 and 3.1.6
> 
> Signed-off-by: Tianci.Yin <tianci.yin@amd.com>
> Signed-off-by: Yifan Zhang <yifan1.zhang@amd.com>

Acked-by: Harry Wentland <harry.wentland@amd.com>

Harry

> ---
>  drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> index 9709368b4915..37f4da219a5f 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> @@ -523,6 +523,8 @@ uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev,
>  			case IP_VERSION(3, 0, 1):
>  			case IP_VERSION(3, 1, 2):
>  			case IP_VERSION(3, 1, 3):
> +			case IP_VERSION(3, 1, 5):
> +			case IP_VERSION(3, 1, 6):
>  				domain |= AMDGPU_GEM_DOMAIN_GTT;
>  				break;
>  			default:


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

* Re: [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6
  2022-02-22 13:52 ` Harry Wentland
@ 2022-02-22 14:17   ` Alex Deucher
  2022-02-22 14:49     ` Zhang, Yifan
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Deucher @ 2022-02-22 14:17 UTC (permalink / raw)
  To: Harry Wentland
  Cc: Yifan Zhang, Leo (Sunpeng) Li, Tianci.Yin, amd-gfx list,
	Prike Liang, Deucher, Alexander, Christian Koenig

How about this series instead?
https://patchwork.freedesktop.org/series/100519/

Alex

On Tue, Feb 22, 2022 at 8:53 AM Harry Wentland <harry.wentland@amd.com> wrote:
>
> On 2022-02-22 01:03, Yifan Zhang wrote:
> > From: "Tianci.Yin" <tianci.yin@amd.com>
> >
> > this patch adds GTT domain support for dcn 3.1.5 and 3.1.6
> >
> > Signed-off-by: Tianci.Yin <tianci.yin@amd.com>
> > Signed-off-by: Yifan Zhang <yifan1.zhang@amd.com>
>
> Acked-by: Harry Wentland <harry.wentland@amd.com>
>
> Harry
>
> > ---
> >  drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> > index 9709368b4915..37f4da219a5f 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> > @@ -523,6 +523,8 @@ uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev,
> >                       case IP_VERSION(3, 0, 1):
> >                       case IP_VERSION(3, 1, 2):
> >                       case IP_VERSION(3, 1, 3):
> > +                     case IP_VERSION(3, 1, 5):
> > +                     case IP_VERSION(3, 1, 6):
> >                               domain |= AMDGPU_GEM_DOMAIN_GTT;
> >                               break;
> >                       default:
>

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

* RE: [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6
  2022-02-22 14:17   ` Alex Deucher
@ 2022-02-22 14:49     ` Zhang, Yifan
  0 siblings, 0 replies; 4+ messages in thread
From: Zhang, Yifan @ 2022-02-22 14:49 UTC (permalink / raw)
  To: Alex Deucher, Wentland, Harry
  Cc: Li, Sun peng (Leo), Yin, Tianci (Rico),
	amd-gfx list, Liang, Prike, Deucher, Alexander, Koenig,
	Christian

[AMD Official Use Only]

Hi Alex,

I'm OK w/ this series. Acked.

BRs,
Yifan

-----Original Message-----
From: Alex Deucher <alexdeucher@gmail.com> 
Sent: Tuesday, February 22, 2022 10:17 PM
To: Wentland, Harry <Harry.Wentland@amd.com>
Cc: Zhang, Yifan <Yifan1.Zhang@amd.com>; amd-gfx list <amd-gfx@lists.freedesktop.org>; Li, Sun peng (Leo) <Sunpeng.Li@amd.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Liang, Prike <Prike.Liang@amd.com>; Yin, Tianci (Rico) <Tianci.Yin@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>
Subject: Re: [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6

How about this series instead?
https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F100519%2F&amp;data=04%7C01%7Cyifan1.zhang%40amd.com%7C23aba82394f446c4c41b08d9f60e0687%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637811362370697462%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=oMn8bBcpNupXv3Kf%2FkMMbHLBtuQ45b46rEq4cAZYs2g%3D&amp;reserved=0

Alex

On Tue, Feb 22, 2022 at 8:53 AM Harry Wentland <harry.wentland@amd.com> wrote:
>
> On 2022-02-22 01:03, Yifan Zhang wrote:
> > From: "Tianci.Yin" <tianci.yin@amd.com>
> >
> > this patch adds GTT domain support for dcn 3.1.5 and 3.1.6
> >
> > Signed-off-by: Tianci.Yin <tianci.yin@amd.com>
> > Signed-off-by: Yifan Zhang <yifan1.zhang@amd.com>
>
> Acked-by: Harry Wentland <harry.wentland@amd.com>
>
> Harry
>
> > ---
> >  drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> > index 9709368b4915..37f4da219a5f 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> > @@ -523,6 +523,8 @@ uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev,
> >                       case IP_VERSION(3, 0, 1):
> >                       case IP_VERSION(3, 1, 2):
> >                       case IP_VERSION(3, 1, 3):
> > +                     case IP_VERSION(3, 1, 5):
> > +                     case IP_VERSION(3, 1, 6):
> >                               domain |= AMDGPU_GEM_DOMAIN_GTT;
> >                               break;
> >                       default:
>

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

end of thread, other threads:[~2022-02-22 14:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22  6:03 [PATCH v2] drm/amd/display: add GTT domain support for dcn 3.1.5 and 3.1.6 Yifan Zhang
2022-02-22 13:52 ` Harry Wentland
2022-02-22 14:17   ` Alex Deucher
2022-02-22 14:49     ` Zhang, Yifan

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.