debug-macro.S 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. /* For NetWinder debugging */
  16. .macro addruart, rp, rv, tmp
  17. mov \rp, #0x000003f8
  18. orr \rv, \rp, #0xfe000000 @ virtual
  19. orr \rv, \rv, #0x00e00000 @ virtual
  20. orr \rp, \rp, #0x7c000000 @ physical
  21. .endm
  22. #define UART_SHIFT 0
  23. #define FLOW_CONTROL
  24. #include <asm/hardware/debug-8250.S>
  25. #else
  26. #include <mach/hardware.h>
  27. /* For EBSA285 debugging */
  28. .equ dc21285_high, ARMCSR_BASE & 0xff000000
  29. .equ dc21285_low, ARMCSR_BASE & 0x00ffffff
  30. .macro addruart, rp, rv, tmp
  31. .if dc21285_low
  32. mov \rp, #dc21285_low
  33. .else
  34. mov \rp, #0
  35. .endif
  36. orr \rv, \rp, #dc21285_high
  37. orr \rp, \rp, #0x42000000
  38. .endm
  39. .macro senduart,rd,rx
  40. str \rd, [\rx, #0x160] @ UARTDR
  41. .endm
  42. .macro busyuart,rd,rx
  43. 1001: ldr \rd, [\rx, #0x178] @ UARTFLG
  44. tst \rd, #1 << 3
  45. bne 1001b
  46. .endm
  47. .macro waituart,rd,rx
  48. .endm
  49. #endif