aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
diff options
context:
space:
mode:
authorAlex Deucher <[email protected]>2024-11-26 17:41:17 +0000
committerAlex Deucher <[email protected]>2025-02-27 20:52:31 +0000
commit8bdfa5756b1b3e0880eb06a3b8fb262bb1e78341 (patch)
tree740722ab3b9c3835d25c1dfcc83379c58b21964a /drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
parentdrm/amdgpu/vcn3.0: use generic set_power_gating_state helper (diff)
downloadkernel-8bdfa5756b1b3e0880eb06a3b8fb262bb1e78341.tar.gz
kernel-8bdfa5756b1b3e0880eb06a3b8fb262bb1e78341.zip
drm/amdgpu/vcn4.0: use generic set_power_gating_state helper
No need for an IP specific version. Reviewed-by: Boyuan Zhang <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c27
1 files changed, 1 insertions, 26 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
index 35cb93ff070c..c6f6392c1c20 100644
--- a/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/vcn_v4_0.c
@@ -98,8 +98,6 @@ static void vcn_v4_0_set_unified_ring_funcs(struct amdgpu_device *adev);
static void vcn_v4_0_set_irq_funcs(struct amdgpu_device *adev);
static int vcn_v4_0_set_pg_state(struct amdgpu_vcn_inst *vinst,
enum amd_powergating_state state);
-static int vcn_v4_0_set_powergating_state(struct amdgpu_ip_block *ip_block,
- enum amd_powergating_state state);
static int vcn_v4_0_pause_dpg_mode(struct amdgpu_vcn_inst *vinst,
struct dpg_pause_state *new_state);
static void vcn_v4_0_unified_ring_set_wptr(struct amdgpu_ring *ring);
@@ -2112,29 +2110,6 @@ static int vcn_v4_0_set_pg_state(struct amdgpu_vcn_inst *vinst,
}
/**
- * vcn_v4_0_set_powergating_state - set VCN block powergating state
- *
- * @ip_block: amdgpu_ip_block pointer
- * @state: power gating state
- *
- * Set VCN block powergating state
- */
-static int vcn_v4_0_set_powergating_state(struct amdgpu_ip_block *ip_block,
- enum amd_powergating_state state)
-{
- struct amdgpu_device *adev = ip_block->adev;
- int ret = 0, i;
-
- for (i = 0; i < adev->vcn.num_vcn_inst; ++i) {
- struct amdgpu_vcn_inst *vinst = &adev->vcn.inst[i];
-
- ret |= vinst->set_pg_state(vinst, state);
- }
-
- return ret;
-}
-
-/**
* vcn_v4_0_set_ras_interrupt_state - set VCN block RAS interrupt state
*
* @adev: amdgpu_device pointer
@@ -2302,7 +2277,7 @@ static const struct amd_ip_funcs vcn_v4_0_ip_funcs = {
.is_idle = vcn_v4_0_is_idle,
.wait_for_idle = vcn_v4_0_wait_for_idle,
.set_clockgating_state = vcn_v4_0_set_clockgating_state,
- .set_powergating_state = vcn_v4_0_set_powergating_state,
+ .set_powergating_state = vcn_set_powergating_state,
.dump_ip_state = vcn_v4_0_dump_ip_state,
.print_ip_state = vcn_v4_0_print_ip_state,
};