2008-08-05 09:14:15 -06:00
|
|
|
#include <mach/hardware.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
#include <asm/hardware/entry-macro-iomd.S>
|
2007-05-12 08:25:50 -06:00
|
|
|
|
|
|
|
.equ ioc_base_high, IOC_BASE & 0xff000000
|
|
|
|
.equ ioc_base_low, IOC_BASE & 0x00ff0000
|
|
|
|
|
2007-02-16 14:16:32 -07:00
|
|
|
.macro get_irqnr_preamble, base, tmp
|
2007-05-12 08:25:50 -06:00
|
|
|
mov \base, #ioc_base_high @ point at IOC
|
|
|
|
.if ioc_base_low
|
|
|
|
orr \base, \base, #ioc_base_low
|
|
|
|
.endif
|
2007-02-16 14:16:32 -07:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro arch_ret_to_user, tmp1, tmp2
|
|
|
|
.endm
|
2005-04-16 16:20:36 -06:00
|
|
|
|