]> git.ipfire.org Git - thirdparty/qemu.git/blob - target-ppc/mmu-hash64.h
target-ppc: Convert mmu-hash{32,64}.[ch] from CPUPPCState to PowerPCCPU
[thirdparty/qemu.git] / target-ppc / mmu-hash64.h
1 #if !defined (__MMU_HASH64_H__)
2 #define __MMU_HASH64_H__
3
4 #ifndef CONFIG_USER_ONLY
5
6 #ifdef TARGET_PPC64
7 void ppc_hash64_check_page_sizes(PowerPCCPU *cpu, Error **errp);
8 void dump_slb(FILE *f, fprintf_function cpu_fprintf, PowerPCCPU *cpu);
9 int ppc_store_slb(PowerPCCPU *cpu, target_ulong rb, target_ulong rs);
10 hwaddr ppc_hash64_get_phys_page_debug(PowerPCCPU *cpu, target_ulong addr);
11 int ppc_hash64_handle_mmu_fault(PowerPCCPU *cpu, target_ulong address, int rw,
12 int mmu_idx);
13 void ppc_hash64_store_hpte(PowerPCCPU *cpu, target_ulong index,
14 target_ulong pte0, target_ulong pte1);
15 #endif
16
17 /*
18 * SLB definitions
19 */
20
21 /* Bits in the SLB ESID word */
22 #define SLB_ESID_ESID 0xFFFFFFFFF0000000ULL
23 #define SLB_ESID_V 0x0000000008000000ULL /* valid */
24
25 /* Bits in the SLB VSID word */
26 #define SLB_VSID_SHIFT 12
27 #define SLB_VSID_SHIFT_1T 24
28 #define SLB_VSID_SSIZE_SHIFT 62
29 #define SLB_VSID_B 0xc000000000000000ULL
30 #define SLB_VSID_B_256M 0x0000000000000000ULL
31 #define SLB_VSID_B_1T 0x4000000000000000ULL
32 #define SLB_VSID_VSID 0x3FFFFFFFFFFFF000ULL
33 #define SLB_VSID_PTEM (SLB_VSID_B | SLB_VSID_VSID)
34 #define SLB_VSID_KS 0x0000000000000800ULL
35 #define SLB_VSID_KP 0x0000000000000400ULL
36 #define SLB_VSID_N 0x0000000000000200ULL /* no-execute */
37 #define SLB_VSID_L 0x0000000000000100ULL
38 #define SLB_VSID_C 0x0000000000000080ULL /* class */
39 #define SLB_VSID_LP 0x0000000000000030ULL
40 #define SLB_VSID_ATTR 0x0000000000000FFFULL
41 #define SLB_VSID_LLP_MASK (SLB_VSID_L | SLB_VSID_LP)
42 #define SLB_VSID_4K 0x0000000000000000ULL
43 #define SLB_VSID_64K 0x0000000000000110ULL
44
45 /*
46 * Hash page table definitions
47 */
48
49 #define HPTES_PER_GROUP 8
50 #define HASH_PTE_SIZE_64 16
51 #define HASH_PTEG_SIZE_64 (HASH_PTE_SIZE_64 * HPTES_PER_GROUP)
52
53 #define HPTE64_V_SSIZE_SHIFT 62
54 #define HPTE64_V_AVPN_SHIFT 7
55 #define HPTE64_V_AVPN 0x3fffffffffffff80ULL
56 #define HPTE64_V_AVPN_VAL(x) (((x) & HPTE64_V_AVPN) >> HPTE64_V_AVPN_SHIFT)
57 #define HPTE64_V_COMPARE(x, y) (!(((x) ^ (y)) & 0xffffffffffffff80ULL))
58 #define HPTE64_V_LARGE 0x0000000000000004ULL
59 #define HPTE64_V_SECONDARY 0x0000000000000002ULL
60 #define HPTE64_V_VALID 0x0000000000000001ULL
61
62 #define HPTE64_R_PP0 0x8000000000000000ULL
63 #define HPTE64_R_TS 0x4000000000000000ULL
64 #define HPTE64_R_KEY_HI 0x3000000000000000ULL
65 #define HPTE64_R_RPN_SHIFT 12
66 #define HPTE64_R_RPN 0x0ffffffffffff000ULL
67 #define HPTE64_R_FLAGS 0x00000000000003ffULL
68 #define HPTE64_R_PP 0x0000000000000003ULL
69 #define HPTE64_R_N 0x0000000000000004ULL
70 #define HPTE64_R_G 0x0000000000000008ULL
71 #define HPTE64_R_M 0x0000000000000010ULL
72 #define HPTE64_R_I 0x0000000000000020ULL
73 #define HPTE64_R_W 0x0000000000000040ULL
74 #define HPTE64_R_WIMG 0x0000000000000078ULL
75 #define HPTE64_R_C 0x0000000000000080ULL
76 #define HPTE64_R_R 0x0000000000000100ULL
77 #define HPTE64_R_KEY_LO 0x0000000000000e00ULL
78 #define HPTE64_R_KEY(x) ((((x) & HPTE64_R_KEY_HI) >> 60) | \
79 (((x) & HPTE64_R_KEY_LO) >> 9))
80
81 #define HPTE64_V_1TB_SEG 0x4000000000000000ULL
82 #define HPTE64_V_VRMA_MASK 0x4001ffffff000000ULL
83
84
85 extern bool kvmppc_kern_htab;
86 uint64_t ppc_hash64_start_access(PowerPCCPU *cpu, target_ulong pte_index);
87 void ppc_hash64_stop_access(uint64_t token);
88
89 static inline target_ulong ppc_hash64_load_hpte0(PowerPCCPU *cpu,
90 uint64_t token, int index)
91 {
92 CPUPPCState *env = &cpu->env;
93 uint64_t addr;
94
95 addr = token + (index * HASH_PTE_SIZE_64);
96 if (env->external_htab) {
97 return ldq_p((const void *)(uintptr_t)addr);
98 } else {
99 return ldq_phys(CPU(cpu)->as, addr);
100 }
101 }
102
103 static inline target_ulong ppc_hash64_load_hpte1(PowerPCCPU *cpu,
104 uint64_t token, int index)
105 {
106 CPUPPCState *env = &cpu->env;
107 uint64_t addr;
108
109 addr = token + (index * HASH_PTE_SIZE_64) + HASH_PTE_SIZE_64/2;
110 if (env->external_htab) {
111 return ldq_p((const void *)(uintptr_t)addr);
112 } else {
113 return ldq_phys(CPU(cpu)->as, addr);
114 }
115 }
116
117 typedef struct {
118 uint64_t pte0, pte1;
119 } ppc_hash_pte64_t;
120
121 #endif /* CONFIG_USER_ONLY */
122
123 #endif /* !defined (__MMU_HASH64_H__) */