diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2005-11-10 14:54:58 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-10 15:03:37 +1100 |
commit | 47c2ac8cc3cf7c484e131d10cb812b6ab198885a (patch) | |
tree | 4a7dc839ec760ecbddd027c1fe5e0817ec26f431 /arch/powerpc | |
parent | 87655ff26817993932b7d049c4df226fb2c0ac5f (diff) | |
download | kernel-crypto-47c2ac8cc3cf7c484e131d10cb812b6ab198885a.tar.gz kernel-crypto-47c2ac8cc3cf7c484e131d10cb812b6ab198885a.tar.xz kernel-crypto-47c2ac8cc3cf7c484e131d10cb812b6ab198885a.zip |
[PATCH] powerpc: 64k pages vs. U3 iommu
That DART (U3 iommu) code didn't properly scale the number of entries
when using !4k pages. That caused crashes when booting G5s with more
than 2Gb of RAM. This fixes it.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/u3_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/u3_iommu.c b/arch/powerpc/sysdev/u3_iommu.c index 543d6590981..f32baf7f469 100644 --- a/arch/powerpc/sysdev/u3_iommu.c +++ b/arch/powerpc/sysdev/u3_iommu.c @@ -226,7 +226,7 @@ static void iommu_table_u3_setup(void) iommu_table_u3.it_busno = 0; iommu_table_u3.it_offset = 0; /* it_size is in number of entries */ - iommu_table_u3.it_size = dart_tablesize / sizeof(u32); + iommu_table_u3.it_size = (dart_tablesize / sizeof(u32)) >> DART_PAGE_FACTOR; /* Initialize the common IOMMU code */ iommu_table_u3.it_base = (unsigned long)dart_vbase; |