浏览代码

[PATCH] ppc64: move iSeries vio iommu init

Since the iSeries vio iommu tables cannot be used until after the vio bus has
been initialised, move the initialisation of the tables to there.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Stephen Rothwell 20 年之前
父节点
当前提交
8c65b5c955
共有 3 个文件被更改,包括 2 次插入7 次删除
  1. 2 1
      arch/ppc64/kernel/iSeries_vio.c
  2. 0 3
      arch/ppc64/mm/init.c
  3. 0 3
      include/asm-ppc64/iommu.h

+ 2 - 1
arch/ppc64/kernel/iSeries_vio.c

@@ -27,7 +27,7 @@ EXPORT_SYMBOL(iSeries_vio_dev);
 static struct iommu_table veth_iommu_table;
 static struct iommu_table veth_iommu_table;
 static struct iommu_table vio_iommu_table;
 static struct iommu_table vio_iommu_table;
 
 
-void __init iommu_vio_init(void)
+static void __init iommu_vio_init(void)
 {
 {
 	struct iommu_table *t;
 	struct iommu_table *t;
 	struct iommu_table_cb cb;
 	struct iommu_table_cb cb;
@@ -123,6 +123,7 @@ static int __init vio_bus_init_iseries(void)
 
 
 	err = vio_bus_init();
 	err = vio_bus_init();
 	if (err == 0) {
 	if (err == 0) {
+		iommu_vio_init();
 		vio_bus_device.iommu_table = &vio_iommu_table;
 		vio_bus_device.iommu_table = &vio_iommu_table;
 		iSeries_vio_dev = &vio_bus_device.dev;
 		iSeries_vio_dev = &vio_bus_device.dev;
 		probe_bus_iseries();
 		probe_bus_iseries();

+ 0 - 3
arch/ppc64/mm/init.c

@@ -686,9 +686,6 @@ void __init mem_init(void)
 
 
 	mem_init_done = 1;
 	mem_init_done = 1;
 
 
-#ifdef CONFIG_PPC_ISERIES
-	iommu_vio_init();
-#endif
 	/* Initialize the vDSO */
 	/* Initialize the vDSO */
 	vdso_init();
 	vdso_init();
 }
 }

+ 0 - 3
include/asm-ppc64/iommu.h

@@ -104,9 +104,6 @@ extern void iommu_devnode_init_pSeries(struct device_node *dn);
 
 
 #ifdef CONFIG_PPC_ISERIES
 #ifdef CONFIG_PPC_ISERIES
 
 
-/* Initializes tables for bio buses */
-extern void __init iommu_vio_init(void);
-
 struct iSeries_Device_Node;
 struct iSeries_Device_Node;
 /* Creates table for an individual device node */
 /* Creates table for an individual device node */
 extern void iommu_devnode_init_iSeries(struct iSeries_Device_Node *dn);
 extern void iommu_devnode_init_iSeries(struct iSeries_Device_Node *dn);