1994da93dSChristophe Leroy /* SPDX-License-Identifier: GPL-2.0 */ 2994da93dSChristophe Leroy #ifndef _ASM_POWERPC_NOHASH_MMU_H_ 3994da93dSChristophe Leroy #define _ASM_POWERPC_NOHASH_MMU_H_ 4994da93dSChristophe Leroy 57a792d5dSChristophe Leroy #if defined(CONFIG_40x) 67a792d5dSChristophe Leroy /* 40x-style software loaded TLB */ 77a792d5dSChristophe Leroy #include <asm/nohash/32/mmu-40x.h> 87a792d5dSChristophe Leroy #elif defined(CONFIG_44x) 97a792d5dSChristophe Leroy /* 44x-style software loaded TLB */ 107a792d5dSChristophe Leroy #include <asm/nohash/32/mmu-44x.h> 11*aa5f59dfSChristophe Leroy #elif defined(CONFIG_PPC_E500) 127a792d5dSChristophe Leroy /* Freescale Book-E software loaded TLB or Book-3e (ISA 2.06+) MMU */ 13*aa5f59dfSChristophe Leroy #include <asm/nohash/mmu-e500.h> 147a792d5dSChristophe Leroy #elif defined (CONFIG_PPC_8xx) 157a792d5dSChristophe Leroy /* Motorola/Freescale 8xx software loaded TLB */ 167a792d5dSChristophe Leroy #include <asm/nohash/32/mmu-8xx.h> 17994da93dSChristophe Leroy #endif 18994da93dSChristophe Leroy 19994da93dSChristophe Leroy #endif /* _ASM_POWERPC_NOHASH_MMU_H_ */ 20