[BACK]Return to entry-macro.S CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / include / asm-arm / arch-aaec2000

File: [Development] / linux-2.6-xfs / include / asm-arm / arch-aaec2000 / Attic / entry-macro.S (download)

Revision 1.3, Tue Mar 20 15:37:21 2007 UTC (10 years, 7 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.2: +6 -0 lines

Merge up to 2.6.21-rc4
Merge of 2.6.x-xfs-melb:linux:28276b by kenmcd.

/*
 *  linux/include/asm-arm/arch-aaec2000/entry-macro.S
 *
 *  Low-level IRQ helper for aaec-2000 based platforms
 *
 *  Copyright (c) 2005 Nicolas Bellido Y Ortega
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 */
#include <asm/arch/irqs.h>

		.macro	disable_fiq
		.endm

		.macro  get_irqnr_preamble, base, tmp
		.endm

		.macro  arch_ret_to_user, tmp1, tmp2
		.endm

		.macro	get_irqnr_and_base, irqnr, irqstat, base, tmp
		mov	r4, #0xf8000000
		add	r4, r4, #0x00000500
		mov	\base, r4
		ldr	\irqstat, [\base, #0]
		cmp	\irqstat, #0
		bne	1001f
		ldr	\irqnr, =NR_IRQS+1
		b       1003f
1001:		mov	\irqnr, #0
1002:		ands	\tmp, \irqstat, #1
		mov	\irqstat, \irqstat, LSR #1
		add	\irqnr, \irqnr, #1
		beq	1002b
		sub	\irqnr, \irqnr, #1
1003:
		.endm