]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amdgpu: use pp_feature member to store the mask
authorHuang Rui <ray.huang@amd.com>
Tue, 27 Feb 2018 13:53:00 +0000 (21:53 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 15 May 2018 18:43:40 +0000 (13:43 -0500)
Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu.h
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
drivers/gpu/drm/amd/amdgpu/ci_dpm.c
drivers/gpu/drm/amd/amdgpu/kv_dpm.c
drivers/gpu/drm/amd/powerplay/amd_powerplay.c

index 5ad893915a853a9285f28806b27768bed3a9fd3c..75700552c71dbe7df1d2b782be1292408de53bab 100644 (file)
@@ -1430,6 +1430,7 @@ enum amd_hw_ip_block_type {
 struct amd_powerplay {
        void *pp_handle;
        const struct amd_pm_funcs *pp_funcs;
+       uint32_t pp_feature;
 };
 
 #define AMDGPU_RESET_MAGIC_NUM 64
index 5958e811248952d89f0b564a04a44d0c97c3ff51..e8b57cf48555f9805251a579cbbdd03fdcf065b2 100644 (file)
@@ -1545,6 +1545,8 @@ static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
                        return -EAGAIN;
        }
 
+       adev->powerplay.pp_feature = amdgpu_pp_feature_mask;
+
        for (i = 0; i < adev->num_ip_blocks; i++) {
                if ((amdgpu_ip_block_mask & (1 << i)) == 0) {
                        DRM_ERROR("disabled ip block: %d <%s>\n",
index f48168fbdfe6bb13a94e1388372e3c8fd4620915..a266dcf5daed2f7d7b335d9c7108623eead51886 100644 (file)
@@ -5903,7 +5903,7 @@ static int ci_dpm_init(struct amdgpu_device *adev)
        pi->pcie_dpm_key_disabled = 0;
        pi->thermal_sclk_dpm_enabled = 0;
 
-       if (amdgpu_pp_feature_mask & PP_SCLK_DEEP_SLEEP_MASK)
+       if (adev->powerplay.pp_feature & PP_SCLK_DEEP_SLEEP_MASK)
                pi->caps_sclk_ds = true;
        else
                pi->caps_sclk_ds = false;
index ef668a321ef1e4a532e3faa8dd99f53a59f9bab7..17f7f074cedcc32b39e75c132ccc98932221b51b 100644 (file)
@@ -2817,7 +2817,7 @@ static int kv_dpm_init(struct amdgpu_device *adev)
                pi->caps_tcp_ramping = true;
        }
 
-       if (amdgpu_pp_feature_mask & PP_SCLK_DEEP_SLEEP_MASK)
+       if (adev->powerplay.pp_feature & PP_SCLK_DEEP_SLEEP_MASK)
                pi->caps_sclk_ds = true;
        else
                pi->caps_sclk_ds = false;
index 6976596449a8f04ee7173c478f6761321d2049d7..246f8e9e94512012e69ca2a8e335aac2013acce3 100644 (file)
@@ -53,7 +53,7 @@ static int amd_powerplay_create(struct amdgpu_device *adev)
        mutex_init(&hwmgr->smu_lock);
        hwmgr->chip_family = adev->family;
        hwmgr->chip_id = adev->asic_type;
-       hwmgr->feature_mask = amdgpu_pp_feature_mask;
+       hwmgr->feature_mask = adev->powerplay.pp_feature;
        hwmgr->display_config = &adev->pm.pm_display_cfg;
        adev->powerplay.pp_handle = hwmgr;
        adev->powerplay.pp_funcs = &pp_dpm_funcs;