summaryrefslogtreecommitdiff
path: root/target-ppc/mmu-hash64.h
blob: 1a2e3e725837140ea7b9d5d10c8444cd1d99365c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if !defined (__MMU_HASH64_H__)
#define __MMU_HASH64_H__

#ifndef CONFIG_USER_ONLY

#ifdef TARGET_PPC64
ppc_slb_t *slb_lookup(CPUPPCState *env, target_ulong eaddr);
void dump_slb(FILE *f, fprintf_function cpu_fprintf, CPUPPCState *env);
int ppc_store_slb (CPUPPCState *env, target_ulong rb, target_ulong rs);
int pte64_check(mmu_ctx_t *ctx, target_ulong pte0,
                target_ulong pte1, int h, int rw, int type);
#endif

#endif /* CONFIG_USER_ONLY */

#endif /* !defined (__MMU_HASH64_H__) */