Rev 1852 | Rev 1860 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1852 | Rev 1854 | ||
|---|---|---|---|
| Line 27... | Line 27... | ||
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** @addtogroup sparc64 |
29 | /** @addtogroup sparc64 |
| 30 | * @{ |
30 | * @{ |
| 31 | */ |
31 | */ |
| - | 32 | /** |
|
| 32 | /** @file |
33 | * @file |
| - | 34 | * @brief Various sparc64-specific macros. |
|
| 33 | */ |
35 | */ |
| 34 | 36 | ||
| 35 | #ifndef __sparc64_ARCH_H__ |
37 | #ifndef __sparc64_ARCH_H__ |
| 36 | #define __sparc64_ARCH_H__ |
38 | #define __sparc64_ARCH_H__ |
| 37 | 39 | ||
| 38 | #define ASI_AIUP 0x10 /** Access to primary context with user privileges. */ |
40 | #define ASI_AIUP 0x10 /** Access to primary context with user privileges. */ |
| 39 | #define ASI_AIUS 0x11 /** Access to secondary context with user privileges. */ |
41 | #define ASI_AIUS 0x11 /** Access to secondary context with user privileges. */ |
| 40 | 42 | ||
| - | 43 | #define NWINDOW 8 /** Number of register window sets. */ |
|
| - | 44 | ||
| 41 | #endif |
45 | #endif |
| 42 | 46 | ||
| 43 | /** @} |
47 | /** @} |
| 44 | */ |
48 | */ |
| 45 | - | ||