drm/amd/display: Move SPL to a new path
authorSamson Tam <Samson.Tam@amd.com>
Thu, 23 Jan 2025 19:36:57 +0000 (14:36 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 13 Feb 2025 02:03:01 +0000 (21:03 -0500)
commit5c06c1df3582102e837dc7d6e8a462323277e57b
treea4c90168409749357fd08a2f8c390583442309f5
parent13437c91606c9232c747475e202fe3827cd53264
drm/amd/display: Move SPL to a new path

[WHY & HOW]
- Move SPL from dc/spl to dc/sspl
- Update build files and header paths
- Remove dc/spl files

Reviewed-by: George Zhang <george.zhang@amd.com>
Signed-off-by: Samson Tam <Samson.Tam@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
45 files changed:
drivers/gpu/drm/amd/display/dc/Makefile
drivers/gpu/drm/amd/display/dc/dc.h
drivers/gpu/drm/amd/display/dc/dc_spl_translate.c
drivers/gpu/drm/amd/display/dc/dpp/dcn20/dcn20_dpp.h
drivers/gpu/drm/amd/display/dc/dpp/dcn32/dcn32_dpp.h
drivers/gpu/drm/amd/display/dc/inc/core_types.h
drivers/gpu/drm/amd/display/dc/inc/hw/transform.h
drivers/gpu/drm/amd/display/dc/inc/resource.h
drivers/gpu/drm/amd/display/dc/resource/dcn401/dcn401_resource.c
drivers/gpu/drm/amd/display/dc/spl/Makefile [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_filters.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_filters.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_isharp_filters.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_isharp_filters.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_scl_easf_filters.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_scl_easf_filters.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_scl_filters.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_scl_filters.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/dc_spl_types.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/spl_custom_float.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/spl_custom_float.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/spl_debug.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/spl_fixpt31_32.c [deleted file]
drivers/gpu/drm/amd/display/dc/spl/spl_fixpt31_32.h [deleted file]
drivers/gpu/drm/amd/display/dc/spl/spl_os_types.h [deleted file]
drivers/gpu/drm/amd/display/dc/sspl/Makefile [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_filters.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_filters.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_isharp_filters.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_isharp_filters.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_scl_easf_filters.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_scl_easf_filters.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_scl_filters.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_scl_filters.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/dc_spl_types.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/spl_custom_float.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/spl_custom_float.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/spl_debug.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/spl_fixpt31_32.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/spl_fixpt31_32.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/sspl/spl_os_types.h [new file with mode: 0644]