diff options
| -rw-r--r-- | drivers/pci/controller/vmd.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/pci/controller/vmd.c b/drivers/pci/controller/vmd.c index 3890812cdf87..cf6816b55b5e 100644 --- a/drivers/pci/controller/vmd.c +++ b/drivers/pci/controller/vmd.c | |||
| @@ -571,6 +571,7 @@ static int vmd_enable_domain(struct vmd_dev *vmd, unsigned long features) | |||
| 571 | LIST_HEAD(resources); | 571 | LIST_HEAD(resources); |
| 572 | resource_size_t offset[2] = {0}; | 572 | resource_size_t offset[2] = {0}; |
| 573 | resource_size_t membar2_offset = 0x2000, busn_start = 0; | 573 | resource_size_t membar2_offset = 0x2000, busn_start = 0; |
| 574 | struct pci_bus *child; | ||
| 574 | 575 | ||
| 575 | /* | 576 | /* |
| 576 | * Shadow registers may exist in certain VMD device ids which allow | 577 | * Shadow registers may exist in certain VMD device ids which allow |
| @@ -698,7 +699,19 @@ static int vmd_enable_domain(struct vmd_dev *vmd, unsigned long features) | |||
| 698 | vmd_attach_resources(vmd); | 699 | vmd_attach_resources(vmd); |
| 699 | vmd_setup_dma_ops(vmd); | 700 | vmd_setup_dma_ops(vmd); |
| 700 | dev_set_msi_domain(&vmd->bus->dev, vmd->irq_domain); | 701 | dev_set_msi_domain(&vmd->bus->dev, vmd->irq_domain); |
| 701 | pci_rescan_bus(vmd->bus); | 702 | |
| 703 | pci_scan_child_bus(vmd->bus); | ||
| 704 | pci_assign_unassigned_bus_resources(vmd->bus); | ||
| 705 | |||
| 706 | /* | ||
| 707 | * VMD root buses are virtual and don't return true on pci_is_pcie() | ||
| 708 | * and will fail pcie_bus_configure_settings() early. It can instead be | ||
| 709 | * run on each of the real root ports. | ||
| 710 | */ | ||
| 711 | list_for_each_entry(child, &vmd->bus->children, node) | ||
| 712 | pcie_bus_configure_settings(child); | ||
| 713 | |||
| 714 | pci_bus_add_devices(vmd->bus); | ||
| 702 | 715 | ||
| 703 | WARN(sysfs_create_link(&vmd->dev->dev.kobj, &vmd->bus->dev.kobj, | 716 | WARN(sysfs_create_link(&vmd->dev->dev.kobj, &vmd->bus->dev.kobj, |
| 704 | "domain"), "Can't create symlink to domain\n"); | 717 | "domain"), "Can't create symlink to domain\n"); |
