mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
hw/arm/smmu-common: Replace smmu_iommu_mr with smmu_find_sdev
The caller of smmu_iommu_mr wants to get sdev for smmuv3_flush_config(). Do it directly instead of bridging with an iommu mr pointer. Signed-off-by: Nicolin Chen <nicolinc@nvidia.com> Message-id: 20240619002218.926674-1-nicolinc@nvidia.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
6c84daac58
commit
69970205ed
3 changed files with 8 additions and 16 deletions
|
@ -1218,20 +1218,18 @@ static int smmuv3_cmdq_consume(SMMUv3State *s)
|
|||
case SMMU_CMD_CFGI_STE:
|
||||
{
|
||||
uint32_t sid = CMD_SID(&cmd);
|
||||
IOMMUMemoryRegion *mr = smmu_iommu_mr(bs, sid);
|
||||
SMMUDevice *sdev;
|
||||
SMMUDevice *sdev = smmu_find_sdev(bs, sid);
|
||||
|
||||
if (CMD_SSEC(&cmd)) {
|
||||
cmd_error = SMMU_CERROR_ILL;
|
||||
break;
|
||||
}
|
||||
|
||||
if (!mr) {
|
||||
if (!sdev) {
|
||||
break;
|
||||
}
|
||||
|
||||
trace_smmuv3_cmdq_cfgi_ste(sid);
|
||||
sdev = container_of(mr, SMMUDevice, iommu);
|
||||
smmuv3_flush_config(sdev);
|
||||
|
||||
break;
|
||||
|
@ -1260,20 +1258,18 @@ static int smmuv3_cmdq_consume(SMMUv3State *s)
|
|||
case SMMU_CMD_CFGI_CD_ALL:
|
||||
{
|
||||
uint32_t sid = CMD_SID(&cmd);
|
||||
IOMMUMemoryRegion *mr = smmu_iommu_mr(bs, sid);
|
||||
SMMUDevice *sdev;
|
||||
SMMUDevice *sdev = smmu_find_sdev(bs, sid);
|
||||
|
||||
if (CMD_SSEC(&cmd)) {
|
||||
cmd_error = SMMU_CERROR_ILL;
|
||||
break;
|
||||
}
|
||||
|
||||
if (!mr) {
|
||||
if (!sdev) {
|
||||
break;
|
||||
}
|
||||
|
||||
trace_smmuv3_cmdq_cfgi_cd(sid);
|
||||
sdev = container_of(mr, SMMUDevice, iommu);
|
||||
smmuv3_flush_config(sdev);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue