1# 2# Copyright 2022 Advanced Micro Devices, Inc. 3# 4# Permission is hereby granted, free of charge, to any person obtaining a 5# copy of this software and associated documentation files (the "Software"), 6# to deal in the Software without restriction, including without limitation 7# the rights to use, copy, modify, merge, publish, distribute, sublicense, 8# and/or sell copies of the Software, and to permit persons to whom the 9# Software is furnished to do so, subject to the following conditions: 10# 11# The above copyright notice and this permission notice shall be included in 12# all copies or substantial portions of the Software. 13# 14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18# 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 OR 20# 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 26############################################################################### 27# accessories 28############################################################################### 29LINK_ACCESSORIES = link_dp_trace.o link_dp_cts.o 30 31AMD_DAL_LINK_ACCESSORIES = $(addprefix $(AMDDALPATH)/dc/link/accessories/, \ 32$(LINK_ACCESSORIES)) 33 34AMD_DISPLAY_FILES += $(AMD_DAL_LINK_ACCESSORIES) 35############################################################################### 36# hwss 37############################################################################### 38LINK_HWSS = link_hwss_dio.o link_hwss_dpia.o link_hwss_hpo_dp.o 39 40AMD_DAL_LINK_HWSS = $(addprefix $(AMDDALPATH)/dc/link/hwss/, \ 41$(LINK_HWSS)) 42 43AMD_DISPLAY_FILES += $(AMD_DAL_LINK_HWSS) 44############################################################################### 45# protocols 46############################################################################### 47LINK_PROTOCOLS = link_hpd.o link_ddc.o link_dpcd.o link_dp_dpia.o \ 48link_dp_training.o link_dp_training_8b_10b.o link_dp_training_128b_132b.o \ 49link_dp_training_dpia.o link_dp_training_auxless.o \ 50link_dp_training_fixed_vs_pe_retimer.o link_dp_phy.o link_dp_capability.o \ 51link_edp_panel_control.o link_dp_irq_handler.o 52 53AMD_DAL_LINK_PROTOCOLS = $(addprefix $(AMDDALPATH)/dc/link/protocols/, \ 54$(LINK_PROTOCOLS)) 55 56AMD_DISPLAY_FILES += $(AMD_DAL_LINK_PROTOCOLS)