diff options
Diffstat (limited to 'include/asm-ia64/sn/addrs.h')
-rw-r--r-- | include/asm-ia64/sn/addrs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asm-ia64/sn/addrs.h b/include/asm-ia64/sn/addrs.h index 960d626ee589..1bfdfb4d7b01 100644 --- a/include/asm-ia64/sn/addrs.h +++ b/include/asm-ia64/sn/addrs.h | |||
@@ -136,6 +136,7 @@ | |||
136 | */ | 136 | */ |
137 | #define CAC_BASE (CACHED | AS_CAC_SPACE) | 137 | #define CAC_BASE (CACHED | AS_CAC_SPACE) |
138 | #define AMO_BASE (UNCACHED | AS_AMO_SPACE) | 138 | #define AMO_BASE (UNCACHED | AS_AMO_SPACE) |
139 | #define AMO_PHYS_BASE (UNCACHED_PHYS | AS_AMO_SPACE) | ||
139 | #define GET_BASE (CACHED | AS_GET_SPACE) | 140 | #define GET_BASE (CACHED | AS_GET_SPACE) |
140 | 141 | ||
141 | /* | 142 | /* |
@@ -161,6 +162,13 @@ | |||
161 | 162 | ||
162 | 163 | ||
163 | /* | 164 | /* |
165 | * Macros to test for address type. | ||
166 | */ | ||
167 | #define IS_AMO_ADDRESS(x) (((u64)(x) & (REGION_BITS | AS_MASK)) == AMO_BASE) | ||
168 | #define IS_AMO_PHYS_ADDRESS(x) (((u64)(x) & (REGION_BITS | AS_MASK)) == AMO_PHYS_BASE) | ||
169 | |||
170 | |||
171 | /* | ||
164 | * The following definitions pertain to the IO special address | 172 | * The following definitions pertain to the IO special address |
165 | * space. They define the location of the big and little windows | 173 | * space. They define the location of the big and little windows |
166 | * of any given node. | 174 | * of any given node. |