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
26LINK = link_detection.o link_dpms.o link_factory.o link_resource.o \
27link_validation.o
28
29AMD_DAL_LINK = $(addprefix $(AMDDALPATH)/dc/link/, \
30$(LINK))
31
32AMD_DISPLAY_FILES += $(AMD_DAL_LINK)
33###############################################################################
34# accessories
35###############################################################################
36LINK_ACCESSORIES = link_dp_trace.o link_dp_cts.o link_fpga.o
37
38AMD_DAL_LINK_ACCESSORIES = $(addprefix $(AMDDALPATH)/dc/link/accessories/, \
39$(LINK_ACCESSORIES))
40
41AMD_DISPLAY_FILES += $(AMD_DAL_LINK_ACCESSORIES)
42###############################################################################
43# hwss
44###############################################################################
45LINK_HWSS = link_hwss_dio.o link_hwss_dpia.o link_hwss_hpo_dp.o
46
47AMD_DAL_LINK_HWSS = $(addprefix $(AMDDALPATH)/dc/link/hwss/, \
48$(LINK_HWSS))
49
50AMD_DISPLAY_FILES += $(AMD_DAL_LINK_HWSS)
51###############################################################################
52# protocols
53###############################################################################
54LINK_PROTOCOLS = link_hpd.o link_ddc.o link_dpcd.o link_dp_dpia.o \
55link_dp_training.o link_dp_training_8b_10b.o link_dp_training_128b_132b.o \
56link_dp_training_dpia.o link_dp_training_auxless.o \
57link_dp_training_fixed_vs_pe_retimer.o link_dp_phy.o link_dp_capability.o \
58link_edp_panel_control.o link_dp_irq_handler.o link_dp_dpia_bw.o
59
60AMD_DAL_LINK_PROTOCOLS = $(addprefix $(AMDDALPATH)/dc/link/protocols/, \
61$(LINK_PROTOCOLS))
62
63AMD_DISPLAY_FILES += $(AMD_DAL_LINK_PROTOCOLS)