]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amdgpu: add get clockgating_state method for uvd v5&v6
authorHuang Rui <ray.huang@amd.com>
Thu, 5 Jan 2017 13:07:02 +0000 (21:07 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 27 Jan 2017 16:13:10 +0000 (11:13 -0500)
Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-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/uvd_v5_0.c
drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c

index c2372902f7226d50582d5cc04a81484f9b40dba9..5fa7c96dd30793b6c41192a20f768ac8944a7824 100644 (file)
@@ -1037,6 +1037,7 @@ struct amdgpu_uvd {
        bool                    use_ctx_buf;
        struct amd_sched_entity entity;
        uint32_t                srbm_soft_reset;
+       bool                    is_powergated;
 };
 
 /*
index 6de6becce74567d962eb498dcd33cbd1aedc62c6..9b49824233aec4525a3517af04b0ec7492091df2 100644 (file)
@@ -822,16 +822,44 @@ static int uvd_v5_0_set_powergating_state(void *handle,
         * the smc and the hw blocks
         */
        struct amdgpu_device *adev = (struct amdgpu_device *)handle;
+       int ret = 0;
 
        if (!(adev->pg_flags & AMD_PG_SUPPORT_UVD))
                return 0;
 
        if (state == AMD_PG_STATE_GATE) {
                uvd_v5_0_stop(adev);
-               return 0;
+               adev->uvd.is_powergated = true;
        } else {
-               return uvd_v5_0_start(adev);
+               ret = uvd_v5_0_start(adev);
+               if (ret)
+                       goto out;
+               adev->uvd.is_powergated = false;
+       }
+
+out:
+       return ret;
+}
+
+static void uvd_v5_0_get_clockgating_state(void *handle, u32 *flags)
+{
+       struct amdgpu_device *adev = (struct amdgpu_device *)handle;
+       int data;
+
+       mutex_lock(&adev->pm.mutex);
+
+       if (adev->uvd.is_powergated) {
+               DRM_INFO("Cannot get clockgating state when UVD is powergated.\n");
+               goto out;
        }
+
+       /* AMD_CG_SUPPORT_UVD_MGCG */
+       data = RREG32(mmUVD_CGC_CTRL);
+       if (data & UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK)
+               *flags |= AMD_CG_SUPPORT_UVD_MGCG;
+
+out:
+       mutex_unlock(&adev->pm.mutex);
 }
 
 static const struct amd_ip_funcs uvd_v5_0_ip_funcs = {
@@ -849,6 +877,7 @@ static const struct amd_ip_funcs uvd_v5_0_ip_funcs = {
        .soft_reset = uvd_v5_0_soft_reset,
        .set_clockgating_state = uvd_v5_0_set_clockgating_state,
        .set_powergating_state = uvd_v5_0_set_powergating_state,
+       .get_clockgating_state = uvd_v5_0_get_clockgating_state,
 };
 
 static const struct amdgpu_ring_funcs uvd_v5_0_ring_funcs = {
index ba0bbf7138dca29dee3be523045e62f953de585f..de7e03544d00c0fff24e4f8713e8ea438983fe4e 100644 (file)
@@ -1047,6 +1047,7 @@ static int uvd_v6_0_set_powergating_state(void *handle,
         * the smc and the hw blocks
         */
        struct amdgpu_device *adev = (struct amdgpu_device *)handle;
+       int ret = 0;
 
        if (!(adev->pg_flags & AMD_PG_SUPPORT_UVD))
                return 0;
@@ -1055,10 +1056,37 @@ static int uvd_v6_0_set_powergating_state(void *handle,
 
        if (state == AMD_PG_STATE_GATE) {
                uvd_v6_0_stop(adev);
-               return 0;
+               adev->uvd.is_powergated = true;
        } else {
-               return uvd_v6_0_start(adev);
+               ret = uvd_v6_0_start(adev);
+               if (ret)
+                       goto out;
+               adev->uvd.is_powergated = false;
+       }
+
+out:
+       return ret;
+}
+
+static void uvd_v6_0_get_clockgating_state(void *handle, u32 *flags)
+{
+       struct amdgpu_device *adev = (struct amdgpu_device *)handle;
+       int data;
+
+       mutex_lock(&adev->pm.mutex);
+
+       if (adev->uvd.is_powergated) {
+               DRM_INFO("Cannot get clockgating state when UVD is powergated.\n");
+               goto out;
        }
+
+       /* AMD_CG_SUPPORT_UVD_MGCG */
+       data = RREG32(mmUVD_CGC_CTRL);
+       if (data & UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK)
+               *flags |= AMD_CG_SUPPORT_UVD_MGCG;
+
+out:
+       mutex_unlock(&adev->pm.mutex);
 }
 
 static const struct amd_ip_funcs uvd_v6_0_ip_funcs = {
@@ -1079,6 +1107,7 @@ static const struct amd_ip_funcs uvd_v6_0_ip_funcs = {
        .post_soft_reset = uvd_v6_0_post_soft_reset,
        .set_clockgating_state = uvd_v6_0_set_clockgating_state,
        .set_powergating_state = uvd_v6_0_set_powergating_state,
+       .get_clockgating_state = uvd_v6_0_get_clockgating_state,
 };
 
 static const struct amdgpu_ring_funcs uvd_v6_0_ring_phys_funcs = {