debug-macro.S 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * arch/arm/mach-at91/include/mach/debug-macro.S
  3. *
  4. * Copyright (C) 2003-2005 SAN People
  5. *
  6. * Debugging macro include header
  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 <mach/hardware.h>
  14. #include <mach/at91_dbgu.h>
  15. #if defined(CONFIG_AT91_DEBUG_LL_DBGU0)
  16. #define AT91_DBGU AT91_BASE_DBGU0
  17. #elif defined(CONFIG_AT91_DEBUG_LL_DBGU1)
  18. #define AT91_DBGU AT91_BASE_DBGU1
  19. #else
  20. /* On sama5d4, use USART3 as low level serial console */
  21. #define AT91_DBGU SAMA5D4_BASE_USART3
  22. #endif
  23. .macro addruart, rp, rv, tmp
  24. ldr \rp, =AT91_DBGU @ System peripherals (phys address)
  25. ldr \rv, =AT91_IO_P2V(AT91_DBGU) @ System peripherals (virt address)
  26. .endm
  27. .macro senduart,rd,rx
  28. strb \rd, [\rx, #(AT91_DBGU_THR)] @ Write to Transmitter Holding Register
  29. .endm
  30. .macro waituart,rd,rx
  31. 1001: ldr \rd, [\rx, #(AT91_DBGU_SR)] @ Read Status Register
  32. tst \rd, #AT91_DBGU_TXRDY @ DBGU_TXRDY = 1 when ready to transmit
  33. beq 1001b
  34. .endm
  35. .macro busyuart,rd,rx
  36. 1001: ldr \rd, [\rx, #(AT91_DBGU_SR)] @ Read Status Register
  37. tst \rd, #AT91_DBGU_TXEMPTY @ DBGU_TXEMPTY = 1 when transmission complete
  38. beq 1001b
  39. .endm