9

我想在任何给定的 Linux 机器上验证是否支持 PCI 直通。经过一番谷歌搜索,我发现我宁愿检查是否支持 IOMMU,我通过运行:

dmesg | grep IOMMU   

如果它支持 IOMMU(而不是 IOMMUv2),我会得到:

IOMMU                                                          
[    0.000000] DMAR: IOMMU enabled
[    0.049734] DMAR-IR: IOAPIC id 8 under DRHD base  0xfbffc000 IOMMU 0
[    0.049735] DMAR-IR: IOAPIC id 9 under DRHD base  0xfbffc000 IOMMU 0
[    1.286567] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.286568] AMD IOMMUv2 functionality not available on this system

...DMAR: IOMMU enabled我要找的东西在哪里。

现在,如果机器已经运行了好几天而没有重新启动,那么第一条消息[ 0.000000] DMAR: IOMMU enabled 可能不会再使用上一个命令出现在日志中。

当该消息从日志中消失时,有什么方法可以检查 IOMMU 支持吗?

4

1 回答 1

7

自 2014 年以来启用的 iommu 在 /sys (sysfs) 特殊文件系统中注册为类iommu(记录在ABI/testing/sysfs-class-iommu 中): https ://patchwork.kernel.org/patch/4345491/ “[2/3 ] iommu/intel:利用 IOMMU sysfs 支持” - 2014 年 6 月 12 日

注册我们的 DRHD IOMMU、交叉链接设备,并为 IOMMU 提供一组基本属性。...在典型的桌面系统上,这提供了以下(修剪):

$ find /sys | grep dmar
/sys/devices/virtual/iommu/dmar0
...
/sys/class/iommu/dmar0
/sys/class/iommu/dmar1

代码是iommu_device_createhttp://elixir.free-electrons.com/linux/v4.5/ident/iommu_device_create,大约 4.5)或iommu_device_sysfs_addhttp://elixir.free-electrons.com/linux/v4.11/ident /iommu_device_sysfs_add)在更新的内核中。

/*
 * Create an IOMMU device and return a pointer to it.  IOMMU specific
 * attributes can be provided as an attribute group, allowing a unique
 * namespace per IOMMU type.
 */
struct device *iommu_device_create(struct device *parent, void *drvdata,
                   const struct attribute_group **groups,
                   const char *fmt, ...)

仅对启用的 IOMMU 进行注册。DMA:

if (intel_iommu_enabled) {
    iommu->iommu_dev = iommu_device_create(NULL, iommu,
                           intel_iommu_groups,
                           "%s", iommu->name);

AMD IOMMU:

static int iommu_init_pci(struct amd_iommu *iommu)
{ ...
    if (!iommu->dev)
        return -ENODEV;
...
    iommu->iommu_dev = iommu_device_create(&iommu->dev->dev, iommu,
                           amd_iommu_groups, "ivhd%d",
                           iommu->index);

英特尔:

int __init intel_iommu_init(void)
{ ...
    pr_info("Intel(R) Virtualization Technology for Directed I/O\n");
...
    for_each_active_iommu(iommu, drhd)
        iommu->iommu_dev = iommu_device_create(NULL, iommu,
                               intel_iommu_groups,
                               "%s", iommu->name);

许多 IOMMU 驱动程序iommu_device_sysfs_add都引用了4.11 linux 内核版本,因此检查 /sys/class/iommu 以编程方式检测启用的 IOMMU 比解析输出或搜索驱动程序特定的启用消息更好(更通用)的方法:dmesg/var/log/kern.log/var/log/messages

在 10 个文件中引用:

  • 驱动程序/iommu/amd_iommu_init.c,第 1640 行
  • 驱动程序/iommu/arm-smmu-v3.c,第 2709 行
  • 驱动程序/iommu/arm-smmu.c,第 2163 行
  • 驱动程序/iommu/dmar.c,第 1083 行
  • 驱动程序/iommu/exynos-iommu.c,第 623 行
  • 驱动程序/iommu/intel-iommu.c,第 4878 行
  • 驱动程序/iommu/iommu-sysfs.c,第 57 行
  • 驱动程序/iommu/msm_iommu.c,第 797 行
  • 驱动程序/iommu/mtk_iommu.c,第 581 行
于 2017-05-31T13:58:55.203 回答