PERFORCE change 136240 for review

M. Warner Losh imp at bsdimp.com
Tue Feb 26 14:43:20 UTC 2008


In message: <200802261414.m1QEEvQx046221 at repoman.freebsd.org>
            "Randall R. Stewart" <rrs at freebsd.org> writes:
: http://perforce.freebsd.org/chv.cgi?CH=136240
: 
: Change 136240 by rrs at rrs-mips2-jnpr on 2008/02/26 14:14:27
: 
: 	For octeon we use di/ei (this should be generalized
: 	       with a ifdef for mips64 or something).

I was actually thinking that we just put the enable/disable
instructions into the I/O routines directly, not hack the
disable/enable intr routines and call them.

Warner

: Affected files ...
: 
: .. //depot/projects/mips2-jnpr/src/sys/mips/mips/psraccess.S#4 edit
: 
: Differences ...
: 
: ==== //depot/projects/mips2-jnpr/src/sys/mips/mips/psraccess.S#4 (text+ko) ====
: 
: @@ -130,17 +130,41 @@
:  
:  
:  LEAF(disableintr)
: +#ifdef TARGET_OCTEON
: +	.set mips64
: +	.word 0x041626000                #di     v0
: +
: +#if defined(ISA_MIPS32)
: +	.set	mips32
: +#elif defined(ISA_MIPS64)
: +	.set	mips64
: +#elif defined(ISA_MIPS3)
: +	.set	mips3
: +#endif
: +#else		
:  	mfc0	v0, COP_0_STATUS_REG	# read status register
:  	nop
:  	and	v1, v0, ~SR_INT_ENAB
:  	mtc0	v1, COP_0_STATUS_REG	# disable all interrupts
:  	MIPS_CPU_NOP_DELAY
:  	and	v0, SR_INT_ENAB		# return old interrupt enable
: +#endif	
:  	j	ra
:  	nop
:  END(disableintr)
:  
:  LEAF(set_intr_mask)
: +#ifdef TARGET_OCTEON
: +	.set mips64
: +	.word 0x041626020                #ei     v0
: +#if defined(ISA_MIPS32)
: +	.set	mips32
: +#elif defined(ISA_MIPS64)
: +	.set	mips64
: +#elif defined(ISA_MIPS3)
: +	.set	mips3
: +#endif
: +#else		
:  	li	t0, SR_INT_MASK		# 1 means masked so invert.
:  	not	a0, a0			# 1 means masked so invert.
:  	and	a0, t0			# 1 means masked so invert.
: @@ -151,6 +175,7 @@
:  	mtc0	v1, COP_0_STATUS_REG
:  	MIPS_CPU_NOP_DELAY
:  	move	v0, v1
: +#endif	
:  	jr	ra
:  	nop
:  
: @@ -167,6 +192,7 @@
:  
:  END(get_intr_mask)
:  
: +	
:  
:  LEAF(getsr)
:  	mfc0	v0, COP_0_STATUS_REG
: 


More information about the p4-projects mailing list