3 #include "dyngen-exec.h"
7 #include "helper_regs.h"
10 #define HPTES_PER_GROUP 8
12 #define HPTE_V_SSIZE_SHIFT 62
13 #define HPTE_V_AVPN_SHIFT 7
14 #define HPTE_V_AVPN 0x3fffffffffffff80ULL
15 #define HPTE_V_AVPN_VAL(x) (((x) & HPTE_V_AVPN) >> HPTE_V_AVPN_SHIFT)
16 #define HPTE_V_COMPARE(x, y) (!(((x) ^ (y)) & 0xffffffffffffff80UL))
17 #define HPTE_V_BOLTED 0x0000000000000010ULL
18 #define HPTE_V_LOCK 0x0000000000000008ULL
19 #define HPTE_V_LARGE 0x0000000000000004ULL
20 #define HPTE_V_SECONDARY 0x0000000000000002ULL
21 #define HPTE_V_VALID 0x0000000000000001ULL
23 #define HPTE_R_PP0 0x8000000000000000ULL
24 #define HPTE_R_TS 0x4000000000000000ULL
25 #define HPTE_R_KEY_HI 0x3000000000000000ULL
26 #define HPTE_R_RPN_SHIFT 12
27 #define HPTE_R_RPN 0x3ffffffffffff000ULL
28 #define HPTE_R_FLAGS 0x00000000000003ffULL
29 #define HPTE_R_PP 0x0000000000000003ULL
30 #define HPTE_R_N 0x0000000000000004ULL
31 #define HPTE_R_G 0x0000000000000008ULL
32 #define HPTE_R_M 0x0000000000000010ULL
33 #define HPTE_R_I 0x0000000000000020ULL
34 #define HPTE_R_W 0x0000000000000040ULL
35 #define HPTE_R_WIMG 0x0000000000000078ULL
36 #define HPTE_R_C 0x0000000000000080ULL
37 #define HPTE_R_R 0x0000000000000100ULL
38 #define HPTE_R_KEY_LO 0x0000000000000e00ULL
40 #define HPTE_V_1TB_SEG 0x4000000000000000ULL
41 #define HPTE_V_VRMA_MASK 0x4001ffffff000000ULL
43 #define HPTE_V_HVLOCK 0x40ULL
45 static inline int lock_hpte(void *hpte, target_ulong bits)
51 /* We're protected by qemu's global lock here */
55 stq_p(hpte, pteh | HPTE_V_HVLOCK);
59 static target_ulong compute_tlbie_rb(target_ulong v, target_ulong r,
60 target_ulong pte_index)
62 target_ulong rb, va_low;
64 rb = (v & ~0x7fULL) << 16; /* AVA field */
65 va_low = pte_index >> 3;
66 if (v & HPTE_V_SECONDARY) {
69 /* xor vsid from AVA */
70 if (!(v & HPTE_V_1TB_SEG)) {
76 if (v & HPTE_V_LARGE) {
77 rb |= 1; /* L field */
78 #if 0 /* Disable that P7 specific bit for now */
80 /* non-16MB large page, must be 64k */
81 /* (masks depend on page size) */
82 rb |= 0x1000; /* page encoding in LP field */
83 rb |= (va_low & 0x7f) << 16; /* 7b of VA in AVA/LP field */
84 rb |= (va_low & 0xfe); /* AVAL field */
89 rb |= (va_low & 0x7ff) << 12; /* remaining 11b of AVA */
91 rb |= (v >> 54) & 0x300; /* B field */
95 static target_ulong h_enter(CPUState *env, sPAPREnvironment *spapr,
96 target_ulong opcode, target_ulong *args)
98 target_ulong flags = args[0];
99 target_ulong pte_index = args[1];
100 target_ulong pteh = args[2];
101 target_ulong ptel = args[3];
102 target_ulong page_shift = 12;
107 /* only handle 4k and 16M pages for now */
108 if (pteh & HPTE_V_LARGE) {
109 #if 0 /* We don't support 64k pages yet */
110 if ((ptel & 0xf000) == 0x1000) {
114 if ((ptel & 0xff000) == 0) {
117 /* lowest AVA bit must be 0 for 16M pages */
126 raddr = (ptel & HPTE_R_RPN) & ~((1ULL << page_shift) - 1);
128 if (raddr < spapr->ram_limit) {
129 /* Regular RAM - should have WIMG=0010 */
130 if ((ptel & HPTE_R_WIMG) != HPTE_R_M) {
134 /* Looks like an IO address */
135 /* FIXME: What WIMG combinations could be sensible for IO?
136 * For now we allow WIMG=010x, but are there others? */
137 /* FIXME: Should we check against registered IO addresses? */
138 if ((ptel & (HPTE_R_W | HPTE_R_I | HPTE_R_M)) != HPTE_R_I) {
145 if ((pte_index * HASH_PTE_SIZE_64) & ~env->htab_mask) {
148 if (likely((flags & H_EXACT) == 0)) {
150 hpte = env->external_htab + (pte_index * HASH_PTE_SIZE_64);
155 if (((ldq_p(hpte) & HPTE_V_VALID) == 0) &&
156 lock_hpte(hpte, HPTE_V_HVLOCK | HPTE_V_VALID)) {
159 hpte += HASH_PTE_SIZE_64;
163 hpte = env->external_htab + (pte_index * HASH_PTE_SIZE_64);
164 if (!lock_hpte(hpte, HPTE_V_HVLOCK | HPTE_V_VALID)) {
168 stq_p(hpte + (HASH_PTE_SIZE_64/2), ptel);
169 /* eieio(); FIXME: need some sort of barrier for smp? */
172 assert(!(ldq_p(hpte) & HPTE_V_HVLOCK));
173 args[0] = pte_index + i;
179 REMOVE_NOT_FOUND = 1,
184 static target_ulong remove_hpte(CPUState *env, target_ulong ptex,
187 target_ulong *vp, target_ulong *rp)
190 target_ulong v, r, rb;
192 if ((ptex * HASH_PTE_SIZE_64) & ~env->htab_mask) {
196 hpte = env->external_htab + (ptex * HASH_PTE_SIZE_64);
197 while (!lock_hpte(hpte, HPTE_V_HVLOCK)) {
198 /* We have no real concurrency in qemu soft-emulation, so we
199 * will never actually have a contested lock */
204 r = ldq_p(hpte + (HASH_PTE_SIZE_64/2));
206 if ((v & HPTE_V_VALID) == 0 ||
207 ((flags & H_AVPN) && (v & ~0x7fULL) != avpn) ||
208 ((flags & H_ANDCOND) && (v & avpn) != 0)) {
209 stq_p(hpte, v & ~HPTE_V_HVLOCK);
210 assert(!(ldq_p(hpte) & HPTE_V_HVLOCK));
211 return REMOVE_NOT_FOUND;
213 *vp = v & ~HPTE_V_HVLOCK;
216 rb = compute_tlbie_rb(v, r, ptex);
217 ppc_tlb_invalidate_one(env, rb);
218 assert(!(ldq_p(hpte) & HPTE_V_HVLOCK));
219 return REMOVE_SUCCESS;
222 static target_ulong h_remove(CPUState *env, sPAPREnvironment *spapr,
223 target_ulong opcode, target_ulong *args)
225 target_ulong flags = args[0];
226 target_ulong pte_index = args[1];
227 target_ulong avpn = args[2];
230 ret = remove_hpte(env, pte_index, avpn, flags,
237 case REMOVE_NOT_FOUND:
250 #define H_BULK_REMOVE_TYPE 0xc000000000000000ULL
251 #define H_BULK_REMOVE_REQUEST 0x4000000000000000ULL
252 #define H_BULK_REMOVE_RESPONSE 0x8000000000000000ULL
253 #define H_BULK_REMOVE_END 0xc000000000000000ULL
254 #define H_BULK_REMOVE_CODE 0x3000000000000000ULL
255 #define H_BULK_REMOVE_SUCCESS 0x0000000000000000ULL
256 #define H_BULK_REMOVE_NOT_FOUND 0x1000000000000000ULL
257 #define H_BULK_REMOVE_PARM 0x2000000000000000ULL
258 #define H_BULK_REMOVE_HW 0x3000000000000000ULL
259 #define H_BULK_REMOVE_RC 0x0c00000000000000ULL
260 #define H_BULK_REMOVE_FLAGS 0x0300000000000000ULL
261 #define H_BULK_REMOVE_ABSOLUTE 0x0000000000000000ULL
262 #define H_BULK_REMOVE_ANDCOND 0x0100000000000000ULL
263 #define H_BULK_REMOVE_AVPN 0x0200000000000000ULL
264 #define H_BULK_REMOVE_PTEX 0x00ffffffffffffffULL
266 #define H_BULK_REMOVE_MAX_BATCH 4
268 static target_ulong h_bulk_remove(CPUState *env, sPAPREnvironment *spapr,
269 target_ulong opcode, target_ulong *args)
273 for (i = 0; i < H_BULK_REMOVE_MAX_BATCH; i++) {
274 target_ulong *tsh = &args[i*2];
275 target_ulong tsl = args[i*2 + 1];
276 target_ulong v, r, ret;
278 if ((*tsh & H_BULK_REMOVE_TYPE) == H_BULK_REMOVE_END) {
280 } else if ((*tsh & H_BULK_REMOVE_TYPE) != H_BULK_REMOVE_REQUEST) {
284 *tsh &= H_BULK_REMOVE_PTEX | H_BULK_REMOVE_FLAGS;
285 *tsh |= H_BULK_REMOVE_RESPONSE;
287 if ((*tsh & H_BULK_REMOVE_ANDCOND) && (*tsh & H_BULK_REMOVE_AVPN)) {
288 *tsh |= H_BULK_REMOVE_PARM;
292 ret = remove_hpte(env, *tsh & H_BULK_REMOVE_PTEX, tsl,
293 (*tsh & H_BULK_REMOVE_FLAGS) >> 26,
300 *tsh |= (r & (HPTE_R_C | HPTE_R_R)) << 43;
314 static target_ulong h_protect(CPUState *env, sPAPREnvironment *spapr,
315 target_ulong opcode, target_ulong *args)
317 target_ulong flags = args[0];
318 target_ulong pte_index = args[1];
319 target_ulong avpn = args[2];
321 target_ulong v, r, rb;
323 if ((pte_index * HASH_PTE_SIZE_64) & ~env->htab_mask) {
327 hpte = env->external_htab + (pte_index * HASH_PTE_SIZE_64);
328 while (!lock_hpte(hpte, HPTE_V_HVLOCK)) {
329 /* We have no real concurrency in qemu soft-emulation, so we
330 * will never actually have a contested lock */
335 r = ldq_p(hpte + (HASH_PTE_SIZE_64/2));
337 if ((v & HPTE_V_VALID) == 0 ||
338 ((flags & H_AVPN) && (v & ~0x7fULL) != avpn)) {
339 stq_p(hpte, v & ~HPTE_V_HVLOCK);
340 assert(!(ldq_p(hpte) & HPTE_V_HVLOCK));
344 r &= ~(HPTE_R_PP0 | HPTE_R_PP | HPTE_R_N |
345 HPTE_R_KEY_HI | HPTE_R_KEY_LO);
346 r |= (flags << 55) & HPTE_R_PP0;
347 r |= (flags << 48) & HPTE_R_KEY_HI;
348 r |= flags & (HPTE_R_PP | HPTE_R_N | HPTE_R_KEY_LO);
349 rb = compute_tlbie_rb(v, r, pte_index);
350 stq_p(hpte, v & ~HPTE_V_VALID);
351 ppc_tlb_invalidate_one(env, rb);
352 stq_p(hpte + (HASH_PTE_SIZE_64/2), r);
353 /* Don't need a memory barrier, due to qemu's global lock */
354 stq_p(hpte, v & ~HPTE_V_HVLOCK);
355 assert(!(ldq_p(hpte) & HPTE_V_HVLOCK));
359 static target_ulong h_set_dabr(CPUState *env, sPAPREnvironment *spapr,
360 target_ulong opcode, target_ulong *args)
362 /* FIXME: actually implement this */
366 #define FLAGS_REGISTER_VPA 0x0000200000000000ULL
367 #define FLAGS_REGISTER_DTL 0x0000400000000000ULL
368 #define FLAGS_REGISTER_SLBSHADOW 0x0000600000000000ULL
369 #define FLAGS_DEREGISTER_VPA 0x0000a00000000000ULL
370 #define FLAGS_DEREGISTER_DTL 0x0000c00000000000ULL
371 #define FLAGS_DEREGISTER_SLBSHADOW 0x0000e00000000000ULL
373 #define VPA_MIN_SIZE 640
374 #define VPA_SIZE_OFFSET 0x4
375 #define VPA_SHARED_PROC_OFFSET 0x9
376 #define VPA_SHARED_PROC_VAL 0x2
378 static target_ulong register_vpa(CPUState *env, target_ulong vpa)
384 hcall_dprintf("Can't cope with registering a VPA at logical 0\n");
388 if (vpa % env->dcache_line_size) {
391 /* FIXME: bounds check the address */
393 size = lduw_be_phys(vpa + 0x4);
395 if (size < VPA_MIN_SIZE) {
399 /* VPA is not allowed to cross a page boundary */
400 if ((vpa / 4096) != ((vpa + size - 1) / 4096)) {
406 tmp = ldub_phys(env->vpa + VPA_SHARED_PROC_OFFSET);
407 tmp |= VPA_SHARED_PROC_VAL;
408 stb_phys(env->vpa + VPA_SHARED_PROC_OFFSET, tmp);
413 static target_ulong deregister_vpa(CPUState *env, target_ulong vpa)
415 if (env->slb_shadow) {
419 if (env->dispatch_trace_log) {
427 static target_ulong register_slb_shadow(CPUState *env, target_ulong addr)
432 hcall_dprintf("Can't cope with SLB shadow at logical 0\n");
436 size = ldl_be_phys(addr + 0x4);
441 if ((addr / 4096) != ((addr + size - 1) / 4096)) {
449 env->slb_shadow = addr;
454 static target_ulong deregister_slb_shadow(CPUState *env, target_ulong addr)
460 static target_ulong register_dtl(CPUState *env, target_ulong addr)
465 hcall_dprintf("Can't cope with DTL at logical 0\n");
469 size = ldl_be_phys(addr + 0x4);
479 env->dispatch_trace_log = addr;
480 env->dtl_size = size;
485 static target_ulong deregister_dtl(CPUState *emv, target_ulong addr)
487 env->dispatch_trace_log = 0;
493 static target_ulong h_register_vpa(CPUState *env, sPAPREnvironment *spapr,
494 target_ulong opcode, target_ulong *args)
496 target_ulong flags = args[0];
497 target_ulong procno = args[1];
498 target_ulong vpa = args[2];
499 target_ulong ret = H_PARAMETER;
502 for (tenv = first_cpu; tenv; tenv = tenv->next_cpu) {
503 if (tenv->cpu_index == procno) {
513 case FLAGS_REGISTER_VPA:
514 ret = register_vpa(tenv, vpa);
517 case FLAGS_DEREGISTER_VPA:
518 ret = deregister_vpa(tenv, vpa);
521 case FLAGS_REGISTER_SLBSHADOW:
522 ret = register_slb_shadow(tenv, vpa);
525 case FLAGS_DEREGISTER_SLBSHADOW:
526 ret = deregister_slb_shadow(tenv, vpa);
529 case FLAGS_REGISTER_DTL:
530 ret = register_dtl(tenv, vpa);
533 case FLAGS_DEREGISTER_DTL:
534 ret = deregister_dtl(tenv, vpa);
541 static target_ulong h_cede(CPUState *env, sPAPREnvironment *spapr,
542 target_ulong opcode, target_ulong *args)
544 env->msr |= (1ULL << MSR_EE);
545 hreg_compute_hflags(env);
546 if (!cpu_has_work(env)) {
552 static target_ulong h_rtas(CPUState *env, sPAPREnvironment *spapr,
553 target_ulong opcode, target_ulong *args)
555 target_ulong rtas_r3 = args[0];
556 uint32_t token = ldl_be_phys(rtas_r3);
557 uint32_t nargs = ldl_be_phys(rtas_r3 + 4);
558 uint32_t nret = ldl_be_phys(rtas_r3 + 8);
560 return spapr_rtas_call(spapr, token, nargs, rtas_r3 + 12,
561 nret, rtas_r3 + 12 + 4*nargs);
564 static target_ulong h_logical_load(CPUState *env, sPAPREnvironment *spapr,
565 target_ulong opcode, target_ulong *args)
567 target_ulong size = args[0];
568 target_ulong addr = args[1];
572 args[0] = ldub_phys(addr);
575 args[0] = lduw_phys(addr);
578 args[0] = ldl_phys(addr);
581 args[0] = ldq_phys(addr);
587 static target_ulong h_logical_store(CPUState *env, sPAPREnvironment *spapr,
588 target_ulong opcode, target_ulong *args)
590 target_ulong size = args[0];
591 target_ulong addr = args[1];
592 target_ulong val = args[2];
611 static target_ulong h_logical_icbi(CPUState *env, sPAPREnvironment *spapr,
612 target_ulong opcode, target_ulong *args)
614 /* Nothing to do on emulation, KVM will trap this in the kernel */
618 static target_ulong h_logical_dcbf(CPUState *env, sPAPREnvironment *spapr,
619 target_ulong opcode, target_ulong *args)
621 /* Nothing to do on emulation, KVM will trap this in the kernel */
625 static spapr_hcall_fn papr_hypercall_table[(MAX_HCALL_OPCODE / 4) + 1];
626 static spapr_hcall_fn kvmppc_hypercall_table[KVMPPC_HCALL_MAX - KVMPPC_HCALL_BASE + 1];
628 void spapr_register_hypercall(target_ulong opcode, spapr_hcall_fn fn)
630 spapr_hcall_fn *slot;
632 if (opcode <= MAX_HCALL_OPCODE) {
633 assert((opcode & 0x3) == 0);
635 slot = &papr_hypercall_table[opcode / 4];
637 assert((opcode >= KVMPPC_HCALL_BASE) && (opcode <= KVMPPC_HCALL_MAX));
640 slot = &kvmppc_hypercall_table[opcode - KVMPPC_HCALL_BASE];
643 assert(!(*slot) || (fn == *slot));
647 target_ulong spapr_hypercall(CPUState *env, target_ulong opcode,
651 hcall_dprintf("Hypercall made with MSR[PR]=1\n");
655 if ((opcode <= MAX_HCALL_OPCODE)
656 && ((opcode & 0x3) == 0)) {
657 spapr_hcall_fn fn = papr_hypercall_table[opcode / 4];
660 return fn(env, spapr, opcode, args);
662 } else if ((opcode >= KVMPPC_HCALL_BASE) &&
663 (opcode <= KVMPPC_HCALL_MAX)) {
664 spapr_hcall_fn fn = kvmppc_hypercall_table[opcode - KVMPPC_HCALL_BASE];
667 return fn(env, spapr, opcode, args);
671 hcall_dprintf("Unimplemented hcall 0x" TARGET_FMT_lx "\n", opcode);
675 static void hypercall_register_types(void)
678 spapr_register_hypercall(H_ENTER, h_enter);
679 spapr_register_hypercall(H_REMOVE, h_remove);
680 spapr_register_hypercall(H_PROTECT, h_protect);
683 spapr_register_hypercall(H_BULK_REMOVE, h_bulk_remove);
686 spapr_register_hypercall(H_SET_DABR, h_set_dabr);
689 spapr_register_hypercall(H_REGISTER_VPA, h_register_vpa);
690 spapr_register_hypercall(H_CEDE, h_cede);
692 /* "debugger" hcalls (also used by SLOF). Note: We do -not- differenciate
693 * here between the "CI" and the "CACHE" variants, they will use whatever
694 * mapping attributes qemu is using. When using KVM, the kernel will
695 * enforce the attributes more strongly
697 spapr_register_hypercall(H_LOGICAL_CI_LOAD, h_logical_load);
698 spapr_register_hypercall(H_LOGICAL_CI_STORE, h_logical_store);
699 spapr_register_hypercall(H_LOGICAL_CACHE_LOAD, h_logical_load);
700 spapr_register_hypercall(H_LOGICAL_CACHE_STORE, h_logical_store);
701 spapr_register_hypercall(H_LOGICAL_ICBI, h_logical_icbi);
702 spapr_register_hypercall(H_LOGICAL_DCBF, h_logical_dcbf);
704 /* qemu/KVM-PPC specific hcalls */
705 spapr_register_hypercall(KVMPPC_H_RTAS, h_rtas);
708 type_init(hypercall_register_types)