drm/amd/display: Refactor DPP into a component directory
authorRevalla Hari Krishna <harikrishna.revalla@amd.com>
Thu, 15 Feb 2024 13:04:56 +0000 (18:34 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 20 Mar 2024 17:37:37 +0000 (13:37 -0400)
commit88867807564e28409d8220419da7559364109a2a
treecb82a0ab94d12c28b2dfc5b74ef2fd7d43d0dee5
parente4251d110154b6c4090d0188404345ded4ecefbe
drm/amd/display: Refactor DPP into a component directory

[WHY & HOW]
Move all dpp files to a new dpp directory.

Reviewed-by: Martin Leung <martin.leung@amd.com>
Acked-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Revalla Hari Krishna <harikrishna.revalla@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
49 files changed:
drivers/gpu/drm/amd/display/Makefile
drivers/gpu/drm/amd/display/dc/Makefile
drivers/gpu/drm/amd/display/dc/dcn10/Makefile
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_cm_common.c
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_cm.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn20/Makefile
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dpp.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dpp.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dpp_cm.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn201/Makefile
drivers/gpu/drm/amd/display/dc/dcn201/dcn201_dpp.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn201/dcn201_dpp.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn30/Makefile
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_cm_common.c
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dpp.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dpp.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dpp_cm.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn32/Makefile
drivers/gpu/drm/amd/display/dc/dcn32/dcn32_dpp.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn32/dcn32_dpp.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn35/Makefile
drivers/gpu/drm/amd/display/dc/dcn35/dcn35_dpp.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn35/dcn35_dpp.h [deleted file]
drivers/gpu/drm/amd/display/dc/dpp/Makefile [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn10/CMakeLists.txt [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn10/dcn10_dpp.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn10/dcn10_dpp.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn10/dcn10_dpp_cm.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn10/dcn10_dpp_dscl.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn20/CMakeLists.txt [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn20/dcn20_dpp.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn20/dcn20_dpp.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn20/dcn20_dpp_cm.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn201/CMakeLists.txt [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn201/dcn201_dpp.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn201/dcn201_dpp.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn30/CMakeLists.txt [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn30/dcn30_dpp.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn30/dcn30_dpp.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn30/dcn30_dpp_cm.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn32/CMakeLists.txt [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn32/dcn32_dpp.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn32/dcn32_dpp.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn35/CMakeLists.txt [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn35/dcn35_dpp.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/dpp/dcn35/dcn35_dpp.h [new file with mode: 0644]