mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 16:53:59 -04:00
Signed-off-by: Zeyu Fan <Zeyu.Fan@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
16 lines
565 B
Makefile
16 lines
565 B
Makefile
#
|
|
# Makefile for common 'dce' logic
|
|
# HW object file under this folder follow similar pattern for HW programming
|
|
# - register offset and/or shift + mask stored in the dec_hw struct
|
|
# - register programming through common macros that look up register
|
|
# offset/shift/mask stored in dce_hw struct
|
|
|
|
DCE = dce_audio.o dce_stream_encoder.o dce_link_encoder.o dce_hwseq.o \
|
|
dce_mem_input.o dce_clock_source.o dce_scl_filters.o dce_transform.o \
|
|
dce_clocks.o dce_opp.o
|
|
|
|
|
|
AMD_DAL_DCE = $(addprefix $(AMDDALPATH)/dc/dce/,$(DCE))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_DCE)
|