All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu/gfx9: move define to header file
@ 2017-05-04 14:33 Alex Deucher
       [not found] ` <1493908399-22631-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Deucher @ 2017-05-04 14:33 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher

rather than defining it locally.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 --
 drivers/gpu/drm/amd/amdgpu/soc15d.h   | 1 +
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
index d364536..b246d22 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
@@ -2977,8 +2977,6 @@ static void gfx_v9_0_ring_emit_ib_gfx(struct amdgpu_ring *ring,
         amdgpu_ring_write(ring, control);
 }
 
-#define	INDIRECT_BUFFER_VALID                   (1 << 23)
-
 static void gfx_v9_0_ring_emit_ib_compute(struct amdgpu_ring *ring,
                                           struct amdgpu_ib *ib,
                                           unsigned vm_id, bool ctx_switch)
diff --git a/drivers/gpu/drm/amd/amdgpu/soc15d.h b/drivers/gpu/drm/amd/amdgpu/soc15d.h
index 9e1b9e9..e46e249 100644
--- a/drivers/gpu/drm/amd/amdgpu/soc15d.h
+++ b/drivers/gpu/drm/amd/amdgpu/soc15d.h
@@ -132,6 +132,7 @@
 		 * 1 - pfp
 		 */
 #define	PACKET3_INDIRECT_BUFFER				0x3F
+#define		INDIRECT_BUFFER_VALID                   (1 << 23)
 #define		INDIRECT_BUFFER_CACHE_POLICY(x)         ((x) << 28)
 		/* 0 - LRU
 		 * 1 - Stream
-- 
2.5.5

_______________________________________________
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/amdgpu/gfx9: move define to header file
       [not found] ` <1493908399-22631-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
@ 2017-05-05  3:34   ` Zhang, Jerry (Junwei)
       [not found]     ` <590BF2BA.3000302-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Zhang, Jerry (Junwei) @ 2017-05-05  3:34 UTC (permalink / raw)
  To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher

On 05/04/2017 10:33 PM, Alex Deucher wrote:
> rather than defining it locally.
>
> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 --
>   drivers/gpu/drm/amd/amdgpu/soc15d.h   | 1 +
>   2 files changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> index d364536..b246d22 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> @@ -2977,8 +2977,6 @@ static void gfx_v9_0_ring_emit_ib_gfx(struct amdgpu_ring *ring,
>           amdgpu_ring_write(ring, control);
>   }
>
> -#define	INDIRECT_BUFFER_VALID                   (1 << 23)
> -
>   static void gfx_v9_0_ring_emit_ib_compute(struct amdgpu_ring *ring,
>                                             struct amdgpu_ib *ib,
>                                             unsigned vm_id, bool ctx_switch)
> diff --git a/drivers/gpu/drm/amd/amdgpu/soc15d.h b/drivers/gpu/drm/amd/amdgpu/soc15d.h
> index 9e1b9e9..e46e249 100644
> --- a/drivers/gpu/drm/amd/amdgpu/soc15d.h
> +++ b/drivers/gpu/drm/amd/amdgpu/soc15d.h
> @@ -132,6 +132,7 @@
>   		 * 1 - pfp
>   		 */
>   #define	PACKET3_INDIRECT_BUFFER				0x3F
> +#define		INDIRECT_BUFFER_VALID                   (1 << 23)
>   #define		INDIRECT_BUFFER_CACHE_POLICY(x)         ((x) << 28)
>   		/* 0 - LRU
>   		 * 1 - Stream
>
_______________________________________________
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/amdgpu/gfx9: move define to header file
       [not found]     ` <590BF2BA.3000302-5C7GfCeVMHo@public.gmane.org>
@ 2017-05-05  9:14       ` Christian König
  0 siblings, 0 replies; 3+ messages in thread
From: Christian König @ 2017-05-05  9:14 UTC (permalink / raw)
  To: Zhang, Jerry (Junwei), Alex Deucher,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
  Cc: Alex Deucher

Am 05.05.2017 um 05:34 schrieb Zhang, Jerry (Junwei):
> On 05/04/2017 10:33 PM, Alex Deucher wrote:
>> rather than defining it locally.
>>
>> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
> Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>

Reviewed-by: Christian König <christian.koenig@amd.com>

>
>> ---
>>   drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 --
>>   drivers/gpu/drm/amd/amdgpu/soc15d.h   | 1 +
>>   2 files changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c 
>> b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
>> index d364536..b246d22 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
>> @@ -2977,8 +2977,6 @@ static void gfx_v9_0_ring_emit_ib_gfx(struct 
>> amdgpu_ring *ring,
>>           amdgpu_ring_write(ring, control);
>>   }
>>
>> -#define    INDIRECT_BUFFER_VALID                   (1 << 23)
>> -
>>   static void gfx_v9_0_ring_emit_ib_compute(struct amdgpu_ring *ring,
>>                                             struct amdgpu_ib *ib,
>>                                             unsigned vm_id, bool 
>> ctx_switch)
>> diff --git a/drivers/gpu/drm/amd/amdgpu/soc15d.h 
>> b/drivers/gpu/drm/amd/amdgpu/soc15d.h
>> index 9e1b9e9..e46e249 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/soc15d.h
>> +++ b/drivers/gpu/drm/amd/amdgpu/soc15d.h
>> @@ -132,6 +132,7 @@
>>            * 1 - pfp
>>            */
>>   #define    PACKET3_INDIRECT_BUFFER                0x3F
>> +#define        INDIRECT_BUFFER_VALID                   (1 << 23)
>>   #define        INDIRECT_BUFFER_CACHE_POLICY(x)         ((x) << 28)
>>           /* 0 - LRU
>>            * 1 - Stream
>>
> _______________________________________________
> 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] 3+ messages in thread

end of thread, other threads:[~2017-05-05  9:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-04 14:33 [PATCH] drm/amdgpu/gfx9: move define to header file Alex Deucher
     [not found] ` <1493908399-22631-1-git-send-email-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2017-05-05  3:34   ` Zhang, Jerry (Junwei)
     [not found]     ` <590BF2BA.3000302-5C7GfCeVMHo@public.gmane.org>
2017-05-05  9:14       ` Christian König

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.