PPC: POWERNV: move iommu_add_device earlier
The current implementation of IOMMU on sPAPR does not use iommu_ops and therefore does not call IOMMU API's bus_set_iommu() which 1) sets iommu_ops for a bus 2) registers a bus notifier Instead, PCI devices are added to IOMMU groups from subsys_initcall_sync(tce_iommu_init) which does basically the same thing without using iommu_ops callbacks. However Freescale PAMU driver (https://lkml.org/lkml/2013/7/1/158 ) implements iommu_ops and when tce_iommu_init is called, every PCI device is already added to some group so there is a conflict. This patch does 2 things: 1. removes the loop in which PCI devices were added to groups and adds explicit iommu_add_device() calls to add devices as soon as they get the iommu_table pointer assigned to them. 2. moves a bus notifier to powernv code in order to avoid conflict with the notifier from Freescale driver. iommu_add_device() and iommu_del_device() are public now. Signed-off-by:Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by:
Benjamin Herrenschmidt <benh@kernel.crashing.org>
Showing
- arch/powerpc/include/asm/iommu.h 26 additions, 0 deletionsarch/powerpc/include/asm/iommu.h
- arch/powerpc/kernel/iommu.c 4 additions, 44 deletionsarch/powerpc/kernel/iommu.c
- arch/powerpc/platforms/powernv/pci-ioda.c 4 additions, 4 deletionsarch/powerpc/platforms/powernv/pci-ioda.c
- arch/powerpc/platforms/powernv/pci-p5ioc2.c 1 addition, 1 deletionarch/powerpc/platforms/powernv/pci-p5ioc2.c
- arch/powerpc/platforms/powernv/pci.c 32 additions, 1 deletionarch/powerpc/platforms/powernv/pci.c
- arch/powerpc/platforms/pseries/iommu.c 5 additions, 3 deletionsarch/powerpc/platforms/pseries/iommu.c
Loading
Please register or sign in to comment