[Public] Reviewed-by: Roman Li <Roman.Li@xxxxxxx> > -----Original Message----- > From: Kotarac, Pavle <Pavle.Kotarac@xxxxxxx> > Sent: Wednesday, September 7, 2022 2:12 PM > To: amd-gfx@xxxxxxxxxxxxxxxxxxxxx > Cc: Wentland, Harry <Harry.Wentland@xxxxxxx>; Li, Sun peng (Leo) > <Sunpeng.Li@xxxxxxx>; Lakha, Bhawanpreet > <Bhawanpreet.Lakha@xxxxxxx>; Siqueira, Rodrigo > <Rodrigo.Siqueira@xxxxxxx>; Pillai, Aurabindo > <Aurabindo.Pillai@xxxxxxx>; Zhuo, Qingqing (Lillian) > <Qingqing.Zhuo@xxxxxxx>; Li, Roman <Roman.Li@xxxxxxx>; Lin, Wayne > <Wayne.Lin@xxxxxxx>; Wang, Chao-kai (Stylon) > <Stylon.Wang@xxxxxxx>; Chiu, Solomon <Solomon.Chiu@xxxxxxx>; > Kotarac, Pavle <Pavle.Kotarac@xxxxxxx>; Gutierrez, Agustin > <Agustin.Gutierrez@xxxxxxx> > Subject: [PATCH 07/21] drm/amd/display: Enable dlg and vba compilation for > dcn314 > > From: Rodrigo Siqueira <Rodrigo.Siqueira@xxxxxxx> > > We were not using the VBA and DLG files for DCN314, but the next sequence > of changes for DCN314 will require those files. This commit adds the > necessary files to the Makefile. > > Cc: Roman Li <roman.li@xxxxxxx> > Signed-off-by: Rodrigo Siqueira <Rodrigo.Siqueira@xxxxxxx> > --- > drivers/gpu/drm/amd/display/dc/dml/Makefile | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/gpu/drm/amd/display/dc/dml/Makefile > b/drivers/gpu/drm/amd/display/dc/dml/Makefile > index 86a3b5bfd699..cb81ed2fbd53 100644 > --- a/drivers/gpu/drm/amd/display/dc/dml/Makefile > +++ b/drivers/gpu/drm/amd/display/dc/dml/Makefile > @@ -70,6 +70,8 @@ > CFLAGS_$(AMDDALPATH)/dc/dml/dcn30/display_mode_vba_30.o := > $(dml_ccflags) $(fram > CFLAGS_$(AMDDALPATH)/dc/dml/dcn30/display_rq_dlg_calc_30.o := > $(dml_ccflags) > CFLAGS_$(AMDDALPATH)/dc/dml/dcn31/display_mode_vba_31.o := > $(dml_ccflags) $(frame_warn_flag) > CFLAGS_$(AMDDALPATH)/dc/dml/dcn31/display_rq_dlg_calc_31.o := > $(dml_ccflags) > +CFLAGS_$(AMDDALPATH)/dc/dml/dcn314/display_mode_vba_314.o := > +$(dml_ccflags) $(frame_warn_flag) > +CFLAGS_$(AMDDALPATH)/dc/dml/dcn314/display_rq_dlg_calc_314.o := > +$(dml_ccflags) > CFLAGS_$(AMDDALPATH)/dc/dml/dcn314/dcn314_fpu.o := $(dml_ccflags) > CFLAGS_$(AMDDALPATH)/dc/dml/dcn30/dcn30_fpu.o := $(dml_ccflags) > CFLAGS_$(AMDDALPATH)/dc/dml/dcn32/dcn32_fpu.o := $(dml_ccflags) @@ > -123,6 +125,7 @@ DML += dcn20/display_rq_dlg_calc_20v2.o > dcn20/display_mode_vba_20v2.o DML += dcn21/display_rq_dlg_calc_21.o > dcn21/display_mode_vba_21.o DML += dcn30/dcn30_fpu.o > dcn30/display_mode_vba_30.o dcn30/display_rq_dlg_calc_30.o DML += > dcn31/display_mode_vba_31.o dcn31/display_rq_dlg_calc_31.o > +DML += dcn314/display_mode_vba_314.o > dcn314/display_rq_dlg_calc_314.o > DML += dcn32/display_mode_vba_32.o dcn32/display_rq_dlg_calc_32.o > dcn32/display_mode_vba_util_32.o DML += dcn31/dcn31_fpu.o DML += > dcn32/dcn32_fpu.o > -- > 2.34.1