Merge tag 'kvm-x86-misc-6.9' of https://github.com/kvm-x86/linux into HEAD
[linux-2.6-block.git] / drivers / gpu / drm / amd / display / dc / link / Makefile
CommitLineData
fd249266
WL
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
54618888
WL
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)
bc33f5e5
WL
33###############################################################################
34# accessories
35###############################################################################
26a0e208 36LINK_ACCESSORIES = link_dp_trace.o link_dp_cts.o
fd249266 37
bc33f5e5
WL
38AMD_DAL_LINK_ACCESSORIES = $(addprefix $(AMDDALPATH)/dc/link/accessories/, \
39$(LINK_ACCESSORIES))
fd249266 40
bc33f5e5
WL
41AMD_DISPLAY_FILES += $(AMD_DAL_LINK_ACCESSORIES)
42###############################################################################
43# hwss
44###############################################################################
ad5594ad
MS
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.o
bc33f5e5
WL
47
48AMD_DAL_LINK_HWSS = $(addprefix $(AMDDALPATH)/dc/link/hwss/, \
49$(LINK_HWSS))
50
51AMD_DISPLAY_FILES += $(AMD_DAL_LINK_HWSS)
52###############################################################################
53# protocols
54###############################################################################
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 \
0078c924 58link_dp_training_fixed_vs_pe_retimer.o link_dp_phy.o link_dp_capability.o \
6455cb52 59link_edp_panel_control.o link_dp_irq_handler.o link_dp_dpia_bw.o
bc33f5e5
WL
60
61AMD_DAL_LINK_PROTOCOLS = $(addprefix $(AMDDALPATH)/dc/link/protocols/, \
62$(LINK_PROTOCOLS))
63
26a0e208 64AMD_DISPLAY_FILES += $(AMD_DAL_LINK_PROTOCOLS)