1. 19 8月, 2021 1 次提交
  2. 10 6月, 2021 7 次提交
  3. 07 4月, 2021 2 次提交
  4. 18 3月, 2021 1 次提交
  5. 04 2月, 2021 2 次提交
  6. 28 1月, 2021 1 次提交
  7. 07 1月, 2021 2 次提交
  8. 18 11月, 2020 1 次提交
  9. 18 9月, 2020 2 次提交
  10. 16 9月, 2020 1 次提交
    • T
      iommm/vt-d: Store irq domain in struct device · 85a8dfc5
      Thomas Gleixner 提交于
      As a first step to make X86 utilize the direct MSI irq domain operations
      store the irq domain pointer in the device struct when a device is probed.
      
      This is done from dmar_pci_bus_add_dev() because it has to work even when
      DMA remapping is disabled. It only overrides the irqdomain of devices which
      are handled by a regular PCI/MSI irq domain which protects PCI devices
      behind special busses like VMD which have their own irq domain.
      
      No functional change. It just avoids the redirection through
      arch_*_msi_irqs() and allows the PCI/MSI core to directly invoke the irq
      domain alloc/free functions instead of having to look up the irq domain for
      every single MSI interupt.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Acked-by: NJoerg Roedel <jroedel@suse.de>
      Link: https://lore.kernel.org/r/20200826112333.714566121@linutronix.de
      85a8dfc5
  11. 04 9月, 2020 1 次提交
  12. 24 7月, 2020 5 次提交
  13. 23 6月, 2020 1 次提交
  14. 29 5月, 2020 1 次提交
  15. 18 5月, 2020 10 次提交
  16. 13 3月, 2020 1 次提交
  17. 07 1月, 2020 1 次提交
    • L
      iommu/vt-d: debugfs: Add support to show page table internals · e2726dae
      Lu Baolu 提交于
      Export page table internals of the domain attached to each device.
      Example of such dump on a Skylake machine:
      
      $ sudo cat /sys/kernel/debug/iommu/intel/domain_translation_struct
      [ ... ]
      Device 0000:00:14.0 with pasid 0 @0x15f3d9000
      IOVA_PFN                PML5E                   PML4E
      0x000000008ced0 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced1 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced2 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced3 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced4 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced5 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced6 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced7 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced8 |       0x0000000000000000      0x000000015f3da003
      0x000000008ced9 |       0x0000000000000000      0x000000015f3da003
      
      PDPE                    PDE                     PTE
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced0003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced1003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced2003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced3003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced4003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced5003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced6003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced7003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced8003
      0x000000015f3db003      0x000000015f3dc003      0x000000008ced9003
      [ ... ]
      Signed-off-by: NLu Baolu <baolu.lu@linux.intel.com>
      Signed-off-by: NJoerg Roedel <jroedel@suse.de>
      e2726dae