Home | History | Annotate | Line # | Download | only in sun3x
locore.s revision 1.60
      1 /*	$NetBSD: locore.s,v 1.60 2010/02/25 07:21:20 skrll Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1980, 1990, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * the Systems Programming Group of the University of Utah Computer
      9  * Science Department.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. Neither the name of the University nor the names of its contributors
     20  *    may be used to endorse or promote products derived from this software
     21  *    without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  * SUCH DAMAGE.
     34  *
     35  *	from: Utah $Hdr: locore.s 1.66 92/12/22$
     36  *	@(#)locore.s	8.6 (Berkeley) 5/27/94
     37  */
     38 /*
     39  * Copyright (c) 1988 University of Utah.
     40  *
     41  * This code is derived from software contributed to Berkeley by
     42  * the Systems Programming Group of the University of Utah Computer
     43  * Science Department.
     44  *
     45  * Redistribution and use in source and binary forms, with or without
     46  * modification, are permitted provided that the following conditions
     47  * are met:
     48  * 1. Redistributions of source code must retain the above copyright
     49  *    notice, this list of conditions and the following disclaimer.
     50  * 2. Redistributions in binary form must reproduce the above copyright
     51  *    notice, this list of conditions and the following disclaimer in the
     52  *    documentation and/or other materials provided with the distribution.
     53  * 3. All advertising materials mentioning features or use of this software
     54  *    must display the following acknowledgement:
     55  *	This product includes software developed by the University of
     56  *	California, Berkeley and its contributors.
     57  * 4. Neither the name of the University nor the names of its contributors
     58  *    may be used to endorse or promote products derived from this software
     59  *    without specific prior written permission.
     60  *
     61  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     62  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     63  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     64  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     65  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     66  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     67  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     68  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     69  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     70  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     71  * SUCH DAMAGE.
     72  *
     73  *	from: Utah $Hdr: locore.s 1.66 92/12/22$
     74  *	@(#)locore.s	8.6 (Berkeley) 5/27/94
     75  */
     76 
     77 #include "opt_compat_netbsd.h"
     78 #include "opt_compat_svr4.h"
     79 #include "opt_compat_sunos.h"
     80 #include "opt_kgdb.h"
     81 #include "opt_lockdebug.h"
     82 
     83 #include "assym.h"
     84 #include <machine/asm.h>
     85 #include <machine/trap.h>
     86 
     87 | Remember this is a fun project!
     88 
     89 	.data
     90 GLOBAL(mon_crp)
     91 	.long	0,0
     92 
     93 | This is for kvm_mkdb, and should be the address of the beginning
     94 | of the kernel text segment (not necessarily the same as kernbase).
     95 	.text
     96 GLOBAL(kernel_text)
     97 
     98 | This is the entry point, as well as the end of the temporary stack
     99 | used during process switch (one 8K page ending at start)
    100 ASGLOBAL(tmpstk)
    101 ASGLOBAL(start)
    102 
    103 | The first step, after disabling interrupts, is to map enough of the kernel
    104 | into high virtual address space so that we can use position dependent code.
    105 | This is a tricky task on the sun3x because the MMU is already enabled and
    106 | the ROM monitor provides no indication of where the root MMU table is mapped.
    107 | Therefore we must use one of the 68030's 'transparent translation' registers
    108 | to define a range in the address space where the MMU translation is
    109 | turned off.  Once this is complete we can modify the MMU table directly
    110 | without the need for it to be mapped into virtual memory.
    111 | All code must be position independent until otherwise noted, as the
    112 | boot loader has loaded us into low memory but all the symbols in this
    113 | code have been linked high.
    114 	movw	#PSL_HIGHIPL,%sr	| no interrupts
    115 	movl	#KERNBASE,%a5		| for vtop conversion
    116 	lea	_C_LABEL(mon_crp),%a0	| where to store the CRP
    117 	subl	%a5,%a0
    118 	| Note: borrowing mon_crp for tt0 setup...
    119 	movl	#0x3F8107,%a0@		| map the low 1GB v=p with the
    120 	.long	0xf0100800		| transparent translation reg0
    121 					| [ pmove a0@, tt0 ]
    122 | In order to map the kernel into high memory we will copy the root table
    123 | entry which maps the 16 megabytes of memory starting at 0x0 into the
    124 | entry which maps the 16 megabytes starting at KERNBASE.
    125 	pmove	%crp,%a0@		| Get monitor CPU root pointer
    126 	movl	%a0@(4),%a1		| 2nd word is PA of level A table
    127 
    128 	movl	%a1,%a0			| compute the descriptor address
    129 	addl	#0x3e0,%a1		| for VA starting at KERNBASE
    130 	movl	%a0@,%a1@		| copy descriptor type
    131 	movl	%a0@(4),%a1@(4)		| copy physical address
    132 
    133 | Kernel is now double mapped at zero and KERNBASE.
    134 | Force a long jump to the relocated code (high VA).
    135 	movl	#IC_CLEAR,%d0		| Flush the I-cache
    136 	movc	%d0,%cacr
    137 	jmp L_high_code:l		| long jump
    138 
    139 L_high_code:
    140 | We are now running in the correctly relocated kernel, so
    141 | we are no longer restricted to position-independent code.
    142 | It is handy to leave transparent translation enabled while
    143 | for the low 1GB while _bootstrap() is doing its thing.
    144 
    145 | Do bootstrap stuff needed before main() gets called.
    146 | Our boot loader leaves a copy of the kernel's exec header
    147 | just before the start of the kernel text segment, so the
    148 | kernel can sanity-check the DDB symbols at [end...esym].
    149 | Pass the struct exec at tmpstk-32 to _bootstrap().
    150 | Also, make sure the initial frame pointer is zero so that
    151 | the backtrace algorithm used by KGDB terminates nicely.
    152 	lea	_ASM_LABEL(tmpstk)-32,%sp
    153 	movl	#0,%a6
    154 	jsr	_C_LABEL(_bootstrap)	| See locore2.c
    155 
    156 | Now turn off the transparent translation of the low 1GB.
    157 | (this also flushes the ATC)
    158 	clrl	%sp@-
    159 	.long	0xf0170800		| pmove	sp@,tt0
    160 	addql	#4,%sp
    161 
    162 | Now that _bootstrap() is done using the PROM functions,
    163 | we can safely set the sfc/dfc to something != FC_CONTROL
    164 	moveq	#FC_USERD,%d0		| make movs access "user data"
    165 	movc	%d0,%sfc		| space for copyin/copyout
    166 	movc	%d0,%dfc
    167 
    168 | Setup process zero user/kernel stacks.
    169 	lea	_C_LABEL(lwp0),%a0	| get lwp0
    170 	movl	%a0@(L_PCB),%a1		| XXXuvm_lwp_getuarea
    171 	lea	%a1@(USPACE-4),%sp	| set SSP to last word
    172 	movl	#USRSTACK-4,%a2
    173 	movl	%a2,%usp		| init user SP
    174 
    175 | Note curpcb was already set in _bootstrap().
    176 | Will do fpu initialization during autoconfig (see fpu.c)
    177 | The interrupt vector table and stack are now ready.
    178 | Interrupts will be enabled later, AFTER  autoconfiguration
    179 | is finished, to avoid spurrious interrupts.
    180 
    181 /*
    182  * Create a fake exception frame so that cpu_lwp_fork() can copy it.
    183  * main() nevers returns; we exit to user mode from a forked process
    184  * later on.
    185  */
    186 	clrw	%sp@-			| tf_format,tf_vector
    187 	clrl	%sp@-			| tf_pc (filled in later)
    188 	movw	#PSL_USER,%sp@-		| tf_sr for user mode
    189 	clrl	%sp@-			| tf_stackadj
    190 	lea	%sp@(-64),%sp		| tf_regs[16]
    191 	movl	%a1,%a0@(L_MD_REGS)	| lwp0.l_md.md_regs = trapframe
    192 	jbsr	_C_LABEL(main)		| main(&trapframe)
    193 	PANIC("main() returned")
    194 
    195 | That is all the assembly startup code we need on the sun3x!
    196 | The rest of this is like the hp300/locore.s where possible.
    197 
    198 /*
    199  * Trap/interrupt vector routines
    200  */
    201 #include <m68k/m68k/trap_subr.s>
    202 
    203 GLOBAL(buserr)
    204 	tstl	_C_LABEL(nofault)	| device probe?
    205 	jeq	_C_LABEL(addrerr)	| no, handle as usual
    206 	movl	_C_LABEL(nofault),%sp@-	| yes,
    207 	jbsr	_C_LABEL(longjmp)	|  longjmp(nofault)
    208 GLOBAL(addrerr)
    209 	clrl	%sp@-			| stack adjust count
    210 	moveml	#0xFFFF,%sp@-		| save user registers
    211 	movl	%usp,%a0		| save the user SP
    212 	movl	%a0,%sp@(FR_SP)		|   in the savearea
    213 	lea	%sp@(FR_HW),%a1		| grab base of HW berr frame
    214 	moveq	#0,%d0
    215 	movw	%a1@(10),%d0		| grab SSW for fault processing
    216 	btst	#12,%d0			| RB set?
    217 	jeq	LbeX0			| no, test RC
    218 	bset	#14,%d0			| yes, must set FB
    219 	movw	%d0,%a1@(10)		| for hardware too
    220 LbeX0:
    221 	btst	#13,%d0			| RC set?
    222 	jeq	LbeX1			| no, skip
    223 	bset	#15,%d0			| yes, must set FC
    224 	movw	%d0,%a1@(10)		| for hardware too
    225 LbeX1:
    226 	btst	#8,%d0			| data fault?
    227 	jeq	Lbe0			| no, check for hard cases
    228 	movl	%a1@(16),%d1		| fault address is as given in frame
    229 	jra	Lbe10			| thats it
    230 Lbe0:
    231 	btst	#4,%a1@(6)		| long (type B) stack frame?
    232 	jne	Lbe4			| yes, go handle
    233 	movl	%a1@(2),%d1		| no, can use save PC
    234 	btst	#14,%d0			| FB set?
    235 	jeq	Lbe3			| no, try FC
    236 	addql	#4,%d1			| yes, adjust address
    237 	jra	Lbe10			| done
    238 Lbe3:
    239 	btst	#15,%d0			| FC set?
    240 	jeq	Lbe10			| no, done
    241 	addql	#2,%d1			| yes, adjust address
    242 	jra	Lbe10			| done
    243 Lbe4:
    244 	movl	%a1@(36),%d1		| long format, use stage B address
    245 	btst	#15,%d0			| FC set?
    246 	jeq	Lbe10			| no, all done
    247 	subql	#2,%d1			| yes, adjust address
    248 Lbe10:
    249 	movl	%d1,%sp@-		| push fault VA
    250 	movl	%d0,%sp@-		| and padded SSW
    251 	movw	%a1@(6),%d0		| get frame format/vector offset
    252 	andw	#0x0FFF,%d0		| clear out frame format
    253 	cmpw	#12,%d0			| address error vector?
    254 	jeq	Lisaerr			| yes, go to it
    255 
    256 /* MMU-specific code to determine reason for bus error. */
    257 	movl	%d1,%a0			| fault address
    258 	movl	%sp@,%d0		| function code from ssw
    259 	btst	#8,%d0			| data fault?
    260 	jne	Lbe10a
    261 	movql	#1,%d0			| user program access FC
    262 					| (we dont separate data/program)
    263 	btst	#5,%a1@			| supervisor mode?
    264 	jeq	Lbe10a			| if no, done
    265 	movql	#5,%d0			| else supervisor program access
    266 Lbe10a:
    267 	ptestr	%d0,%a0@,#7		| do a table search
    268 	pmove	%psr,%sp@		| save result
    269 	movb	%sp@,%d1
    270 	btst	#2,%d1			| invalid? (incl. limit viol and berr)
    271 	jeq	Lmightnotbemerr		| no -> wp check
    272 	btst	#7,%d1			| is it MMU table berr?
    273 	jeq	Lismerr			| no, must be fast
    274 	jra	Lisberr1		| real bus err needs not be fast
    275 Lmightnotbemerr:
    276 	btst	#3,%d1			| write protect bit set?
    277 	jeq	Lisberr1		| no, must be bus error
    278 	movl	%sp@,%d0		| ssw into low word of d0
    279 	andw	#0xc0,%d0		| write protect is set on page:
    280 	cmpw	#0x40,%d0		| was it read cycle?
    281 	jeq	Lisberr1		| yes, was not WPE, must be bus err
    282 /* End of MMU-specific bus error code. */
    283 
    284 Lismerr:
    285 	movl	#T_MMUFLT,%sp@-		| show that we are an MMU fault
    286 	jra	_ASM_LABEL(faultstkadj)	| and deal with it
    287 Lisaerr:
    288 	movl	#T_ADDRERR,%sp@-	| mark address error
    289 	jra	_ASM_LABEL(faultstkadj)	| and deal with it
    290 Lisberr1:
    291 	clrw	%sp@			| re-clear pad word
    292 Lisberr:
    293 	movl	#T_BUSERR,%sp@-		| mark bus error
    294 	jra	_ASM_LABEL(faultstkadj)	| and deal with it
    295 
    296 /*
    297  * FP exceptions.
    298  */
    299 GLOBAL(fpfline)
    300 	clrl	%sp@-			| stack adjust count
    301 	moveml	#0xFFFF,%sp@-		| save registers
    302 	moveq	#T_FPEMULI,%d0		| denote as FP emulation trap
    303 	jra	_ASM_LABEL(fault)	| do it
    304 
    305 GLOBAL(fpunsupp)
    306 	clrl	%sp@-			| stack adjust count
    307 	moveml	#0xFFFF,%sp@-		| save registers
    308 	moveq	#T_FPEMULD,%d0		| denote as FP emulation trap
    309 	jra	_ASM_LABEL(fault)	| do it
    310 
    311 /*
    312  * Handles all other FP coprocessor exceptions.
    313  * Note that since some FP exceptions generate mid-instruction frames
    314  * and may cause signal delivery, we need to test for stack adjustment
    315  * after the trap call.
    316  */
    317 GLOBAL(fpfault)
    318 	clrl	%sp@-		| stack adjust count
    319 	moveml	#0xFFFF,%sp@-	| save user registers
    320 	movl	%usp,%a0	| and save
    321 	movl	%a0,%sp@(FR_SP)	|   the user stack pointer
    322 	clrl	%sp@-		| no VA arg
    323 	movl	_C_LABEL(curpcb),%a0	| current pcb
    324 	lea	%a0@(PCB_FPCTX),%a0 | address of FP savearea
    325 	fsave	%a0@		| save state
    326 	tstb	%a0@		| null state frame?
    327 	jeq	Lfptnull	| yes, safe
    328 	clrw	%d0		| no, need to tweak BIU
    329 	movb	%a0@(1),%d0	| get frame size
    330 	bset	#3,%a0@(0,%d0:w) | set exc_pend bit of BIU
    331 Lfptnull:
    332 	fmovem	%fpsr,%sp@-	| push fpsr as code argument
    333 	frestore %a0@		| restore state
    334 	movl	#T_FPERR,%sp@-	| push type arg
    335 	jra	_ASM_LABEL(faultstkadj) | call trap and deal with stack cleanup
    336 
    337 /*
    338  * Other exceptions only cause four and six word stack frame and require
    339  * no post-trap stack adjustment.
    340  */
    341 GLOBAL(badtrap)
    342 	clrl	%sp@-			| stack adjust count
    343 	moveml	#0xFFFF,%sp@-		| save std frame regs
    344 	jbsr	_C_LABEL(straytrap)	| report
    345 	moveml	%sp@+,#0xFFFF		| restore regs
    346 	addql	#4,%sp			| stack adjust count
    347 	jra	_ASM_LABEL(rei)		| all done
    348 
    349 /*
    350  * Trap 0 is for system calls
    351  */
    352 GLOBAL(trap0)
    353 	clrl	%sp@-			| stack adjust count
    354 	moveml	#0xFFFF,%sp@-		| save user registers
    355 	movl	%usp,%a0		| save the user SP
    356 	movl	%a0,%sp@(FR_SP)		|   in the savearea
    357 	movl	%d0,%sp@-		| push syscall number
    358 	jbsr	_C_LABEL(syscall)	| handle it
    359 	addql	#4,%sp			| pop syscall arg
    360 	movl	%sp@(FR_SP),%a0		| grab and restore
    361 	movl	%a0,%usp		|   user SP
    362 	moveml	%sp@+,#0x7FFF		| restore most registers
    363 	addql	#8,%sp			| pop SP and stack adjust
    364 	jra	_ASM_LABEL(rei)		| all done
    365 
    366 /*
    367  * Trap 12 is the entry point for the cachectl "syscall"
    368  *	cachectl(command, addr, length)
    369  * command in d0, addr in a1, length in d1
    370  */
    371 GLOBAL(trap12)
    372 	movl	_C_LABEL(curlwp),%a0
    373 	movl	%a0@(L_PROC),%sp@-	| push curproc pointer
    374 	movl	%d1,%sp@-		| push length
    375 	movl	%a1,%sp@-		| push addr
    376 	movl	%d0,%sp@-		| push command
    377 	jbsr	_C_LABEL(cachectl1)	| do it
    378 	lea	%sp@(16),%sp		| pop args
    379 	jra	_ASM_LABEL(rei)		| all done
    380 
    381 /*
    382  * Trace (single-step) trap.  Kernel-mode is special.
    383  * User mode traps are simply passed on to trap().
    384  */
    385 GLOBAL(trace)
    386 	clrl	%sp@-			| stack adjust count
    387 	moveml	#0xFFFF,%sp@-
    388 	moveq	#T_TRACE,%d0
    389 
    390 	| Check PSW and see what happen.
    391 	|   T=0 S=0	(should not happen)
    392 	|   T=1 S=0	trace trap from user mode
    393 	|   T=0 S=1	trace trap on a trap instruction
    394 	|   T=1 S=1	trace trap from system mode (kernel breakpoint)
    395 
    396 	movw	%sp@(FR_HW),%d1		| get PSW
    397 	notw	%d1			| XXX no support for T0 on 680[234]0
    398 	andw	#PSL_TS,%d1		| from system mode (T=1, S=1)?
    399 	jeq	_ASM_LABEL(kbrkpt)	|  yes, kernel brkpt
    400 	jra	_ASM_LABEL(fault)	| no, user-mode fault
    401 
    402 /*
    403  * Trap 15 is used for:
    404  *	- GDB breakpoints (in user programs)
    405  *	- KGDB breakpoints (in the kernel)
    406  *	- trace traps for SUN binaries (not fully supported yet)
    407  * User mode traps are simply passed to trap().
    408  */
    409 GLOBAL(trap15)
    410 	clrl	%sp@-			| stack adjust count
    411 	moveml	#0xFFFF,%sp@-
    412 	moveq	#T_TRAP15,%d0
    413 	btst	#5,%sp@(FR_HW)		| was supervisor mode?
    414 	jne	_ASM_LABEL(kbrkpt)	|  yes, kernel brkpt
    415 	jra	_ASM_LABEL(fault)	| no, user-mode fault
    416 
    417 ASLOCAL(kbrkpt)
    418 	| Kernel-mode breakpoint or trace trap. (%d0=trap_type)
    419 	| Save the system sp rather than the user sp.
    420 	movw	#PSL_HIGHIPL,%sr	| lock out interrupts
    421 	lea	%sp@(FR_SIZE),%a6	| Save stack pointer
    422 	movl	%a6,%sp@(FR_SP)		|  from before trap
    423 
    424 	| If we are not on tmpstk switch to it.
    425 	| (so debugger can change the stack pointer)
    426 	movl	%a6,%d1
    427 	cmpl	#_ASM_LABEL(tmpstk),%d1
    428 	jls	Lbrkpt2 		| already on tmpstk
    429 	| Copy frame to the temporary stack
    430 	movl	%sp,%a0			| %a0=src
    431 	lea	_ASM_LABEL(tmpstk)-96,%a1 | %a1=dst
    432 	movl	%a1,%sp			| sp=new frame
    433 	moveq	#FR_SIZE,%d1
    434 Lbrkpt1:
    435 	movl	%a0@+,%a1@+
    436 	subql	#4,%d1
    437 	bgt	Lbrkpt1
    438 
    439 Lbrkpt2:
    440 	| Call the trap handler for the kernel debugger.
    441 	| Do not call trap() to handle it, so that we can
    442 	| set breakpoints in trap() if we want.  We know
    443 	| the trap type is either T_TRACE or T_BREAKPOINT.
    444 	movl	%d0,%sp@-		| push trap type
    445 	jbsr	_C_LABEL(trap_kdebug)
    446 	addql	#4,%sp			| pop args
    447 
    448 	| The stack pointer may have been modified, or
    449 	| data below it modified (by kgdb push call),
    450 	| so push the hardware frame at the current sp
    451 	| before restoring registers and returning.
    452 	movl	%sp@(FR_SP),%a0		| modified sp
    453 	lea	%sp@(FR_SIZE),%a1	| end of our frame
    454 	movl	%a1@-,%a0@-		| copy 2 longs with
    455 	movl	%a1@-,%a0@-		| ... predecrement
    456 	movl	%a0,%sp@(FR_SP)		| sp = h/w frame
    457 	moveml	%sp@+,#0x7FFF		| restore all but sp
    458 	movl	%sp@,%sp		| ... and sp
    459 	rte				| all done
    460 
    461 /* Use common m68k sigreturn */
    462 #include <m68k/m68k/sigreturn.s>
    463 
    464 /*
    465  * Interrupt handlers.  Most are auto-vectored,
    466  * and hard-wired the same way on all sun3 models.
    467  * Format in the stack is:
    468  *   %d0,%d1,%a0,%a1, sr, pc, vo
    469  */
    470 
    471 #define INTERRUPT_SAVEREG \
    472 	moveml	#0xC0C0,%sp@-
    473 
    474 #define INTERRUPT_RESTORE \
    475 	moveml	%sp@+,#0x0303
    476 
    477 /*
    478  * This is the common auto-vector interrupt handler,
    479  * for which the CPU provides the vector=0x18+level.
    480  * These are installed in the interrupt vector table.
    481  */
    482 #ifdef __ELF__
    483 	.align	4
    484 #else
    485 	.align	2
    486 #endif
    487 GLOBAL(_isr_autovec)
    488 	INTERRUPT_SAVEREG
    489 	jbsr	_C_LABEL(isr_autovec)
    490 	INTERRUPT_RESTORE
    491 	jra	_ASM_LABEL(rei)
    492 
    493 /* clock: see clock.c */
    494 #ifdef __ELF__
    495 	.align	4
    496 #else
    497 	.align	2
    498 #endif
    499 GLOBAL(_isr_clock)
    500 	INTERRUPT_SAVEREG
    501 	jbsr	_C_LABEL(clock_intr)
    502 	INTERRUPT_RESTORE
    503 	jra	_ASM_LABEL(rei)
    504 
    505 | Handler for all vectored interrupts (i.e. VME interrupts)
    506 #ifdef __ELF__
    507 	.align	4
    508 #else
    509 	.align	2
    510 #endif
    511 GLOBAL(_isr_vectored)
    512 	INTERRUPT_SAVEREG
    513 	jbsr	_C_LABEL(isr_vectored)
    514 	INTERRUPT_RESTORE
    515 	jra	_ASM_LABEL(rei)
    516 
    517 #undef	INTERRUPT_SAVEREG
    518 #undef	INTERRUPT_RESTORE
    519 
    520 /* interrupt counters (needed by vmstat) */
    521 GLOBAL(intrnames)
    522 	.asciz	"spur"	| 0
    523 	.asciz	"lev1"	| 1
    524 	.asciz	"lev2"	| 2
    525 	.asciz	"lev3"	| 3
    526 	.asciz	"lev4"	| 4
    527 	.asciz	"clock"	| 5
    528 	.asciz	"lev6"	| 6
    529 	.asciz	"nmi"	| 7
    530 GLOBAL(eintrnames)
    531 
    532 	.data
    533 	.even
    534 GLOBAL(intrcnt)
    535 	.long	0,0,0,0,0,0,0,0,0,0
    536 GLOBAL(eintrcnt)
    537 	.text
    538 
    539 /*
    540  * Emulation of VAX REI instruction.
    541  *
    542  * This code is (mostly) un-altered from the hp300 code,
    543  * except that sun machines do not need a simulated SIR
    544  * because they have a real software interrupt register.
    545  *
    546  * This code deals with checking for and servicing ASTs
    547  * (profiling, scheduling) and software interrupts (network, softclock).
    548  * We check for ASTs first, just like the VAX.  To avoid excess overhead
    549  * the T_ASTFLT handling code will also check for software interrupts so we
    550  * do not have to do it here.  After identifying that we need an AST we
    551  * drop the IPL to allow device interrupts.
    552  *
    553  * This code is complicated by the fact that sendsig may have been called
    554  * necessitating a stack cleanup.
    555  */
    556 
    557 ASGLOBAL(rei)
    558 #ifdef	DIAGNOSTIC
    559 	tstl	_C_LABEL(panicstr)	| have we paniced?
    560 	jne	Ldorte			| yes, do not make matters worse
    561 #endif
    562 	tstl	_C_LABEL(astpending)	| AST pending?
    563 	jeq	Ldorte			| no, done
    564 Lrei1:
    565 	btst	#5,%sp@			| yes, are we returning to user mode?
    566 	jne	Ldorte			| no, done
    567 	movw	#PSL_LOWIPL,%sr		| lower SPL
    568 	clrl	%sp@-			| stack adjust
    569 	moveml	#0xFFFF,%sp@-		| save all registers
    570 	movl	%usp,%a1		| including
    571 	movl	%a1,%sp@(FR_SP)		|    the users SP
    572 	clrl	%sp@-			| VA == none
    573 	clrl	%sp@-			| code == none
    574 	movl	#T_ASTFLT,%sp@-		| type == async system trap
    575 	pea	%sp@(12)		| fp == address of trap frame
    576 	jbsr	_C_LABEL(trap)		| go handle it
    577 	lea	%sp@(16),%sp		| pop value args
    578 	movl	%sp@(FR_SP),%a0		| restore user SP
    579 	movl	%a0,%usp		|   from save area
    580 	movw	%sp@(FR_ADJ),%d0	| need to adjust stack?
    581 	jne	Laststkadj		| yes, go to it
    582 	moveml	%sp@+,#0x7FFF		| no, restore most user regs
    583 	addql	#8,%sp			| toss SP and stack adjust
    584 	rte				| and do real RTE
    585 Laststkadj:
    586 	lea	%sp@(FR_HW),%a1		| pointer to HW frame
    587 	addql	#8,%a1			| source pointer
    588 	movl	%a1,%a0			| source
    589 	addw	%d0,%a0			|  + hole size = dest pointer
    590 	movl	%a1@-,%a0@-		| copy
    591 	movl	%a1@-,%a0@-		|  8 bytes
    592 	movl	%a0,%sp@(FR_SP)		| new SSP
    593 	moveml	%sp@+,#0x7FFF		| restore user registers
    594 	movl	%sp@,%sp		| and our SP
    595 Ldorte:
    596 	rte				| real return
    597 
    598 /*
    599  * Initialization is at the beginning of this file, because the
    600  * kernel entry point needs to be at zero for compatibility with
    601  * the Sun boot loader.  This works on Sun machines because the
    602  * interrupt vector table for reset is NOT at address zero.
    603  * (The MMU has a "boot" bit that forces access to the PROM)
    604  */
    605 
    606 /*
    607  * Use common m68k sigcode.
    608  */
    609 #include <m68k/m68k/sigcode.s>
    610 #ifdef COMPAT_SUNOS
    611 #include <m68k/m68k/sunos_sigcode.s>
    612 #endif
    613 #ifdef COMPAT_SVR4
    614 #include <m68k/m68k/svr4_sigcode.s>
    615 #endif
    616 
    617 	.text
    618 
    619 /*
    620  * Primitives
    621  */
    622 
    623 /*
    624  * Use common m68k support routines.
    625  */
    626 #include <m68k/m68k/support.s>
    627 
    628 /*
    629  * Use common m68k process/lwp switch and context save subroutines.
    630  */
    631 #define FPCOPROC	/* XXX: Temp. Reqd. */
    632 #include <m68k/m68k/switch_subr.s>
    633 
    634 
    635 /* suline() */
    636 
    637 #ifdef DEBUG
    638 	.data
    639 ASGLOBAL(fulltflush)
    640 	.long	0
    641 ASGLOBAL(fullcflush)
    642 	.long	0
    643 	.text
    644 #endif
    645 
    646 ENTRY(ecacheon)
    647 	rts
    648 
    649 ENTRY(ecacheoff)
    650 	rts
    651 
    652 /*
    653  * Get callers current SP value.
    654  * Note that simply taking the address of a local variable in a C function
    655  * doesn't work because callee saved registers may be outside the stack frame
    656  * defined by A6 (e.g. GCC generated code).
    657  *
    658  * [I don't think the ENTRY() macro will do the right thing with this -- glass]
    659  */
    660 GLOBAL(getsp)
    661 	movl	%sp,%d0			| get current SP
    662 	addql	#4,%d0			| compensate for return address
    663 	movl	%d0,%a0
    664 	rts
    665 
    666 ENTRY(getsfc)
    667 	movc	%sfc,%d0
    668 	movl	%d0,%a0
    669 	rts
    670 
    671 ENTRY(getdfc)
    672 	movc	%dfc,%d0
    673 	movl	%d0,%a0
    674 	rts
    675 
    676 ENTRY(getvbr)
    677 	movc	%vbr,%d0
    678 	movl	%d0,%a0
    679 	rts
    680 
    681 ENTRY(setvbr)
    682 	movl	%sp@(4),%d0
    683 	movc	%d0,%vbr
    684 	rts
    685 
    686 /*
    687  * Load a new CPU Root Pointer (CRP) into the MMU.
    688  *	void	loadcrp(struct mmu_rootptr *);
    689  */
    690 ENTRY(loadcrp)
    691 	movl	%sp@(4),%a0		| arg1: &CRP
    692 	movl	#CACHE_CLR,%d0
    693 	movc	%d0,%cacr		| invalidate cache(s)
    694 	pflusha				| flush entire TLB
    695 	pmove	%a0@,%crp		| load new user root pointer
    696 	rts
    697 
    698 ENTRY(getcrp)
    699 	movl	%sp@(4),%a0		| arg1: &crp
    700 	pmove	%crp,%a0@		| *crpp = %crp
    701 	rts
    702 
    703 /*
    704  * Get the physical address of the PTE for a given VA.
    705  */
    706 ENTRY(ptest_addr)
    707 	movl	%sp@(4),%a1		| VA
    708 	ptestr	#5,%a1@,#7,%a0		| %a0 = addr of PTE
    709 	movl	%a0,%d0			| Result in %d0 (not a pointer return)
    710 	rts
    711 
    712 /*
    713  * Set processor priority level calls.  Most are implemented with
    714  * inline asm expansions.  However, we need one instantiation here
    715  * in case some non-optimized code makes external references.
    716  * Most places will use the inlined functions param.h supplies.
    717  */
    718 
    719 ENTRY(_getsr)
    720 	clrl	%d0
    721 	movw	%sr,%d0
    722 	movl	%a1,%d0
    723 	rts
    724 
    725 ENTRY(_spl)
    726 	clrl	%d0
    727 	movw	%sr,%d0
    728 	movl	%sp@(4),%d1
    729 	movw	%d1,%sr
    730 	rts
    731 
    732 ENTRY(_splraise)
    733 	clrl	%d0
    734 	movw	%sr,%d0
    735 	movl	%d0,%d1
    736 	andl	#PSL_HIGHIPL,%d1 	| old &= PSL_HIGHIPL
    737 	cmpl	%sp@(4),%d1		| (old - new)
    738 	bge	Lsplr
    739 	movl	%sp@(4),%d1
    740 	movw	%d1,%sr
    741 Lsplr:
    742 	rts
    743 
    744 /*
    745  * Save and restore 68881 state.
    746  */
    747 ENTRY(m68881_save)
    748 	movl	%sp@(4),%a0		| save area pointer
    749 	fsave	%a0@			| save state
    750 	tstb	%a0@			| null state frame?
    751 	jeq	Lm68881sdone		| yes, all done
    752 	fmovem	%fp0-%fp7,%a0@(FPF_REGS)	| save FP general regs
    753 	fmovem	%fpcr/%fpsr/%fpi,%a0@(FPF_FPCR)	| save FP control regs
    754 Lm68881sdone:
    755 	rts
    756 
    757 ENTRY(m68881_restore)
    758 	movl	%sp@(4),%a0		| save area pointer
    759 	tstb	%a0@			| null state frame?
    760 	jeq	Lm68881rdone		| yes, easy
    761 	fmovem	%a0@(FPF_FPCR),%fpcr/%fpsr/%fpi	| restore FP control regs
    762 	fmovem	%a0@(FPF_REGS),%fp0-%fp7	| restore FP general regs
    763 Lm68881rdone:
    764 	frestore %a0@			| restore state
    765 	rts
    766 
    767 /*
    768  * _delay(unsigned N)
    769  * Delay for at least (N/256) microseconds.
    770  * This routine depends on the variable:  delay_divisor
    771  * which should be set based on the CPU clock rate.
    772  * XXX: Currently this is set based on the CPU model,
    773  * XXX: but this should be determined at run time...
    774  */
    775 GLOBAL(_delay)
    776 	| %d0 = arg = (usecs << 8)
    777 	movl	%sp@(4),%d0
    778 	| %d1 = delay_divisor;
    779 	movl	_C_LABEL(delay_divisor),%d1
    780 	jra	L_delay			/* Jump into the loop! */
    781 
    782 	/*
    783 	 * Align the branch target of the loop to a half-line (8-byte)
    784 	 * boundary to minimize cache effects.  This guarantees both
    785 	 * that there will be no prefetch stalls due to cache line burst
    786 	 * operations and that the loop will run from a single cache
    787 	 * half-line.
    788 	 */
    789 #ifdef __ELF__
    790 	.align	8
    791 #else
    792 	.align	3
    793 #endif
    794 L_delay:
    795 	subl	%d1,%d0
    796 	jgt	L_delay
    797 	rts
    798 
    799 | Define some addresses, mostly so DDB can print useful info.
    800 | Not using _C_LABEL() here because these symbols are never
    801 | referenced by any C code, and if the leading underscore
    802 | ever goes away, these lines turn into syntax errors...
    803 	.set	_KERNBASE,KERNBASE
    804 	.set	_MONSTART,SUN3X_MONSTART
    805 	.set	_PROM_BASE,SUN3X_PROM_BASE
    806 	.set	_MONEND,SUN3X_MONEND
    807 
    808 |The end!
    809