| 1 | /* |
|---|
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
|---|
| 3 | * License. See the file "COPYING" in the main directory of this archive |
|---|
| 4 | * for more details. |
|---|
| 5 | * |
|---|
| 6 | * Derived from IRIX <sys/SN/SN0/addrs.h>, revision 1.126. |
|---|
| 7 | * |
|---|
| 8 | * Copyright (C) 1992 - 1997, 1999 Silicon Graphics, Inc. |
|---|
| 9 | * Copyright (C) 1999 by Ralf Baechle |
|---|
| 10 | */ |
|---|
| 11 | #ifndef _ASM_SN_SN0_ADDRS_H |
|---|
| 12 | #define _ASM_SN_SN0_ADDRS_H |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | /* |
|---|
| 16 | * SN0 (on a T5) Address map |
|---|
| 17 | * |
|---|
| 18 | * This file contains a set of definitions and macros which are used |
|---|
| 19 | * to reference into the major address spaces (CAC, HSPEC, IO, MSPEC, |
|---|
| 20 | * and UNCAC) used by the SN0 architecture. It also contains addresses |
|---|
| 21 | * for "major" statically locatable PROM/Kernel data structures, such as |
|---|
| 22 | * the partition table, the configuration data structure, etc. |
|---|
| 23 | * We make an implicit assumption that the processor using this file |
|---|
| 24 | * follows the R10K's provisions for specifying uncached attributes; |
|---|
| 25 | * should this change, the base registers may very well become processor- |
|---|
| 26 | * dependent. |
|---|
| 27 | * |
|---|
| 28 | * For more information on the address spaces, see the "Local Resources" |
|---|
| 29 | * chapter of the Hub specification. |
|---|
| 30 | * |
|---|
| 31 | * NOTE: This header file is included both by C and by assembler source |
|---|
| 32 | * files. Please bracket any language-dependent definitions |
|---|
| 33 | * appropriately. |
|---|
| 34 | */ |
|---|
| 35 | |
|---|
| 36 | /* |
|---|
| 37 | * Some of the macros here need to be casted to appropriate types when used |
|---|
| 38 | * from C. They definitely must not be casted from assembly language so we |
|---|
| 39 | * use some new ANSI preprocessor stuff to paste these on where needed. |
|---|
| 40 | */ |
|---|
| 41 | |
|---|
| 42 | /* |
|---|
| 43 | * The following couple of definitions will eventually need to be variables, |
|---|
| 44 | * since the amount of address space assigned to each node depends on |
|---|
| 45 | * whether the system is running in N-mode (more nodes with less memory) |
|---|
| 46 | * or M-mode (fewer nodes with more memory). We expect that it will |
|---|
| 47 | * be a while before we need to make this decision dynamically, though, |
|---|
| 48 | * so for now we just use defines bracketed by an ifdef. |
|---|
| 49 | */ |
|---|
| 50 | |
|---|
| 51 | #ifdef CONFIG_SGI_SN0_N_MODE |
|---|
| 52 | |
|---|
| 53 | #define NODE_SIZE_BITS 31 |
|---|
| 54 | #define BWIN_SIZE_BITS 28 |
|---|
| 55 | |
|---|
| 56 | #define NASID_BITS 9 |
|---|
| 57 | #define NASID_BITMASK (0x1ffLL) |
|---|
| 58 | #define NASID_SHFT 31 |
|---|
| 59 | #define NASID_META_BITS 5 |
|---|
| 60 | #define NASID_LOCAL_BITS 4 |
|---|
| 61 | |
|---|
| 62 | #define BDDIR_UPPER_MASK (UINT64_CAST 0x7ffff << 10) |
|---|
| 63 | #define BDECC_UPPER_MASK (UINT64_CAST 0x3ffffff << 3) |
|---|
| 64 | |
|---|
| 65 | #else /* !defined(CONFIG_SGI_SN0_N_MODE), assume that M-mode is desired */ |
|---|
| 66 | |
|---|
| 67 | #define NODE_SIZE_BITS 32 |
|---|
| 68 | #define BWIN_SIZE_BITS 29 |
|---|
| 69 | |
|---|
| 70 | #define NASID_BITMASK (0xffLL) |
|---|
| 71 | #define NASID_BITS 8 |
|---|
| 72 | #define NASID_SHFT 32 |
|---|
| 73 | #define NASID_META_BITS 4 |
|---|
| 74 | #define NASID_LOCAL_BITS 4 |
|---|
| 75 | |
|---|
| 76 | #define BDDIR_UPPER_MASK (UINT64_CAST 0xfffff << 10) |
|---|
| 77 | #define BDECC_UPPER_MASK (UINT64_CAST 0x7ffffff << 3) |
|---|
| 78 | |
|---|
| 79 | #endif /* !defined(CONFIG_SGI_SN0_N_MODE) */ |
|---|
| 80 | |
|---|
| 81 | #define NODE_ADDRSPACE_SIZE (UINT64_CAST 1 << NODE_SIZE_BITS) |
|---|
| 82 | |
|---|
| 83 | #define NASID_MASK (UINT64_CAST NASID_BITMASK << NASID_SHFT) |
|---|
| 84 | #define NASID_GET(_pa) (int) ((UINT64_CAST (_pa) >> \ |
|---|
| 85 | NASID_SHFT) & NASID_BITMASK) |
|---|
| 86 | |
|---|
| 87 | #if !defined(__ASSEMBLY__) && !defined(_STANDALONE) |
|---|
| 88 | |
|---|
| 89 | #define NODE_SWIN_BASE(nasid, widget) \ |
|---|
| 90 | ((widget == 0) ? NODE_BWIN_BASE((nasid), SWIN0_BIGWIN) \ |
|---|
| 91 | : RAW_NODE_SWIN_BASE(nasid, widget)) |
|---|
| 92 | #else /* __ASSEMBLY__ || _STANDALONE */ |
|---|
| 93 | #define NODE_SWIN_BASE(nasid, widget) \ |
|---|
| 94 | (NODE_IO_BASE(nasid) + (UINT64_CAST (widget) << SWIN_SIZE_BITS)) |
|---|
| 95 | #endif /* __ASSEMBLY__ || _STANDALONE */ |
|---|
| 96 | |
|---|
| 97 | /* |
|---|
| 98 | * The following definitions pertain to the IO special address |
|---|
| 99 | * space. They define the location of the big and little windows |
|---|
| 100 | * of any given node. |
|---|
| 101 | */ |
|---|
| 102 | |
|---|
| 103 | #define BWIN_INDEX_BITS 3 |
|---|
| 104 | #define BWIN_SIZE (UINT64_CAST 1 << BWIN_SIZE_BITS) |
|---|
| 105 | #define BWIN_SIZEMASK (BWIN_SIZE - 1) |
|---|
| 106 | #define BWIN_WIDGET_MASK 0x7 |
|---|
| 107 | #define NODE_BWIN_BASE0(nasid) (NODE_IO_BASE(nasid) + BWIN_SIZE) |
|---|
| 108 | #define NODE_BWIN_BASE(nasid, bigwin) (NODE_BWIN_BASE0(nasid) + \ |
|---|
| 109 | (UINT64_CAST (bigwin) << BWIN_SIZE_BITS)) |
|---|
| 110 | |
|---|
| 111 | #define BWIN_WIDGETADDR(addr) ((addr) & BWIN_SIZEMASK) |
|---|
| 112 | #define BWIN_WINDOWNUM(addr) (((addr) >> BWIN_SIZE_BITS) & BWIN_WIDGET_MASK) |
|---|
| 113 | /* |
|---|
| 114 | * Verify if addr belongs to large window address of node with "nasid" |
|---|
| 115 | * |
|---|
| 116 | * |
|---|
| 117 | * NOTE: "addr" is expected to be XKPHYS address, and NOT physical |
|---|
| 118 | * address |
|---|
| 119 | * |
|---|
| 120 | * |
|---|
| 121 | */ |
|---|
| 122 | |
|---|
| 123 | #define NODE_BWIN_ADDR(nasid, addr) \ |
|---|
| 124 | (((addr) >= NODE_BWIN_BASE0(nasid)) && \ |
|---|
| 125 | ((addr) < (NODE_BWIN_BASE(nasid, HUB_NUM_BIG_WINDOW) + \ |
|---|
| 126 | BWIN_SIZE))) |
|---|
| 127 | |
|---|
| 128 | /* |
|---|
| 129 | * The following define the major position-independent aliases used |
|---|
| 130 | * in SN0. |
|---|
| 131 | * CALIAS -- Varies in size, points to the first n bytes of memory |
|---|
| 132 | * on the reader's node. |
|---|
| 133 | */ |
|---|
| 134 | |
|---|
| 135 | #define CALIAS_BASE CAC_BASE |
|---|
| 136 | |
|---|
| 137 | |
|---|
| 138 | |
|---|
| 139 | #define BRIDGE_REG_PTR(_base, _off) ((volatile bridgereg_t *) \ |
|---|
| 140 | ((__psunsigned_t)(_base) + (__psunsigned_t)(_off))) |
|---|
| 141 | |
|---|
| 142 | #define SN0_WIDGET_BASE(_nasid, _wid) (NODE_SWIN_BASE((_nasid), (_wid))) |
|---|
| 143 | |
|---|
| 144 | /* Turn on sable logging for the processors whose bits are set. */ |
|---|
| 145 | #ifdef SABLE |
|---|
| 146 | #define SABLE_LOG_TRIGGER(_map) \ |
|---|
| 147 | *((volatile hubreg_t *)(IO_BASE + 0x17ffff0)) = (_map) |
|---|
| 148 | #else |
|---|
| 149 | #define SABLE_LOG_TRIGGER(_map) |
|---|
| 150 | #endif /* SABLE */ |
|---|
| 151 | |
|---|
| 152 | #ifndef __ASSEMBLY__ |
|---|
| 153 | #define KERN_NMI_ADDR(nasid, slice) \ |
|---|
| 154 | TO_NODE_UNCAC((nasid), IP27_NMI_KREGS_OFFSET + \ |
|---|
| 155 | (IP27_NMI_KREGS_CPU_SIZE * (slice))) |
|---|
| 156 | #endif /* !__ASSEMBLY__ */ |
|---|
| 157 | |
|---|
| 158 | #ifdef PROM |
|---|
| 159 | |
|---|
| 160 | #define MISC_PROM_BASE PHYS_TO_K0(0x01300000) |
|---|
| 161 | #define MISC_PROM_SIZE 0x200000 |
|---|
| 162 | |
|---|
| 163 | #define DIAG_BASE PHYS_TO_K0(0x01500000) |
|---|
| 164 | #define DIAG_SIZE 0x300000 |
|---|
| 165 | |
|---|
| 166 | #define ROUTE_BASE PHYS_TO_K0(0x01800000) |
|---|
| 167 | #define ROUTE_SIZE 0x200000 |
|---|
| 168 | |
|---|
| 169 | #define IP27PROM_FLASH_HDR PHYS_TO_K0(0x01300000) |
|---|
| 170 | #define IP27PROM_FLASH_DATA PHYS_TO_K0(0x01301000) |
|---|
| 171 | #define IP27PROM_CORP_MAX 32 |
|---|
| 172 | #define IP27PROM_CORP PHYS_TO_K0(0x01800000) |
|---|
| 173 | #define IP27PROM_CORP_SIZE 0x10000 |
|---|
| 174 | #define IP27PROM_CORP_STK PHYS_TO_K0(0x01810000) |
|---|
| 175 | #define IP27PROM_CORP_STKSIZE 0x2000 |
|---|
| 176 | #define IP27PROM_DECOMP_BUF PHYS_TO_K0(0x01900000) |
|---|
| 177 | #define IP27PROM_DECOMP_SIZE 0xfff00 |
|---|
| 178 | |
|---|
| 179 | #define IP27PROM_BASE PHYS_TO_K0(0x01a00000) |
|---|
| 180 | #define IP27PROM_BASE_MAPPED (UNCAC_BASE | 0x1fc00000) |
|---|
| 181 | #define IP27PROM_SIZE_MAX 0x100000 |
|---|
| 182 | |
|---|
| 183 | #define IP27PROM_PCFG PHYS_TO_K0(0x01b00000) |
|---|
| 184 | #define IP27PROM_PCFG_SIZE 0xd0000 |
|---|
| 185 | #define IP27PROM_ERRDMP PHYS_TO_K1(0x01bd0000) |
|---|
| 186 | #define IP27PROM_ERRDMP_SIZE 0xf000 |
|---|
| 187 | |
|---|
| 188 | #define IP27PROM_INIT_START PHYS_TO_K1(0x01bd0000) |
|---|
| 189 | #define IP27PROM_CONSOLE PHYS_TO_K1(0x01bdf000) |
|---|
| 190 | #define IP27PROM_CONSOLE_SIZE 0x200 |
|---|
| 191 | #define IP27PROM_NETUART PHYS_TO_K1(0x01bdf200) |
|---|
| 192 | #define IP27PROM_NETUART_SIZE 0x100 |
|---|
| 193 | #define IP27PROM_UNUSED1 PHYS_TO_K1(0x01bdf300) |
|---|
| 194 | #define IP27PROM_UNUSED1_SIZE 0x500 |
|---|
| 195 | #define IP27PROM_ELSC_BASE_A PHYS_TO_K0(0x01bdf800) |
|---|
| 196 | #define IP27PROM_ELSC_BASE_B PHYS_TO_K0(0x01bdfc00) |
|---|
| 197 | #define IP27PROM_STACK_A PHYS_TO_K0(0x01be0000) |
|---|
| 198 | #define IP27PROM_STACK_B PHYS_TO_K0(0x01bf0000) |
|---|
| 199 | #define IP27PROM_STACK_SHFT 16 |
|---|
| 200 | #define IP27PROM_STACK_SIZE (1 << IP27PROM_STACK_SHFT) |
|---|
| 201 | #define IP27PROM_INIT_END PHYS_TO_K0(0x01c00000) |
|---|
| 202 | |
|---|
| 203 | #define SLAVESTACK_BASE PHYS_TO_K0(0x01580000) |
|---|
| 204 | #define SLAVESTACK_SIZE 0x40000 |
|---|
| 205 | |
|---|
| 206 | #define ENETBUFS_BASE PHYS_TO_K0(0x01f80000) |
|---|
| 207 | #define ENETBUFS_SIZE 0x20000 |
|---|
| 208 | |
|---|
| 209 | #define IO6PROM_BASE PHYS_TO_K0(0x01c00000) |
|---|
| 210 | #define IO6PROM_SIZE 0x400000 |
|---|
| 211 | #define IO6PROM_BASE_MAPPED (UNCAC_BASE | 0x11c00000) |
|---|
| 212 | #define IO6DPROM_BASE PHYS_TO_K0(0x01c00000) |
|---|
| 213 | #define IO6DPROM_SIZE 0x200000 |
|---|
| 214 | |
|---|
| 215 | #define NODEBUGUNIX_ADDR PHYS_TO_K0(0x00019000) |
|---|
| 216 | #define DEBUGUNIX_ADDR PHYS_TO_K0(0x00100000) |
|---|
| 217 | |
|---|
| 218 | #define IP27PROM_INT_LAUNCH 10 /* and 11 */ |
|---|
| 219 | #define IP27PROM_INT_NETUART 12 /* through 17 */ |
|---|
| 220 | |
|---|
| 221 | #endif /* PROM */ |
|---|
| 222 | |
|---|
| 223 | /* |
|---|
| 224 | * needed by symmon so it needs to be outside #if PROM |
|---|
| 225 | */ |
|---|
| 226 | #define IP27PROM_ELSC_SHFT 10 |
|---|
| 227 | #define IP27PROM_ELSC_SIZE (1 << IP27PROM_ELSC_SHFT) |
|---|
| 228 | |
|---|
| 229 | /* |
|---|
| 230 | * This address is used by IO6PROM to build MemoryDescriptors of |
|---|
| 231 | * free memory. This address is important since unix gets loaded |
|---|
| 232 | * at this address, and this memory has to be FREE if unix is to |
|---|
| 233 | * be loaded. |
|---|
| 234 | */ |
|---|
| 235 | |
|---|
| 236 | #define FREEMEM_BASE PHYS_TO_K0(0x2000000) |
|---|
| 237 | |
|---|
| 238 | #define IO6PROM_STACK_SHFT 14 /* stack per cpu */ |
|---|
| 239 | #define IO6PROM_STACK_SIZE (1 << IO6PROM_STACK_SHFT) |
|---|
| 240 | |
|---|
| 241 | /* |
|---|
| 242 | * IP27 PROM vectors |
|---|
| 243 | */ |
|---|
| 244 | |
|---|
| 245 | #define IP27PROM_ENTRY PHYS_TO_COMPATK1(0x1fc00000) |
|---|
| 246 | #define IP27PROM_RESTART PHYS_TO_COMPATK1(0x1fc00008) |
|---|
| 247 | #define IP27PROM_SLAVELOOP PHYS_TO_COMPATK1(0x1fc00010) |
|---|
| 248 | #define IP27PROM_PODMODE PHYS_TO_COMPATK1(0x1fc00018) |
|---|
| 249 | #define IP27PROM_IOC3UARTPOD PHYS_TO_COMPATK1(0x1fc00020) |
|---|
| 250 | #define IP27PROM_FLASHLEDS PHYS_TO_COMPATK1(0x1fc00028) |
|---|
| 251 | #define IP27PROM_REPOD PHYS_TO_COMPATK1(0x1fc00030) |
|---|
| 252 | #define IP27PROM_LAUNCHSLAVE PHYS_TO_COMPATK1(0x1fc00038) |
|---|
| 253 | #define IP27PROM_WAITSLAVE PHYS_TO_COMPATK1(0x1fc00040) |
|---|
| 254 | #define IP27PROM_POLLSLAVE PHYS_TO_COMPATK1(0x1fc00048) |
|---|
| 255 | |
|---|
| 256 | #define KL_UART_BASE LOCAL_HUB_ADDR(MD_UREG0_0) /* base of UART regs */ |
|---|
| 257 | #define KL_UART_CMD LOCAL_HUB_ADDR(MD_UREG0_0) /* UART command reg */ |
|---|
| 258 | #define KL_UART_DATA LOCAL_HUB_ADDR(MD_UREG0_1) /* UART data reg */ |
|---|
| 259 | #define KL_I2C_REG MD_UREG0_0 /* I2C reg */ |
|---|
| 260 | |
|---|
| 261 | #ifndef __ASSEMBLY__ |
|---|
| 262 | |
|---|
| 263 | /* Address 0x400 to 0x1000 ualias points to cache error eframe + misc |
|---|
| 264 | * CACHE_ERR_SP_PTR could either contain an address to the stack, or |
|---|
| 265 | * the stack could start at CACHE_ERR_SP_PTR |
|---|
| 266 | */ |
|---|
| 267 | #if defined (HUB_ERR_STS_WAR) |
|---|
| 268 | #define CACHE_ERR_EFRAME 0x480 |
|---|
| 269 | #else /* HUB_ERR_STS_WAR */ |
|---|
| 270 | #define CACHE_ERR_EFRAME 0x400 |
|---|
| 271 | #endif /* HUB_ERR_STS_WAR */ |
|---|
| 272 | |
|---|
| 273 | #define CACHE_ERR_ECCFRAME (CACHE_ERR_EFRAME + EF_SIZE) |
|---|
| 274 | #define CACHE_ERR_SP_PTR (0x1000 - 32) /* why -32? TBD */ |
|---|
| 275 | #define CACHE_ERR_IBASE_PTR (0x1000 - 40) |
|---|
| 276 | #define CACHE_ERR_SP (CACHE_ERR_SP_PTR - 16) |
|---|
| 277 | #define CACHE_ERR_AREA_SIZE (ARCS_SPB_OFFSET - CACHE_ERR_EFRAME) |
|---|
| 278 | |
|---|
| 279 | #endif /* !__ASSEMBLY__ */ |
|---|
| 280 | |
|---|
| 281 | #define _ARCSPROM |
|---|
| 282 | |
|---|
| 283 | #ifdef _STANDALONE |
|---|
| 284 | |
|---|
| 285 | /* |
|---|
| 286 | * The PROM needs to pass the device base address and the |
|---|
| 287 | * device pci cfg space address to the device drivers during |
|---|
| 288 | * install. The COMPONENT->Key field is used for this purpose. |
|---|
| 289 | * Macros needed by SN0 device drivers to convert the |
|---|
| 290 | * COMPONENT->Key field to the respective base address. |
|---|
| 291 | * Key field looks as follows: |
|---|
| 292 | * |
|---|
| 293 | * +----------------------------------------------------+ |
|---|
| 294 | * |devnasid | widget |pciid |hubwidid|hstnasid | adap | |
|---|
| 295 | * | 2 | 1 | 1 | 1 | 2 | 1 | |
|---|
| 296 | * +----------------------------------------------------+ |
|---|
| 297 | * | | | | | | | |
|---|
| 298 | * 64 48 40 32 24 8 0 |
|---|
| 299 | * |
|---|
| 300 | * These are used by standalone drivers till the io infrastructure |
|---|
| 301 | * is in place. |
|---|
| 302 | */ |
|---|
| 303 | |
|---|
| 304 | #ifndef __ASSEMBLY__ |
|---|
| 305 | |
|---|
| 306 | #define uchar unsigned char |
|---|
| 307 | |
|---|
| 308 | #define KEY_DEVNASID_SHFT 48 |
|---|
| 309 | #define KEY_WIDID_SHFT 40 |
|---|
| 310 | #define KEY_PCIID_SHFT 32 |
|---|
| 311 | #define KEY_HUBWID_SHFT 24 |
|---|
| 312 | #define KEY_HSTNASID_SHFT 8 |
|---|
| 313 | |
|---|
| 314 | #define MK_SN0_KEY(nasid, widid, pciid) \ |
|---|
| 315 | ((((__psunsigned_t)nasid)<< KEY_DEVNASID_SHFT |\ |
|---|
| 316 | ((__psunsigned_t)widid) << KEY_WIDID_SHFT) |\ |
|---|
| 317 | ((__psunsigned_t)pciid) << KEY_PCIID_SHFT) |
|---|
| 318 | |
|---|
| 319 | #define ADD_HUBWID_KEY(key,hubwid)\ |
|---|
| 320 | (key|=((__psunsigned_t)hubwid << KEY_HUBWID_SHFT)) |
|---|
| 321 | |
|---|
| 322 | #define ADD_HSTNASID_KEY(key,hstnasid)\ |
|---|
| 323 | (key|=((__psunsigned_t)hstnasid << KEY_HSTNASID_SHFT)) |
|---|
| 324 | |
|---|
| 325 | #define GET_DEVNASID_FROM_KEY(key) ((short)(key >> KEY_DEVNASID_SHFT)) |
|---|
| 326 | #define GET_WIDID_FROM_KEY(key) ((uchar)(key >> KEY_WIDID_SHFT)) |
|---|
| 327 | #define GET_PCIID_FROM_KEY(key) ((uchar)(key >> KEY_PCIID_SHFT)) |
|---|
| 328 | #define GET_HUBWID_FROM_KEY(key) ((uchar)(key >> KEY_HUBWID_SHFT)) |
|---|
| 329 | #define GET_HSTNASID_FROM_KEY(key) ((short)(key >> KEY_HSTNASID_SHFT)) |
|---|
| 330 | |
|---|
| 331 | #define PCI_64_TARGID_SHFT 60 |
|---|
| 332 | |
|---|
| 333 | #define GET_PCIBASE_FROM_KEY(key) (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),\ |
|---|
| 334 | GET_WIDID_FROM_KEY(key))\ |
|---|
| 335 | | BRIDGE_DEVIO(GET_PCIID_FROM_KEY(key))) |
|---|
| 336 | |
|---|
| 337 | #define GET_PCICFGBASE_FROM_KEY(key) \ |
|---|
| 338 | (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),\ |
|---|
| 339 | GET_WIDID_FROM_KEY(key))\ |
|---|
| 340 | | BRIDGE_TYPE0_CFG_DEV(GET_PCIID_FROM_KEY(key))) |
|---|
| 341 | |
|---|
| 342 | #define GET_WIDBASE_FROM_KEY(key) \ |
|---|
| 343 | (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),\ |
|---|
| 344 | GET_WIDID_FROM_KEY(key))) |
|---|
| 345 | |
|---|
| 346 | #define PUT_INSTALL_STATUS(c,s) c->Revision = s |
|---|
| 347 | #define GET_INSTALL_STATUS(c) c->Revision |
|---|
| 348 | |
|---|
| 349 | #endif /* !__ASSEMBLY__ */ |
|---|
| 350 | |
|---|
| 351 | #endif /* _STANDALONE */ |
|---|
| 352 | |
|---|
| 353 | #if defined (HUB_ERR_STS_WAR) |
|---|
| 354 | |
|---|
| 355 | #define ERR_STS_WAR_REGISTER IIO_IIBUSERR |
|---|
| 356 | #define ERR_STS_WAR_ADDR LOCAL_HUB_ADDR(IIO_IIBUSERR) |
|---|
| 357 | #define ERR_STS_WAR_PHYSADDR TO_PHYS((__psunsigned_t)ERR_STS_WAR_ADDR) |
|---|
| 358 | /* Used to match addr in error reg. */ |
|---|
| 359 | #define OLD_ERR_STS_WAR_OFFSET ((MD_MEM_BANKS * MD_BANK_SIZE) - 0x100) |
|---|
| 360 | |
|---|
| 361 | #endif /* HUB_ERR_STS_WAR */ |
|---|
| 362 | |
|---|
| 363 | #endif /* _ASM_SN_SN0_ADDRS_H */ |
|---|