entry-macro.S 352 B

12345678910111213141516
  1. #include <mach/hardware.h>
  2. #include <asm/hardware/entry-macro-iomd.S>
  3. .equ ioc_base_high, IOC_BASE & 0xff000000
  4. .equ ioc_base_low, IOC_BASE & 0x00ff0000
  5. .macro get_irqnr_preamble, base, tmp
  6. mov \base, #ioc_base_high @ point at IOC
  7. .if ioc_base_low
  8. orr \base, \base, #ioc_base_low
  9. .endif
  10. .endm
  11. .macro arch_ret_to_user, tmp1, tmp2
  12. .endm