debug-macro.S 814 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* arch/arm/mach-aaec2000/include/mach/debug-macro.S
  2. *
  3. * Debugging macro include header
  4. *
  5. * Copyright (c) 2005 Nicolas Bellido Y Ortega
  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 "hardware.h"
  12. .macro addruart,rx
  13. mrc p15, 0, \rx, c1, c0
  14. tst \rx, #1 @ MMU enabled?
  15. moveq \rx, #0x80000000 @ physical
  16. movne \rx, #io_p2v(0x80000000) @ virtual
  17. orr \rx, \rx, #0x00000800
  18. .endm
  19. .macro senduart,rd,rx
  20. str \rd, [\rx, #0]
  21. .endm
  22. .macro busyuart,rd,rx
  23. 1002: ldr \rd, [\rx, #0x10]
  24. tst \rd, #(1 << 7)
  25. beq 1002b
  26. .endm
  27. .macro waituart,rd,rx
  28. #if 0
  29. 1001: ldr \rd, [\rx, #0x10]
  30. tst \rd, #(1 << 5)
  31. beq 1001b
  32. #endif
  33. .endm