]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[POWERPC] Make cell IOMMU fixed mapping printk more useful
authorMichael Ellerman <michael@ellerman.id.au>
Fri, 8 Feb 2008 05:37:04 +0000 (16:37 +1100)
committerPaul Mackerras <paulus@samba.org>
Fri, 8 Feb 2008 08:52:40 +0000 (19:52 +1100)
Currently the cell IOMMU fixed mapping just printks that it's been setup,
which is not particularly useful.  Much more interesting is the address
ranges for the different windows.  This adds one line to dmesg on a blade.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/platforms/cell/iommu.c

index 5cdcd3638250c5c662e3c55f7d6efbfefedd141b..edab631a8dcb1bd92ef035a2fa620820112afbee 100644 (file)
@@ -991,8 +991,8 @@ static int __init cell_iommu_fixed_mapping_init(void)
                        dsize = htab_size_bytes;
                }
 
-               pr_debug("iommu: setting up %d, dynamic window %lx-%lx " \
-                        "fixed window %lx-%lx\n", iommu->nid, dbase,
+               printk(KERN_DEBUG "iommu: node %d, dynamic window 0x%lx-0x%lx "
+                       "fixed window 0x%lx-0x%lx\n", iommu->nid, dbase,
                         dbase + dsize, fbase, fbase + fsize);
 
                cell_iommu_setup_page_tables(iommu, dbase, dsize, fbase, fsize);
@@ -1008,8 +1008,6 @@ static int __init cell_iommu_fixed_mapping_init(void)
        dma_iommu_ops.set_dma_mask = dma_set_mask_and_switch;
        set_pci_dma_ops(&dma_iommu_ops);
 
-       printk(KERN_DEBUG "IOMMU fixed mapping established.\n");
-
        return 0;
 }