debug-macro.S 1.3 KB

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