[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging-4.10] AMD/IOMMU: disable previously enabled IOMMUs upon init failure
commit 5a5b1286bd09ff372a7592fcdde2cd3b21104911 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Jun 4 15:49:30 2019 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Jun 4 15:49:30 2019 +0200 AMD/IOMMU: disable previously enabled IOMMUs upon init failure If any IOMMUs were successfully initialized before encountering failure, the successfully enabled ones should be disabled again before cleaning up their resources. Move disable_iommu() next to enable_iommu() to avoid a forward declaration, and take the opportunity to remove stray blank lines ahead of both functions' final closing braces. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Brian Woods <brian.woods@xxxxxxx> master commit: 87a3347d476443c66c79953d77d6aef1d2bb3bbd master date: 2019-05-13 09:52:43 +0200 --- xen/drivers/passthrough/amd/iommu_init.c | 59 ++++++++++++++++---------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/xen/drivers/passthrough/amd/iommu_init.c b/xen/drivers/passthrough/amd/iommu_init.c index 474992a75a..bbcb265bc9 100644 --- a/xen/drivers/passthrough/amd/iommu_init.c +++ b/xen/drivers/passthrough/amd/iommu_init.c @@ -909,7 +909,35 @@ static void enable_iommu(struct amd_iommu *iommu) iommu->enabled = 1; spin_unlock_irqrestore(&iommu->lock, flags); +} + +static void disable_iommu(struct amd_iommu *iommu) +{ + unsigned long flags; + + spin_lock_irqsave(&iommu->lock, flags); + if ( !iommu->enabled ) + { + spin_unlock_irqrestore(&iommu->lock, flags); + return; + } + + amd_iommu_msi_enable(iommu, IOMMU_CONTROL_DISABLED); + set_iommu_command_buffer_control(iommu, IOMMU_CONTROL_DISABLED); + set_iommu_event_log_control(iommu, IOMMU_CONTROL_DISABLED); + + if ( amd_iommu_has_feature(iommu, IOMMU_EXT_FEATURE_PPRSUP_SHIFT) ) + set_iommu_ppr_log_control(iommu, IOMMU_CONTROL_DISABLED); + + if ( amd_iommu_has_feature(iommu, IOMMU_EXT_FEATURE_GTSUP_SHIFT) ) + set_iommu_guest_translation_control(iommu, IOMMU_CONTROL_DISABLED); + + set_iommu_translation_control(iommu, IOMMU_CONTROL_DISABLED); + + iommu->enabled = 0; + + spin_unlock_irqrestore(&iommu->lock, flags); } static void __init deallocate_buffer(void *buf, uint32_t sz) @@ -1044,6 +1072,7 @@ static void __init amd_iommu_init_cleanup(void) list_del(&iommu->list); if ( iommu->enabled ) { + disable_iommu(iommu); deallocate_ring_buffer(&iommu->cmd_buffer); deallocate_ring_buffer(&iommu->event_log); deallocate_ring_buffer(&iommu->ppr_log); @@ -1295,36 +1324,6 @@ error_out: return rc; } -static void disable_iommu(struct amd_iommu *iommu) -{ - unsigned long flags; - - spin_lock_irqsave(&iommu->lock, flags); - - if ( !iommu->enabled ) - { - spin_unlock_irqrestore(&iommu->lock, flags); - return; - } - - amd_iommu_msi_enable(iommu, IOMMU_CONTROL_DISABLED); - set_iommu_command_buffer_control(iommu, IOMMU_CONTROL_DISABLED); - set_iommu_event_log_control(iommu, IOMMU_CONTROL_DISABLED); - - if ( amd_iommu_has_feature(iommu, IOMMU_EXT_FEATURE_PPRSUP_SHIFT) ) - set_iommu_ppr_log_control(iommu, IOMMU_CONTROL_DISABLED); - - if ( amd_iommu_has_feature(iommu, IOMMU_EXT_FEATURE_GTSUP_SHIFT) ) - set_iommu_guest_translation_control(iommu, IOMMU_CONTROL_DISABLED); - - set_iommu_translation_control(iommu, IOMMU_CONTROL_DISABLED); - - iommu->enabled = 0; - - spin_unlock_irqrestore(&iommu->lock, flags); - -} - static void invalidate_all_domain_pages(void) { struct domain *d; -- generated by git-patchbot for /home/xen/git/xen.git#staging-4.10 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |