diff options
author | Qingqing Zhuo <Qingqing.Zhuo@amd.com> | 2023-08-03 01:21:12 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-08-30 15:51:14 -0400 |
commit | 26a692f2419ce3bb6e2d40d60279b861b4b47f8c (patch) | |
tree | ff133b04554ff9fb40146abda86b46a90b7ca2cf /drivers/gpu/drm/amd | |
parent | fb8c3ef8058456eceae1d7a746f9e45d3f161ac9 (diff) | |
download | linux-26a692f2419ce3bb6e2d40d60279b861b4b47f8c.tar.gz linux-26a692f2419ce3bb6e2d40d60279b861b4b47f8c.tar.bz2 linux-26a692f2419ce3bb6e2d40d60279b861b4b47f8c.zip |
drm/amd/display: Add DCN35 BIOS command table support
[Why & How]
Add case for DCN35 in command_table_helper2.c.
Signed-off-by: Qingqing Zhuo <Qingqing.Zhuo@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c b/drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c index 8538f13e01bf..9d347960e2b0 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c +++ b/drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c @@ -80,6 +80,7 @@ bool dal_bios_parser_init_cmd_tbl_helper2( case DCN_VERSION_3_16: case DCN_VERSION_3_2: case DCN_VERSION_3_21: + case DCN_VERSION_3_5: *h = dal_cmd_tbl_helper_dce112_get_table2(); return true; |