#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_machdep.c,v 1.26 2020/06/20 15:45:22 skrll Exp $");
#include <sys/param.h>
#include <sys/cpu.h>
#include <sys/proc.h>
#include <sys/syscallargs.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
#include <uvm/uvm_extern.h>
#include <machine/sysarch.h>
#include <machine/pcb.h>
#include <arm/vfpreg.h>
#include <arm/locore.h>
static int arm32_sync_icache(struct lwp *, const void *, register_t *);
static int arm32_drain_writebuf(struct lwp *, const void *, register_t *);
static int arm32_vfp_fpscr(struct lwp *, const void *, register_t *);
static int arm32_fpu_used(struct lwp *, const void *, register_t *);
static int
arm32_sync_icache(struct lwp *l, const void *args, register_t *retval)
{
struct arm_sync_icache_args ua;
int error;
if ((error = copyin(args, &ua, sizeof(ua))) != 0)
return error;
pmap_icache_sync_range(vm_map_pmap(&l->l_proc->p_vmspace->vm_map),
ua.addr, ua.addr + ua.len);
*retval = 0;
return 0;
}
static int
arm32_drain_writebuf(struct lwp *l, const void *args, register_t *retval)
{
cpu_drain_writebuf();
*retval = 0;
return 0;
}
static int
arm32_vfp_fpscr(struct lwp *l, const void *uap, register_t *retval)
{
struct pcb * const pcb = lwp_getpcb(l);
#ifdef FPU_VFP
vfp_savecontext(l);
#endif
retval[0] = pcb->pcb_vfp.vfp_fpscr;
if (uap) {
extern uint32_t vfp_fpscr_changable;
struct arm_vfp_fpscr_args ua;
int error;
if ((error = copyin(uap, &ua, sizeof(ua))) != 0)
return error;
if ((ua.fpscr_clear|ua.fpscr_set) & ~vfp_fpscr_changable)
return EINVAL;
pcb->pcb_vfp.vfp_fpscr &= ~ua.fpscr_clear;
pcb->pcb_vfp.vfp_fpscr |= ua.fpscr_set;
}
return 0;
}
static int
arm32_fpu_used(struct lwp *l, const void *uap, register_t *retval)
{
#ifdef FPU_VFP
retval[0] = vfp_used_p(l);
#else
retval[0] = false;
#endif
return 0;
}
int
sys_sysarch(struct lwp *l, const struct sys_sysarch_args *uap, register_t *retval)
{
int error = 0;
switch(SCARG(uap, op)) {
case ARM_SYNC_ICACHE :
error = arm32_sync_icache(l, SCARG(uap, parms), retval);
break;
case ARM_DRAIN_WRITEBUF :
error = arm32_drain_writebuf(l, SCARG(uap, parms), retval);
break;
case ARM_VFP_FPSCR :
error = arm32_vfp_fpscr(l, SCARG(uap, parms), retval);
break;
case ARM_FPU_USED :
error = arm32_fpu_used(l, SCARG(uap, parms), retval);
break;
default:
error = EINVAL;
break;
}
return error;
}
int
cpu_lwp_setprivate(lwp_t *l, void *addr)
{
#ifdef _ARM_ARCH_6
if (l == curlwp) {
u_int val = (u_int)addr;
kpreempt_disable();
armreg_tpidruro_write(val);
kpreempt_enable();
}
return 0;
#else
return 0;
#endif
}