]> git.proxmox.com Git - mirror_qemu.git/blame - target/ppc/mmu-hash64.h
Merge tag 'bsd-user-2023q1-pull-request' of gitlab.com:bsdimp/qemu into staging
[mirror_qemu.git] / target / ppc / mmu-hash64.h
CommitLineData
2a6a4076
MA
1#ifndef MMU_HASH64_H
2#define MMU_HASH64_H
10b46525
DG
3
4#ifndef CONFIG_USER_ONLY
5
6#ifdef TARGET_PPC64
fad866da 7void dump_slb(PowerPCCPU *cpu);
bcd81230
DG
8int ppc_store_slb(PowerPCCPU *cpu, target_ulong slot,
9 target_ulong esid, target_ulong vsid);
51806b54 10bool ppc_hash64_xlate(PowerPCCPU *cpu, vaddr eaddr, MMUAccessType access_type,
03695a98 11 hwaddr *raddrp, int *psizep, int *protp, int mmu_idx,
51806b54 12 bool guest_visible);
61a36c9b
DG
13void ppc_hash64_tlb_flush_hpte(PowerPCCPU *cpu,
14 target_ulong pte_index,
15 target_ulong pte0, target_ulong pte1);
1114e712 16unsigned ppc_hash64_hpte_page_shift_noslb(PowerPCCPU *cpu,
1f0252e6 17 uint64_t pte0, uint64_t pte1);
a059471d
DG
18void ppc_hash64_init(PowerPCCPU *cpu);
19void ppc_hash64_finalize(PowerPCCPU *cpu);
10b46525
DG
20#endif
21
d5aea6f3
DG
22/*
23 * SLB definitions
24 */
25
26/* Bits in the SLB ESID word */
27#define SLB_ESID_ESID 0xFFFFFFFFF0000000ULL
28#define SLB_ESID_V 0x0000000008000000ULL /* valid */
29
30/* Bits in the SLB VSID word */
31#define SLB_VSID_SHIFT 12
32#define SLB_VSID_SHIFT_1T 24
33#define SLB_VSID_SSIZE_SHIFT 62
34#define SLB_VSID_B 0xc000000000000000ULL
35#define SLB_VSID_B_256M 0x0000000000000000ULL
36#define SLB_VSID_B_1T 0x4000000000000000ULL
37#define SLB_VSID_VSID 0x3FFFFFFFFFFFF000ULL
912acdf4 38#define SLB_VSID_VRMA (0x0001FFFFFF000000ULL | SLB_VSID_B_1T)
d5aea6f3
DG
39#define SLB_VSID_PTEM (SLB_VSID_B | SLB_VSID_VSID)
40#define SLB_VSID_KS 0x0000000000000800ULL
41#define SLB_VSID_KP 0x0000000000000400ULL
42#define SLB_VSID_N 0x0000000000000200ULL /* no-execute */
43#define SLB_VSID_L 0x0000000000000100ULL
44#define SLB_VSID_C 0x0000000000000080ULL /* class */
45#define SLB_VSID_LP 0x0000000000000030ULL
46#define SLB_VSID_ATTR 0x0000000000000FFFULL
ad3e67d0
AK
47#define SLB_VSID_LLP_MASK (SLB_VSID_L | SLB_VSID_LP)
48#define SLB_VSID_4K 0x0000000000000000ULL
49#define SLB_VSID_64K 0x0000000000000110ULL
a8891fbf
DG
50#define SLB_VSID_16M 0x0000000000000100ULL
51#define SLB_VSID_16G 0x0000000000000120ULL
d5aea6f3
DG
52
53/*
54 * Hash page table definitions
55 */
56
e78308fd 57#define SDR_64_HTABORG 0x0FFFFFFFFFFC0000ULL
36778660
DG
58#define SDR_64_HTABSIZE 0x000000000000001FULL
59
3367c62f 60#define PATE0_HTABORG 0x0FFFFFFFFFFC0000ULL
d5aea6f3
DG
61#define HPTES_PER_GROUP 8
62#define HASH_PTE_SIZE_64 16
63#define HASH_PTEG_SIZE_64 (HASH_PTE_SIZE_64 * HPTES_PER_GROUP)
64
0b0b8310
DG
65#define HPTE64_V_SSIZE SLB_VSID_B
66#define HPTE64_V_SSIZE_256M SLB_VSID_B_256M
67#define HPTE64_V_SSIZE_1T SLB_VSID_B_1T
d5aea6f3
DG
68#define HPTE64_V_SSIZE_SHIFT 62
69#define HPTE64_V_AVPN_SHIFT 7
70#define HPTE64_V_AVPN 0x3fffffffffffff80ULL
71#define HPTE64_V_AVPN_VAL(x) (((x) & HPTE64_V_AVPN) >> HPTE64_V_AVPN_SHIFT)
073de86a 72#define HPTE64_V_COMPARE(x, y) (!(((x) ^ (y)) & 0xffffffffffffff83ULL))
0b0b8310 73#define HPTE64_V_BOLTED 0x0000000000000010ULL
d5aea6f3
DG
74#define HPTE64_V_LARGE 0x0000000000000004ULL
75#define HPTE64_V_SECONDARY 0x0000000000000002ULL
76#define HPTE64_V_VALID 0x0000000000000001ULL
77
78#define HPTE64_R_PP0 0x8000000000000000ULL
79#define HPTE64_R_TS 0x4000000000000000ULL
80#define HPTE64_R_KEY_HI 0x3000000000000000ULL
81#define HPTE64_R_RPN_SHIFT 12
82#define HPTE64_R_RPN 0x0ffffffffffff000ULL
83#define HPTE64_R_FLAGS 0x00000000000003ffULL
84#define HPTE64_R_PP 0x0000000000000003ULL
85#define HPTE64_R_N 0x0000000000000004ULL
86#define HPTE64_R_G 0x0000000000000008ULL
87#define HPTE64_R_M 0x0000000000000010ULL
88#define HPTE64_R_I 0x0000000000000020ULL
89#define HPTE64_R_W 0x0000000000000040ULL
90#define HPTE64_R_WIMG 0x0000000000000078ULL
91#define HPTE64_R_C 0x0000000000000080ULL
92#define HPTE64_R_R 0x0000000000000100ULL
93#define HPTE64_R_KEY_LO 0x0000000000000e00ULL
6925f12f 94#define HPTE64_R_KEY(x) ((((x) & HPTE64_R_KEY_HI) >> 57) | \
f80872e2 95 (((x) & HPTE64_R_KEY_LO) >> 9))
d5aea6f3
DG
96
97#define HPTE64_V_1TB_SEG 0x4000000000000000ULL
98#define HPTE64_V_VRMA_MASK 0x4001ffffff000000ULL
99
7bf00dfb
LL
100/* PTE offsets */
101#define HPTE64_DW1 (HASH_PTE_SIZE_64 / 2)
102#define HPTE64_DW1_R (HPTE64_DW1 + 6)
103#define HPTE64_DW1_C (HPTE64_DW1 + 7)
104
34525595
BH
105/* Format changes for ARCH v3 */
106#define HPTE64_V_COMMON_BITS 0x000fffffffffffffULL
107#define HPTE64_R_3_0_SSIZE_SHIFT 58
108#define HPTE64_R_3_0_SSIZE_MASK (3ULL << HPTE64_R_3_0_SSIZE_SHIFT)
109
7222b94a
DG
110struct ppc_hash_pte64 {
111 uint64_t pte0, pte1;
112};
113
114const ppc_hash_pte64_t *ppc_hash64_map_hptes(PowerPCCPU *cpu,
115 hwaddr ptex, int n);
116void ppc_hash64_unmap_hptes(PowerPCCPU *cpu, const ppc_hash_pte64_t *hptes,
117 hwaddr ptex, int n);
7c43bca0 118
7222b94a
DG
119static inline uint64_t ppc_hash64_hpte0(PowerPCCPU *cpu,
120 const ppc_hash_pte64_t *hptes, int i)
dffdaf61 121{
7222b94a 122 return ldq_p(&(hptes[i].pte0));
dffdaf61
DG
123}
124
7222b94a
DG
125static inline uint64_t ppc_hash64_hpte1(PowerPCCPU *cpu,
126 const ppc_hash_pte64_t *hptes, int i)
dffdaf61 127{
7222b94a 128 return ldq_p(&(hptes[i].pte1));
dffdaf61
DG
129}
130
b07c59f7
DG
131/*
132 * MMU Options
133 */
134
135struct PPCHash64PageSize {
136 uint32_t page_shift; /* Page shift (or 0) */
137 uint32_t pte_enc; /* Encoding in the HPTE (>>12) */
138};
139typedef struct PPCHash64PageSize PPCHash64PageSize;
140
141struct PPCHash64SegmentPageSizes {
142 uint32_t page_shift; /* Base page shift of segment (or 0) */
143 uint32_t slb_enc; /* SLB encoding for BookS */
144 PPCHash64PageSize enc[PPC_PAGE_SIZES_MAX_SZ];
145};
146
147struct PPCHash64Options {
58969eee
DG
148#define PPC_HASH64_1TSEG 0x00001
149#define PPC_HASH64_AMR 0x00002
26cd35b8 150#define PPC_HASH64_CI_LARGEPAGE 0x00004
58969eee 151 unsigned flags;
67d7d66f 152 unsigned slb_size;
b07c59f7
DG
153 PPCHash64SegmentPageSizes sps[PPC_PAGE_SIZES_MAX_SZ];
154};
155
21e405f1 156extern const PPCHash64Options ppc_hash64_opts_basic;
b07c59f7
DG
157extern const PPCHash64Options ppc_hash64_opts_POWER7;
158
58969eee
DG
159static inline bool ppc_hash64_has(PowerPCCPU *cpu, unsigned feature)
160{
161 return !!(cpu->hash64_opts->flags & feature);
162}
163
10b46525
DG
164#endif /* CONFIG_USER_ONLY */
165
a059471d
DG
166#if defined(CONFIG_USER_ONLY) || !defined(TARGET_PPC64)
167static inline void ppc_hash64_init(PowerPCCPU *cpu)
168{
169}
170static inline void ppc_hash64_finalize(PowerPCCPU *cpu)
171{
172}
173#endif
174
2a6a4076 175#endif /* MMU_HASH64_H */