From: Fangzhi Zuo <Jerry.Zuo@amd.com>
To: <amd-gfx@lists.freedesktop.org>, <nicholas.kazlauskas@amd.com>,
<harry.wentland@amd.com>
Cc: <wayne.lin@amd.com>, Fangzhi Zuo <Jerry.Zuo@amd.com>
Subject: [PATCH 0/6] Add DP 2.0 SST Support
Date: Mon, 16 Aug 2021 16:59:13 -0400 [thread overview]
Message-ID: <20210816205919.614691-1-Jerry.Zuo@amd.com> (raw)
The patch series adds SST UHBR10 support
Fangzhi Zuo (6):
drm/amd/display: Add DP 2.0 Audio Package Generator
drm/amd/display: Add DP 2.0 HPO Stream Encoder
drm/amd/display: Add DP 2.0 HPO Link Encoder
drm/amd/display: Add DP 2.0 DCCG
drm/amd/display: Add DP 2.0 BIOS and DMUB Support
drm/amd/display: Add DP 2.0 SST DC Support
.../amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 6 +
.../drm/amd/display/dc/bios/bios_parser2.c | 8 +
.../drm/amd/display/dc/bios/command_table2.c | 6 +
drivers/gpu/drm/amd/display/dc/core/dc.c | 17 +
drivers/gpu/drm/amd/display/dc/core/dc_link.c | 503 +++++++-
.../gpu/drm/amd/display/dc/core/dc_link_dp.c | 1071 +++++++++++++++--
.../drm/amd/display/dc/core/dc_link_hwss.c | 291 ++++-
.../gpu/drm/amd/display/dc/core/dc_resource.c | 104 ++
drivers/gpu/drm/amd/display/dc/dc.h | 17 +-
drivers/gpu/drm/amd/display/dc/dc_dp_types.h | 199 ++-
drivers/gpu/drm/amd/display/dc/dc_link.h | 3 +
drivers/gpu/drm/amd/display/dc/dc_types.h | 15 +
.../display/dc/dce110/dce110_hw_sequencer.c | 86 +-
.../amd/display/dc/dcn10/dcn10_hw_sequencer.c | 65 +
.../amd/display/dc/dcn10/dcn10_link_encoder.c | 9 +
.../drm/amd/display/dc/dcn20/dcn20_hwseq.c | 26 +-
.../drm/amd/display/dc/dcn20/dcn20_resource.c | 4 +
.../display/dc/dcn30/dcn30_dio_link_encoder.c | 4 +
drivers/gpu/drm/amd/display/dc/dcn31/Makefile | 3 +-
.../gpu/drm/amd/display/dc/dcn31/dcn31_apg.c | 173 +++
.../gpu/drm/amd/display/dc/dcn31/dcn31_apg.h | 115 ++
.../gpu/drm/amd/display/dc/dcn31/dcn31_dccg.c | 162 +++
.../gpu/drm/amd/display/dc/dcn31/dcn31_dccg.h | 18 +
.../display/dc/dcn31/dcn31_dio_link_encoder.c | 4 +
.../dc/dcn31/dcn31_hpo_dp_link_encoder.c | 620 ++++++++++
.../dc/dcn31/dcn31_hpo_dp_link_encoder.h | 222 ++++
.../dc/dcn31/dcn31_hpo_dp_stream_encoder.c | 761 ++++++++++++
.../dc/dcn31/dcn31_hpo_dp_stream_encoder.h | 241 ++++
.../drm/amd/display/dc/dcn31/dcn31_resource.c | 181 +++
drivers/gpu/drm/amd/display/dc/dm_cp_psp.h | 1 +
drivers/gpu/drm/amd/display/dc/dm_helpers.h | 2 +
.../gpu/drm/amd/display/dc/inc/core_types.h | 6 +
.../gpu/drm/amd/display/dc/inc/dc_link_dp.h | 22 +
drivers/gpu/drm/amd/display/dc/inc/hw/dccg.h | 21 +
.../gpu/drm/amd/display/dc/inc/hw/hw_shared.h | 2 +
.../drm/amd/display/dc/inc/hw/link_encoder.h | 89 ++
.../amd/display/dc/inc/hw/stream_encoder.h | 79 ++
.../amd/display/dc/inc/hw/timing_generator.h | 1 +
.../amd/display/dc/inc/hw_sequencer_private.h | 1 +
drivers/gpu/drm/amd/display/dc/inc/resource.h | 12 +
.../gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 2 +-
.../amd/display/include/bios_parser_types.h | 6 +
.../gpu/drm/amd/display/include/dpcd_defs.h | 14 +-
.../amd/display/include/grph_object_defs.h | 10 +
.../drm/amd/display/include/grph_object_id.h | 6 +
.../amd/display/include/link_service_types.h | 31 +-
.../drm/amd/display/include/logger_types.h | 2 +
drivers/gpu/drm/amd/include/atomfirmware.h | 4 +
48 files changed, 5018 insertions(+), 227 deletions(-)
create mode 100644 drivers/gpu/drm/amd/display/dc/dcn31/dcn31_apg.c
create mode 100644 drivers/gpu/drm/amd/display/dc/dcn31/dcn31_apg.h
create mode 100644 drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hpo_dp_link_encoder.c
create mode 100644 drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hpo_dp_link_encoder.h
create mode 100644 drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hpo_dp_stream_encoder.c
create mode 100644 drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hpo_dp_stream_encoder.h
--
2.25.1
next reply other threads:[~2021-08-16 21:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-16 20:59 Fangzhi Zuo [this message]
2021-08-16 20:59 ` [PATCH 1/6] drm/amd/display: Add DP 2.0 Audio Package Generator Fangzhi Zuo
2021-08-16 20:59 ` [PATCH 2/6] drm/amd/display: Add DP 2.0 HPO Stream Encoder Fangzhi Zuo
2021-08-16 21:07 ` Alex Deucher
2021-08-17 16:11 ` Kazlauskas, Nicholas
2021-08-16 20:59 ` [PATCH 3/6] drm/amd/display: Add DP 2.0 HPO Link Encoder Fangzhi Zuo
2021-08-16 20:59 ` [PATCH 4/6] drm/amd/display: Add DP 2.0 DCCG Fangzhi Zuo
2021-08-16 20:59 ` [PATCH 5/6] drm/amd/display: Add DP 2.0 BIOS and DMUB Support Fangzhi Zuo
2021-08-16 20:59 ` [PATCH 6/6] drm/amd/display: Add DP 2.0 SST DC Support Fangzhi Zuo
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=20210816205919.614691-1-Jerry.Zuo@amd.com \
--to=jerry.zuo@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=harry.wentland@amd.com \
--cc=nicholas.kazlauskas@amd.com \
--cc=wayne.lin@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