/* $NetBSD: m68k_machdep.c,v 1.9 2011/05/16 13:22:53 tsutsui Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /* * Copyright (c) 1988 University of Utah. * Copyright (c) 1982, 1986, 1990, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: Utah $Hdr: machdep.c 1.74 92/12/20$ * * @(#)machdep.c 8.10 (Berkeley) 4/20/94 */ #include __KERNEL_RCSID(0, "$NetBSD: m68k_machdep.c,v 1.9 2011/05/16 13:22:53 tsutsui Exp $"); #include "opt_compat_sunos.h" #include #include #include #include #include #include #include #include /* the following is used externally (sysctl_hw) */ char machine_arch[] = MACHINE_ARCH; /* from */ extern char ucas_32_ras_start[]; extern char ucas_32_ras_end[]; extern short exframesize[]; bool ucas_ras_check(struct trapframe *v) { struct frame *f = (void *)v; if (f->f_pc <= (vaddr_t)ucas_32_ras_start || f->f_pc >= (vaddr_t)ucas_32_ras_end) { return false; } f->f_pc = (vaddr_t)ucas_32_ras_start; f->f_stackadj = exframesize[f->f_format]; f->f_format = f->f_vector = 0; return true; } /* * Set registers on exec. */ void setregs(struct lwp *l, struct exec_package *pack, vaddr_t stack) { struct trapframe *tf = (struct trapframe *)l->l_md.md_regs; struct pcb *pcb = lwp_getpcb(l); tf->tf_sr = PSL_USERSET; tf->tf_pc = pack->ep_entry & ~1; tf->tf_regs[D0] = 0; tf->tf_regs[D1] = 0; tf->tf_regs[D2] = 0; tf->tf_regs[D3] = 0; tf->tf_regs[D4] = 0; tf->tf_regs[D5] = 0; tf->tf_regs[D6] = 0; tf->tf_regs[D7] = 0; tf->tf_regs[A0] = 0; tf->tf_regs[A1] = 0; tf->tf_regs[A2] = l->l_proc->p_psstrp; tf->tf_regs[A3] = 0; tf->tf_regs[A4] = 0; tf->tf_regs[A5] = 0; tf->tf_regs[A6] = 0; tf->tf_regs[SP] = stack; /* restore a null state frame */ pcb->pcb_fpregs.fpf_null = 0; #if !defined(__mc68010__) if (fputype) m68881_restore(&pcb->pcb_fpregs); #endif #ifdef COMPAT_SUNOS /* see m68k/sunos_syscall.c */ l->l_md.md_flags = 0; #endif }