entry-macro.S 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * arch/arm/mach-lpc32xx/include/mach/entry-macro.S
  3. *
  4. * Author: Kevin Wells <kevin.wells@nxp.com>
  5. *
  6. * Copyright (C) 2010 NXP Semiconductors
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. */
  18. #include <mach/hardware.h>
  19. #include <mach/platform.h>
  20. #define LPC32XX_INTC_MASKED_STATUS_OFS 0x8
  21. .macro disable_fiq
  22. .endm
  23. .macro get_irqnr_preamble, base, tmp
  24. ldr \base, =IO_ADDRESS(LPC32XX_MIC_BASE)
  25. .endm
  26. .macro arch_ret_to_user, tmp1, tmp2
  27. .endm
  28. /*
  29. * Return IRQ number in irqnr. Also return processor Z flag status in CPSR
  30. * as set if an interrupt is pending.
  31. */
  32. .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
  33. ldr \irqstat, [\base, #LPC32XX_INTC_MASKED_STATUS_OFS]
  34. clz \irqnr, \irqstat
  35. rsb \irqnr, \irqnr, #31
  36. teq \irqstat, #0
  37. .endm
  38. .macro irq_prio_table
  39. .endm