All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] Patch set to support dcn36
@ 2025-02-05  3:08 Wayne Lin
  2025-02-05  3:08 ` [PATCH 02/12] drm/amd/display: Add DCN36 version identifiers Wayne Lin
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Wayne Lin @ 2025-02-05  3:08 UTC (permalink / raw)
  To: amd-gfx
  Cc: alexander.deucher, Harry Wentland, Leo Li, Rodrigo Siqueira,
	Aurabindo Pillai, Roman Li, Tom Chung, Fangzhi Zuo, Zaeem Mohamed,
	Solomon Chiu, Wayne Lin

This patchset brings support for dcn36.

---

Wayne Lin (12):
  drm/amd/display: Add dcn36 register header files
  drm/amd/display: Add DCN36 version identifiers
  drm/amd/display: Add DCN36 BIOS command table support
  drm/amd/display: Add DCN36 IRQ
  drm/amd/display: Add DCN36 Resource
  drm/amd/display: Add DCN36 GPIO
  drm/amd/display: Add DCN36 DML2 support
  drm/amd/display: Add DCN36 DMCUB
  drm/amd/display: Support DCN36 DSC
  drm/amd/display: Support DCN36 HDCP
  drm/amd/display: Add DCN36 CORE
  drm/amd/display: Add DCN36 DM Support

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |    18 +
 .../amd/display/amdgpu_dm/amdgpu_dm_hdcp.c    |     1 +
 .../display/dc/bios/command_table_helper2.c   |     1 +
 .../gpu/drm/amd/display/dc/core/dc_resource.c |     6 +
 drivers/gpu/drm/amd/display/dc/dc_helper.c    |     2 +
 .../dc/dml2/display_mode_core_structs.h       |     1 +
 .../gpu/drm/amd/display/dc/dml2/dml2_policy.c |     1 +
 .../display/dc/dml2/dml2_translation_helper.c |     3 +
 .../drm/amd/display/dc/dml2/dml2_wrapper.c    |     4 +
 .../gpu/drm/amd/display/dc/gpio/hw_factory.c  |     1 +
 .../drm/amd/display/dc/gpio/hw_translate.c    |     1 +
 .../amd/display/dc/hwss/dce110/dce110_hwseq.c |     1 +
 drivers/gpu/drm/amd/display/dc/irq/Makefile   |     9 +
 .../display/dc/irq/dcn36/irq_service_dcn36.c  |   408 +
 .../display/dc/irq/dcn36/irq_service_dcn36.h  |    12 +
 .../gpu/drm/amd/display/dc/resource/Makefile  |     8 +
 .../dc/resource/dcn36/dcn36_resource.c        |  2171 +
 .../dc/resource/dcn36/dcn36_resource.h        |    73 +
 drivers/gpu/drm/amd/display/dmub/dmub_srv.h   |     1 +
 drivers/gpu/drm/amd/display/dmub/src/Makefile |     1 +
 .../gpu/drm/amd/display/dmub/src/dmub_dcn36.c |    34 +
 .../gpu/drm/amd/display/dmub/src/dmub_dcn36.h |    13 +
 .../gpu/drm/amd/display/dmub/src/dmub_srv.c   |     4 +
 .../gpu/drm/amd/display/include/dal_asic_id.h |     1 +
 .../gpu/drm/amd/display/include/dal_types.h   |     1 +
 .../include/asic_reg/dcn/dcn_3_6_0_offset.h   | 15485 ++++
 .../include/asic_reg/dcn/dcn_3_6_0_sh_mask.h  | 61940 ++++++++++++++++
 27 files changed, 80201 insertions(+)
 create mode 100644 drivers/gpu/drm/amd/display/dc/irq/dcn36/irq_service_dcn36.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/irq/dcn36/irq_service_dcn36.h
 create mode 100644 drivers/gpu/drm/amd/display/dc/resource/dcn36/dcn36_resource.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/resource/dcn36/dcn36_resource.h
 create mode 100644 drivers/gpu/drm/amd/display/dmub/src/dmub_dcn36.c
 create mode 100644 drivers/gpu/drm/amd/display/dmub/src/dmub_dcn36.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/dcn/dcn_3_6_0_offset.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/dcn/dcn_3_6_0_sh_mask.h

-- 
2.37.3


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

end of thread, other threads:[~2025-02-05  3:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-05  3:08 [PATCH 00/12] Patch set to support dcn36 Wayne Lin
2025-02-05  3:08 ` [PATCH 02/12] drm/amd/display: Add DCN36 version identifiers Wayne Lin
2025-02-05  3:08 ` [PATCH 03/12] drm/amd/display: Add DCN36 BIOS command table support Wayne Lin
2025-02-05  3:08 ` [PATCH 04/12] drm/amd/display: Add DCN36 IRQ Wayne Lin
2025-02-05  3:08 ` [PATCH 05/12] drm/amd/display: Add DCN36 Resource Wayne Lin
2025-02-05  3:08 ` [PATCH 06/12] drm/amd/display: Add DCN36 GPIO Wayne Lin
2025-02-05  3:08 ` [PATCH 07/12] drm/amd/display: Add DCN36 DML2 support Wayne Lin
2025-02-05  3:08 ` [PATCH 08/12] drm/amd/display: Add DCN36 DMCUB Wayne Lin
2025-02-05  3:08 ` [PATCH 09/12] drm/amd/display: Support DCN36 DSC Wayne Lin
2025-02-05  3:08 ` [PATCH 10/12] drm/amd/display: Support DCN36 HDCP Wayne Lin
2025-02-05  3:08 ` [PATCH 11/12] drm/amd/display: Add DCN36 CORE Wayne Lin
2025-02-05  3:08 ` [PATCH 12/12] drm/amd/display: Add DCN36 DM Support Wayne Lin

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.