2005-11-19 17:17:32 +08:00
|
|
|
#ifndef _ASM_POWERPC_MMU_H_
|
|
|
|
#define _ASM_POWERPC_MMU_H_
|
2005-12-17 05:43:46 +08:00
|
|
|
#ifdef __KERNEL__
|
2005-11-19 17:17:32 +08:00
|
|
|
|
2007-04-27 09:53:52 +08:00
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
/* 64-bit classic hash table MMU */
|
|
|
|
# include <asm/mmu-hash64.h>
|
2007-04-30 12:06:25 +08:00
|
|
|
#elif defined(CONFIG_44x)
|
|
|
|
/* 44x-style software loaded TLB */
|
|
|
|
# include <asm/mmu-44x.h>
|
2005-11-19 17:17:32 +08:00
|
|
|
#else
|
2007-04-30 12:06:25 +08:00
|
|
|
/* Other 32-bit. FIXME: split up the other 32-bit MMU types, and
|
|
|
|
* revise for arch/powerpc */
|
2007-04-27 09:53:52 +08:00
|
|
|
# include <asm-ppc/mmu.h>
|
2005-05-06 07:15:13 +08:00
|
|
|
#endif
|
|
|
|
|
2005-12-17 05:43:46 +08:00
|
|
|
#endif /* __KERNEL__ */
|
2005-11-19 17:17:32 +08:00
|
|
|
#endif /* _ASM_POWERPC_MMU_H_ */
|