entry-macro.S 344 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <mach/hardware.h>
  3. #include <asm/hardware/entry-macro-iomd.S>
  4. .equ ioc_base_high, IOC_BASE & 0xff000000
  5. .equ ioc_base_low, IOC_BASE & 0x00ff0000
  6. .macro get_irqnr_preamble, base, tmp
  7. mov \base, #ioc_base_high @ point at IOC
  8. .if ioc_base_low
  9. orr \base, \base, #ioc_base_low
  10. .endif
  11. .endm