Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_POWERPC_NOHASH_MMU_H_
3#define _ASM_POWERPC_NOHASH_MMU_H_
4
5#if defined(CONFIG_44x)
6/* 44x-style software loaded TLB */
7#include <asm/nohash/32/mmu-44x.h>
8#elif defined(CONFIG_PPC_E500)
9/* Freescale Book-E software loaded TLB or Book-3e (ISA 2.06+) MMU */
10#include <asm/nohash/mmu-e500.h>
11#elif defined (CONFIG_PPC_8xx)
12/* Motorola/Freescale 8xx software loaded TLB */
13#include <asm/nohash/32/mmu-8xx.h>
14#endif
15
16#endif /* _ASM_POWERPC_NOHASH_MMU_H_ */