2017-09-12 15:58:20 -04:00
|
|
|
#
|
2017-11-30 21:15:50 -05:00
|
|
|
# Copyright 2017 Advanced Micro Devices, Inc.
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
|
|
# to deal in the Software without restriction, including without limitation
|
|
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
# OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#
|
|
|
|
#
|
2017-09-12 15:58:20 -04:00
|
|
|
# Makefile for Display Core (dc) component.
|
|
|
|
#
|
|
|
|
|
2019-05-07 12:47:37 -04:00
|
|
|
DC_LIBS = basics bios calcs clk_mgr dce gpio irq virtual
|
2017-09-12 15:58:20 -04:00
|
|
|
|
2019-11-06 14:48:35 -05:00
|
|
|
ifdef CONFIG_DRM_AMD_DC_DCN
|
2019-02-22 16:52:34 -05:00
|
|
|
DC_LIBS += dcn20
|
2019-02-25 13:26:34 -05:00
|
|
|
DC_LIBS += dsc
|
2017-06-15 16:27:42 -04:00
|
|
|
DC_LIBS += dcn10 dml
|
2019-07-26 17:20:21 -04:00
|
|
|
DC_LIBS += dcn21
|
2020-05-25 13:18:16 -04:00
|
|
|
DC_LIBS += dcn30
|
2020-09-29 11:21:58 -04:00
|
|
|
DC_LIBS += dcn301
|
2020-09-29 14:52:09 -04:00
|
|
|
DC_LIBS += dcn302
|
|
|
|
endif
|
|
|
|
|
2017-06-15 16:20:24 -04:00
|
|
|
DC_LIBS += dce120
|
2017-06-15 16:27:42 -04:00
|
|
|
|
2017-09-12 15:58:20 -04:00
|
|
|
DC_LIBS += dce112
|
|
|
|
DC_LIBS += dce110
|
|
|
|
DC_LIBS += dce100
|
|
|
|
DC_LIBS += dce80
|
|
|
|
|
2020-07-11 21:43:25 +02:00
|
|
|
ifdef CONFIG_DRM_AMD_DC_SI
|
|
|
|
DC_LIBS += dce60
|
|
|
|
endif
|
|
|
|
|
2019-08-06 17:52:01 -04:00
|
|
|
ifdef CONFIG_DRM_AMD_DC_HDCP
|
|
|
|
DC_LIBS += hdcp
|
|
|
|
endif
|
|
|
|
|
2017-09-12 15:58:20 -04:00
|
|
|
AMD_DC = $(addsuffix /Makefile, $(addprefix $(FULL_AMD_DISPLAY_PATH)/dc/,$(DC_LIBS)))
|
|
|
|
|
|
|
|
include $(AMD_DC)
|
|
|
|
|
2016-12-29 15:27:12 -05:00
|
|
|
DISPLAY_CORE = dc.o dc_link.o dc_resource.o dc_hw_sequencer.o dc_sink.o \
|
2019-05-22 18:05:41 -04:00
|
|
|
dc_surface.o dc_link_hwss.o dc_link_dp.o dc_link_ddc.o dc_debug.o dc_stream.o
|
|
|
|
|
2019-11-06 14:48:35 -05:00
|
|
|
ifdef CONFIG_DRM_AMD_DC_DCN
|
2019-05-22 18:05:41 -04:00
|
|
|
DISPLAY_CORE += dc_vm_helper.o
|
|
|
|
endif
|
2017-09-12 15:58:20 -04:00
|
|
|
|
|
|
|
AMD_DISPLAY_CORE = $(addprefix $(AMDDALPATH)/dc/core/,$(DISPLAY_CORE))
|
|
|
|
|
|
|
|
AMD_DM_REG_UPDATE = $(addprefix $(AMDDALPATH)/dc/,dc_helper.o)
|
|
|
|
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DISPLAY_CORE)
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DM_REG_UPDATE)
|
|
|
|
|
2019-10-25 15:03:58 -04:00
|
|
|
DC_DMUB += dc_dmub_srv.o
|
|
|
|
AMD_DISPLAY_DMUB = $(addprefix $(AMDDALPATH)/dc/,$(DC_DMUB))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DISPLAY_DMUB)
|