1 #include "sysemu/sysemu.h"
3 #include "sysemu/sysemu.h"
4 #include "helper_regs.h"
5 #include "hw/ppc/spapr.h"
6 #include "mmu-hash64.h"
8 static target_ulong
compute_tlbie_rb(target_ulong v
, target_ulong r
,
9 target_ulong pte_index
)
11 target_ulong rb
, va_low
;
13 rb
= (v
& ~0x7fULL
) << 16; /* AVA field */
14 va_low
= pte_index
>> 3;
15 if (v
& HPTE64_V_SECONDARY
) {
18 /* xor vsid from AVA */
19 if (!(v
& HPTE64_V_1TB_SEG
)) {
25 if (v
& HPTE64_V_LARGE
) {
26 rb
|= 1; /* L field */
27 #if 0 /* Disable that P7 specific bit for now */
29 /* non-16MB large page, must be 64k */
30 /* (masks depend on page size) */
31 rb
|= 0x1000; /* page encoding in LP field */
32 rb
|= (va_low
& 0x7f) << 16; /* 7b of VA in AVA/LP field */
33 rb
|= (va_low
& 0xfe); /* AVAL field */
38 rb
|= (va_low
& 0x7ff) << 12; /* remaining 11b of AVA */
40 rb
|= (v
>> 54) & 0x300; /* B field */
44 static target_ulong
h_enter(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
45 target_ulong opcode
, target_ulong
*args
)
47 CPUPPCState
*env
= &cpu
->env
;
48 target_ulong flags
= args
[0];
49 target_ulong pte_index
= args
[1];
50 target_ulong pteh
= args
[2];
51 target_ulong ptel
= args
[3];
52 target_ulong page_shift
= 12;
57 /* only handle 4k and 16M pages for now */
58 if (pteh
& HPTE64_V_LARGE
) {
59 #if 0 /* We don't support 64k pages yet */
60 if ((ptel
& 0xf000) == 0x1000) {
64 if ((ptel
& 0xff000) == 0) {
67 /* lowest AVA bit must be 0 for 16M pages */
76 raddr
= (ptel
& HPTE64_R_RPN
) & ~((1ULL << page_shift
) - 1);
78 if (raddr
< spapr
->ram_limit
) {
79 /* Regular RAM - should have WIMG=0010 */
80 if ((ptel
& HPTE64_R_WIMG
) != HPTE64_R_M
) {
84 /* Looks like an IO address */
85 /* FIXME: What WIMG combinations could be sensible for IO?
86 * For now we allow WIMG=010x, but are there others? */
87 /* FIXME: Should we check against registered IO addresses? */
88 if ((ptel
& (HPTE64_R_W
| HPTE64_R_I
| HPTE64_R_M
)) != HPTE64_R_I
) {
95 if ((pte_index
* HASH_PTE_SIZE_64
) & ~env
->htab_mask
) {
98 if (likely((flags
& H_EXACT
) == 0)) {
100 hpte
= pte_index
* HASH_PTE_SIZE_64
;
105 if ((ppc_hash64_load_hpte0(env
, hpte
) & HPTE64_V_VALID
) == 0) {
108 hpte
+= HASH_PTE_SIZE_64
;
112 hpte
= pte_index
* HASH_PTE_SIZE_64
;
113 if (ppc_hash64_load_hpte0(env
, hpte
) & HPTE64_V_VALID
) {
117 ppc_hash64_store_hpte1(env
, hpte
, ptel
);
118 /* eieio(); FIXME: need some sort of barrier for smp? */
119 ppc_hash64_store_hpte0(env
, hpte
, pteh
);
121 args
[0] = pte_index
+ i
;
127 REMOVE_NOT_FOUND
= 1,
132 static target_ulong
remove_hpte(CPUPPCState
*env
, target_ulong ptex
,
135 target_ulong
*vp
, target_ulong
*rp
)
138 target_ulong v
, r
, rb
;
140 if ((ptex
* HASH_PTE_SIZE_64
) & ~env
->htab_mask
) {
144 hpte
= ptex
* HASH_PTE_SIZE_64
;
146 v
= ppc_hash64_load_hpte0(env
, hpte
);
147 r
= ppc_hash64_load_hpte1(env
, hpte
);
149 if ((v
& HPTE64_V_VALID
) == 0 ||
150 ((flags
& H_AVPN
) && (v
& ~0x7fULL
) != avpn
) ||
151 ((flags
& H_ANDCOND
) && (v
& avpn
) != 0)) {
152 return REMOVE_NOT_FOUND
;
156 ppc_hash64_store_hpte0(env
, hpte
, 0);
157 rb
= compute_tlbie_rb(v
, r
, ptex
);
158 ppc_tlb_invalidate_one(env
, rb
);
159 return REMOVE_SUCCESS
;
162 static target_ulong
h_remove(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
163 target_ulong opcode
, target_ulong
*args
)
165 CPUPPCState
*env
= &cpu
->env
;
166 target_ulong flags
= args
[0];
167 target_ulong pte_index
= args
[1];
168 target_ulong avpn
= args
[2];
171 ret
= remove_hpte(env
, pte_index
, avpn
, flags
,
178 case REMOVE_NOT_FOUND
:
191 #define H_BULK_REMOVE_TYPE 0xc000000000000000ULL
192 #define H_BULK_REMOVE_REQUEST 0x4000000000000000ULL
193 #define H_BULK_REMOVE_RESPONSE 0x8000000000000000ULL
194 #define H_BULK_REMOVE_END 0xc000000000000000ULL
195 #define H_BULK_REMOVE_CODE 0x3000000000000000ULL
196 #define H_BULK_REMOVE_SUCCESS 0x0000000000000000ULL
197 #define H_BULK_REMOVE_NOT_FOUND 0x1000000000000000ULL
198 #define H_BULK_REMOVE_PARM 0x2000000000000000ULL
199 #define H_BULK_REMOVE_HW 0x3000000000000000ULL
200 #define H_BULK_REMOVE_RC 0x0c00000000000000ULL
201 #define H_BULK_REMOVE_FLAGS 0x0300000000000000ULL
202 #define H_BULK_REMOVE_ABSOLUTE 0x0000000000000000ULL
203 #define H_BULK_REMOVE_ANDCOND 0x0100000000000000ULL
204 #define H_BULK_REMOVE_AVPN 0x0200000000000000ULL
205 #define H_BULK_REMOVE_PTEX 0x00ffffffffffffffULL
207 #define H_BULK_REMOVE_MAX_BATCH 4
209 static target_ulong
h_bulk_remove(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
210 target_ulong opcode
, target_ulong
*args
)
212 CPUPPCState
*env
= &cpu
->env
;
215 for (i
= 0; i
< H_BULK_REMOVE_MAX_BATCH
; i
++) {
216 target_ulong
*tsh
= &args
[i
*2];
217 target_ulong tsl
= args
[i
*2 + 1];
218 target_ulong v
, r
, ret
;
220 if ((*tsh
& H_BULK_REMOVE_TYPE
) == H_BULK_REMOVE_END
) {
222 } else if ((*tsh
& H_BULK_REMOVE_TYPE
) != H_BULK_REMOVE_REQUEST
) {
226 *tsh
&= H_BULK_REMOVE_PTEX
| H_BULK_REMOVE_FLAGS
;
227 *tsh
|= H_BULK_REMOVE_RESPONSE
;
229 if ((*tsh
& H_BULK_REMOVE_ANDCOND
) && (*tsh
& H_BULK_REMOVE_AVPN
)) {
230 *tsh
|= H_BULK_REMOVE_PARM
;
234 ret
= remove_hpte(env
, *tsh
& H_BULK_REMOVE_PTEX
, tsl
,
235 (*tsh
& H_BULK_REMOVE_FLAGS
) >> 26,
242 *tsh
|= (r
& (HPTE64_R_C
| HPTE64_R_R
)) << 43;
256 static target_ulong
h_protect(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
257 target_ulong opcode
, target_ulong
*args
)
259 CPUPPCState
*env
= &cpu
->env
;
260 target_ulong flags
= args
[0];
261 target_ulong pte_index
= args
[1];
262 target_ulong avpn
= args
[2];
264 target_ulong v
, r
, rb
;
266 if ((pte_index
* HASH_PTE_SIZE_64
) & ~env
->htab_mask
) {
270 hpte
= pte_index
* HASH_PTE_SIZE_64
;
272 v
= ppc_hash64_load_hpte0(env
, hpte
);
273 r
= ppc_hash64_load_hpte1(env
, hpte
);
275 if ((v
& HPTE64_V_VALID
) == 0 ||
276 ((flags
& H_AVPN
) && (v
& ~0x7fULL
) != avpn
)) {
280 r
&= ~(HPTE64_R_PP0
| HPTE64_R_PP
| HPTE64_R_N
|
281 HPTE64_R_KEY_HI
| HPTE64_R_KEY_LO
);
282 r
|= (flags
<< 55) & HPTE64_R_PP0
;
283 r
|= (flags
<< 48) & HPTE64_R_KEY_HI
;
284 r
|= flags
& (HPTE64_R_PP
| HPTE64_R_N
| HPTE64_R_KEY_LO
);
285 rb
= compute_tlbie_rb(v
, r
, pte_index
);
286 ppc_hash64_store_hpte0(env
, hpte
, v
& ~HPTE64_V_VALID
);
287 ppc_tlb_invalidate_one(env
, rb
);
288 ppc_hash64_store_hpte1(env
, hpte
, r
);
289 /* Don't need a memory barrier, due to qemu's global lock */
290 ppc_hash64_store_hpte0(env
, hpte
, v
);
294 static target_ulong
h_read(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
295 target_ulong opcode
, target_ulong
*args
)
297 CPUPPCState
*env
= &cpu
->env
;
298 target_ulong flags
= args
[0];
299 target_ulong pte_index
= args
[1];
301 int i
, ridx
, n_entries
= 1;
303 if ((pte_index
* HASH_PTE_SIZE_64
) & ~env
->htab_mask
) {
307 if (flags
& H_READ_4
) {
308 /* Clear the two low order bits */
309 pte_index
&= ~(3ULL);
313 hpte
= env
->external_htab
+ (pte_index
* HASH_PTE_SIZE_64
);
315 for (i
= 0, ridx
= 0; i
< n_entries
; i
++) {
316 args
[ridx
++] = ldq_p(hpte
);
317 args
[ridx
++] = ldq_p(hpte
+ (HASH_PTE_SIZE_64
/2));
318 hpte
+= HASH_PTE_SIZE_64
;
324 static target_ulong
h_set_dabr(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
325 target_ulong opcode
, target_ulong
*args
)
327 /* FIXME: actually implement this */
331 #define FLAGS_REGISTER_VPA 0x0000200000000000ULL
332 #define FLAGS_REGISTER_DTL 0x0000400000000000ULL
333 #define FLAGS_REGISTER_SLBSHADOW 0x0000600000000000ULL
334 #define FLAGS_DEREGISTER_VPA 0x0000a00000000000ULL
335 #define FLAGS_DEREGISTER_DTL 0x0000c00000000000ULL
336 #define FLAGS_DEREGISTER_SLBSHADOW 0x0000e00000000000ULL
338 #define VPA_MIN_SIZE 640
339 #define VPA_SIZE_OFFSET 0x4
340 #define VPA_SHARED_PROC_OFFSET 0x9
341 #define VPA_SHARED_PROC_VAL 0x2
343 static target_ulong
register_vpa(CPUPPCState
*env
, target_ulong vpa
)
349 hcall_dprintf("Can't cope with registering a VPA at logical 0\n");
353 if (vpa
% env
->dcache_line_size
) {
356 /* FIXME: bounds check the address */
358 size
= lduw_be_phys(vpa
+ 0x4);
360 if (size
< VPA_MIN_SIZE
) {
364 /* VPA is not allowed to cross a page boundary */
365 if ((vpa
/ 4096) != ((vpa
+ size
- 1) / 4096)) {
371 tmp
= ldub_phys(env
->vpa_addr
+ VPA_SHARED_PROC_OFFSET
);
372 tmp
|= VPA_SHARED_PROC_VAL
;
373 stb_phys(env
->vpa_addr
+ VPA_SHARED_PROC_OFFSET
, tmp
);
378 static target_ulong
deregister_vpa(CPUPPCState
*env
, target_ulong vpa
)
380 if (env
->slb_shadow_addr
) {
392 static target_ulong
register_slb_shadow(CPUPPCState
*env
, target_ulong addr
)
397 hcall_dprintf("Can't cope with SLB shadow at logical 0\n");
401 size
= ldl_be_phys(addr
+ 0x4);
406 if ((addr
/ 4096) != ((addr
+ size
- 1) / 4096)) {
410 if (!env
->vpa_addr
) {
414 env
->slb_shadow_addr
= addr
;
415 env
->slb_shadow_size
= size
;
420 static target_ulong
deregister_slb_shadow(CPUPPCState
*env
, target_ulong addr
)
422 env
->slb_shadow_addr
= 0;
423 env
->slb_shadow_size
= 0;
427 static target_ulong
register_dtl(CPUPPCState
*env
, target_ulong addr
)
432 hcall_dprintf("Can't cope with DTL at logical 0\n");
436 size
= ldl_be_phys(addr
+ 0x4);
442 if (!env
->vpa_addr
) {
446 env
->dtl_addr
= addr
;
447 env
->dtl_size
= size
;
452 static target_ulong
deregister_dtl(CPUPPCState
*env
, target_ulong addr
)
460 static target_ulong
h_register_vpa(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
461 target_ulong opcode
, target_ulong
*args
)
463 target_ulong flags
= args
[0];
464 target_ulong procno
= args
[1];
465 target_ulong vpa
= args
[2];
466 target_ulong ret
= H_PARAMETER
;
470 tcpu
= qemu_get_cpu(procno
);
474 tenv
= tcpu
->env_ptr
;
477 case FLAGS_REGISTER_VPA
:
478 ret
= register_vpa(tenv
, vpa
);
481 case FLAGS_DEREGISTER_VPA
:
482 ret
= deregister_vpa(tenv
, vpa
);
485 case FLAGS_REGISTER_SLBSHADOW
:
486 ret
= register_slb_shadow(tenv
, vpa
);
489 case FLAGS_DEREGISTER_SLBSHADOW
:
490 ret
= deregister_slb_shadow(tenv
, vpa
);
493 case FLAGS_REGISTER_DTL
:
494 ret
= register_dtl(tenv
, vpa
);
497 case FLAGS_DEREGISTER_DTL
:
498 ret
= deregister_dtl(tenv
, vpa
);
505 static target_ulong
h_cede(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
506 target_ulong opcode
, target_ulong
*args
)
508 CPUPPCState
*env
= &cpu
->env
;
509 CPUState
*cs
= CPU(cpu
);
511 env
->msr
|= (1ULL << MSR_EE
);
512 hreg_compute_hflags(env
);
513 if (!cpu_has_work(cs
)) {
515 env
->exception_index
= EXCP_HLT
;
516 cs
->exit_request
= 1;
521 static target_ulong
h_rtas(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
522 target_ulong opcode
, target_ulong
*args
)
524 target_ulong rtas_r3
= args
[0];
525 uint32_t token
= ldl_be_phys(rtas_r3
);
526 uint32_t nargs
= ldl_be_phys(rtas_r3
+ 4);
527 uint32_t nret
= ldl_be_phys(rtas_r3
+ 8);
529 return spapr_rtas_call(spapr
, token
, nargs
, rtas_r3
+ 12,
530 nret
, rtas_r3
+ 12 + 4*nargs
);
533 static target_ulong
h_logical_load(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
534 target_ulong opcode
, target_ulong
*args
)
536 target_ulong size
= args
[0];
537 target_ulong addr
= args
[1];
541 args
[0] = ldub_phys(addr
);
544 args
[0] = lduw_phys(addr
);
547 args
[0] = ldl_phys(addr
);
550 args
[0] = ldq_phys(addr
);
556 static target_ulong
h_logical_store(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
557 target_ulong opcode
, target_ulong
*args
)
559 target_ulong size
= args
[0];
560 target_ulong addr
= args
[1];
561 target_ulong val
= args
[2];
580 static target_ulong
h_logical_memop(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
581 target_ulong opcode
, target_ulong
*args
)
583 target_ulong dst
= args
[0]; /* Destination address */
584 target_ulong src
= args
[1]; /* Source address */
585 target_ulong esize
= args
[2]; /* Element size (0=1,1=2,2=4,3=8) */
586 target_ulong count
= args
[3]; /* Element count */
587 target_ulong op
= args
[4]; /* 0 = copy, 1 = invert */
589 unsigned int mask
= (1 << esize
) - 1;
590 int step
= 1 << esize
;
592 if (count
> 0x80000000) {
596 if ((dst
& mask
) || (src
& mask
) || (op
> 1)) {
600 if (dst
>= src
&& dst
< (src
+ (count
<< esize
))) {
601 dst
= dst
+ ((count
- 1) << esize
);
602 src
= src
+ ((count
- 1) << esize
);
609 tmp
= ldub_phys(src
);
612 tmp
= lduw_phys(src
);
647 static target_ulong
h_logical_icbi(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
648 target_ulong opcode
, target_ulong
*args
)
650 /* Nothing to do on emulation, KVM will trap this in the kernel */
654 static target_ulong
h_logical_dcbf(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
655 target_ulong opcode
, target_ulong
*args
)
657 /* Nothing to do on emulation, KVM will trap this in the kernel */
661 static spapr_hcall_fn papr_hypercall_table
[(MAX_HCALL_OPCODE
/ 4) + 1];
662 static spapr_hcall_fn kvmppc_hypercall_table
[KVMPPC_HCALL_MAX
- KVMPPC_HCALL_BASE
+ 1];
664 void spapr_register_hypercall(target_ulong opcode
, spapr_hcall_fn fn
)
666 spapr_hcall_fn
*slot
;
668 if (opcode
<= MAX_HCALL_OPCODE
) {
669 assert((opcode
& 0x3) == 0);
671 slot
= &papr_hypercall_table
[opcode
/ 4];
673 assert((opcode
>= KVMPPC_HCALL_BASE
) && (opcode
<= KVMPPC_HCALL_MAX
));
675 slot
= &kvmppc_hypercall_table
[opcode
- KVMPPC_HCALL_BASE
];
682 target_ulong
spapr_hypercall(PowerPCCPU
*cpu
, target_ulong opcode
,
685 if ((opcode
<= MAX_HCALL_OPCODE
)
686 && ((opcode
& 0x3) == 0)) {
687 spapr_hcall_fn fn
= papr_hypercall_table
[opcode
/ 4];
690 return fn(cpu
, spapr
, opcode
, args
);
692 } else if ((opcode
>= KVMPPC_HCALL_BASE
) &&
693 (opcode
<= KVMPPC_HCALL_MAX
)) {
694 spapr_hcall_fn fn
= kvmppc_hypercall_table
[opcode
- KVMPPC_HCALL_BASE
];
697 return fn(cpu
, spapr
, opcode
, args
);
701 hcall_dprintf("Unimplemented hcall 0x" TARGET_FMT_lx
"\n", opcode
);
705 static void hypercall_register_types(void)
708 spapr_register_hypercall(H_ENTER
, h_enter
);
709 spapr_register_hypercall(H_REMOVE
, h_remove
);
710 spapr_register_hypercall(H_PROTECT
, h_protect
);
711 spapr_register_hypercall(H_READ
, h_read
);
714 spapr_register_hypercall(H_BULK_REMOVE
, h_bulk_remove
);
717 spapr_register_hypercall(H_SET_DABR
, h_set_dabr
);
720 spapr_register_hypercall(H_REGISTER_VPA
, h_register_vpa
);
721 spapr_register_hypercall(H_CEDE
, h_cede
);
723 /* "debugger" hcalls (also used by SLOF). Note: We do -not- differenciate
724 * here between the "CI" and the "CACHE" variants, they will use whatever
725 * mapping attributes qemu is using. When using KVM, the kernel will
726 * enforce the attributes more strongly
728 spapr_register_hypercall(H_LOGICAL_CI_LOAD
, h_logical_load
);
729 spapr_register_hypercall(H_LOGICAL_CI_STORE
, h_logical_store
);
730 spapr_register_hypercall(H_LOGICAL_CACHE_LOAD
, h_logical_load
);
731 spapr_register_hypercall(H_LOGICAL_CACHE_STORE
, h_logical_store
);
732 spapr_register_hypercall(H_LOGICAL_ICBI
, h_logical_icbi
);
733 spapr_register_hypercall(H_LOGICAL_DCBF
, h_logical_dcbf
);
734 spapr_register_hypercall(KVMPPC_H_LOGICAL_MEMOP
, h_logical_memop
);
736 /* qemu/KVM-PPC specific hcalls */
737 spapr_register_hypercall(KVMPPC_H_RTAS
, h_rtas
);
740 type_init(hypercall_register_types
)