diff options
| author | Mukul Joshi <[email protected]> | 2023-08-25 15:59:09 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-09-11 22:16:31 +0000 |
| commit | 97e3c6a853f2af9145daf0c6ca25bcdf55c759d4 (patch) | |
| tree | 589f427cabf7cf5d51538bcc37a6b261882c0381 /drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c | |
| parent | drm/amdkfd: Fix unaligned 64-bit doorbell warning (diff) | |
| download | kernel-97e3c6a853f2af9145daf0c6ca25bcdf55c759d4.tar.gz kernel-97e3c6a853f2af9145daf0c6ca25bcdf55c759d4.zip | |
drm/amdgpu: Store CU info from all XCCs for GFX v9.4.3
Currently, we store CU info only for a single XCC assuming
that it is the same for all XCCs. However, that may not be
true. As a result, store CU info for all XCCs. This info is
later used for CU masking.
Signed-off-by: Mukul Joshi <[email protected]>
Reviewed-by: Felix Kuehling <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c index 51c1745c8369..885ebd703260 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c @@ -7121,7 +7121,7 @@ static void gfx_v8_0_get_cu_info(struct amdgpu_device *adev) gfx_v8_0_set_user_cu_inactive_bitmap( adev, disable_masks[i * 2 + j]); bitmap = gfx_v8_0_get_cu_active_bitmap(adev); - cu_info->bitmap[i][j] = bitmap; + cu_info->bitmap[0][i][j] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k ++) { if (bitmap & mask) { |
