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*1571a7a1Sriastradhsubdir-ccflags-y += \
24*1571a7a1Sriastradh		-I$(FULL_AMD_PATH)/powerplay/inc/  \
25*1571a7a1Sriastradh		-I$(FULL_AMD_PATH)/include/asic_reg  \
26*1571a7a1Sriastradh		-I$(FULL_AMD_PATH)/include  \
27*1571a7a1Sriastradh		-I$(FULL_AMD_PATH)/powerplay/smumgr\
28*1571a7a1Sriastradh		-I$(FULL_AMD_PATH)/powerplay/hwmgr
29*1571a7a1Sriastradh
30*1571a7a1SriastradhAMD_PP_PATH = ../powerplay
31*1571a7a1Sriastradh
32*1571a7a1SriastradhPP_LIBS = smumgr hwmgr
33*1571a7a1Sriastradh
34*1571a7a1SriastradhAMD_POWERPLAY = $(addsuffix /Makefile,$(addprefix $(FULL_AMD_PATH)/powerplay/,$(PP_LIBS)))
35*1571a7a1Sriastradh
36*1571a7a1Sriastradhinclude $(AMD_POWERPLAY)
37*1571a7a1Sriastradh
38*1571a7a1SriastradhPOWER_MGR = amd_powerplay.o amdgpu_smu.o smu_v11_0.o smu_v12_0.o vega20_ppt.o arcturus_ppt.o navi10_ppt.o renoir_ppt.o
39*1571a7a1Sriastradh
40*1571a7a1SriastradhAMD_PP_POWER = $(addprefix $(AMD_PP_PATH)/,$(POWER_MGR))
41*1571a7a1Sriastradh
42*1571a7a1SriastradhAMD_POWERPLAY_FILES += $(AMD_PP_POWER)
43