blob: 9b7140391c3809b982fb227007088c20616ef097 [file] [log] [blame]
Paul Mackerras047ea782005-11-19 20:17:32 +11001#ifndef _ASM_POWERPC_MMU_H_
2#define _ASM_POWERPC_MMU_H_
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Paul Mackerras047ea782005-11-19 20:17:32 +11004
David Gibson8d2169e2007-04-27 11:53:52 +10005#ifdef CONFIG_PPC64
6/* 64-bit classic hash table MMU */
7# include <asm/mmu-hash64.h>
David Gibson4db68bf2007-06-13 14:52:54 +10008#elif defined(CONFIG_PPC_STD_MMU)
9/* 32-bit classic hash table MMU */
10# include <asm/mmu-hash32.h>
David Gibson57d79092007-04-30 14:06:25 +100011#elif defined(CONFIG_44x)
12/* 44x-style software loaded TLB */
13# include <asm/mmu-44x.h>
David Gibson67f74c92007-06-15 15:33:09 +100014#elif defined(CONFIG_FSL_BOOKE)
15/* Freescale Book-E software loaded TLB */
16# include <asm/mmu-fsl-booke.h>
Paul Mackerras047ea782005-11-19 20:17:32 +110017#else
David Gibson57d79092007-04-30 14:06:25 +100018/* Other 32-bit. FIXME: split up the other 32-bit MMU types, and
19 * revise for arch/powerpc */
David Gibson8d2169e2007-04-27 11:53:52 +100020# include <asm-ppc/mmu.h>
David Gibson1f8d4192005-05-05 16:15:13 -070021#endif
David Gibson1f8d4192005-05-05 16:15:13 -070022
Arnd Bergmann88ced032005-12-16 22:43:46 +010023#endif /* __KERNEL__ */
Paul Mackerras047ea782005-11-19 20:17:32 +110024#endif /* _ASM_POWERPC_MMU_H_ */