drm/amdgpu: export mmhub get clockgating into gmc
authorHuang Rui <ray.huang@amd.com>
Wed, 31 May 2017 15:35:44 +0000 (23:35 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 6 Jun 2017 20:58:56 +0000 (16:58 -0400)
Signed-off-by: Huang Rui <ray.huang@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/gmc_v9_0.c
drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c
drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.h

index e86c1803396ff3516c7ec791f10ba380224cfa46..4ab8338befd5294fcdddc6e0f74dff9098f70c5e 100644 (file)
@@ -814,6 +814,13 @@ static int gmc_v9_0_set_clockgating_state(void *handle,
        return mmhub_v1_0_set_clockgating(adev, state);
 }
 
+static void gmc_v9_0_get_clockgating_state(void *handle, u32 *flags)
+{
+       struct amdgpu_device *adev = (struct amdgpu_device *)handle;
+
+       mmhub_v1_0_get_clockgating(adev, flags);
+}
+
 static int gmc_v9_0_set_powergating_state(void *handle,
                                        enum amd_powergating_state state)
 {
@@ -835,6 +842,7 @@ const struct amd_ip_funcs gmc_v9_0_ip_funcs = {
        .soft_reset = gmc_v9_0_soft_reset,
        .set_clockgating_state = gmc_v9_0_set_clockgating_state,
        .set_powergating_state = gmc_v9_0_set_powergating_state,
+       .get_clockgating_state = gmc_v9_0_get_clockgating_state,
 };
 
 const struct amdgpu_ip_block_version gmc_v9_0_ip_block =
index 7a7177b423e8b5659104ff24077e4cec890b990f..d95380efcf8cfc7a32eafaba9eab2633fa3055ee 100644 (file)
@@ -569,9 +569,8 @@ static int mmhub_v1_0_set_clockgating_state(void *handle,
        return 0;
 }
 
-static void mmhub_v1_0_get_clockgating_state(void *handle, u32 *flags)
+void mmhub_v1_0_get_clockgating(struct amdgpu_device *adev, u32 *flags)
 {
-       struct amdgpu_device *adev = (struct amdgpu_device *)handle;
        int data;
 
        if (amdgpu_sriov_vf(adev))
@@ -609,7 +608,6 @@ const struct amd_ip_funcs mmhub_v1_0_ip_funcs = {
        .soft_reset = mmhub_v1_0_soft_reset,
        .set_clockgating_state = mmhub_v1_0_set_clockgating_state,
        .set_powergating_state = mmhub_v1_0_set_powergating_state,
-       .get_clockgating_state = mmhub_v1_0_get_clockgating_state,
 };
 
 const struct amdgpu_ip_block_version mmhub_v1_0_ip_block =
index d9ca98545810cdfa33cc6f7ed8927ddd91c04005..bbfacbcdc4a28a12fd60fd568d6ce6e48c697b27 100644 (file)
@@ -31,6 +31,7 @@ void mmhub_v1_0_set_fault_enable_default(struct amdgpu_device *adev,
 void mmhub_v1_0_init(struct amdgpu_device *adev);
 int mmhub_v1_0_set_clockgating(struct amdgpu_device *adev,
                               enum amd_clockgating_state state);
+void mmhub_v1_0_get_clockgating(struct amdgpu_device *adev, u32 *flags);
 
 extern const struct amd_ip_funcs mmhub_v1_0_ip_funcs;
 extern const struct amdgpu_ip_block_version mmhub_v1_0_ip_block;