1998-06-10 19:59:41 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1982, 1986 The Regents of the University of California.
|
|
|
|
* Copyright (c) 1989, 1990 William Jolitz
|
|
|
|
* Copyright (c) 1994 John Dyson
|
|
|
|
* 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, and William Jolitz.
|
|
|
|
*
|
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. 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: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
|
|
|
|
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1998-06-10 19:59:41 +00:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Chris G. Demetriou
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/malloc.h>
|
2000-05-05 09:59:14 +00:00
|
|
|
#include <sys/bio.h>
|
1998-06-10 19:59:41 +00:00
|
|
|
#include <sys/buf.h>
|
2000-10-20 07:58:15 +00:00
|
|
|
#include <sys/mutex.h>
|
1998-06-10 19:59:41 +00:00
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/vmmeter.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/sysctl.h>
|
1999-12-06 18:12:29 +00:00
|
|
|
#include <sys/unistd.h>
|
1998-06-10 19:59:41 +00:00
|
|
|
|
|
|
|
#include <machine/clock.h>
|
|
|
|
#include <machine/cpu.h>
|
1998-12-04 10:52:48 +00:00
|
|
|
#include <machine/fpu.h>
|
1998-06-10 19:59:41 +00:00
|
|
|
#include <machine/md_var.h>
|
2001-06-16 07:14:07 +00:00
|
|
|
|
|
|
|
#include <dev/ofw/openfirm.h>
|
1998-06-10 19:59:41 +00:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_param.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <vm/vm_kern.h>
|
|
|
|
#include <vm/vm_page.h>
|
|
|
|
#include <vm/vm_map.h>
|
|
|
|
#include <vm/vm_extern.h>
|
|
|
|
|
|
|
|
#include <sys/user.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* quick version of vm_fault
|
|
|
|
*/
|
1999-09-20 19:08:48 +00:00
|
|
|
int
|
1998-06-10 19:59:41 +00:00
|
|
|
vm_fault_quick(v, prot)
|
|
|
|
caddr_t v;
|
|
|
|
int prot;
|
|
|
|
{
|
1999-09-20 19:08:48 +00:00
|
|
|
int r;
|
1998-06-10 19:59:41 +00:00
|
|
|
if (prot & VM_PROT_WRITE)
|
1999-09-20 19:08:48 +00:00
|
|
|
r = subyte(v, fubyte(v));
|
1998-06-10 19:59:41 +00:00
|
|
|
else
|
1999-09-20 19:08:48 +00:00
|
|
|
r = fubyte(v);
|
|
|
|
return(r);
|
1998-06-10 19:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finish a fork operation, with process p2 nearly set up.
|
|
|
|
* Copy and update the pcb, set up the stack so that the child
|
|
|
|
* ready to run and return to user mode.
|
|
|
|
*/
|
|
|
|
void
|
1999-12-06 04:53:08 +00:00
|
|
|
cpu_fork(p1, p2, flags)
|
1998-06-10 19:59:41 +00:00
|
|
|
register struct proc *p1, *p2;
|
1999-12-06 04:53:08 +00:00
|
|
|
int flags;
|
1998-06-10 19:59:41 +00:00
|
|
|
{
|
2001-06-16 07:14:07 +00:00
|
|
|
/* XXX: coming soon... */
|
1998-06-10 19:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Intercept the return address from a freshly forked process that has NOT
|
|
|
|
* been scheduled yet.
|
|
|
|
*
|
|
|
|
* This is needed to make kernel threads stay in kernel mode.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
cpu_set_fork_handler(p, func, arg)
|
|
|
|
struct proc *p;
|
1999-07-01 13:21:46 +00:00
|
|
|
void (*func) __P((void *));
|
|
|
|
void *arg;
|
1998-06-10 19:59:41 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Note that the trap frame follows the args, so the function
|
|
|
|
* is really called like this: func(arg, frame);
|
|
|
|
*/
|
2001-06-16 07:14:07 +00:00
|
|
|
#if 0 /* XXX */
|
1998-06-10 19:59:41 +00:00
|
|
|
p->p_addr->u_pcb.pcb_context[0] = (u_long) func;
|
|
|
|
p->p_addr->u_pcb.pcb_context[2] = (u_long) arg;
|
2001-06-16 07:14:07 +00:00
|
|
|
#endif
|
1998-06-10 19:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpu_exit is called as the last action during exit.
|
|
|
|
* We release the address space of the process, block interrupts,
|
|
|
|
* and call switch_exit. switch_exit switches to proc0's PCB and stack,
|
|
|
|
* then jumps into the middle of cpu_switch, as if it were switching
|
|
|
|
* from proc0.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
cpu_exit(p)
|
|
|
|
register struct proc *p;
|
|
|
|
{
|
2001-03-07 03:20:15 +00:00
|
|
|
PROC_LOCK(p);
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_lock_spin(&sched_lock);
|
2001-07-03 05:09:48 +00:00
|
|
|
while (mtx_owned(&Giant))
|
|
|
|
mtx_unlock_flags(&Giant, MTX_NOSWITCH);
|
2000-12-23 19:43:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We have to wait until after releasing all locks before
|
|
|
|
* changing p_stat. If we block on a mutex then we will be
|
|
|
|
* back at SRUN when we resume and our parent will never
|
|
|
|
* harvest us.
|
|
|
|
*/
|
|
|
|
p->p_stat = SZOMB;
|
|
|
|
|
|
|
|
wakeup(p->p_pptr);
|
2001-03-07 03:20:15 +00:00
|
|
|
PROC_UNLOCK_NOSWITCH(p);
|
2000-12-23 19:43:10 +00:00
|
|
|
|
1998-06-10 19:59:41 +00:00
|
|
|
cnt.v_swtch++;
|
2000-09-07 01:33:02 +00:00
|
|
|
cpu_switch();
|
1998-06-10 19:59:41 +00:00
|
|
|
panic("cpu_exit");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cpu_wait(p)
|
|
|
|
struct proc *p;
|
|
|
|
{
|
2001-07-04 16:20:28 +00:00
|
|
|
GIANT_REQUIRED;
|
2001-05-21 16:04:24 +00:00
|
|
|
|
1998-06-10 19:59:41 +00:00
|
|
|
/* drop per-process resources */
|
|
|
|
pmap_dispose_proc(p);
|
|
|
|
|
|
|
|
/* and clean-out the vmspace */
|
|
|
|
vmspace_free(p->p_vmspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Dump the machine specific header information at the start of a core dump.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
cpu_coredump(p, vp, cred)
|
|
|
|
struct proc *p;
|
|
|
|
struct vnode *vp;
|
|
|
|
struct ucred *cred;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (vn_rdwr(UIO_WRITE, vp, (caddr_t) p->p_addr, ctob(UPAGES),
|
|
|
|
(off_t)0, UIO_SYSSPACE, IO_NODELOCKED|IO_UNIT, cred, (int *)NULL,
|
|
|
|
p));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Map an IO request into kernel virtual address space.
|
|
|
|
*
|
|
|
|
* All requests are (re)mapped into kernel VA space.
|
|
|
|
* Notice that we use b_bufsize for the size of the buffer
|
|
|
|
* to be mapped. b_bcount might be modified by the driver.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
vmapbuf(bp)
|
|
|
|
register struct buf *bp;
|
|
|
|
{
|
|
|
|
register caddr_t addr, v, kva;
|
|
|
|
vm_offset_t pa;
|
|
|
|
|
2001-07-04 16:20:28 +00:00
|
|
|
GIANT_REQUIRED;
|
|
|
|
|
1998-06-10 19:59:41 +00:00
|
|
|
if ((bp->b_flags & B_PHYS) == 0)
|
|
|
|
panic("vmapbuf");
|
|
|
|
|
|
|
|
for (v = bp->b_saveaddr, addr = (caddr_t)trunc_page(bp->b_data);
|
|
|
|
addr < bp->b_data + bp->b_bufsize;
|
|
|
|
addr += PAGE_SIZE, v += PAGE_SIZE) {
|
|
|
|
/*
|
|
|
|
* Do the vm_fault if needed; do the copy-on-write thing
|
|
|
|
* when reading stuff off device into memory.
|
|
|
|
*/
|
|
|
|
vm_fault_quick(addr,
|
2000-03-20 10:44:49 +00:00
|
|
|
(bp->b_iocmd == BIO_READ)?(VM_PROT_READ|VM_PROT_WRITE):VM_PROT_READ);
|
1998-06-10 19:59:41 +00:00
|
|
|
pa = trunc_page(pmap_kextract((vm_offset_t) addr));
|
|
|
|
if (pa == 0)
|
|
|
|
panic("vmapbuf: page not present");
|
|
|
|
vm_page_hold(PHYS_TO_VM_PAGE(pa));
|
|
|
|
pmap_kenter((vm_offset_t) v, pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
kva = bp->b_saveaddr;
|
|
|
|
bp->b_saveaddr = bp->b_data;
|
|
|
|
bp->b_data = kva + (((vm_offset_t) bp->b_data) & PAGE_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the io map PTEs associated with this IO operation.
|
|
|
|
* We also invalidate the TLB entries and restore the original b_addr.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
vunmapbuf(bp)
|
|
|
|
register struct buf *bp;
|
|
|
|
{
|
|
|
|
register caddr_t addr;
|
|
|
|
vm_offset_t pa;
|
|
|
|
|
2001-07-04 16:20:28 +00:00
|
|
|
GIANT_REQUIRED;
|
|
|
|
|
1998-06-10 19:59:41 +00:00
|
|
|
if ((bp->b_flags & B_PHYS) == 0)
|
|
|
|
panic("vunmapbuf");
|
|
|
|
|
|
|
|
for (addr = (caddr_t)trunc_page(bp->b_data);
|
|
|
|
addr < bp->b_data + bp->b_bufsize;
|
|
|
|
addr += PAGE_SIZE) {
|
|
|
|
pa = trunc_page(pmap_kextract((vm_offset_t) addr));
|
|
|
|
pmap_kremove((vm_offset_t) addr);
|
|
|
|
vm_page_unhold(PHYS_TO_VM_PAGE(pa));
|
|
|
|
}
|
|
|
|
|
|
|
|
bp->b_data = bp->b_saveaddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-09-07 01:33:02 +00:00
|
|
|
* Reset back to firmware.
|
1998-06-10 19:59:41 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
cpu_reset()
|
|
|
|
{
|
2001-06-16 07:14:07 +00:00
|
|
|
OF_exit();
|
1998-06-10 19:59:41 +00:00
|
|
|
}
|
|
|
|
|
1999-01-26 02:49:52 +00:00
|
|
|
int
|
|
|
|
grow_stack(p, sp)
|
|
|
|
struct proc *p;
|
|
|
|
size_t sp;
|
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
rv = vm_map_growstack (p, sp);
|
|
|
|
if (rv != KERN_SUCCESS)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
1998-06-10 19:59:41 +00:00
|
|
|
/*
|
|
|
|
* Software interrupt handler for queued VM system processing.
|
|
|
|
*/
|
|
|
|
void
|
2000-10-25 05:19:40 +00:00
|
|
|
swi_vm(void *dummy)
|
1998-06-10 19:59:41 +00:00
|
|
|
{
|
2001-06-16 07:14:07 +00:00
|
|
|
#if 0 /* XXX: Don't have busdma stuff yet */
|
1998-06-10 19:59:41 +00:00
|
|
|
if (busdma_swi_pending != 0)
|
|
|
|
busdma_swi();
|
2001-06-16 07:14:07 +00:00
|
|
|
#endif
|
1998-06-10 19:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tell whether this address is in some physical memory region.
|
|
|
|
* Currently used by the kernel coredump code in order to avoid
|
|
|
|
* dumping the ``ISA memory hole'' which could cause indefinite hangs,
|
|
|
|
* or other unpredictable behaviour.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
is_physical_memory(addr)
|
|
|
|
vm_offset_t addr;
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* stuff other tests for known memory-mapped devices (PCI?)
|
|
|
|
* here
|
|
|
|
*/
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|