All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/11] amd/display: Add GFX9+ modifier support.
@ 2020-09-04 16:06 ` Bas Nieuwenhuizen
  0 siblings, 0 replies; 38+ messages in thread
From: Bas Nieuwenhuizen @ 2020-09-04 16:06 UTC (permalink / raw)
  To: amd-gfx
  Cc: maraeo, daniel, dri-devel, daniel, Bas Nieuwenhuizen, alexdeucher,
	harry.wentland

This adds modifier support to radeonsi.
It has been tested on

- VEGA10, RAVEN, NAVI14
- weston, sway, X with xf86-video-amdgpu (i.e. legacy path still works)

and includes some basic testing of the layout code.

The main goal is to keep it somewhat simple and regression free, so
on the display side this series only exposes what the current GPU
can render to. While we could expose more I think that is more
suitable for follow-up work as the benefit would be minimal and
there are some more design discussion there to discuss that are
orthogonal from the initial implementation.

Similarly this series only exposes 32-bpp displayable DCC in the cases
that radeonsi would use it and any extra capabilities here should be
future work.

I believe these are by far the most complicated modifiers we've seen
up till now, mostly related to

- GPU identification for cases where it matters wrt tiling.
- Every generation having tiling layout changes
- Compression settings.

I believe the complexity is necessary as every layout should be different
and all layouts should be the best in some situation (though not all
combinations of GPU parameters will actually have an existing GPU).

That said, on the render side the number of modifiers actually listed for
a given GPU is ~10, and in the current implementation that is the same
for the display side. (we could expose more actually differing layouts
on the display side for cross-GPU compatibility, but I consider that
out of scope for this initial work).

This series can be found on
https://github.com/BNieuwenhuizen/linux/tree/modifiers

An userspace implementation in radeonsi can be found on
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6176

v2:

Per suggestion from Daniel Vetter I added logic to get the tiling_flags at
addfb2 time and convert them into modifiers for GFX9+.  Furthermore, the DCC
constant econding modifers only get exposed on RAVEN2 and newer.

Bas Nieuwenhuizen (11):
  drm/amd/display: Do not silently accept DCC for multiplane formats.
  drm/amd: Init modifier field of helper fb.
  drm/amd/display: Honor the offset for plane 0.
  drm/fourcc:  Add AMD DRM modifiers.
  drm/amd/display: Store tiling_flags in the framebuffer.
  drm/amd/display: Convert tiling_flags to modifiers.
  drm/amd/display: Refactor surface tiling setup.
  drm/amd/display: Set DC options from modifiers.
  drm/amd/display: Add formats for DCC with 2/3 planes.
  drm/amd/display: Expose modifiers.
  drm/amd/display: Clean up GFX9 tiling_flags path.

 drivers/gpu/drm/amd/amdgpu/amdgpu_display.c   | 169 +++-
 drivers/gpu/drm/amd/amdgpu/amdgpu_fb.c        |   2 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_mode.h      |   3 +
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 754 ++++++++++++++----
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h |   2 -
 include/uapi/drm/drm_fourcc.h                 | 115 +++
 6 files changed, 880 insertions(+), 165 deletions(-)

-- 
2.28.0

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

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

end of thread, other threads:[~2020-09-07 15:10 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-04 16:06 [PATCH v2 00/11] amd/display: Add GFX9+ modifier support Bas Nieuwenhuizen
2020-09-04 16:06 ` Bas Nieuwenhuizen
2020-09-04 16:06 ` [PATCH v2 01/11] drm/amd/display: Do not silently accept DCC for multiplane formats Bas Nieuwenhuizen
2020-09-04 16:06   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 02/11] drm/amd: Init modifier field of helper fb Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 03/11] drm/amd/display: Honor the offset for plane 0 Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-07 15:03   ` Sasha Levin
2020-09-07 15:03     ` Sasha Levin
2020-09-07 15:03     ` Sasha Levin
2020-09-04 16:07 ` [PATCH v2 04/11] drm/fourcc: Add AMD DRM modifiers Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-07  8:44   ` Pierre-Eric Pelloux-Prayer
2020-09-07  8:44     ` Pierre-Eric Pelloux-Prayer
2020-09-07 11:19     ` Bas Nieuwenhuizen
2020-09-07 11:19       ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 05/11] drm/amd/display: Store tiling_flags in the framebuffer Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 06/11] drm/amd/display: Convert tiling_flags to modifiers Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 07/11] drm/amd/display: Refactor surface tiling setup Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 08/11] drm/amd/display: Set DC options from modifiers Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 09/11] drm/amd/display: Add formats for DCC with 2/3 planes Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 10/11] drm/amd/display: Expose modifiers Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-04 16:07 ` [PATCH v2 11/11] drm/amd/display: Clean up GFX9 tiling_flags path Bas Nieuwenhuizen
2020-09-04 16:07   ` Bas Nieuwenhuizen
2020-09-07  8:27 ` [PATCH v2 00/11] amd/display: Add GFX9+ modifier support Daniel Vetter
2020-09-07  8:27   ` Daniel Vetter
2020-09-07  8:51 ` Ernst Sjöstrand
2020-09-07  8:51   ` Ernst Sjöstrand
2020-09-07 11:11   ` Bas Nieuwenhuizen
2020-09-07 11:11     ` Bas Nieuwenhuizen

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.