mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/amd/pm: relocate the power related headers
Instead of centralizing all headers in the same folder. Separate them into different folders and place them among those source files those who really need them. Signed-off-by: Evan Quan <evan.quan@amd.com> Reviewed-by: Lijo Lazar <lijo.lazar@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
ebfc253335
commit
837d542a09
87 changed files with 40 additions and 11 deletions
|
@ -21,20 +21,23 @@
|
|||
#
|
||||
|
||||
subdir-ccflags-y += \
|
||||
-I$(FULL_AMD_PATH)/pm/inc/ \
|
||||
-I$(FULL_AMD_PATH)/include/asic_reg \
|
||||
-I$(FULL_AMD_PATH)/include \
|
||||
-I$(FULL_AMD_PATH)/pm/inc/ \
|
||||
-I$(FULL_AMD_PATH)/pm/swsmu \
|
||||
-I$(FULL_AMD_PATH)/pm/swsmu/inc \
|
||||
-I$(FULL_AMD_PATH)/pm/swsmu/inc/pmfw_if \
|
||||
-I$(FULL_AMD_PATH)/pm/swsmu/smu11 \
|
||||
-I$(FULL_AMD_PATH)/pm/swsmu/smu12 \
|
||||
-I$(FULL_AMD_PATH)/pm/swsmu/smu13 \
|
||||
-I$(FULL_AMD_PATH)/pm/powerplay \
|
||||
-I$(FULL_AMD_PATH)/pm/powerplay/inc \
|
||||
-I$(FULL_AMD_PATH)/pm/powerplay/smumgr\
|
||||
-I$(FULL_AMD_PATH)/pm/powerplay/hwmgr
|
||||
-I$(FULL_AMD_PATH)/pm/powerplay/hwmgr \
|
||||
-I$(FULL_AMD_PATH)/pm/legacy-dpm
|
||||
|
||||
AMD_PM_PATH = ../pm
|
||||
|
||||
PM_LIBS = swsmu powerplay
|
||||
PM_LIBS = swsmu powerplay legacy-dpm
|
||||
|
||||
AMD_PM = $(addsuffix /Makefile,$(addprefix $(FULL_AMD_PATH)/pm/,$(PM_LIBS)))
|
||||
|
||||
|
|
32
drivers/gpu/drm/amd/pm/legacy-dpm/Makefile
Normal file
32
drivers/gpu/drm/amd/pm/legacy-dpm/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
|||
#
|
||||
# Copyright 2021 Advanced Micro Devices, Inc.
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||
# copy of this software and associated documentation files (the "Software"),
|
||||
# to deal in the Software without restriction, including without limitation
|
||||
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
# and/or sell copies of the Software, and to permit persons to whom the
|
||||
# Software is furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
# OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
|
||||
AMD_LEGACYDPM_PATH = ../pm/legacy-dpm
|
||||
|
||||
LEGACYDPM_MGR-y = legacy_dpm.o
|
||||
|
||||
LEGACYDPM_MGR-$(CONFIG_DRM_AMDGPU_CIK)+= kv_dpm.o kv_smc.o
|
||||
LEGACYDPM_MGR-$(CONFIG_DRM_AMDGPU_SI)+= si_dpm.o si_smc.o
|
||||
|
||||
AMD_LEGACYDPM_POWER = $(addprefix $(AMD_LEGACYDPM_PATH)/,$(LEGACYDPM_MGR-y))
|
||||
|
||||
AMD_POWERPLAY_FILES += $(AMD_LEGACYDPM_POWER)
|
|
@ -28,11 +28,7 @@ AMD_POWERPLAY = $(addsuffix /Makefile,$(addprefix $(FULL_AMD_PATH)/pm/powerplay/
|
|||
|
||||
include $(AMD_POWERPLAY)
|
||||
|
||||
POWER_MGR-y = amd_powerplay.o legacy_dpm.o
|
||||
|
||||
POWER_MGR-$(CONFIG_DRM_AMDGPU_CIK)+= kv_dpm.o kv_smc.o
|
||||
|
||||
POWER_MGR-$(CONFIG_DRM_AMDGPU_SI)+= si_dpm.o si_smc.o
|
||||
POWER_MGR-y = amd_powerplay.o
|
||||
|
||||
AMD_PP_POWER = $(addprefix $(AMD_PP_PATH)/,$(POWER_MGR-y))
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#include "smu11_driver_if_arcturus.h"
|
||||
#include "soc15_common.h"
|
||||
#include "atom.h"
|
||||
#include "power_state.h"
|
||||
#include "arcturus_ppt.h"
|
||||
#include "smu_v11_0_pptable.h"
|
||||
#include "arcturus_ppsmc.h"
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#include "smu13_driver_if_aldebaran.h"
|
||||
#include "soc15_common.h"
|
||||
#include "atom.h"
|
||||
#include "power_state.h"
|
||||
#include "aldebaran_ppt.h"
|
||||
#include "smu_v13_0_pptable.h"
|
||||
#include "aldebaran_ppsmc.h"
|
||||
|
|
Loading…
Add table
Reference in a new issue