All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS
@ 2022-04-15 19:50 Tales Lelo da Aparecida
  2022-04-15 19:50 ` [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary Tales Lelo da Aparecida
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Tales Lelo da Aparecida @ 2022-04-15 19:50 UTC (permalink / raw)
  To: Alex Deucher, Christian König, Pan, Xinhui, David Airlie,
	Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Jonathan Corbet, amd-gfx, dri-devel,
	linux-doc, linux-kernel, andrealmeid
  Cc: Tales Lelo da Aparecida

I was handling the request from [0] and then I noticed that some AMD
developers were missing from get_maintainers output due to the lack of a
reference to their documentation in the MAINTAINERS file.

[0] https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737

Tales Lelo da Aparecida (2):
  Documentation/gpu: Add entries to amdgpu glossary
  MAINTAINERS: add docs entry to AMDGPU

 Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
 MAINTAINERS                                  |  1 +
 2 files changed, 14 insertions(+)

-- 
2.35.1


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

* [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
  2022-04-15 19:50 [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS Tales Lelo da Aparecida
@ 2022-04-15 19:50 ` Tales Lelo da Aparecida
  2022-04-17  6:18     ` Paul Menzel
  2022-04-19 14:59     ` Alex Deucher
  2022-04-15 19:50 ` [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU Tales Lelo da Aparecida
  2022-04-16 13:00 ` [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS Christian König
  2 siblings, 2 replies; 14+ messages in thread
From: Tales Lelo da Aparecida @ 2022-04-15 19:50 UTC (permalink / raw)
  To: Alex Deucher, Christian König, Pan, Xinhui, David Airlie,
	Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Jonathan Corbet, amd-gfx, dri-devel,
	linux-doc, linux-kernel, andrealmeid
  Cc: Tales Lelo da Aparecida

Add missing acronyms to the amdgppu glossary.

Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
---
 Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
index 859dcec6c6f9..48829d097f40 100644
--- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
+++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
@@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
 
 .. glossary::
 
+    active_cu_number
+      The number of CUs that are active on the system.  The number of active
+      CUs may be less than SE * SH * CU depending on the board configuration.
+
     CP
       Command Processor
 
     CPLIB
       Content Protection Library
 
+    CU
+      Compute unit
+
     DFS
       Digital Frequency Synthesizer
 
@@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
     SDMA
       System DMA
 
+    SE
+      Shader Engine
+
+    SH
+      SHader array
+
     SMU
       System Management Unit
 
-- 
2.35.1


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

* [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU
  2022-04-15 19:50 [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS Tales Lelo da Aparecida
  2022-04-15 19:50 ` [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary Tales Lelo da Aparecida
@ 2022-04-15 19:50 ` Tales Lelo da Aparecida
  2022-04-16  5:47   ` Bagas Sanjaya
  2022-04-16 13:00 ` [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS Christian König
  2 siblings, 1 reply; 14+ messages in thread
From: Tales Lelo da Aparecida @ 2022-04-15 19:50 UTC (permalink / raw)
  To: Alex Deucher, Christian König, Pan, Xinhui, David Airlie,
	Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Jonathan Corbet, amd-gfx, dri-devel,
	linux-doc, linux-kernel, andrealmeid
  Cc: Tales Lelo da Aparecida

To make sure maintainers of amdgpu drivers are aware of any changes
 in their documentation, add its entry to MAINTAINERS.

Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index d54b9f15ffce..b3594b2a09de 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -16449,6 +16449,7 @@ S:	Supported
 T:	git https://gitlab.freedesktop.org/agd5f/linux.git
 B:	https://gitlab.freedesktop.org/drm/amd/-/issues
 C:	irc://irc.oftc.net/radeon
+F:	Documentation/gpu/amdgpu/
 F:	drivers/gpu/drm/amd/
 F:	drivers/gpu/drm/radeon/
 F:	include/uapi/drm/amdgpu_drm.h
-- 
2.35.1


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

* Re: [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU
  2022-04-15 19:50 ` [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU Tales Lelo da Aparecida
@ 2022-04-16  5:47   ` Bagas Sanjaya
  2022-04-16 16:58       ` Tales
  0 siblings, 1 reply; 14+ messages in thread
From: Bagas Sanjaya @ 2022-04-16  5:47 UTC (permalink / raw)
  To: Tales Lelo da Aparecida, Alex Deucher, Christian König, Pan,
	Xinhui, David Airlie, Daniel Vetter, Maarten Lankhorst,
	Maxime Ripard, Thomas Zimmermann, Jonathan Corbet, amd-gfx,
	dri-devel, linux-doc, linux-kernel, andrealmeid

On 4/16/22 02:50, Tales Lelo da Aparecida wrote:
> To make sure maintainers of amdgpu drivers are aware of any changes
>  in their documentation, add its entry to MAINTAINERS.
> 

Did you mean the Documentation/gpu/amdgpu/ is maintained by dri-devel?

-- 
An old man doll... just what I always wanted! - Clara

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

* Re: [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS
  2022-04-15 19:50 [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS Tales Lelo da Aparecida
  2022-04-15 19:50 ` [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary Tales Lelo da Aparecida
  2022-04-15 19:50 ` [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU Tales Lelo da Aparecida
@ 2022-04-16 13:00 ` Christian König
  2 siblings, 0 replies; 14+ messages in thread
From: Christian König @ 2022-04-16 13:00 UTC (permalink / raw)
  To: Tales Lelo da Aparecida, Alex Deucher, Christian König, Pan,
	Xinhui, David Airlie, Daniel Vetter, Maarten Lankhorst,
	Maxime Ripard, Thomas Zimmermann, Jonathan Corbet, amd-gfx,
	dri-devel, linux-doc, linux-kernel, andrealmeid

Am 15.04.22 um 21:50 schrieb Tales Lelo da Aparecida:
> I was handling the request from [0] and then I noticed that some AMD
> developers were missing from get_maintainers output due to the lack of a
> reference to their documentation in the MAINTAINERS file.

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

>
> [0] https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
>
> Tales Lelo da Aparecida (2):
>    Documentation/gpu: Add entries to amdgpu glossary
>    MAINTAINERS: add docs entry to AMDGPU
>
>   Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>   MAINTAINERS                                  |  1 +
>   2 files changed, 14 insertions(+)
>


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

* Re: [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU
  2022-04-16  5:47   ` Bagas Sanjaya
  2022-04-16 16:58       ` Tales
@ 2022-04-16 16:58       ` Tales
  0 siblings, 0 replies; 14+ messages in thread
From: Tales @ 2022-04-16 16:58 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Alex Deucher, Christian König, Pan, Xinhui, David Airlie,
	Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Jonathan Corbet, amd-gfx, dri-devel,
	linux-doc, linux-kernel, André Almeida

Hi Bagas Sanjaya,

Em sáb., 16 de abr. de 2022 às 02:47, Bagas Sanjaya
<bagasdotme@gmail.com> escreveu:
> On 4/16/22 02:50, Tales Lelo da Aparecida wrote:
> > To make sure maintainers of amdgpu drivers are aware of any changes
> >  in their documentation, add its entry to MAINTAINERS.
> >
>
> Did you mean the Documentation/gpu/amdgpu/ is maintained by dri-devel?

`Documentation/gpu/amdgpu/` should be maintained by "RADEON and AMDGPU
DRM DRIVERS" developers, which are part of the dri-devel community.

Kind regards

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

* Re: [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU
@ 2022-04-16 16:58       ` Tales
  0 siblings, 0 replies; 14+ messages in thread
From: Tales @ 2022-04-16 16:58 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Thomas Zimmermann, Jonathan Corbet, David Airlie, dri-devel, Pan,
	Xinhui, Maarten Lankhorst, linux-kernel, Maxime Ripard,
	linux-doc, amd-gfx, Daniel Vetter, Alex Deucher,
	André Almeida, Christian König

Hi Bagas Sanjaya,

Em sáb., 16 de abr. de 2022 às 02:47, Bagas Sanjaya
<bagasdotme@gmail.com> escreveu:
> On 4/16/22 02:50, Tales Lelo da Aparecida wrote:
> > To make sure maintainers of amdgpu drivers are aware of any changes
> >  in their documentation, add its entry to MAINTAINERS.
> >
>
> Did you mean the Documentation/gpu/amdgpu/ is maintained by dri-devel?

`Documentation/gpu/amdgpu/` should be maintained by "RADEON and AMDGPU
DRM DRIVERS" developers, which are part of the dri-devel community.

Kind regards

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

* Re: [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU
@ 2022-04-16 16:58       ` Tales
  0 siblings, 0 replies; 14+ messages in thread
From: Tales @ 2022-04-16 16:58 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Thomas Zimmermann, Jonathan Corbet, David Airlie, dri-devel, Pan,
	Xinhui, linux-kernel, linux-doc, amd-gfx, Alex Deucher,
	André Almeida, Christian König

Hi Bagas Sanjaya,

Em sáb., 16 de abr. de 2022 às 02:47, Bagas Sanjaya
<bagasdotme@gmail.com> escreveu:
> On 4/16/22 02:50, Tales Lelo da Aparecida wrote:
> > To make sure maintainers of amdgpu drivers are aware of any changes
> >  in their documentation, add its entry to MAINTAINERS.
> >
>
> Did you mean the Documentation/gpu/amdgpu/ is maintained by dri-devel?

`Documentation/gpu/amdgpu/` should be maintained by "RADEON and AMDGPU
DRM DRIVERS" developers, which are part of the dri-devel community.

Kind regards

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

* Re: [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
  2022-04-15 19:50 ` [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary Tales Lelo da Aparecida
  2022-04-17  6:18     ` Paul Menzel
@ 2022-04-17  6:18     ` Paul Menzel
  1 sibling, 0 replies; 14+ messages in thread
From: Paul Menzel @ 2022-04-17  6:18 UTC (permalink / raw)
  To: Tales Lelo da Aparecida
  Cc: Alex Deucher, Christian König, Xinhui Pan, David Airlie,
	Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Jonathan Corbet, amd-gfx, dri-devel,
	linux-doc, linux-kernel, andrealmeid

Dear Tales,


Thank you for your patch.

Am 15.04.22 um 21:50 schrieb Tales Lelo da Aparecida:
> Add missing acronyms to the amdgppu glossary.
> 
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
> Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
> ---
>   Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>   1 file changed, 13 insertions(+)
> 
> diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> index 859dcec6c6f9..48829d097f40 100644
> --- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> +++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> @@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
>   
>   .. glossary::
>   
> +    active_cu_number
> +      The number of CUs that are active on the system.  The number of active
> +      CUs may be less than SE * SH * CU depending on the board configuration.
> +
>       CP
>         Command Processor
>   
>       CPLIB
>         Content Protection Library
>   
> +    CU
> +      Compute unit

Capitalize the U in *unit* as seems to be done in the rest of the files?

> +
>       DFS
>         Digital Frequency Synthesizer
>   
> @@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
>       SDMA
>         System DMA
>   
> +    SE
> +      Shader Engine
> +
> +    SH
> +      SHader array

No idea if the H should be capitalized.

> +
>       SMU
>         System Management Unit
>   


Kind regards,

Paul

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

* Re: [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
@ 2022-04-17  6:18     ` Paul Menzel
  0 siblings, 0 replies; 14+ messages in thread
From: Paul Menzel @ 2022-04-17  6:18 UTC (permalink / raw)
  To: Tales Lelo da Aparecida
  Cc: Thomas Zimmermann, Jonathan Corbet, David Airlie, dri-devel,
	Xinhui Pan, linux-kernel, linux-doc, amd-gfx, Alex Deucher,
	andrealmeid, Christian König

Dear Tales,


Thank you for your patch.

Am 15.04.22 um 21:50 schrieb Tales Lelo da Aparecida:
> Add missing acronyms to the amdgppu glossary.
> 
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
> Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
> ---
>   Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>   1 file changed, 13 insertions(+)
> 
> diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> index 859dcec6c6f9..48829d097f40 100644
> --- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> +++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> @@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
>   
>   .. glossary::
>   
> +    active_cu_number
> +      The number of CUs that are active on the system.  The number of active
> +      CUs may be less than SE * SH * CU depending on the board configuration.
> +
>       CP
>         Command Processor
>   
>       CPLIB
>         Content Protection Library
>   
> +    CU
> +      Compute unit

Capitalize the U in *unit* as seems to be done in the rest of the files?

> +
>       DFS
>         Digital Frequency Synthesizer
>   
> @@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
>       SDMA
>         System DMA
>   
> +    SE
> +      Shader Engine
> +
> +    SH
> +      SHader array

No idea if the H should be capitalized.

> +
>       SMU
>         System Management Unit
>   


Kind regards,

Paul

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

* Re: [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
@ 2022-04-17  6:18     ` Paul Menzel
  0 siblings, 0 replies; 14+ messages in thread
From: Paul Menzel @ 2022-04-17  6:18 UTC (permalink / raw)
  To: Tales Lelo da Aparecida
  Cc: Thomas Zimmermann, Jonathan Corbet, David Airlie, dri-devel,
	Xinhui Pan, Maarten Lankhorst, linux-kernel, Maxime Ripard,
	linux-doc, amd-gfx, Daniel Vetter, Alex Deucher, andrealmeid,
	Christian König

Dear Tales,


Thank you for your patch.

Am 15.04.22 um 21:50 schrieb Tales Lelo da Aparecida:
> Add missing acronyms to the amdgppu glossary.
> 
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
> Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
> ---
>   Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>   1 file changed, 13 insertions(+)
> 
> diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> index 859dcec6c6f9..48829d097f40 100644
> --- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> +++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> @@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
>   
>   .. glossary::
>   
> +    active_cu_number
> +      The number of CUs that are active on the system.  The number of active
> +      CUs may be less than SE * SH * CU depending on the board configuration.
> +
>       CP
>         Command Processor
>   
>       CPLIB
>         Content Protection Library
>   
> +    CU
> +      Compute unit

Capitalize the U in *unit* as seems to be done in the rest of the files?

> +
>       DFS
>         Digital Frequency Synthesizer
>   
> @@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
>       SDMA
>         System DMA
>   
> +    SE
> +      Shader Engine
> +
> +    SH
> +      SHader array

No idea if the H should be capitalized.

> +
>       SMU
>         System Management Unit
>   


Kind regards,

Paul

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

* Re: [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
  2022-04-15 19:50 ` [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary Tales Lelo da Aparecida
  2022-04-17  6:18     ` Paul Menzel
@ 2022-04-19 14:59     ` Alex Deucher
  1 sibling, 0 replies; 14+ messages in thread
From: Alex Deucher @ 2022-04-19 14:59 UTC (permalink / raw)
  To: Tales Lelo da Aparecida
  Cc: Thomas Zimmermann, Jonathan Corbet, David Airlie,
	Maling list - DRI developers, Pan, Xinhui, LKML,
	Linux Doc Mailing List, amd-gfx list, Alex Deucher, andrealmeid,
	Christian König

Applied the series with minor fix to capitalize the U in Compute Unit.  Thanks!

Alex

On Fri, Apr 15, 2022 at 3:52 PM Tales Lelo da Aparecida
<tales.aparecida@gmail.com> wrote:
>
> Add missing acronyms to the amdgppu glossary.
>
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
> Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
> ---
>  Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> index 859dcec6c6f9..48829d097f40 100644
> --- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> +++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> @@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
>
>  .. glossary::
>
> +    active_cu_number
> +      The number of CUs that are active on the system.  The number of active
> +      CUs may be less than SE * SH * CU depending on the board configuration.
> +
>      CP
>        Command Processor
>
>      CPLIB
>        Content Protection Library
>
> +    CU
> +      Compute unit
> +
>      DFS
>        Digital Frequency Synthesizer
>
> @@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
>      SDMA
>        System DMA
>
> +    SE
> +      Shader Engine
> +
> +    SH
> +      SHader array
> +
>      SMU
>        System Management Unit
>
> --
> 2.35.1
>

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

* Re: [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
@ 2022-04-19 14:59     ` Alex Deucher
  0 siblings, 0 replies; 14+ messages in thread
From: Alex Deucher @ 2022-04-19 14:59 UTC (permalink / raw)
  To: Tales Lelo da Aparecida
  Cc: Alex Deucher, Christian König, Pan, Xinhui, David Airlie,
	Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, Jonathan Corbet, amd-gfx list,
	Maling list - DRI developers, Linux Doc Mailing List, LKML,
	andrealmeid

Applied the series with minor fix to capitalize the U in Compute Unit.  Thanks!

Alex

On Fri, Apr 15, 2022 at 3:52 PM Tales Lelo da Aparecida
<tales.aparecida@gmail.com> wrote:
>
> Add missing acronyms to the amdgppu glossary.
>
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
> Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
> ---
>  Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> index 859dcec6c6f9..48829d097f40 100644
> --- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> +++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> @@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
>
>  .. glossary::
>
> +    active_cu_number
> +      The number of CUs that are active on the system.  The number of active
> +      CUs may be less than SE * SH * CU depending on the board configuration.
> +
>      CP
>        Command Processor
>
>      CPLIB
>        Content Protection Library
>
> +    CU
> +      Compute unit
> +
>      DFS
>        Digital Frequency Synthesizer
>
> @@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
>      SDMA
>        System DMA
>
> +    SE
> +      Shader Engine
> +
> +    SH
> +      SHader array
> +
>      SMU
>        System Management Unit
>
> --
> 2.35.1
>

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

* Re: [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary
@ 2022-04-19 14:59     ` Alex Deucher
  0 siblings, 0 replies; 14+ messages in thread
From: Alex Deucher @ 2022-04-19 14:59 UTC (permalink / raw)
  To: Tales Lelo da Aparecida
  Cc: Thomas Zimmermann, Jonathan Corbet, David Airlie,
	Maling list - DRI developers, Pan, Xinhui, Maarten Lankhorst,
	LKML, Maxime Ripard, Linux Doc Mailing List, amd-gfx list,
	Daniel Vetter, Alex Deucher, andrealmeid, Christian König

Applied the series with minor fix to capitalize the U in Compute Unit.  Thanks!

Alex

On Fri, Apr 15, 2022 at 3:52 PM Tales Lelo da Aparecida
<tales.aparecida@gmail.com> wrote:
>
> Add missing acronyms to the amdgppu glossary.
>
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/1939#note_1309737
> Signed-off-by: Tales Lelo da Aparecida <tales.aparecida@gmail.com>
> ---
>  Documentation/gpu/amdgpu/amdgpu-glossary.rst | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/Documentation/gpu/amdgpu/amdgpu-glossary.rst b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> index 859dcec6c6f9..48829d097f40 100644
> --- a/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> +++ b/Documentation/gpu/amdgpu/amdgpu-glossary.rst
> @@ -8,12 +8,19 @@ we have a dedicated glossary for Display Core at
>
>  .. glossary::
>
> +    active_cu_number
> +      The number of CUs that are active on the system.  The number of active
> +      CUs may be less than SE * SH * CU depending on the board configuration.
> +
>      CP
>        Command Processor
>
>      CPLIB
>        Content Protection Library
>
> +    CU
> +      Compute unit
> +
>      DFS
>        Digital Frequency Synthesizer
>
> @@ -74,6 +81,12 @@ we have a dedicated glossary for Display Core at
>      SDMA
>        System DMA
>
> +    SE
> +      Shader Engine
> +
> +    SH
> +      SHader array
> +
>      SMU
>        System Management Unit
>
> --
> 2.35.1
>

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

end of thread, other threads:[~2022-04-19 14:59 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-15 19:50 [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS Tales Lelo da Aparecida
2022-04-15 19:50 ` [PATCH 1/2] Documentation/gpu: Add entries to amdgpu glossary Tales Lelo da Aparecida
2022-04-17  6:18   ` Paul Menzel
2022-04-17  6:18     ` Paul Menzel
2022-04-17  6:18     ` Paul Menzel
2022-04-19 14:59   ` Alex Deucher
2022-04-19 14:59     ` Alex Deucher
2022-04-19 14:59     ` Alex Deucher
2022-04-15 19:50 ` [PATCH 2/2] MAINTAINERS: add docs entry to AMDGPU Tales Lelo da Aparecida
2022-04-16  5:47   ` Bagas Sanjaya
2022-04-16 16:58     ` Tales
2022-04-16 16:58       ` Tales
2022-04-16 16:58       ` Tales
2022-04-16 13:00 ` [PATCH 0/2] Update AMDGPU glossary and MAINTAINERS 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.