summaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/mmu.h
diff options
context:
space:
mode:
authorDavid Gibson2007-06-13 06:52:54 +0200
committerPaul Mackerras2007-06-14 14:30:15 +0200
commit4db68bfe71940c0851bc81041ade6dc293fe2b96 (patch)
tree9959af9fe8cf9e02e40ba6e86c619b48e2d42623 /include/asm-powerpc/mmu.h
parent[POWERPC] Split low-level OF-related bootloader code into separate files (diff)
downloadkernel-qcow2-linux-4db68bfe71940c0851bc81041ade6dc293fe2b96.tar.gz
kernel-qcow2-linux-4db68bfe71940c0851bc81041ade6dc293fe2b96.tar.xz
kernel-qcow2-linux-4db68bfe71940c0851bc81041ade6dc293fe2b96.zip
[POWERPC] Split out asm-ppc/mmu.h portions for the "classic" hash-based MMU
arch/powerpc still relies on asm-ppc/mmu.h for most 32-bit MMU types. This is another step towards fixing this. It takes the portions of asm-ppc/mmu.h related to the "classic" 32-bit hash page table MMU which are still relevant in arch/powerpc and puts them in a new asm-powerpc/mmu-hash32.h, included when appropriate from asm-powerpc/mmu.h. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/mmu.h')
-rw-r--r--include/asm-powerpc/mmu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-powerpc/mmu.h b/include/asm-powerpc/mmu.h
index fe510fff8907..dae6a71fba46 100644
--- a/include/asm-powerpc/mmu.h
+++ b/include/asm-powerpc/mmu.h
@@ -5,6 +5,9 @@
#ifdef CONFIG_PPC64
/* 64-bit classic hash table MMU */
# include <asm/mmu-hash64.h>
+#elif defined(CONFIG_PPC_STD_MMU)
+/* 32-bit classic hash table MMU */
+# include <asm/mmu-hash32.h>
#elif defined(CONFIG_44x)
/* 44x-style software loaded TLB */
# include <asm/mmu-44x.h>