Commit 5e9a81b2 authored by Yue Hin Lau's avatar Yue Hin Lau Committed by Alex Deucher
Browse files

drm/amd/display: separate scl functions out from dcn10_dpp

parent 57d972d4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@

DCN10 = dcn10_resource.o dcn10_ipp.o dcn10_hw_sequencer.o \
		dcn10_dpp.o dcn10_opp.o dcn10_timing_generator.o \
		dcn10_mem_input.o dcn10_mpc.o dcn10_dwb.o
		dcn10_mem_input.o dcn10_mpc.o dcn10_dwb.o \
		dcn10_dpp_dscl.o

AMD_DAL_DCN10 = $(addprefix $(AMDDALPATH)/dc/dcn10/,$(DCN10))

+1 −649

File changed.

Preview size limit exceeded, changes collapsed.

+5 −0
Original line number Diff line number Diff line
@@ -1386,6 +1386,11 @@ struct dcn10_dpp {
	int lb_bits_per_entry;
	bool is_write_to_ram_a_safe;
};

void dcn10_dpp_set_scaler_manual_scale(
	struct transform *xfm_base,
	const struct scaler_data *scl_data);

bool dcn10_dpp_construct(struct dcn10_dpp *xfm110,
	struct dc_context *ctx,
	uint32_t inst,
+762 −0

File added.

Preview size limit exceeded, changes collapsed.