diff options
author | Evan Quan <evan.quan@amd.com> | 2018-03-19 22:23:57 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-03-21 22:36:56 +0300 |
commit | 2cac05dee6e309bb21424c7d59c62f662d01309e (patch) | |
tree | 580af36b2821acf427363a2d3b728363c2a23628 /drivers/gpu/drm/amd/powerplay/hwmgr/Makefile | |
parent | fa969db4addd05aa9bfa58ade0ed6d9c51656762 (diff) | |
download | linux-2cac05dee6e309bb21424c7d59c62f662d01309e.tar.xz |
drm/amd/powerplay: add the hw manager for vega12 (v4)
handles the driver power state setup
v2: squash in the following:
- handle negative temperature ranges
- add vega12 thermal ranges
- use ffs/fls
- remove ACG code
- resend NumOfDisplays message
- correct max dpm levels
- remove power containment settings
- fix warnings
- add sensors interface
- delete unused overdrive arbiter
- drop get_temperature callback
- smu table cleanup
- atomfirmware smu dpm table updates
v3: rebase
v4: rebase
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/powerplay/hwmgr/Makefile')
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/hwmgr/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/Makefile b/drivers/gpu/drm/amd/powerplay/hwmgr/Makefile index c1249e03c912..9446dbc47551 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/Makefile +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/Makefile @@ -31,7 +31,9 @@ HARDWARE_MGR = hwmgr.o processpptables.o \ smu7_clockpowergating.o \ vega10_processpptables.o vega10_hwmgr.o vega10_powertune.o \ vega10_thermal.o smu10_hwmgr.o pp_psm.o\ - pp_overdriver.o smu_helper.o pp_psm_legacy.o pp_psm_new.o + pp_overdriver.o smu_helper.o pp_psm_legacy.o pp_psm_new.o \ + vega12_processpptables.o vega12_hwmgr.o \ + vega12_powertune.o vega12_thermal.o AMD_PP_HWMGR = $(addprefix $(AMD_PP_PATH)/hwmgr/,$(HARDWARE_MGR)) |