11.1Sriastrad#
21.1Sriastrad# Copyright 2017 Advanced Micro Devices, Inc.
31.1Sriastrad#
41.1Sriastrad# Permission is hereby granted, free of charge, to any person obtaining a
51.1Sriastrad# copy of this software and associated documentation files (the "Software"),
61.1Sriastrad# to deal in the Software without restriction, including without limitation
71.1Sriastrad# the rights to use, copy, modify, merge, publish, distribute, sublicense,
81.1Sriastrad# and/or sell copies of the Software, and to permit persons to whom the
91.1Sriastrad# Software is furnished to do so, subject to the following conditions:
101.1Sriastrad#
111.1Sriastrad# The above copyright notice and this permission notice shall be included in
121.1Sriastrad# all copies or substantial portions of the Software.
131.1Sriastrad#
141.1Sriastrad# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
151.1Sriastrad# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
161.1Sriastrad# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
171.1Sriastrad# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
181.1Sriastrad# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
191.1Sriastrad# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
201.1Sriastrad# OTHER DEALINGS IN THE SOFTWARE.
211.1Sriastrad#
221.1Sriastrad#
231.1Sriastrad# Makefile for the 'hw manager' sub-component of powerplay.
241.1Sriastrad# It provides the hardware management services for the driver.
251.1Sriastrad
261.1SriastradHARDWARE_MGR = hwmgr.o processpptables.o \
271.1Sriastrad		hardwaremanager.o smu8_hwmgr.o \
281.1Sriastrad		pppcielanes.o\
291.1Sriastrad		process_pptables_v1_0.o ppatomctrl.o ppatomfwctrl.o \
301.1Sriastrad		smu7_hwmgr.o smu7_powertune.o smu7_thermal.o \
311.1Sriastrad		smu7_clockpowergating.o \
321.1Sriastrad		vega10_processpptables.o vega10_hwmgr.o vega10_powertune.o \
331.1Sriastrad		vega10_thermal.o smu10_hwmgr.o pp_psm.o\
341.1Sriastrad		vega12_processpptables.o vega12_hwmgr.o \
351.1Sriastrad		vega12_thermal.o \
361.1Sriastrad		pp_overdriver.o smu_helper.o \
371.1Sriastrad		vega20_processpptables.o vega20_hwmgr.o vega20_powertune.o \
381.1Sriastrad		vega20_thermal.o common_baco.o vega10_baco.o  vega20_baco.o \
391.1Sriastrad		vega12_baco.o smu9_baco.o tonga_baco.o polaris_baco.o fiji_baco.o \
401.1Sriastrad		ci_baco.o smu7_baco.o
411.1Sriastrad
421.1SriastradAMD_PP_HWMGR = $(addprefix $(AMD_PP_PATH)/hwmgr/,$(HARDWARE_MGR))
431.1Sriastrad
441.1SriastradAMD_POWERPLAY_FILES += $(AMD_PP_HWMGR)
45