Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.40
      1 /*	$NetBSD: cpu.h,v 1.40 2006/08/05 22:54:28 bjh21 Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1994-1996 Mark Brinicombe.
      5  * Copyright (c) 1994 Brini.
      6  * All rights reserved.
      7  *
      8  * This code is derived from software written for Brini by Mark Brinicombe
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by Brini.
     21  * 4. The name of the company nor the name of the author may be used to
     22  *    endorse or promote products derived from this software without specific
     23  *    prior written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
     26  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     27  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     28  * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     29  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     30  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     31  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     35  * SUCH DAMAGE.
     36  *
     37  * RiscBSD kernel project
     38  *
     39  * cpu.h
     40  *
     41  * CPU specific symbols
     42  *
     43  * Created      : 18/09/94
     44  *
     45  * Based on kate/katelib/arm6.h
     46  */
     47 
     48 #ifndef _ARM_CPU_H_
     49 #define _ARM_CPU_H_
     50 
     51 /*
     52  * User-visible definitions
     53  */
     54 
     55 /*  CTL_MACHDEP definitions. */
     56 #define	CPU_DEBUG		1	/* int: misc kernel debug control */
     57 #define	CPU_BOOTED_DEVICE	2	/* string: device we booted from */
     58 #define	CPU_BOOTED_KERNEL	3	/* string: kernel we booted */
     59 #define	CPU_CONSDEV		4	/* struct: dev_t of our console */
     60 #define	CPU_POWERSAVE		5	/* int: use CPU powersave mode */
     61 #define	CPU_MAXID		6	/* number of valid machdep ids */
     62 
     63 #define	CTL_MACHDEP_NAMES { \
     64 	{ 0, 0 }, \
     65 	{ "debug", CTLTYPE_INT }, \
     66 	{ "booted_device", CTLTYPE_STRING }, \
     67 	{ "booted_kernel", CTLTYPE_STRING }, \
     68 	{ "console_device", CTLTYPE_STRUCT }, \
     69 	{ "powersave", CTLTYPE_INT }, \
     70 }
     71 
     72 #ifdef _KERNEL
     73 
     74 /*
     75  * Kernel-only definitions
     76  */
     77 
     78 #ifndef _LKM
     79 #include "opt_multiprocessor.h"
     80 #include "opt_lockdebug.h"
     81 #endif /* !_LKM */
     82 
     83 #include <arm/cpuconf.h>
     84 
     85 #include <machine/intr.h>
     86 #ifndef _LOCORE
     87 #include <sys/user.h>
     88 #include <machine/frame.h>
     89 #include <machine/pcb.h>
     90 #endif	/* !_LOCORE */
     91 
     92 #include <arm/armreg.h>
     93 
     94 #ifndef _LOCORE
     95 /* 1 == use cpu_sleep(), 0 == don't */
     96 extern int cpu_do_powersave;
     97 #endif
     98 
     99 #ifdef __PROG32
    100 #ifdef _LOCORE
    101 #define IRQdisable \
    102 	stmfd	sp!, {r0} ; \
    103 	mrs	r0, cpsr ; \
    104 	orr	r0, r0, #(I32_bit) ; \
    105 	msr	cpsr_c, r0 ; \
    106 	ldmfd	sp!, {r0}
    107 
    108 #define IRQenable \
    109 	stmfd	sp!, {r0} ; \
    110 	mrs	r0, cpsr ; \
    111 	bic	r0, r0, #(I32_bit) ; \
    112 	msr	cpsr_c, r0 ; \
    113 	ldmfd	sp!, {r0}
    114 
    115 #else
    116 #define IRQdisable __set_cpsr_c(I32_bit, I32_bit);
    117 #define IRQenable __set_cpsr_c(I32_bit, 0);
    118 #endif	/* _LOCORE */
    119 #endif
    120 
    121 #ifndef _LOCORE
    122 
    123 /* All the CLKF_* macros take a struct clockframe * as an argument. */
    124 
    125 /*
    126  * CLKF_USERMODE: Return TRUE/FALSE (1/0) depending on whether the
    127  * frame came from USR mode or not.
    128  */
    129 #ifdef __PROG32
    130 #define CLKF_USERMODE(frame)	((frame->cf_if.if_spsr & PSR_MODE) == PSR_USR32_MODE)
    131 #else
    132 #define CLKF_USERMODE(frame)	((frame->cf_if.if_r15 & R15_MODE) == R15_MODE_USR)
    133 #endif
    134 
    135 /*
    136  * CLKF_BASEPRI: True if we were at spl0 before the interrupt.
    137  *
    138  * This is hard-wired to 0 on the ARM, since spllowersoftclock() might
    139  * not actually be able to unblock the interrupt, which would cause us
    140  * to run the softclock interrupts with hardclock blocked.
    141  */
    142 #define CLKF_BASEPRI(frame)	0
    143 
    144 /*
    145  * CLKF_INTR: True if we took the interrupt from inside another
    146  * interrupt handler.
    147  */
    148 extern int current_intr_depth;
    149 #ifdef __PROG32
    150 /* Hack to treat FPE time as interrupt time so we can measure it */
    151 #define CLKF_INTR(frame)						\
    152 	((current_intr_depth > 1) ||					\
    153 	    (frame->cf_if.if_spsr & PSR_MODE) == PSR_UND32_MODE)
    154 #else
    155 #define CLKF_INTR(frame)	(current_intr_depth > 1)
    156 #endif
    157 
    158 /*
    159  * CLKF_PC: Extract the program counter from a clockframe
    160  */
    161 #ifdef __PROG32
    162 #define CLKF_PC(frame)		(frame->cf_if.if_pc)
    163 #else
    164 #define CLKF_PC(frame)		(frame->cf_if.if_r15 & R15_PC)
    165 #endif
    166 
    167 /*
    168  * LWP_PC: Find out the program counter for the given lwp.
    169  */
    170 #ifdef __PROG32
    171 #define LWP_PC(l)	((l)->l_addr->u_pcb.pcb_tf->tf_pc)
    172 #else
    173 #define LWP_PC(l)	((l)->l_addr->u_pcb.pcb_tf->tf_r15 & R15_PC)
    174 #endif
    175 
    176 /*
    177  * Validate a PC or PSR for a user process.  Used by various system calls
    178  * that take a context passed by the user and restore it.
    179  */
    180 
    181 #ifdef __PROG32
    182 #define VALID_R15_PSR(r15,psr)						\
    183 	(((psr) & PSR_MODE) == PSR_USR32_MODE &&			\
    184 		((psr) & (I32_bit | F32_bit)) == 0)
    185 #else
    186 #define VALID_R15_PSR(r15,psr)						\
    187 	(((r15) & R15_MODE) == R15_MODE_USR &&				\
    188 		((r15) & (R15_IRQ_DISABLE | R15_FIQ_DISABLE)) == 0)
    189 #endif
    190 
    191 
    192 
    193 /* The address of the vector page. */
    194 extern vaddr_t vector_page;
    195 #ifdef __PROG32
    196 void	arm32_vector_init(vaddr_t, int);
    197 
    198 #define	ARM_VEC_RESET			(1 << 0)
    199 #define	ARM_VEC_UNDEFINED		(1 << 1)
    200 #define	ARM_VEC_SWI			(1 << 2)
    201 #define	ARM_VEC_PREFETCH_ABORT		(1 << 3)
    202 #define	ARM_VEC_DATA_ABORT		(1 << 4)
    203 #define	ARM_VEC_ADDRESS_EXCEPTION	(1 << 5)
    204 #define	ARM_VEC_IRQ			(1 << 6)
    205 #define	ARM_VEC_FIQ			(1 << 7)
    206 
    207 #define	ARM_NVEC			8
    208 #define	ARM_VEC_ALL			0xffffffff
    209 #endif
    210 
    211 /*
    212  * Per-CPU information.  For now we assume one CPU.
    213  */
    214 
    215 #include <sys/device.h>
    216 #include <sys/cpu_data.h>
    217 struct cpu_info {
    218 	struct cpu_data ci_data;	/* MI per-cpu data */
    219 	struct device *ci_dev;		/* Device corresponding to this CPU */
    220 	u_int32_t ci_arm_cpuid;		/* aggregate CPU id */
    221 	u_int32_t ci_arm_cputype;	/* CPU type */
    222 	u_int32_t ci_arm_cpurev;	/* CPU revision */
    223 	u_int32_t ci_ctrl;		/* The CPU control register */
    224 	struct evcnt ci_arm700bugcount;
    225 #ifdef MULTIPROCESSOR
    226 	MP_CPU_INFO_MEMBERS
    227 #endif
    228 };
    229 
    230 #ifndef MULTIPROCESSOR
    231 extern struct cpu_info cpu_info_store;
    232 #define	curcpu()	(&cpu_info_store)
    233 #define cpu_number()	0
    234 #endif
    235 
    236 #ifdef __PROG32
    237 void	cpu_proc_fork(struct proc *, struct proc *);
    238 #else
    239 #define	cpu_proc_fork(p1, p2)
    240 #endif
    241 
    242 /*
    243  * Scheduling glue
    244  */
    245 
    246 extern int astpending;
    247 #define setsoftast() (astpending = 1)
    248 
    249 /*
    250  * Notify the current process (p) that it has a signal pending,
    251  * process as soon as possible.
    252  */
    253 
    254 #define signotify(p)            setsoftast()
    255 
    256 /*
    257  * Preempt the current process if in interrupt from user mode,
    258  * or after the current trap/syscall if in system mode.
    259  */
    260 extern int want_resched;	/* resched() was called */
    261 #define	need_resched(ci)	(want_resched = 1, setsoftast())
    262 
    263 /*
    264  * Give a profiling tick to the current process when the user profiling
    265  * buffer pages are invalid.  On the i386, request an ast to send us
    266  * through trap(), marking the proc as needing a profiling tick.
    267  */
    268 #define	need_proftick(p)	((p)->p_flag |= P_OWEUPC, setsoftast())
    269 
    270 #ifndef acorn26
    271 /*
    272  * cpu device glue (belongs in cpuvar.h)
    273  */
    274 
    275 struct device;
    276 void	cpu_attach	__P((struct device *));
    277 int	cpu_alloc_idlepcb	__P((struct cpu_info *));
    278 #endif
    279 
    280 
    281 /*
    282  * Random cruft
    283  */
    284 
    285 struct lwp;
    286 
    287 /* locore.S */
    288 void atomic_set_bit	__P((u_int *address, u_int setmask));
    289 void atomic_clear_bit	__P((u_int *address, u_int clearmask));
    290 
    291 /* cpuswitch.S */
    292 struct pcb;
    293 void	savectx		__P((struct pcb *pcb));
    294 
    295 /* ast.c */
    296 void userret		__P((register struct lwp *p));
    297 
    298 /* machdep.h */
    299 void bootsync		__P((void));
    300 
    301 /* fault.c */
    302 int badaddr_read	__P((void *, size_t, void *));
    303 
    304 /* syscall.c */
    305 void swi_handler	__P((trapframe_t *));
    306 
    307 #endif	/* !_LOCORE */
    308 
    309 #endif /* _KERNEL */
    310 
    311 #endif /* !_ARM_CPU_H_ */
    312 
    313 /* End of cpu.h */
    314