blob: 8f1f2a92a3f0cde728f47e630c76579a32255bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#if !defined (__MMU_HASH32_H__)
#define __MMU_HASH32_H__
#ifndef CONFIG_USER_ONLY
int pte32_is_valid(target_ulong pte0);
int ppc_hash32_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
target_ulong eaddr, int rw, int access_type);
int ppc_hash32_handle_mmu_fault(CPUPPCState *env, target_ulong address, int rw,
int mmu_idx);
#endif /* CONFIG_USER_ONLY */
#endif /* __MMU_HASH32_H__ */
|