bridge-regs.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * arch/arm/mach-orion5x/include/mach/bridge-regs.h
  3. *
  4. * Orion CPU Bridge Registers
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #ifndef __ASM_ARCH_BRIDGE_REGS_H
  11. #define __ASM_ARCH_BRIDGE_REGS_H
  12. #include <mach/orion5x.h>
  13. #define CPU_CONF (ORION5X_BRIDGE_VIRT_BASE | 0x100)
  14. #define CPU_CTRL (ORION5X_BRIDGE_VIRT_BASE | 0x104)
  15. #define RSTOUTn_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x108)
  16. #define WDT_RESET_OUT_EN 0x0002
  17. #define CPU_SOFT_RESET (ORION5X_BRIDGE_VIRT_BASE | 0x10c)
  18. #define POWER_MNG_CTRL_REG (ORION5X_BRIDGE_VIRT_BASE | 0x11C)
  19. #define BRIDGE_CAUSE (ORION5X_BRIDGE_VIRT_BASE | 0x110)
  20. #define WDT_INT_REQ 0x0008
  21. #define BRIDGE_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x114)
  22. #define BRIDGE_INT_TIMER0 0x0002
  23. #define BRIDGE_INT_TIMER1 0x0004
  24. #define BRIDGE_INT_TIMER1_CLR (~0x0004)
  25. #define MAIN_IRQ_CAUSE (ORION5X_BRIDGE_VIRT_BASE | 0x200)
  26. #define MAIN_IRQ_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x204)
  27. #define TIMER_VIRT_BASE (ORION5X_BRIDGE_VIRT_BASE | 0x300)
  28. #endif