drm/amd/display: Refactoring MPC

[Why]
To refactor MPC files

[How]
Moved MPC files to respective folders and
updated makefiles appropriately.

Reviewed-by: Martin Leung <martin.leung@amd.com>
Signed-off-by: Jerry Zuo <jerry.zuo@amd.com>
Signed-off-by: Mounika Adhuri <moadhuri@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Mounika Adhuri 2024-06-26 18:51:04 +05:30 committed by Alex Deucher
parent 2563391e57
commit 5ed9481db7
10 changed files with 30 additions and 5 deletions

View File

@ -24,7 +24,6 @@
DCN10 = dcn10_ipp.o \
dcn10_hw_sequencer_debug.o \
dcn10_mpc.o \
dcn10_cm_common.o \
AMD_DAL_DCN10 = $(addprefix $(AMDDALPATH)/dc/dcn10/,$(DCN10))

View File

@ -1,8 +1,7 @@
# SPDX-License-Identifier: MIT
# Copyright © 2019-2024 Advanced Micro Devices, Inc. All rights reserved.
DCN20 = dcn20_mpc.o \
dcn20_vmid.o dcn20_dwb.o dcn20_dwb_scl.o
DCN20 = dcn20_vmid.o dcn20_dwb.o dcn20_dwb_scl.o
AMD_DAL_DCN20 = $(addprefix $(AMDDALPATH)/dc/dcn20/,$(DCN20))

View File

@ -23,7 +23,7 @@
#
#
DCN30 := dcn30_mpc.o dcn30_vpg.o \
DCN30 := dcn30_vpg.o \
dcn30_afmt.o \
dcn30_dwb.o \
dcn30_dwb_cm.o \

View File

@ -24,6 +24,33 @@
#
ifdef CONFIG_DRM_AMD_DC_FP
###############################################################################
# DCN10
###############################################################################
MPC_DCN10 = dcn10_mpc.o
AMD_DAL_MPC_DCN10 = $(addprefix $(AMDDALPATH)/dc/mpc/dcn10/,$(MPC_DCN10))
AMD_DISPLAY_FILES += $(AMD_DAL_MPC_DCN10)
###############################################################################
# DCN20
###############################################################################
MPC_DCN20 = dcn20_mpc.o
AMD_DAL_MPC_DCN20 = $(addprefix $(AMDDALPATH)/dc/mpc/dcn20/,$(MPC_DCN20))
AMD_DISPLAY_FILES += $(AMD_DAL_MPC_DCN20)
###############################################################################
# DCN30
###############################################################################
MPC_DCN30 = dcn30_mpc.o
AMD_DAL_MPC_DCN30 = $(addprefix $(AMDDALPATH)/dc/mpc/dcn30/,$(MPC_DCN30))
AMD_DISPLAY_FILES += $(AMD_DAL_MPC_DCN30)
###############################################################################
# DCN32
###############################################################################

View File

@ -25,7 +25,7 @@
#include "reg_helper.h"
#include "dcn30_mpc.h"
#include "dcn30_cm_common.h"
#include "dcn30/dcn30_cm_common.h"
#include "basics/conversion.h"
#include "dcn10/dcn10_cm_common.h"
#include "dc.h"