2013-03-12 01:31:06 +01:00
|
|
|
#if !defined (__MMU_HASH64_H__)
|
|
|
|
#define __MMU_HASH64_H__
|
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
|
|
|
|
#ifdef TARGET_PPC64
|
|
|
|
void dump_slb(FILE *f, fprintf_function cpu_fprintf, CPUPPCState *env);
|
|
|
|
int ppc_store_slb (CPUPPCState *env, target_ulong rb, target_ulong rs);
|
2013-03-12 01:31:13 +01:00
|
|
|
hwaddr ppc_hash64_get_phys_page_debug(CPUPPCState *env, target_ulong addr);
|
2013-09-02 14:14:24 +02:00
|
|
|
int ppc_hash64_handle_mmu_fault(PowerPCCPU *cpu, target_ulong address, int rw,
|
2013-03-12 01:31:12 +01:00
|
|
|
int mmu_idx);
|
2014-02-20 18:52:38 +01:00
|
|
|
void ppc_hash64_store_hpte(CPUPPCState *env, target_ulong index,
|
|
|
|
target_ulong pte0, target_ulong pte1);
|
2013-03-12 01:31:06 +01:00
|
|
|
#endif
|
|
|
|
|
2013-03-12 01:31:18 +01:00
|
|
|
/*
|
|
|
|
* SLB definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Bits in the SLB ESID word */
|
|
|
|
#define SLB_ESID_ESID 0xFFFFFFFFF0000000ULL
|
|
|
|
#define SLB_ESID_V 0x0000000008000000ULL /* valid */
|
|
|
|
|
|
|
|
/* Bits in the SLB VSID word */
|
|
|
|
#define SLB_VSID_SHIFT 12
|
|
|
|
#define SLB_VSID_SHIFT_1T 24
|
|
|
|
#define SLB_VSID_SSIZE_SHIFT 62
|
|
|
|
#define SLB_VSID_B 0xc000000000000000ULL
|
|
|
|
#define SLB_VSID_B_256M 0x0000000000000000ULL
|
|
|
|
#define SLB_VSID_B_1T 0x4000000000000000ULL
|
|
|
|
#define SLB_VSID_VSID 0x3FFFFFFFFFFFF000ULL
|
|
|
|
#define SLB_VSID_PTEM (SLB_VSID_B | SLB_VSID_VSID)
|
|
|
|
#define SLB_VSID_KS 0x0000000000000800ULL
|
|
|
|
#define SLB_VSID_KP 0x0000000000000400ULL
|
|
|
|
#define SLB_VSID_N 0x0000000000000200ULL /* no-execute */
|
|
|
|
#define SLB_VSID_L 0x0000000000000100ULL
|
|
|
|
#define SLB_VSID_C 0x0000000000000080ULL /* class */
|
|
|
|
#define SLB_VSID_LP 0x0000000000000030ULL
|
|
|
|
#define SLB_VSID_ATTR 0x0000000000000FFFULL
|
2015-01-26 15:21:58 +01:00
|
|
|
#define SLB_VSID_LLP_MASK (SLB_VSID_L | SLB_VSID_LP)
|
|
|
|
#define SLB_VSID_4K 0x0000000000000000ULL
|
|
|
|
#define SLB_VSID_64K 0x0000000000000110ULL
|
2013-03-12 01:31:18 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Hash page table definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define HPTES_PER_GROUP 8
|
|
|
|
#define HASH_PTE_SIZE_64 16
|
|
|
|
#define HASH_PTEG_SIZE_64 (HASH_PTE_SIZE_64 * HPTES_PER_GROUP)
|
|
|
|
|
|
|
|
#define HPTE64_V_SSIZE_SHIFT 62
|
|
|
|
#define HPTE64_V_AVPN_SHIFT 7
|
|
|
|
#define HPTE64_V_AVPN 0x3fffffffffffff80ULL
|
|
|
|
#define HPTE64_V_AVPN_VAL(x) (((x) & HPTE64_V_AVPN) >> HPTE64_V_AVPN_SHIFT)
|
|
|
|
#define HPTE64_V_COMPARE(x, y) (!(((x) ^ (y)) & 0xffffffffffffff80ULL))
|
|
|
|
#define HPTE64_V_LARGE 0x0000000000000004ULL
|
|
|
|
#define HPTE64_V_SECONDARY 0x0000000000000002ULL
|
|
|
|
#define HPTE64_V_VALID 0x0000000000000001ULL
|
|
|
|
|
|
|
|
#define HPTE64_R_PP0 0x8000000000000000ULL
|
|
|
|
#define HPTE64_R_TS 0x4000000000000000ULL
|
|
|
|
#define HPTE64_R_KEY_HI 0x3000000000000000ULL
|
|
|
|
#define HPTE64_R_RPN_SHIFT 12
|
|
|
|
#define HPTE64_R_RPN 0x0ffffffffffff000ULL
|
|
|
|
#define HPTE64_R_FLAGS 0x00000000000003ffULL
|
|
|
|
#define HPTE64_R_PP 0x0000000000000003ULL
|
|
|
|
#define HPTE64_R_N 0x0000000000000004ULL
|
|
|
|
#define HPTE64_R_G 0x0000000000000008ULL
|
|
|
|
#define HPTE64_R_M 0x0000000000000010ULL
|
|
|
|
#define HPTE64_R_I 0x0000000000000020ULL
|
|
|
|
#define HPTE64_R_W 0x0000000000000040ULL
|
|
|
|
#define HPTE64_R_WIMG 0x0000000000000078ULL
|
|
|
|
#define HPTE64_R_C 0x0000000000000080ULL
|
|
|
|
#define HPTE64_R_R 0x0000000000000100ULL
|
|
|
|
#define HPTE64_R_KEY_LO 0x0000000000000e00ULL
|
2013-03-12 01:31:47 +01:00
|
|
|
#define HPTE64_R_KEY(x) ((((x) & HPTE64_R_KEY_HI) >> 60) | \
|
|
|
|
(((x) & HPTE64_R_KEY_LO) >> 9))
|
2013-03-12 01:31:18 +01:00
|
|
|
|
|
|
|
#define HPTE64_V_1TB_SEG 0x4000000000000000ULL
|
|
|
|
#define HPTE64_V_VRMA_MASK 0x4001ffffff000000ULL
|
|
|
|
|
2014-02-20 18:52:24 +01:00
|
|
|
|
|
|
|
extern bool kvmppc_kern_htab;
|
|
|
|
uint64_t ppc_hash64_start_access(PowerPCCPU *cpu, target_ulong pte_index);
|
|
|
|
void ppc_hash64_stop_access(uint64_t token);
|
|
|
|
|
2013-03-12 01:31:19 +01:00
|
|
|
static inline target_ulong ppc_hash64_load_hpte0(CPUPPCState *env,
|
2014-02-20 18:52:24 +01:00
|
|
|
uint64_t token, int index)
|
2013-03-12 01:31:19 +01:00
|
|
|
{
|
2014-03-09 19:29:41 +01:00
|
|
|
CPUState *cs = CPU(ppc_env_get_cpu(env));
|
2014-02-20 18:52:24 +01:00
|
|
|
uint64_t addr;
|
2014-03-09 19:29:41 +01:00
|
|
|
|
2014-02-20 18:52:24 +01:00
|
|
|
addr = token + (index * HASH_PTE_SIZE_64);
|
2013-03-12 01:31:19 +01:00
|
|
|
if (env->external_htab) {
|
2014-02-20 18:52:24 +01:00
|
|
|
return ldq_p((const void *)(uintptr_t)addr);
|
2013-03-12 01:31:19 +01:00
|
|
|
} else {
|
2014-02-20 18:52:24 +01:00
|
|
|
return ldq_phys(cs->as, addr);
|
2013-03-12 01:31:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline target_ulong ppc_hash64_load_hpte1(CPUPPCState *env,
|
2014-02-20 18:52:24 +01:00
|
|
|
uint64_t token, int index)
|
2013-03-12 01:31:19 +01:00
|
|
|
{
|
2014-03-09 19:29:41 +01:00
|
|
|
CPUState *cs = CPU(ppc_env_get_cpu(env));
|
2014-02-20 18:52:24 +01:00
|
|
|
uint64_t addr;
|
2014-03-09 19:29:41 +01:00
|
|
|
|
2014-02-20 18:52:24 +01:00
|
|
|
addr = token + (index * HASH_PTE_SIZE_64) + HASH_PTE_SIZE_64/2;
|
2013-03-12 01:31:19 +01:00
|
|
|
if (env->external_htab) {
|
2014-02-20 18:52:24 +01:00
|
|
|
return ldq_p((const void *)(uintptr_t)addr);
|
2013-03-12 01:31:19 +01:00
|
|
|
} else {
|
2014-02-20 18:52:24 +01:00
|
|
|
return ldq_phys(cs->as, addr);
|
2013-03-12 01:31:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-12 01:31:28 +01:00
|
|
|
typedef struct {
|
|
|
|
uint64_t pte0, pte1;
|
|
|
|
} ppc_hash_pte64_t;
|
|
|
|
|
2013-03-12 01:31:06 +01:00
|
|
|
#endif /* CONFIG_USER_ONLY */
|
|
|
|
|
|
|
|
#endif /* !defined (__MMU_HASH64_H__) */
|