debug-macro.S 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* arch/arm/mach-footbridge/include/mach/debug-macro.S
  2. *
  3. * Debugging macro include header
  4. *
  5. * Copyright (C) 1994-1999 Russell King
  6. * Moved from linux/arch/arm/kernel/debug.S by Ben Dooks
  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 version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. */
  13. #include <asm/hardware/dec21285.h>
  14. #ifndef CONFIG_DEBUG_DC21285_PORT
  15. #include <asm/hardware/debug-8250.S>
  16. #else
  17. #include <mach/hardware.h>
  18. /* For EBSA285 debugging */
  19. .equ dc21285_high, ARMCSR_BASE & 0xff000000
  20. .equ dc21285_low, ARMCSR_BASE & 0x00ffffff
  21. .macro addruart, rp, rv, tmp
  22. .if dc21285_low
  23. mov \rp, #dc21285_low
  24. .else
  25. mov \rp, #0
  26. .endif
  27. orr \rv, \rp, #dc21285_high
  28. orr \rp, \rp, #0x42000000
  29. .endm
  30. .macro senduart,rd,rx
  31. str \rd, [\rx, #0x160] @ UARTDR
  32. .endm
  33. .macro busyuart,rd,rx
  34. 1001: ldr \rd, [\rx, #0x178] @ UARTFLG
  35. tst \rd, #1 << 3
  36. bne 1001b
  37. .endm
  38. .macro waituart,rd,rx
  39. .endm
  40. #endif