AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Wayne Lin <Wayne.Lin@amd.com>
To: <amd-gfx@lists.freedesktop.org>
Cc: <alexander.deucher@amd.com>,
	Harry Wentland <harry.wentland@amd.com>,
	"Leo Li" <sunpeng.li@amd.com>,
	Rodrigo Siqueira <rodrigo.siqueira@amd.com>,
	Aurabindo Pillai <aurabindo.pillai@amd.com>,
	Roman Li <roman.li@amd.com>,
	"Tom Chung" <chiahsuan.chung@amd.com>,
	Fangzhi Zuo <jerry.zuo@amd.com>,
	"Zaeem Mohamed" <zaeem.mohamed@amd.com>,
	Solomon Chiu <solomon.chiu@amd.com>,
	 "Wayne Lin" <Wayne.Lin@amd.com>
Subject: [PATCH 00/12] Patch set to support dcn36
Date: Wed, 5 Feb 2025 11:08:45 +0800	[thread overview]
Message-ID: <20250205030857.2608094-1-Wayne.Lin@amd.com> (raw)

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


             reply	other threads:[~2025-02-05  3:13 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-05  3:08 Wayne Lin [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250205030857.2608094-1-Wayne.Lin@amd.com \
    --to=wayne.lin@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=aurabindo.pillai@amd.com \
    --cc=chiahsuan.chung@amd.com \
    --cc=harry.wentland@amd.com \
    --cc=jerry.zuo@amd.com \
    --cc=rodrigo.siqueira@amd.com \
    --cc=roman.li@amd.com \
    --cc=solomon.chiu@amd.com \
    --cc=sunpeng.li@amd.com \
    --cc=zaeem.mohamed@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox