65 lines · plain
1#2# Copyright 2022 Advanced Micro Devices, Inc.3#4# Permission is hereby granted, free of charge, to any person obtaining a5# copy of this software and associated documentation files (the "Software"),6# to deal in the Software without restriction, including without limitation7# the rights to use, copy, modify, merge, publish, distribute, sublicense,8# and/or sell copies of the Software, and to permit persons to whom the9# Software is furnished to do so, subject to the following conditions:10#11# The above copyright notice and this permission notice shall be included in12# all copies or substantial portions of the Software.13#14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL17# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR18# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,19# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR20# OTHER DEALINGS IN THE SOFTWARE.21#22# Makefile for the link sub-component of DAL.23# It abstracts the control and status of back end pipe such as DIO, HPO, DPIA,24# PHY, HPD, DDC and etc).25 26LINK = link_detection.o link_dpms.o link_factory.o link_resource.o \27link_validation.o28 29AMD_DAL_LINK = $(addprefix $(AMDDALPATH)/dc/link/, \30$(LINK))31 32AMD_DISPLAY_FILES += $(AMD_DAL_LINK)33###############################################################################34# accessories35###############################################################################36LINK_ACCESSORIES = link_dp_trace.o link_dp_cts.o37 38AMD_DAL_LINK_ACCESSORIES = $(addprefix $(AMDDALPATH)/dc/link/accessories/, \39$(LINK_ACCESSORIES))40 41AMD_DISPLAY_FILES += $(AMD_DAL_LINK_ACCESSORIES)42###############################################################################43# hwss44###############################################################################45LINK_HWSS = link_hwss_dio.o link_hwss_dpia.o link_hwss_hpo_dp.o \46link_hwss_dio_fixed_vs_pe_retimer.o link_hwss_hpo_fixed_vs_pe_retimer_dp.o47 48AMD_DAL_LINK_HWSS = $(addprefix $(AMDDALPATH)/dc/link/hwss/, \49$(LINK_HWSS))50 51AMD_DISPLAY_FILES += $(AMD_DAL_LINK_HWSS)52###############################################################################53# protocols54###############################################################################55LINK_PROTOCOLS = link_hpd.o link_ddc.o link_dpcd.o link_dp_dpia.o \56link_dp_training.o link_dp_training_8b_10b.o link_dp_training_128b_132b.o \57link_dp_training_dpia.o link_dp_training_auxless.o \58link_dp_training_fixed_vs_pe_retimer.o link_dp_phy.o link_dp_capability.o \59link_edp_panel_control.o link_dp_irq_handler.o link_dp_dpia_bw.o60 61AMD_DAL_LINK_PROTOCOLS = $(addprefix $(AMDDALPATH)/dc/link/protocols/, \62$(LINK_PROTOCOLS))63 64AMD_DISPLAY_FILES += $(AMD_DAL_LINK_PROTOCOLS)65