diff options
| author | Likun Gao <Likun.Gao@amd.com> | 2025-04-18 06:11:24 +0300 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2025-12-08 22:27:17 +0300 |
| commit | a5192fbb2ee4225122efdfcaea53d50e9f477055 (patch) | |
| tree | ab500231768a497569749da90759107f9304da04 | |
| parent | 1359282bd4ff16752c977d2f1a01a315c8df9f6b (diff) | |
| download | linux-a5192fbb2ee4225122efdfcaea53d50e9f477055.tar.xz | |
drm/amdgpu: fix mes code error for muti-xcc
Fix some code error for muti-xcc on mes v12_1.
Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/mes_v12_1.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c index 06c5b923957b..02200747446f 100644 --- a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c +++ b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c @@ -37,6 +37,7 @@ MODULE_FIRMWARE("amdgpu/gc_12_1_0_mes1.bin"); MODULE_FIRMWARE("amdgpu/gc_12_1_0_uni_mes.bin"); static int mes_v12_1_hw_init(struct amdgpu_ip_block *ip_block); +static int mes_v12_1_xcc_hw_init(struct amdgpu_ip_block *ip_block, int xcc_id); static int mes_v12_1_hw_fini(struct amdgpu_ip_block *ip_block); static int mes_v12_1_kiq_hw_init(struct amdgpu_device *adev, uint32_t xcc_id); static int mes_v12_1_kiq_hw_fini(struct amdgpu_device *adev, uint32_t xcc_id); @@ -683,7 +684,7 @@ static int mes_v12_1_set_hw_resources(struct amdgpu_mes *mes, for (i = 0; i < 5; i++) { mes_set_hw_res_pkt.gc_base[i] = - adev->reg_offset[GC_HWIP][GET_INST(GC, xcc_id)][i]; + adev->reg_offset[GC_HWIP][0][i]; mes_set_hw_res_pkt.mmhub_base[i] = adev->reg_offset[MMHUB_HWIP][0][i]; mes_set_hw_res_pkt.osssys_base[i] = @@ -1683,7 +1684,7 @@ static int mes_v12_1_kiq_hw_init(struct amdgpu_device *adev, uint32_t xcc_id) } if (adev->mes.enable_legacy_queue_map) { - r = mes_v12_1_hw_init(ip_block); + r = mes_v12_1_xcc_hw_init(ip_block, xcc_id); if (r) goto failure; } |
