debug-macro.S 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* arch/arm/mach-clps711x/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 <mach/hardware.h>
  14. #include <asm/hardware/clps7111.h>
  15. .macro addruart, rp, rv
  16. #ifndef CONFIG_DEBUG_CLPS711X_UART2
  17. mov \rp, #0x0000 @ UART1
  18. #else
  19. mov \rp, #0x1000 @ UART2
  20. #endif
  21. orr \rv, \rp, #CLPS7111_VIRT_BASE
  22. orr \rp, \rp, #CLPS7111_PHYS_BASE
  23. .endm
  24. .macro senduart,rd,rx
  25. str \rd, [\rx, #0x0480] @ UARTDR
  26. .endm
  27. .macro waituart,rd,rx
  28. 1001: ldr \rd, [\rx, #0x0140] @ SYSFLGx
  29. tst \rd, #1 << 11 @ UBUSYx
  30. bne 1001b
  31. .endm
  32. .macro busyuart,rd,rx
  33. tst \rx, #0x1000 @ UART2 does not have CTS here
  34. bne 1002f
  35. 1001: ldr \rd, [\rx, #0x0140] @ SYSFLGx
  36. tst \rd, #1 << 8 @ CTS
  37. bne 1001b
  38. 1002:
  39. .endm