1*1571a7a1Sriastradh#
2*1571a7a1Sriastradh# Copyright 2017 Advanced Micro Devices, Inc.
3*1571a7a1Sriastradh#
4*1571a7a1Sriastradh# Permission is hereby granted, free of charge, to any person obtaining a
5*1571a7a1Sriastradh# copy of this software and associated documentation files (the "Software"),
6*1571a7a1Sriastradh# to deal in the Software without restriction, including without limitation
7*1571a7a1Sriastradh# the rights to use, copy, modify, merge, publish, distribute, sublicense,
8*1571a7a1Sriastradh# and/or sell copies of the Software, and to permit persons to whom the
9*1571a7a1Sriastradh# Software is furnished to do so, subject to the following conditions:
10*1571a7a1Sriastradh#
11*1571a7a1Sriastradh# The above copyright notice and this permission notice shall be included in
12*1571a7a1Sriastradh# all copies or substantial portions of the Software.
13*1571a7a1Sriastradh#
14*1571a7a1Sriastradh# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*1571a7a1Sriastradh# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*1571a7a1Sriastradh# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17*1571a7a1Sriastradh# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18*1571a7a1Sriastradh# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19*1571a7a1Sriastradh# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20*1571a7a1Sriastradh# OTHER DEALINGS IN THE SOFTWARE.
21*1571a7a1Sriastradh#
22*1571a7a1Sriastradh#
23*1571a7a1Sriastradh# Makefile for the DAL (Display Abstract Layer), which is a  sub-component
24*1571a7a1Sriastradh# of the AMDGPU drm driver.
25*1571a7a1Sriastradh# It provides the HW control for display related functionalities.
26*1571a7a1Sriastradh
27*1571a7a1SriastradhAMDDALPATH = $(RELATIVE_AMD_DISPLAY_PATH)
28*1571a7a1Sriastradh
29*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/dc/inc/
30*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/dc/inc/hw
31*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/dc/clk_mgr
32*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/inc
33*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/freesync
34*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/color
35*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/info_packet
36*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/power
37*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/dmub/inc
38*1571a7a1Sriastradh
39*1571a7a1Sriastradhifdef CONFIG_DRM_AMD_DC_HDCP
40*1571a7a1Sriastradhsubdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/hdcp
41*1571a7a1Sriastradhendif
42*1571a7a1Sriastradh
43*1571a7a1Sriastradh#TODO: remove when Timing Sync feature is complete
44*1571a7a1Sriastradhsubdir-ccflags-y += -DBUILD_FEATURE_TIMING_SYNC=0
45*1571a7a1Sriastradh
46*1571a7a1SriastradhDAL_LIBS = amdgpu_dm dc	modules/freesync modules/color modules/info_packet modules/power dmub/src
47*1571a7a1Sriastradh
48*1571a7a1Sriastradhifdef CONFIG_DRM_AMD_DC_HDCP
49*1571a7a1SriastradhDAL_LIBS += modules/hdcp
50*1571a7a1Sriastradhendif
51*1571a7a1Sriastradh
52*1571a7a1SriastradhAMD_DAL = $(addsuffix /Makefile, $(addprefix $(FULL_AMD_DISPLAY_PATH)/,$(DAL_LIBS)))
53*1571a7a1Sriastradh
54*1571a7a1Sriastradhinclude $(AMD_DAL)
55