debug-macro.S 1.2 KB

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