os161-1.99
 All Data Structures
current.h
00001 /*
00002  * Copyright (c) 2009
00003  *      The President and Fellows of Harvard College.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions
00007  * are met:
00008  * 1. Redistributions of source code must retain the above copyright
00009  *    notice, this list of conditions and the following disclaimer.
00010  * 2. Redistributions in binary form must reproduce the above copyright
00011  *    notice, this list of conditions and the following disclaimer in the
00012  *    documentation and/or other materials provided with the distribution.
00013  * 3. Neither the name of the University nor the names of its contributors
00014  *    may be used to endorse or promote products derived from this software
00015  *    without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND
00018  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED.  IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE
00021  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00022  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
00023  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00024  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00025  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
00026  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00027  * SUCH DAMAGE.
00028  */
00029 
00030 #ifndef _MIPS_CURRENT_H_
00031 #define _MIPS_CURRENT_H_
00032 
00033 
00034 /*
00035  * Macro for current thread, or alternatively current cpu.
00036  *
00037  * This file should only be included via <current.h> (q.v.)
00038  *
00039  * These are machine-dependent because on some platforms it is
00040  * better/easier to keep track of curcpu and make curthread be
00041  * curcpu->c_curthread, and on others to keep track of curthread and
00042  * make curcpu be curthread->t_cpu.
00043  *
00044  * Either way we don't want retrieving curthread or curcpu to be
00045  * expensive; digging around in system board registers and whatnot is
00046  * not a very good idea. So we want to keep either curthread or curcpu
00047  * on-chip somewhere in some fashion.
00048  *
00049  * There are various possible approaches; for example, one might use
00050  * the MMU on each CPU to map that CPU's cpu structure to a fixed
00051  * virtual address that's the same on all CPUs. Then curcpu can be a
00052  * constant. (But one has to remember to use curcpu->c_self as the
00053  * canonical form of the pointer anywhere that's visible to other
00054  * CPUs.) Another approach is to reserve a register to hold curthread.
00055  *
00056  * On mips there's an architectural issue that informs this choice:
00057  * there's no easy way to find the current cpu, the current thread, or
00058  * even the kernel stack of the current thread when entering the
00059  * kernel at trap time. (On most CPUs there's a canonical way to find
00060  * at least the stack.)
00061  *
00062  * Therefore we do the following:
00063  *
00064  * - We misuse a kernel-settable field of a nonessential MMU register
00065  *   to hold the CPU number.
00066  *
00067  * - On trap entry we use this number to index an array that gets us
00068  *   both the kernel stack and curthread.
00069  *
00070  * - We tell the compiler not to use the s7 register and keep
00071  *   curthread there.
00072  *
00073  * Note that if you want to change this scheme to use a different
00074  * register, or change to a different scheme, you need to touch three
00075  * places: here, the mips-specific kernel CFLAGS in the makefiles, and
00076  * the trap entry and return code.
00077  */
00078 
00079 register struct thread *curthread asm("$23");   /* s7 register */
00080 #undef __NEED_CURTHREAD
00081 #define __NEED_CURCPU
00082 
00083 /* For how we've defined it, curthread gets set first, then curcpu. */
00084 #define INIT_CURCPU(cpu, thread) (curthread = (thread), curcpu = (cpu))
00085 
00086 #endif /* _MIPS_CURRENT_H_ */
 All Data Structures