Skip to content

Commit

Permalink
drm/amdgpu: Simplify aquavanjram instance mapping
Browse files Browse the repository at this point in the history
Simplify so as to use the same sequence to assign logical to physical
ids for all IPs.

Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Acked-by: Leo Liu <leo.liu@amd.com>
Tested-by: James Zhu <James.Zhu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Lijo Lazar authored and Alex Deucher committed Jun 9, 2023
1 parent a3edd1a commit 672c883
Showing 1 changed file with 8 additions and 25 deletions.
33 changes: 8 additions & 25 deletions drivers/gpu/drm/amd/amdgpu/aqua_vanjaram_reg_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,32 +101,15 @@ static void aqua_vanjaram_populate_ip_map(struct amdgpu_device *adev,

void aqua_vanjaram_ip_map_init(struct amdgpu_device *adev)
{
int xcc_mask, sdma_mask;
int l, i;

/* Map GC instances */
l = 0;
xcc_mask = adev->gfx.xcc_mask;
while (xcc_mask) {
i = ffs(xcc_mask) - 1;
adev->ip_map.dev_inst[GC_HWIP][l++] = i;
xcc_mask &= ~(1 << i);
}
for (; l < HWIP_MAX_INSTANCE; l++)
adev->ip_map.dev_inst[GC_HWIP][l] = -1;

l = 0;
sdma_mask = adev->sdma.sdma_mask;
while (sdma_mask) {
i = ffs(sdma_mask) - 1;
adev->ip_map.dev_inst[SDMA0_HWIP][l++] = i;
sdma_mask &= ~(1 << i);
}
for (; l < HWIP_MAX_INSTANCE; l++)
adev->ip_map.dev_inst[SDMA0_HWIP][l] = -1;
u32 ip_map[][2] = {
{ GC_HWIP, adev->gfx.xcc_mask },
{ SDMA0_HWIP, adev->sdma.sdma_mask },
{ VCN_HWIP, adev->vcn.inst_mask },
};
int i;

/* This covers both VCN and JPEG, JPEG is only alias of VCN */
aqua_vanjaram_populate_ip_map(adev, VCN_HWIP, adev->vcn.inst_mask);
for (i = 0; i < ARRAY_SIZE(ip_map); ++i)
aqua_vanjaram_populate_ip_map(adev, ip_map[i][0], ip_map[i][1]);

adev->ip_map.logical_to_dev_inst = aqua_vanjaram_logical_to_dev_inst;
}
Expand Down

0 comments on commit 672c883

Please sign in to comment.