📄 iommu_detect.c
字号:
/* * Copyright (C) 2007 Advanced Micro Devices, Inc. * Author: Leo Duran <leo.duran@amd.com> * Author: Wei Wang <wei.wang2@amd.com> - adapted to xen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include <xen/config.h>#include <xen/errno.h>#include <xen/iommu.h>#include <xen/pci.h>#include <xen/pci_regs.h>#include <asm/amd-iommu.h>#include <asm/hvm/svm/amd-iommu-proto.h>#include <asm/hvm/svm/amd-iommu-acpi.h>extern struct list_head amd_iommu_head;unsigned short last_bdf = 0;static int __init get_iommu_msi_capabilities(u8 bus, u8 dev, u8 func, struct amd_iommu *iommu){ int cap_ptr, cap_id; u32 cap_header; u16 control; int count = 0; cap_ptr = pci_conf_read8(bus, dev, func, PCI_CAPABILITY_LIST); while ( cap_ptr >= PCI_MIN_CAP_OFFSET && count < PCI_MAX_CAP_BLOCKS ) { cap_ptr &= PCI_CAP_PTR_MASK; cap_header = pci_conf_read32(bus, dev, func, cap_ptr); cap_id = get_field_from_reg_u32(cap_header, PCI_CAP_ID_MASK, PCI_CAP_ID_SHIFT); if ( cap_id == PCI_CAP_ID_MSI ) { iommu->msi_cap = cap_ptr; break; } cap_ptr = get_field_from_reg_u32(cap_header, PCI_CAP_NEXT_PTR_MASK, PCI_CAP_NEXT_PTR_SHIFT); count++; } if ( !iommu->msi_cap ) return -ENODEV; amd_iov_info("Found MSI capability block \n"); control = pci_conf_read16(bus, dev, func, iommu->msi_cap + PCI_MSI_FLAGS); iommu->maskbit = control & PCI_MSI_FLAGS_MASKBIT; return 0;}int __init get_iommu_capabilities(u8 bus, u8 dev, u8 func, u8 cap_ptr, struct amd_iommu *iommu){ u32 cap_header, cap_range, misc_info; cap_header = pci_conf_read32(bus, dev, func, cap_ptr); iommu->revision = get_field_from_reg_u32( cap_header, PCI_CAP_REV_MASK, PCI_CAP_REV_SHIFT); iommu->pte_not_present_cached = get_field_from_reg_u32( cap_header, PCI_CAP_NP_CACHE_MASK, PCI_CAP_NP_CACHE_SHIFT); cap_range = pci_conf_read32(bus, dev, func, cap_ptr + PCI_CAP_RANGE_OFFSET); iommu->unit_id = get_field_from_reg_u32( cap_range, PCI_CAP_UNIT_ID_MASK, PCI_CAP_UNIT_ID_SHIFT); misc_info = pci_conf_read32(bus, dev, func, cap_ptr + PCI_MISC_INFO_OFFSET); iommu->msi_number = get_field_from_reg_u32( misc_info, PCI_CAP_MSI_NUMBER_MASK, PCI_CAP_MSI_NUMBER_SHIFT); return 0;}int __init amd_iommu_detect_one_acpi(void *ivhd){ struct amd_iommu *iommu; u8 bus, dev, func; struct acpi_ivhd_block_header *ivhd_block; ivhd_block = (struct acpi_ivhd_block_header *)ivhd; if ( ivhd_block->header.length < sizeof(struct acpi_ivhd_block_header) ) { amd_iov_error("Invalid IVHD Block Length!\n"); return -ENODEV; } if ( !ivhd_block->header.dev_id || !ivhd_block->cap_offset || !ivhd_block->mmio_base) { amd_iov_error("Invalid IVHD Block!\n"); return -ENODEV; } iommu = (struct amd_iommu *) xmalloc(struct amd_iommu); if ( !iommu ) { amd_iov_error("Error allocating amd_iommu\n"); return -ENOMEM; } memset(iommu, 0, sizeof(struct amd_iommu)); spin_lock_init(&iommu->lock); iommu->bdf = ivhd_block->header.dev_id; iommu->cap_offset = ivhd_block->cap_offset; iommu->mmio_base_phys = ivhd_block->mmio_base; /* override IOMMU support flags */ iommu->coherent = get_field_from_byte(ivhd_block->header.flags, AMD_IOMMU_ACPI_COHERENT_MASK, AMD_IOMMU_ACPI_COHERENT_SHIFT); iommu->iotlb_support = get_field_from_byte(ivhd_block->header.flags, AMD_IOMMU_ACPI_IOTLB_SUP_MASK, AMD_IOMMU_ACPI_IOTLB_SUP_SHIFT); iommu->isochronous = get_field_from_byte(ivhd_block->header.flags, AMD_IOMMU_ACPI_ISOC_MASK, AMD_IOMMU_ACPI_ISOC_SHIFT); iommu->res_pass_pw = get_field_from_byte(ivhd_block->header.flags, AMD_IOMMU_ACPI_RES_PASS_PW_MASK, AMD_IOMMU_ACPI_RES_PASS_PW_SHIFT); iommu->pass_pw = get_field_from_byte(ivhd_block->header.flags, AMD_IOMMU_ACPI_PASS_PW_MASK, AMD_IOMMU_ACPI_PASS_PW_SHIFT); iommu->ht_tunnel_enable = get_field_from_byte(ivhd_block->header.flags, AMD_IOMMU_ACPI_HT_TUN_ENB_MASK, AMD_IOMMU_ACPI_HT_TUN_ENB_SHIFT); bus = iommu->bdf >> 8; dev = PCI_SLOT(iommu->bdf & 0xFF); func = PCI_FUNC(iommu->bdf & 0xFF); get_iommu_capabilities(bus, dev, func, iommu->cap_offset, iommu); get_iommu_msi_capabilities(bus, dev, func, iommu); list_add_tail(&iommu->list, &amd_iommu_head); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -