AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Deucher <alexander.deucher@amd.com>
To: <amd-gfx@lists.freedesktop.org>
Cc: Alex Deucher <alexander.deucher@amd.com>
Subject: [PATCH 0/6] Update DCN 3.1 support for 3.1.6
Date: Tue, 15 Feb 2022 16:44:43 -0500	[thread overview]
Message-ID: <20220215214447.2234978-1-alexander.deucher@amd.com> (raw)

Update DCN 3.1 for 3.1.6.  This is a minor update
to DCN 3.1 display support in amdgpu.

The first two patches are register headers so I did not
send them out due to size.

Hansen Dsouza (1):
  drm/amd/display: Add DCN316 resource and SMU clock manager

Leo Li (3):
  drm/amd/include: Add register headers for DCN 3.1.6
  drm/amd/include: Add MP 13.0.8 register headers
  drm/amd/display: Add DMUB support for DCN316

Prike Liang (2):
  drm/amd/display: configure dc hw resource for DCN 3.1.6
  drm/amdgpu/discovery: Add sw DM function for 3.1.6 DCE

 drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c |      1 +
 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |     14 +-
 .../amd/display/amdgpu_dm/amdgpu_dm_hdcp.c    |      3 +-
 drivers/gpu/drm/amd/display/dc/Makefile       |      1 +
 .../display/dc/bios/command_table_helper2.c   |      1 +
 .../gpu/drm/amd/display/dc/clk_mgr/Makefile   |     10 +
 .../gpu/drm/amd/display/dc/clk_mgr/clk_mgr.c  |     16 +
 .../dc/clk_mgr/dcn316/dcn316_clk_mgr.c        |    706 +
 .../dc/clk_mgr/dcn316/dcn316_clk_mgr.h        |     49 +
 .../display/dc/clk_mgr/dcn316/dcn316_smu.c    |    328 +
 .../display/dc/clk_mgr/dcn316/dcn316_smu.h    |    128 +
 .../gpu/drm/amd/display/dc/core/dc_resource.c |      8 +
 .../gpu/drm/amd/display/dc/dcn316/Makefile    |     56 +
 .../amd/display/dc/dcn316/dcn316_resource.c   |   2306 +
 .../amd/display/dc/dcn316/dcn316_resource.h   |     42 +
 drivers/gpu/drm/amd/display/dc/gpio/Makefile  |      1 +
 .../gpu/drm/amd/display/dc/gpio/hw_factory.c  |      1 +
 .../drm/amd/display/dc/gpio/hw_translate.c    |      1 +
 drivers/gpu/drm/amd/display/dmub/dmub_srv.h   |      1 +
 drivers/gpu/drm/amd/display/dmub/src/Makefile |      2 +
 .../drm/amd/display/dmub/src/dmub_dcn316.c    |     62 +
 .../drm/amd/display/dmub/src/dmub_dcn316.h    |     33 +
 .../gpu/drm/amd/display/dmub/src/dmub_srv.c   |      4 +
 .../gpu/drm/amd/display/include/dal_asic_id.h |      6 +-
 .../gpu/drm/amd/display/include/dal_types.h   |      1 +
 .../include/asic_reg/dcn/dcn_3_1_6_offset.h   |  15682 ++
 .../include/asic_reg/dcn/dcn_3_1_6_sh_mask.h  |  62717 +++++++
 .../include/asic_reg/dpcs/dpcs_4_2_3_offset.h |  11969 ++
 .../asic_reg/dpcs/dpcs_4_2_3_sh_mask.h        | 136141 +++++++++++++++
 .../include/asic_reg/mp/mp_13_0_8_offset.h    |    410 +
 .../include/asic_reg/mp/mp_13_0_8_sh_mask.h   |    603 +
 31 files changed, 231300 insertions(+), 3 deletions(-)
 create mode 100644 drivers/gpu/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.h
 create mode 100644 drivers/gpu/drm/amd/display/dc/clk_mgr/dcn316/dcn316_smu.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/clk_mgr/dcn316/dcn316_smu.h
 create mode 100644 drivers/gpu/drm/amd/display/dc/dcn316/Makefile
 create mode 100644 drivers/gpu/drm/amd/display/dc/dcn316/dcn316_resource.c
 create mode 100644 drivers/gpu/drm/amd/display/dc/dcn316/dcn316_resource.h
 create mode 100644 drivers/gpu/drm/amd/display/dmub/src/dmub_dcn316.c
 create mode 100644 drivers/gpu/drm/amd/display/dmub/src/dmub_dcn316.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/dcn/dcn_3_1_6_offset.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/dcn/dcn_3_1_6_sh_mask.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/dpcs/dpcs_4_2_3_offset.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/dpcs/dpcs_4_2_3_sh_mask.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/mp/mp_13_0_8_offset.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/mp/mp_13_0_8_sh_mask.h

-- 
2.34.1


             reply	other threads:[~2022-02-15 21:45 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-15 21:44 Alex Deucher [this message]
2022-02-15 21:44 ` [PATCH 3/6] drm/amd/display: configure dc hw resource for DCN 3.1.6 Alex Deucher
2022-02-16 15:25   ` Leo Li
2022-02-15 21:44 ` [PATCH 4/6] drm/amd/display: Add DMUB support for DCN316 Alex Deucher
2022-02-16 19:46   ` Harry Wentland
2022-02-15 21:44 ` [PATCH 5/6] drm/amd/display: Add DCN316 resource and SMU clock manager Alex Deucher
2022-02-16 15:55   ` Leo Li
2022-02-15 21:44 ` [PATCH 6/6] drm/amdgpu/discovery: Add sw DM function for 3.1.6 DCE Alex Deucher
2022-02-16 15:57   ` Leo Li

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=20220215214447.2234978-1-alexander.deucher@amd.com \
    --to=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    /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