Home | History | Annotate | Line # | Download | only in sa11x0
sa11x0_irq.S revision 1.13
      1  1.13     matt /*	$NetBSD: sa11x0_irq.S,v 1.13 2008/04/27 18:58:45 matt Exp $	*/
      2   1.1      rjs 
      3   1.1      rjs /*
      4   1.1      rjs  * Copyright (c) 1998 Mark Brinicombe.
      5   1.1      rjs  * Copyright (c) 1998 Causality Limited
      6   1.1      rjs  * All rights reserved.
      7   1.1      rjs  *
      8   1.1      rjs  * This code is derived from software contributed to the NetBSD Foundation
      9   1.1      rjs  * by IWAMOTO Toshihiro.
     10   1.1      rjs  *
     11   1.1      rjs  * Redistribution and use in source and binary forms, with or without
     12   1.1      rjs  * modification, are permitted provided that the following conditions
     13   1.1      rjs  * are met:
     14   1.1      rjs  * 1. Redistributions of source code must retain the above copyright
     15   1.1      rjs  *    notice, this list of conditions and the following disclaimer.
     16   1.1      rjs  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1      rjs  *    notice, this list of conditions and the following disclaimer in the
     18   1.1      rjs  *    documentation and/or other materials provided with the distribution.
     19   1.1      rjs  * 3. All advertising materials mentioning features or use of this software
     20   1.1      rjs  *    must display the following acknowledgement:
     21   1.1      rjs  *      This product includes software developed by Mark Brinicombe
     22   1.1      rjs  *      for the NetBSD Project.
     23   1.1      rjs  * 4. The name of the company nor the name of the author may be used to
     24   1.1      rjs  *    endorse or promote products derived from this software without specific
     25   1.1      rjs  *    prior written permission.
     26   1.1      rjs  *
     27   1.1      rjs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     28   1.1      rjs  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     29   1.1      rjs  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     30   1.1      rjs  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     31   1.1      rjs  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     32   1.1      rjs  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     33   1.1      rjs  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34   1.1      rjs  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35   1.1      rjs  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36   1.1      rjs  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37   1.1      rjs  * SUCH DAMAGE.
     38   1.1      rjs  */
     39   1.1      rjs 
     40   1.1      rjs #include "opt_irqstats.h"
     41   1.1      rjs 
     42   1.1      rjs #include "assym.h"
     43   1.1      rjs #include <machine/asm.h>
     44   1.1      rjs #include <machine/cpu.h>
     45   1.1      rjs #include <machine/frame.h>
     46   1.3   ichiro #include <arm/sa11x0/sa11x0_reg.h>
     47   1.1      rjs 
     48   1.1      rjs 
     49   1.1      rjs 	.text
     50   1.1      rjs 	.align 0
     51   1.1      rjs 
     52   1.1      rjs Lspl_masks:
     53   1.1      rjs 	.word	_C_LABEL(spl_masks)
     54   1.1      rjs 
     55   1.1      rjs 	.globl	_C_LABEL(saipic_base)
     56   1.1      rjs _C_LABEL(saipic_base):
     57   1.1      rjs 	.word	0x00000000
     58   1.1      rjs 
     59   1.1      rjs #ifdef INTR_DEBUG
     60   1.1      rjs Ldbg_str:
     61   1.1      rjs 	.asciz	"irq_entry %x %x\n"
     62   1.1      rjs #endif
     63   1.1      rjs 
     64  1.10  thorpej LOCK_CAS_CHECK_LOCALS
     65  1.10  thorpej 
     66   1.6      scw AST_ALIGNMENT_FAULT_LOCALS
     67   1.6      scw 
     68   1.1      rjs /*
     69   1.7    peter  * Register usage
     70   1.1      rjs  *
     71   1.1      rjs  *  r6  - Address of current handler
     72   1.1      rjs  *  r7  - Pointer to handler pointer list
     73   1.1      rjs  *  r8  - Current IRQ requests.
     74   1.1      rjs  *  r9  - Used to count through possible IRQ bits.
     75   1.1      rjs  *  r10 - Base address of SAIP
     76   1.1      rjs  */
     77   1.1      rjs 
     78   1.1      rjs ASENTRY_NP(irq_entry)
     79   1.1      rjs 	sub	lr, lr, #0x00000004	/* Adjust the lr */
     80   1.1      rjs 
     81   1.1      rjs 	PUSHFRAMEINSVC			/* Push an interrupt frame */
     82   1.6      scw 	ENABLE_ALIGNMENT_FAULTS
     83   1.1      rjs 
     84   1.1      rjs 	/* Load r8 with the SAIPIC interrupt requests */
     85   1.1      rjs 
     86   1.4    bjh21 	ldr	r10, _C_LABEL(saipic_base)
     87   1.1      rjs 	ldr	r8, [r10, #(SAIPIC_IP)]	/* Load IRQ pending register */
     88   1.1      rjs 
     89   1.1      rjs #ifdef INTR_DEBUG
     90   1.1      rjs 	ldr	r2, [r10, #(SAIPIC_MR)]
     91   1.4    bjh21 	adr	r0, Ldbg_str
     92   1.1      rjs 	mov	r1, r8
     93   1.1      rjs 	bl	_C_LABEL(printf)
     94   1.1      rjs #endif
     95   1.1      rjs 	/*
     96   1.1      rjs 	 * Note that we have entered the IRQ handler.
     97   1.1      rjs 	 * We are in SVC mode so we cannot use the processor mode
     98   1.1      rjs 	 * to determine if we are in an IRQ. Instead we will count the
     99   1.1      rjs 	 * each time the interrupt handler is nested.
    100   1.1      rjs 	 */
    101   1.1      rjs 
    102  1.13     matt 	ldr	r1, [r4, #CI_INTR_DEPTH]
    103   1.1      rjs 	add	r1, r1, #1
    104  1.13     matt 	str	r1, [r4, #CI_INTR_DEPTH]
    105   1.1      rjs 
    106   1.1      rjs 	/*
    107   1.1      rjs  	 * Need to block all interrupts at the IPL or lower for
    108   1.1      rjs 	 * all asserted interrupts.
    109   1.1      rjs 	 * This basically emulates hardware interrupt priority levels.
    110   1.1      rjs 	 * Means we need to go through the interrupt mask and for
    111   1.1      rjs 	 * every asserted interrupt we need to mask out all other
    112   1.1      rjs 	 * interrupts at the same or lower IPL.
    113   1.1      rjs 	 * If only we could wait until the main loop but we need to sort
    114   1.1      rjs 	 * this out first so interrupts can be re-enabled.
    115   1.1      rjs 	 *
    116   1.1      rjs 	 * This would benefit from a special ffs type routine
    117   1.1      rjs 	 */
    118   1.1      rjs 
    119  1.13     matt 	mov	r9, #(NIPL - 1)
    120   1.1      rjs 	ldr	r7, Lspl_masks
    121   1.1      rjs 
    122   1.1      rjs Lfind_highest_ipl:
    123   1.1      rjs 	ldr	r2, [r7, r9, lsl #2]
    124   1.1      rjs 	tst	r8, r2
    125   1.1      rjs 	subeq	r9, r9, #1
    126   1.1      rjs 	beq	Lfind_highest_ipl
    127   1.1      rjs 
    128   1.1      rjs 	/* r9 = SPL level of highest priority interrupt */
    129   1.1      rjs 	add	r9, r9, #1
    130   1.1      rjs 	ldr	r2, [r7, r9, lsl #2]
    131   1.1      rjs 	mvn	r2, r2
    132   1.1      rjs 
    133  1.13     matt 	ldr	r1, [r4, #CI_CPL]
    134  1.13     matt 	str	r9, [r4, #CI_CPL]
    135   1.1      rjs 	stmfd	sp!, {r1}
    136   1.1      rjs 
    137   1.1      rjs 	/* Update the SAIP irq masks */
    138   1.1      rjs 	bl	_C_LABEL(irq_setmasks)
    139   1.1      rjs 
    140   1.1      rjs #ifdef INTR_DEBUG
    141   1.1      rjs 	stmfd	sp!, {r0,r1,r2}
    142   1.4    bjh21 	adr	r0, Ldbg_str
    143   1.1      rjs 	mov	r1, #1
    144   1.1      rjs 	mov	r2, r9
    145   1.1      rjs 	bl	_C_LABEL(printf)
    146   1.1      rjs 	ldmia	sp!, {r0,r1,r2}
    147   1.1      rjs #endif
    148   1.7    peter         mrs     r0, cpsr_all		/* Enable IRQs */
    149   1.1      rjs 	bic	r0, r0, #I32_bit
    150   1.1      rjs 	msr	cpsr_all, r0
    151   1.1      rjs 
    152   1.4    bjh21 	ldr	r7, Lirqhandlers
    153   1.1      rjs         mov	r9, #0x00000001
    154   1.1      rjs 
    155   1.1      rjs irqloop:
    156   1.1      rjs 	/* This would benefit from a special ffs type routine */
    157   1.1      rjs 	tst	r8, r9			/* Is a bit set ? */
    158   1.1      rjs 	beq	nextirq			/* No ? try next bit */
    159   1.1      rjs 
    160   1.1      rjs 	ldr	r6, [r7]		/* Get address of first handler structure */
    161   1.1      rjs 
    162   1.1      rjs 	teq	r6, #0x00000000		/* Do we have a handler */
    163   1.1      rjs 	moveq	r0, r8			/* IRQ requests as arg 0 */
    164   1.1      rjs 	beq	_C_LABEL(stray_irqhandler) /* call special handler */
    165   1.1      rjs 
    166   1.1      rjs         ldr	r0, Lcnt		/* Stat info */
    167   1.1      rjs 	ldr	r1, [r0, #(V_INTR)]
    168   1.1      rjs 	add	r1, r1, #0x00000001
    169   1.1      rjs 	str	r1, [r0, #(V_INTR)]
    170   1.1      rjs 
    171   1.1      rjs 	/*
    172   1.7    peter 	 * XXX: Should stats be accumulated for every interrupt routine
    173   1.1      rjs 	 * called or for every physical interrupt that is serviced.
    174   1.1      rjs 	 */
    175   1.1      rjs 
    176   1.1      rjs #ifdef IRQSTATS
    177   1.1      rjs 	ldr	r0, Lintrcnt
    178   1.1      rjs 	ldr	r1, [r6, #(IH_COUNT)]
    179   1.1      rjs 
    180   1.1      rjs 	add	r0, r0, r1, lsl #2
    181   1.1      rjs 	ldr	r1, [r0]
    182   1.1      rjs 	add	r1, r1, #0x00000001
    183   1.1      rjs 	str	r1, [r0]
    184   1.1      rjs #endif	/* IRQSTATS */
    185   1.1      rjs 
    186   1.1      rjs irqchainloop:
    187   1.1      rjs #ifdef INTR_DEBUG
    188   1.1      rjs 	stmfd	sp!, {r0,r1,r2}
    189   1.4    bjh21 	adr	r0, Ldbg_str
    190   1.1      rjs 	mov	r1, #2
    191   1.1      rjs 	bl	_C_LABEL(printf)
    192   1.1      rjs 	ldmia	sp!, {r0,r1,r2}
    193   1.1      rjs #endif
    194   1.1      rjs 	ldr	r0, [r6, #(IH_ARG)]	/* Get argument pointer */
    195   1.1      rjs 	teq	r0, #0x00000000		/* If arg is zero pass stack frame */
    196   1.1      rjs 	addeq	r0, sp, #4		/* ... stack frame [XXX needs care] */
    197   1.4    bjh21 	mov	lr, pc			/* return address */
    198   1.1      rjs 	ldr	pc, [r6, #(IH_FUNC)]	/* Call handler */
    199   1.1      rjs 
    200   1.1      rjs 	teq	r0, #0x00000001		/* Was the irq serviced ? */
    201   1.1      rjs 	beq	irqdone
    202   1.1      rjs 
    203   1.1      rjs 	ldr	r6, [r6, #(IH_NEXT)]
    204   1.1      rjs 	teq	r6, #0x00000000
    205   1.1      rjs 	bne	irqchainloop
    206   1.1      rjs 
    207   1.1      rjs irqdone:
    208   1.1      rjs nextirq:
    209   1.1      rjs 	add	r7, r7, #0x00000004	/* update pointer to handlers */
    210   1.1      rjs 	mov	r9, r9, lsl #1		/* move on to next bit */
    211   1.1      rjs 	teq	r9, #(1 << 31)		/* done the last bit ? */
    212   1.1      rjs 	bne	irqloop			/* no - loop back. */
    213   1.1      rjs 
    214   1.1      rjs 	ldmfd	sp!, {r2}
    215  1.13     matt 	str	r2, [r4, #CI_CPL]
    216   1.1      rjs 
    217   1.1      rjs 	/* Restore previous disabled mask */
    218   1.1      rjs 	bl	_C_LABEL(irq_setmasks)
    219   1.1      rjs 
    220  1.12     matt #ifdef __HAVE_FAST_SOFTINTS
    221   1.1      rjs 	bl	_C_LABEL(dosoftints)	/* Handle the soft interrupts */
    222  1.12     matt #endif
    223   1.1      rjs 
    224   1.1      rjs 	/* Kill IRQ's in preparation for exit */
    225   1.1      rjs         mrs     r0, cpsr_all
    226   1.1      rjs         orr     r0, r0, #(I32_bit)
    227   1.1      rjs         msr     cpsr_all, r0
    228   1.1      rjs 
    229   1.1      rjs #ifdef INTR_DEBUG
    230   1.9    peter 	adr	r0, Ldbg_str
    231   1.1      rjs 	mov	r1, #3
    232   1.1      rjs 	ldr	r2, [r10, #(SAIPIC_MR)]
    233   1.1      rjs 	bl	_C_LABEL(printf)
    234   1.1      rjs #endif
    235   1.1      rjs 
    236   1.1      rjs 	/* Decrement the nest count */
    237  1.13     matt 	ldr	r1, [r4, #CI_INTR_DEPTH]
    238   1.1      rjs 	sub	r1, r1, #1
    239  1.13     matt 	str	r1, [r4, #CI_INTR_DEPTH]
    240   1.1      rjs 
    241  1.10  thorpej 	LOCK_CAS_CHECK
    242  1.10  thorpej 
    243   1.6      scw 	DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
    244   1.1      rjs 	PULLFRAMEFROMSVCANDEXIT
    245   1.1      rjs 
    246   1.1      rjs 	/* NOT REACHED */
    247   1.1      rjs 	b	. - 8
    248   1.1      rjs 
    249   1.1      rjs ENTRY(irq_setmasks)
    250   1.1      rjs 	/* Disable interrupts */
    251   1.1      rjs 	mrs	r3, cpsr_all
    252   1.1      rjs 	orr	r1, r3,  #(I32_bit)
    253   1.1      rjs 	msr	cpsr_all, r1
    254   1.1      rjs 
    255   1.1      rjs 	/* Calculate interrupt mask */
    256   1.1      rjs 	ldr	r0, Lspl_masks
    257  1.13     matt 	ldr	r2, [r4, #CI_CPL]
    258   1.1      rjs 	ldr	r2, [r0, r2, lsl #2]
    259   1.1      rjs 
    260   1.4    bjh21 	ldr	r0, _C_LABEL(saipic_base)
    261   1.1      rjs 	str	r2, [r0, #(SAIPIC_MR)]	/* Set mask register */
    262   1.1      rjs 
    263   1.1      rjs 	/* Restore old cpsr and exit */
    264   1.1      rjs 	msr	cpsr_all, r3
    265   1.1      rjs 	mov	pc, lr
    266   1.1      rjs 
    267   1.1      rjs Lcnt:
    268   1.1      rjs 	.word	_C_LABEL(uvmexp)
    269   1.1      rjs 
    270   1.1      rjs #ifdef IRQSTATS
    271   1.1      rjs Lintrcnt:
    272   1.1      rjs 	.word	_C_LABEL(intrcnt)
    273   1.1      rjs #endif
    274   1.1      rjs 
    275   1.1      rjs Lirqhandlers:
    276   1.1      rjs 	.word	_C_LABEL(irqhandlers)	/* Pointer to array of irqhandlers */
    277   1.1      rjs 
    278   1.1      rjs 
    279   1.1      rjs #ifdef IRQSTATS
    280   1.5    chris 	.global _C_LABEL(intrnames), _C_LABEL(eintrnames)
    281   1.5    chris 	.global _C_LABEL(eintrcnt)
    282   1.5    chris _C_LABEL(intrnames):
    283   1.5    chris _C_LABEL(eintrnames):
    284   1.5    chris _C_LABEL(eintrcnt):
    285   1.5    chris 
    286   1.1      rjs 	.globl	_C_LABEL(intrcnt), _C_LABEL(sintrcnt)
    287   1.1      rjs 
    288   1.1      rjs _C_LABEL(intrcnt):
    289   1.1      rjs 	.space	ICU_LEN*4  /* XXX Should be linked to number of interrupts */
    290   1.1      rjs 
    291   1.1      rjs _C_LABEL(sintrcnt):
    292   1.1      rjs 	.space 32*4
    293   1.1      rjs #endif
    294