You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1012 B
36 lines
1012 B
16 years ago
|
/*
|
||
|
* Orion CPU Bridge Registers
|
||
|
*
|
||
|
* This file is licensed under the terms of the GNU General Public
|
||
|
* License version 2. This program is licensed "as is" without any
|
||
|
* warranty of any kind, whether express or implied.
|
||
|
*/
|
||
|
|
||
|
#ifndef __ASM_ARCH_BRIDGE_REGS_H
|
||
|
#define __ASM_ARCH_BRIDGE_REGS_H
|
||
|
|
||
9 years ago
|
#include "orion5x.h"
|
||
16 years ago
|
|
||
12 years ago
|
#define CPU_CONF (ORION5X_BRIDGE_VIRT_BASE + 0x100)
|
||
16 years ago
|
|
||
12 years ago
|
#define CPU_CTRL (ORION5X_BRIDGE_VIRT_BASE + 0x104)
|
||
16 years ago
|
|
||
12 years ago
|
#define RSTOUTn_MASK (ORION5X_BRIDGE_VIRT_BASE + 0x108)
|
||
11 years ago
|
#define RSTOUTn_MASK_PHYS (ORION5X_BRIDGE_PHYS_BASE + 0x108)
|
||
16 years ago
|
|
||
12 years ago
|
#define CPU_SOFT_RESET (ORION5X_BRIDGE_VIRT_BASE + 0x10c)
|
||
16 years ago
|
|
||
12 years ago
|
#define BRIDGE_CAUSE (ORION5X_BRIDGE_VIRT_BASE + 0x110)
|
||
14 years ago
|
|
||
12 years ago
|
#define POWER_MNG_CTRL_REG (ORION5X_BRIDGE_VIRT_BASE + 0x11C)
|
||
16 years ago
|
|
||
|
#define BRIDGE_INT_TIMER1_CLR (~0x0004)
|
||
|
|
||
12 years ago
|
#define MAIN_IRQ_CAUSE (ORION5X_BRIDGE_VIRT_BASE + 0x200)
|
||
16 years ago
|
|
||
12 years ago
|
#define MAIN_IRQ_MASK (ORION5X_BRIDGE_VIRT_BASE + 0x204)
|
||
16 years ago
|
|
||
12 years ago
|
#define TIMER_VIRT_BASE (ORION5X_BRIDGE_VIRT_BASE + 0x300)
|
||
|
#define TIMER_PHYS_BASE (ORION5X_BRIDGE_PHYS_BASE + 0x300)
|
||
16 years ago
|
#endif
|