debug-macro.S 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* arch/arm/mach-realview/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. #if defined(CONFIG_MACH_REALVIEW_EB) || \
  13. defined(CONFIG_MACH_REALVIEW_PB11MP) || \
  14. defined(CONFIG_MACH_REALVIEW_PBA8)
  15. #ifndef DEBUG_LL_UART_OFFSET
  16. #define DEBUG_LL_UART_OFFSET 0x00009000
  17. #elif DEBUG_LL_UART_OFFSET != 0x00009000
  18. #warning "DEBUG_LL_UART_OFFSET already defined to a different value"
  19. #endif
  20. #endif
  21. #ifdef CONFIG_MACH_REALVIEW_PB1176
  22. #ifndef DEBUG_LL_UART_OFFSET
  23. #define DEBUG_LL_UART_OFFSET 0x0010c000
  24. #elif DEBUG_LL_UART_OFFSET != 0x0010c000
  25. #warning "DEBUG_LL_UART_OFFSET already defined to a different value"
  26. #endif
  27. #endif
  28. #ifndef DEBUG_LL_UART_OFFSET
  29. #error "Unknown RealView platform"
  30. #endif
  31. .macro addruart,rx
  32. mrc p15, 0, \rx, c1, c0
  33. tst \rx, #1 @ MMU enabled?
  34. moveq \rx, #0x10000000
  35. movne \rx, #0xfb000000 @ virtual base
  36. orr \rx, \rx, #DEBUG_LL_UART_OFFSET
  37. .endm
  38. #include <asm/hardware/debug-pl01x.S>