1 | /*
|
---|
2 | * Copyright (c) 2011 Jakub Jermar
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
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
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #ifndef BOOT_ia64_SAL_H_
|
---|
30 | #define BOOT_ia64_SAL_H_
|
---|
31 |
|
---|
32 | #include <arch/types.h>
|
---|
33 | #include <typedefs.h>
|
---|
34 |
|
---|
35 | /*
|
---|
36 | * Essential SAL procedures' IDs
|
---|
37 | */
|
---|
38 | #define SAL_FREQ_BASE 0x1000012
|
---|
39 |
|
---|
40 | typedef struct {
|
---|
41 | uint8_t signature[4];
|
---|
42 | uint32_t total_length;
|
---|
43 | uint16_t sal_revision;
|
---|
44 | uint16_t entry_count;
|
---|
45 | uint8_t checksum;
|
---|
46 | uint8_t reserved1[7];
|
---|
47 | uint16_t sal_a_version;
|
---|
48 | uint16_t sal_b_version;
|
---|
49 | uint8_t oem_id[32];
|
---|
50 | uint8_t product_id[32];
|
---|
51 | uint8_t reserved2[8];
|
---|
52 | } sal_system_table_header_t;
|
---|
53 |
|
---|
54 | typedef enum {
|
---|
55 | SSTT_ENTRYPOINT_DESC,
|
---|
56 | SSTT_MEMORY_DESC,
|
---|
57 | SSTT_PLATFORM_FEATURES_DESC,
|
---|
58 | SSTT_TR_DESC,
|
---|
59 | SSTT_PTC_COHERENCE_DOMAIN_DESC,
|
---|
60 | SSTT_AP_WAKEUP_DESC
|
---|
61 | } sal_sst_type_t;
|
---|
62 |
|
---|
63 | typedef struct {
|
---|
64 | uint8_t type;
|
---|
65 | uint8_t reserved1[7];
|
---|
66 | uint64_t pal_proc;
|
---|
67 | uint64_t sal_proc;
|
---|
68 | uint64_t sal_proc_gp;
|
---|
69 | uint8_t reserved2[16];
|
---|
70 | } sal_entrypoint_desc_t;
|
---|
71 |
|
---|
72 | /* This descriptor is unused on Itanium systems. */
|
---|
73 | typedef struct {
|
---|
74 | uint8_t type;
|
---|
75 | uint8_t unused[31];
|
---|
76 | } sal_memory_desc_t;
|
---|
77 |
|
---|
78 | typedef struct {
|
---|
79 | uint8_t type;
|
---|
80 | uint8_t features;
|
---|
81 | uint8_t reserved[14];
|
---|
82 | } sal_platform_features_desc_t;
|
---|
83 |
|
---|
84 | typedef struct {
|
---|
85 | uint8_t type;
|
---|
86 | uint8_t tr_type;
|
---|
87 | uint8_t tr_number;
|
---|
88 | uint8_t reserved1[5];
|
---|
89 | uint64_t va;
|
---|
90 | uint64_t psc;
|
---|
91 | uint8_t reserved2[8];
|
---|
92 | } sal_tr_desc_t;
|
---|
93 |
|
---|
94 | typedef struct {
|
---|
95 | uint8_t type;
|
---|
96 | uint8_t reserved[3];
|
---|
97 | uint32_t coherence_domains;
|
---|
98 | uint64_t coherence_domain_info;
|
---|
99 | } sal_ptc_coherence_domain_desc_t;
|
---|
100 |
|
---|
101 | typedef struct {
|
---|
102 | uint8_t type;
|
---|
103 | uint8_t mechanism;
|
---|
104 | uint8_t reserved[6];
|
---|
105 | uint64_t vector;
|
---|
106 | } sal_ap_wakeup_desc_t;
|
---|
107 |
|
---|
108 | extern void sal_system_table_parse(sal_system_table_header_t *);
|
---|
109 |
|
---|
110 | extern uint64_t sal_base_clock_frequency(void);
|
---|
111 |
|
---|
112 | #define sal_call_1_1(id, arg1, ret1) \
|
---|
113 | sal_call((id), (arg1), 0, 0, 0, 0, 0, 0, (ret1), NULL, NULL)
|
---|
114 |
|
---|
115 | extern uint64_t sal_call(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t,
|
---|
116 | uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *, uint64_t *);
|
---|
117 |
|
---|
118 | #endif
|
---|