debug-macro.S 590 B

12345678910111213141516171819202122
  1. /* arch/arm/mach-mmp/include/mach/debug-macro.S
  2. *
  3. * Debugging macro include header
  4. *
  5. * Copied from arch/arm/mach-pxa/include/mach/debug.S
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <mach/addr-map.h>
  12. .macro addruart, rp, rv
  13. ldr \rp, =APB_PHYS_BASE @ physical
  14. ldr \rv, =APB_VIRT_BASE @ virtual
  15. orr \rp, \rp, #0x00017000
  16. orr \rv, \rv, #0x00017000
  17. .endm
  18. #define UART_SHIFT 2
  19. #include <asm/hardware/debug-8250.S>