bridge-regs.h 1012 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Orion CPU Bridge Registers
  3. *
  4. * This file is licensed under the terms of the GNU General Public
  5. * License version 2. This program is licensed "as is" without any
  6. * warranty of any kind, whether express or implied.
  7. */
  8. #ifndef __ASM_ARCH_BRIDGE_REGS_H
  9. #define __ASM_ARCH_BRIDGE_REGS_H
  10. #include "orion5x.h"
  11. #define CPU_CONF (ORION5X_BRIDGE_VIRT_BASE + 0x100)
  12. #define CPU_CTRL (ORION5X_BRIDGE_VIRT_BASE + 0x104)
  13. #define RSTOUTn_MASK (ORION5X_BRIDGE_VIRT_BASE + 0x108)
  14. #define RSTOUTn_MASK_PHYS (ORION5X_BRIDGE_PHYS_BASE + 0x108)
  15. #define CPU_SOFT_RESET (ORION5X_BRIDGE_VIRT_BASE + 0x10c)
  16. #define BRIDGE_CAUSE (ORION5X_BRIDGE_VIRT_BASE + 0x110)
  17. #define POWER_MNG_CTRL_REG (ORION5X_BRIDGE_VIRT_BASE + 0x11C)
  18. #define BRIDGE_INT_TIMER1_CLR (~0x0004)
  19. #define MAIN_IRQ_CAUSE (ORION5X_BRIDGE_VIRT_BASE + 0x200)
  20. #define MAIN_IRQ_MASK (ORION5X_BRIDGE_VIRT_BASE + 0x204)
  21. #define TIMER_VIRT_BASE (ORION5X_BRIDGE_VIRT_BASE + 0x300)
  22. #define TIMER_PHYS_BASE (ORION5X_BRIDGE_PHYS_BASE + 0x300)
  23. #endif