Rev 1787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1787 | Rev 1888 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup ia64 |
29 | /** @addtogroup ia64 |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
34 | 34 | ||
35 | #ifndef __ia64_PAL_H__ |
35 | #ifndef KERN_ia64_PAL_H_ |
36 | #define __ia64_PAL_H__ |
36 | #define KERN_ia64_PAL_H_ |
37 | 37 | ||
38 | #define PAL_OK 0 /**< Call completed without error. */ |
38 | #define PAL_OK 0 /**< Call completed without error. */ |
39 | #define PAL_UNIMPL -1 /**< Unimplemented procedure. */ |
39 | #define PAL_UNIMPL -1 /**< Unimplemented procedure. */ |
40 | #define PAL_INVARG -2 /**< Invalid argument. */ |
40 | #define PAL_INVARG -2 /**< Invalid argument. */ |
41 | #define PAL_ERR -3 /**< Can not compete call without error. */ |
41 | #define PAL_ERR -3 /**< Can not compete call without error. */ |
Line 93... | Line 93... | ||
93 | #define PAL_COPY_PAL 256 |
93 | #define PAL_COPY_PAL 256 |
94 | #define PAL_ENTER_IA_32_ENV 33 |
94 | #define PAL_ENTER_IA_32_ENV 33 |
95 | #define PAL_PMI_ENTRYPOINT 32 |
95 | #define PAL_PMI_ENTRYPOINT 32 |
96 | 96 | ||
97 | /* |
97 | /* |
98 | Ski PTCE data |
98 | * Ski PTCE data |
99 | */ |
99 | */ |
100 | #define PAL_PTCE_INFO_BASE() (0x100000000LL) |
100 | #define PAL_PTCE_INFO_BASE() (0x100000000LL) |
101 | #define PAL_PTCE_INFO_COUNT1() (2) |
101 | #define PAL_PTCE_INFO_COUNT1() (2) |
102 | #define PAL_PTCE_INFO_COUNT2() (3) |
102 | #define PAL_PTCE_INFO_COUNT2() (3) |
103 | #define PAL_PTCE_INFO_STRIDE1() (0x10000000) |
103 | #define PAL_PTCE_INFO_STRIDE1() (0x10000000) |
104 | #define PAL_PTCE_INFO_STRIDE2() (0x2000) |
104 | #define PAL_PTCE_INFO_STRIDE2() (0x2000) |
105 | 105 | ||
106 | - | ||
107 | #endif |
106 | #endif |
108 | 107 | ||
109 | /** @} |
108 | /** @} |
110 | */ |
109 | */ |
111 | - |