debug-macro.S
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* linux/include/asm-arm/arch-sa1100/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. .macro addruart,rx
  14. mrc p15, 0, rx, c1, c0
  15. tst rx, #1 @ MMU enabled?
  16. moveq rx, #0x80000000 @ physical base address
  17. movne rx, #0xf8000000 @ virtual address
  18. @ We probe for the active serial port here, coherently with
  19. @ the comment in include/asm-arm/arch-sa1100/uncompress.h.
  20. @ We assume r1 can be clobbered.
  21. @ see if Ser3 is active
  22. add rx, rx, #0x00050000
  23. ldr r1, [rx, #UTCR3]
  24. tst r1, #UTCR3_TXE
  25. @ if Ser3 is inactive, then try Ser1
  26. addeq rx, rx, #(0x00010000 - 0x00050000)
  27. ldreq r1, [rx, #UTCR3]
  28. tsteq r1, #UTCR3_TXE
  29. @ if Ser1 is inactive, then try Ser2
  30. addeq rx, rx, #(0x00030000 - 0x00010000)
  31. ldreq r1, [rx, #UTCR3]
  32. tsteq r1, #UTCR3_TXE
  33. @ if all ports are inactive, then there is nothing we can do
  34. moveq pc, lr
  35. .endm
  36. .macro senduart,rd,rx
  37. str rd, [rx, #UTDR]
  38. .endm
  39. .macro waituart,rd,rx
  40. 1001: ldr rd, [rx, #UTSR1]
  41. tst rd, #UTSR1_TNF
  42. beq 1001b
  43. .endm
  44. .macro busyuart,rd,rx
  45. 1001: ldr rd, [rx, #UTSR1]
  46. tst rd, #UTSR1_TBY
  47. bne 1001b
  48. .endm