mirror of https://gitee.com/openkylin/linux.git
[PATCH] powerpc: remove LogicalSlot from pci_dn
As we now store enough information in the device_node. Also the Flags field was not used either, do remove that. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
b025279316
commit
403fac4f83
|
@ -162,10 +162,13 @@ void iommu_devnode_init_iSeries(struct device_node *dn)
|
||||||
{
|
{
|
||||||
struct iommu_table *tbl;
|
struct iommu_table *tbl;
|
||||||
struct pci_dn *pdn = PCI_DN(dn);
|
struct pci_dn *pdn = PCI_DN(dn);
|
||||||
|
u32 *lsn = (u32 *)get_property(dn, "linux,logical-slot-number", NULL);
|
||||||
|
|
||||||
|
BUG_ON(lsn == NULL);
|
||||||
|
|
||||||
tbl = kmalloc(sizeof(struct iommu_table), GFP_KERNEL);
|
tbl = kmalloc(sizeof(struct iommu_table), GFP_KERNEL);
|
||||||
|
|
||||||
iommu_table_getparms_iSeries(pdn->busno, pdn->LogicalSlot, 0, tbl);
|
iommu_table_getparms_iSeries(pdn->busno, *lsn, 0, tbl);
|
||||||
|
|
||||||
/* Look for existing tce table */
|
/* Look for existing tce table */
|
||||||
pdn->iommu_table = iommu_table_find(tbl);
|
pdn->iommu_table = iommu_table_find(tbl);
|
||||||
|
|
|
@ -191,7 +191,6 @@ void iSeries_pcibios_init(void)
|
||||||
for (dn = NULL; (dn = of_get_next_child(node, dn)) != NULL;) {
|
for (dn = NULL; (dn = of_get_next_child(node, dn)) != NULL;) {
|
||||||
struct pci_dn *pdn;
|
struct pci_dn *pdn;
|
||||||
u32 *reg;
|
u32 *reg;
|
||||||
u32 *lsn;
|
|
||||||
|
|
||||||
reg = (u32 *)get_property(dn, "reg", NULL);
|
reg = (u32 *)get_property(dn, "reg", NULL);
|
||||||
if (reg == NULL) {
|
if (reg == NULL) {
|
||||||
|
@ -203,12 +202,6 @@ void iSeries_pcibios_init(void)
|
||||||
printk(KERN_DEBUG "no subbus property!\n");
|
printk(KERN_DEBUG "no subbus property!\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
lsn = (u32 *)get_property(dn,
|
|
||||||
"linux,logical-slot-number", NULL);
|
|
||||||
if (lsn == NULL) {
|
|
||||||
printk(KERN_DEBUG "no logical-slot-number\n");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
pdn = kzalloc(sizeof(*pdn), GFP_KERNEL);
|
pdn = kzalloc(sizeof(*pdn), GFP_KERNEL);
|
||||||
if (pdn == NULL)
|
if (pdn == NULL)
|
||||||
|
@ -218,7 +211,6 @@ void iSeries_pcibios_init(void)
|
||||||
pdn->busno = bus;
|
pdn->busno = bus;
|
||||||
pdn->devfn = (reg[0] >> 8) & 0xff;
|
pdn->devfn = (reg[0] >> 8) & 0xff;
|
||||||
pdn->bussubno = *busp;
|
pdn->bussubno = *busp;
|
||||||
pdn->LogicalSlot = *lsn;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,10 +78,6 @@ struct pci_dn {
|
||||||
struct iommu_table *iommu_table; /* for phb's or bridges */
|
struct iommu_table *iommu_table; /* for phb's or bridges */
|
||||||
struct pci_dev *pcidev; /* back-pointer to the pci device */
|
struct pci_dev *pcidev; /* back-pointer to the pci device */
|
||||||
struct device_node *node; /* back-pointer to the device_node */
|
struct device_node *node; /* back-pointer to the device_node */
|
||||||
#ifdef CONFIG_PPC_ISERIES
|
|
||||||
int Flags; /* Possible flags(disable/bist)*/
|
|
||||||
u8 LogicalSlot; /* Hv Slot Index for Tces */
|
|
||||||
#endif
|
|
||||||
u32 config_space[16]; /* saved PCI config space */
|
u32 config_space[16]; /* saved PCI config space */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue