cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mmu.h (607B)


      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_40x)
      6/* 40x-style software loaded TLB */
      7#include <asm/nohash/32/mmu-40x.h>
      8#elif defined(CONFIG_44x)
      9/* 44x-style software loaded TLB */
     10#include <asm/nohash/32/mmu-44x.h>
     11#elif defined(CONFIG_PPC_BOOK3E_MMU)
     12/* Freescale Book-E software loaded TLB or Book-3e (ISA 2.06+) MMU */
     13#include <asm/nohash/mmu-book3e.h>
     14#elif defined (CONFIG_PPC_8xx)
     15/* Motorola/Freescale 8xx software loaded TLB */
     16#include <asm/nohash/32/mmu-8xx.h>
     17#endif
     18
     19#endif /* _ASM_POWERPC_NOHASH_MMU_H_ */